flash-sdk 2.32.1 → 2.33.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3929,8 +3929,8 @@ export declare class PerpetualsClient {
3929
3929
  getBorrowRateSync: (custodyAccount: CustodyAccount, currentUtilization: BN) => BN;
3930
3930
  getLockFeeAndUnsettledUsdForPosition: (position: PositionAccount, collateralCustodyAccount: CustodyAccount, currentTimestamp: BN) => BN;
3931
3931
  getLockedUsd: (sideUsd: BN, side: Side, marketCorrelation: boolean, maxPayOffBps: BN) => BN;
3932
- getLiquidationPriceSync: (collateralAmount: BN, sizeAmount: BN, entryOraclePrice: OraclePrice, lockAndUnsettledFeeUsd: BN, marketCorrelation: boolean, side: Side, custodyAccount: CustodyAccount, collateralPrice: OraclePrice, collateralEmaPrice: OraclePrice, collateralCustodyAccount: CustodyAccount, positionAccount: PositionAccount) => OraclePrice;
3933
- getLiquidationPriceWithOrder: (collateralAmount: BN, collateralUsd: BN, sizeAmount: BN, sizeUsd: BN, sizeDecimals: number, limitOraclePrice: OraclePrice, marketCorrelation: boolean, side: Side, custodyAccount: CustodyAccount) => OraclePrice;
3932
+ getLiquidationPriceSync: (collateralAmount: BN, sizeAmount: BN, entryOraclePrice: OraclePrice, lockAndUnsettledFeeUsd: BN, marketCorrelation: boolean, side: Side, targetPrice: OraclePrice, targetEmaPrice: OraclePrice, targetCustodyAccount: CustodyAccount, collateralPrice: OraclePrice, collateralEmaPrice: OraclePrice, collateralCustodyAccount: CustodyAccount, positionAccount: PositionAccount) => OraclePrice;
3933
+ getLiquidationPriceWithOrder: (collateralAmount: BN, collateralUsd: BN, sizeAmount: BN, sizeUsd: BN, sizeDecimals: number, limitOraclePrice: OraclePrice, marketCorrelation: boolean, side: Side, targetPrice: OraclePrice, targetEmaPrice: OraclePrice, targetCustodyAccount: CustodyAccount, collateralPrice: OraclePrice, collateralEmaPrice: OraclePrice, collateralCustodyAccount: CustodyAccount) => OraclePrice;
3934
3934
  getMaxProfitPriceSync: (entryPrice: OraclePrice, marketCorrelation: boolean, side: Side, positionAccount: PositionAccount) => OraclePrice;
3935
3935
  getEstimateProfitLossforTpSlEntry: (positionAccount: PositionAccount | null, isTakeProfit: boolean, userEntrytpSlOraclePrice: OraclePrice, collateralDeltaAmount: BN, sizeDeltaAmount: BN, side: Side, marketAccountPk: PublicKey, targetTokenPrice: OraclePrice, targetTokenEmaPrice: OraclePrice, targetCustodyAccount: CustodyAccount, collateralPrice: OraclePrice, collateralEmaPrice: OraclePrice, collateralCustodyAccount: CustodyAccount, poolConfig: PoolConfig) => {
3936
3936
  pnlUsd: BN;
@@ -939,7 +939,7 @@ var PerpetualsClient = (function () {
939
939
  positionAccount.collateralAmount = positionAccount.collateralAmount.add(collateralDeltaAmount);
940
940
  positionAccount.sizeAmount = positionAccount.sizeAmount.add(sizeDeltaAmount);
941
941
  var lockFeeUsd = _this.getLockFeeAndUnsettledUsdForPosition(positionAccount, collateralCustodyAccount, currentTimestamp);
942
- var liquidationPrice = _this.getLiquidationPriceSync(positionAccount.collateralAmount, positionAccount.sizeAmount, entryOraclePrice, lockFeeUsd, marketCorrelation, side, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount);
942
+ var liquidationPrice = _this.getLiquidationPriceSync(positionAccount.collateralAmount, positionAccount.sizeAmount, entryOraclePrice, lockFeeUsd, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount);
943
943
  var sizeAmountUsd = entryOraclePrice.getAssetAmountUsd(sizeDeltaAmount, targetCustodyAccount.decimals);
944
944
  var collateralTokenMinOraclePrice = _this.getMinAndMaxOraclePriceSync(collateralPrice, collateralEmaPrice, collateralCustodyAccount).min;
945
945
  var feeUsd = constants_1.BN_ZERO;
@@ -1002,7 +1002,7 @@ var PerpetualsClient = (function () {
1002
1002
  positionAccount.collateralAmount = positionAccount.collateralAmount.add(collateralDeltaAmount);
1003
1003
  positionAccount.sizeAmount = positionAccount.sizeAmount.add(sizeDeltaAmount);
1004
1004
  var lockFeeUsd = _this.getLockFeeAndUnsettledUsdForPosition(positionAccount, collateralCustodyAccount, currentTimestamp);
1005
- var liquidationPrice = _this.getLiquidationPriceSync(positionAccount.collateralAmount, positionAccount.sizeAmount, entryOraclePrice, lockFeeUsd, marketCorrelation, side, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount);
1005
+ var liquidationPrice = _this.getLiquidationPriceSync(positionAccount.collateralAmount, positionAccount.sizeAmount, entryOraclePrice, lockFeeUsd, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount);
1006
1006
  var sizeAmountUsd = entryOraclePrice.getAssetAmountUsd(sizeDeltaAmount, targetCustodyAccount.decimals);
1007
1007
  var collateralTokenMinOraclePrice = _this.getMinAndMaxOraclePriceSync(collateralPrice, collateralEmaPrice, collateralCustodyAccount).min;
1008
1008
  var feeUsd = constants_1.BN_ZERO;
@@ -1104,7 +1104,7 @@ var PerpetualsClient = (function () {
1104
1104
  price: positionAccount.entryPrice.price, exponent: new anchor_1.BN(positionAccount.entryPrice.exponent), confidence: constants_1.BN_ZERO, timestamp: constants_1.BN_ZERO
1105
1105
  });
1106
1106
  resultingPositionAccount.sizeUsd = positionEntryOraclePrice.getAssetAmountUsd(resultingPositionAccount.sizeAmount, targetCustodyAccount.decimals);
1107
- var liquidationPrice = _this.getLiquidationPriceSync(resultingPositionAccount.collateralAmount, resultingPositionAccount.sizeAmount, positionEntryOraclePrice, lockAndUnsettledFeeUsd, marketCorrelation, side, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount);
1107
+ var liquidationPrice = _this.getLiquidationPriceSync(resultingPositionAccount.collateralAmount, resultingPositionAccount.sizeAmount, positionEntryOraclePrice, lockAndUnsettledFeeUsd, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount);
1108
1108
  return {
1109
1109
  exitOraclePrice: exitOraclePrice,
1110
1110
  borrowFeeUsd: lockAndUnsettledFeeUsd,
@@ -1310,7 +1310,7 @@ var PerpetualsClient = (function () {
1310
1310
  }
1311
1311
  var entryPrice = OraclePrice_1.OraclePrice.from({ price: newPosition.entryPrice.price, exponent: new anchor_1.BN(newPosition.entryPrice.exponent), confidence: constants_1.BN_ZERO, timestamp: constants_1.BN_ZERO });
1312
1312
  var finalInterestUsd = _this.getLockFeeAndUnsettledUsdForPosition(newPosition, collateralCustodyAccount, currentTimestamp);
1313
- var finalLiquidationPrice = _this.getLiquidationPriceSync(newPosition.collateralAmount, newPosition.sizeAmount, entryPrice, finalInterestUsd, marketCorrelation, side, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, newPosition);
1313
+ var finalLiquidationPrice = _this.getLiquidationPriceSync(newPosition.collateralAmount, newPosition.sizeAmount, entryPrice, finalInterestUsd, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, newPosition);
1314
1314
  var finalPnl = _this.getPnlSync(newPosition, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, currentTimestamp, targetCustodyAccount.pricing.delaySeconds, poolConfig);
1315
1315
  var finalPnlUsd = finalPnl.profitUsd.sub(finalPnl.lossUsd);
1316
1316
  var newLev = _this.getLeverageSync(newPosition.sizeUsd, newPosition.collateralAmount, collateralMinMaxPrice.min, collateralCustodyAccount.decimals, constants_1.BN_ZERO);
@@ -1332,7 +1332,7 @@ var PerpetualsClient = (function () {
1332
1332
  }
1333
1333
  var entryPrice = OraclePrice_1.OraclePrice.from({ price: newPosition.entryPrice.price, exponent: new anchor_1.BN(newPosition.entryPrice.exponent), confidence: constants_1.BN_ZERO, timestamp: constants_1.BN_ZERO });
1334
1334
  var finalInterestUsd = _this.getLockFeeAndUnsettledUsdForPosition(newPosition, collateralCustodyAccount, currentTimestamp);
1335
- var finalLiquidationPrice = _this.getLiquidationPriceSync(newPosition.collateralAmount, newPosition.sizeAmount, entryPrice, finalInterestUsd, marketCorrelation, side, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, newPosition);
1335
+ var finalLiquidationPrice = _this.getLiquidationPriceSync(newPosition.collateralAmount, newPosition.sizeAmount, entryPrice, finalInterestUsd, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, newPosition);
1336
1336
  var finalPnl = _this.getPnlSync(newPosition, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, currentTimestamp, targetCustodyAccount.pricing.delaySeconds, poolConfig);
1337
1337
  var finalPnlUsd = finalPnl.profitUsd.sub(finalPnl.lossUsd);
1338
1338
  var exitFee = _this.getExitFeeSync(newPosition, targetCustodyAccount, collateralCustodyAccount, collateralPrice, collateralEmaPrice);
@@ -1458,7 +1458,7 @@ var PerpetualsClient = (function () {
1458
1458
  var lockedUsd = (sideUsd.mul(maxPayOffBpsNew)).div(new anchor_1.BN(constants_1.BPS_POWER));
1459
1459
  return lockedUsd;
1460
1460
  };
1461
- this.getLiquidationPriceSync = function (collateralAmount, sizeAmount, entryOraclePrice, lockAndUnsettledFeeUsd, marketCorrelation, side, custodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount) {
1461
+ this.getLiquidationPriceSync = function (collateralAmount, sizeAmount, entryOraclePrice, lockAndUnsettledFeeUsd, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount, positionAccount) {
1462
1462
  var zeroOraclePrice = OraclePrice_1.OraclePrice.from({
1463
1463
  price: constants_1.BN_ZERO,
1464
1464
  exponent: constants_1.BN_ZERO,
@@ -1471,22 +1471,25 @@ var PerpetualsClient = (function () {
1471
1471
  if (positionAccount.entryPrice.exponent && !entryOraclePrice.exponent.eq(new anchor_1.BN(positionAccount.entryPrice.exponent))) {
1472
1472
  throw new Error("Exponent mismatch : ".concat(positionAccount.entryPrice.exponent, " & ").concat(entryOraclePrice.exponent.toString(), " ").concat(entryOraclePrice === null || entryOraclePrice === void 0 ? void 0 : entryOraclePrice.toUiPrice(8)));
1473
1473
  }
1474
- var exitFeeUsd = positionAccount.sizeUsd.mul(custodyAccount.fees.closePosition).div(new anchor_1.BN(constants_1.RATE_POWER));
1474
+ var exitFeeUsd = positionAccount.sizeUsd.mul(targetCustodyAccount.fees.closePosition).div(new anchor_1.BN(constants_1.RATE_POWER));
1475
1475
  var unsettledLossUsd = exitFeeUsd.add(lockAndUnsettledFeeUsd);
1476
- var liablitiesUsd = positionAccount.sizeUsd.mul(new anchor_1.BN(constants_1.BPS_POWER)).div(custodyAccount.pricing.maxLeverage).add(unsettledLossUsd);
1477
- var assetsUsd = constants_1.BN_ZERO;
1478
- if (marketCorrelation) {
1479
- assetsUsd = positionAccount.collateralUsd;
1480
- }
1481
- else {
1482
- var collateralMinPriceOracle = _this.getMinAndMaxOraclePriceSync(collateralPrice, collateralEmaPrice, collateralCustodyAccount).min;
1483
- assetsUsd = collateralMinPriceOracle.getAssetAmountUsd(collateralAmount, collateralCustodyAccount.decimals);
1484
- }
1476
+ var liablitiesUsd = positionAccount.sizeUsd.mul(new anchor_1.BN(constants_1.BPS_POWER)).div(targetCustodyAccount.pricing.maxLeverage).add(unsettledLossUsd);
1477
+ var targetMinMaxPriceOracle = _this.getMinAndMaxOraclePriceSync(targetPrice, targetEmaPrice, targetCustodyAccount);
1478
+ var collateralMinMaxPriceOracle = _this.getMinAndMaxOraclePriceSync(collateralPrice, collateralEmaPrice, collateralCustodyAccount);
1485
1479
  var liquidationPrice;
1486
1480
  if (marketCorrelation && (0, types_1.isVariant)(side, 'long')) {
1481
+ var newCollateralAmount = void 0;
1482
+ if (targetCustodyAccount.mint == collateralCustodyAccount.mint) {
1483
+ newCollateralAmount = collateralAmount;
1484
+ }
1485
+ else {
1486
+ var pairPrice = collateralMinMaxPriceOracle.min.price.mul(new anchor_1.BN(10).pow(collateralMinMaxPriceOracle.min.exponent)).div(targetMinMaxPriceOracle.max.price);
1487
+ var swapPrice = pairPrice.sub(pairPrice.mul(collateralCustodyAccount.pricing.swapSpread).div(new anchor_1.BN(constants_1.BPS_POWER)));
1488
+ newCollateralAmount = (0, utils_1.checkedDecimalMul)(collateralAmount, new anchor_1.BN(-1 * collateralCustodyAccount.decimals), swapPrice, collateralMinMaxPriceOracle.min.exponent, new anchor_1.BN(-1 * targetCustodyAccount.decimals));
1489
+ }
1487
1490
  var lp = OraclePrice_1.OraclePrice.from({
1488
1491
  price: (positionAccount.sizeUsd.add(liablitiesUsd)).mul(new anchor_1.BN(Math.pow(10, (positionAccount.sizeDecimals + 3))))
1489
- .div(sizeAmount.add(collateralAmount)),
1492
+ .div(sizeAmount.add(newCollateralAmount)),
1490
1493
  exponent: new anchor_1.BN(-1 * constants_1.RATE_DECIMALS),
1491
1494
  confidence: constants_1.BN_ZERO,
1492
1495
  timestamp: constants_1.BN_ZERO
@@ -1494,6 +1497,7 @@ var PerpetualsClient = (function () {
1494
1497
  liquidationPrice = lp.scale_to_exponent(new anchor_1.BN(entryOraclePrice.exponent));
1495
1498
  }
1496
1499
  else {
1500
+ var assetsUsd = collateralMinMaxPriceOracle.min.getAssetAmountUsd(collateralAmount, collateralCustodyAccount.decimals);
1497
1501
  if (assetsUsd.gte(liablitiesUsd)) {
1498
1502
  var priceDiffLossOracle = OraclePrice_1.OraclePrice.from({
1499
1503
  price: (assetsUsd.sub(liablitiesUsd)).mul(new anchor_1.BN(Math.pow(10, (positionAccount.sizeDecimals + 3))))
@@ -1547,7 +1551,7 @@ var PerpetualsClient = (function () {
1547
1551
  }
1548
1552
  return liquidationPrice.price.isNeg() ? zeroOraclePrice : liquidationPrice;
1549
1553
  };
1550
- this.getLiquidationPriceWithOrder = function (collateralAmount, collateralUsd, sizeAmount, sizeUsd, sizeDecimals, limitOraclePrice, marketCorrelation, side, custodyAccount) {
1554
+ this.getLiquidationPriceWithOrder = function (collateralAmount, collateralUsd, sizeAmount, sizeUsd, sizeDecimals, limitOraclePrice, marketCorrelation, side, targetPrice, targetEmaPrice, targetCustodyAccount, collateralPrice, collateralEmaPrice, collateralCustodyAccount) {
1551
1555
  var zeroOraclePrice = OraclePrice_1.OraclePrice.from({
1552
1556
  price: constants_1.BN_ZERO,
1553
1557
  exponent: constants_1.BN_ZERO,
@@ -1557,14 +1561,25 @@ var PerpetualsClient = (function () {
1557
1561
  if (collateralAmount.isZero() || sizeAmount.isZero()) {
1558
1562
  return zeroOraclePrice;
1559
1563
  }
1560
- var exitFeeUsd = sizeUsd.mul(custodyAccount.fees.closePosition).div(new anchor_1.BN(constants_1.RATE_POWER));
1564
+ var exitFeeUsd = sizeUsd.mul(targetCustodyAccount.fees.closePosition).div(new anchor_1.BN(constants_1.RATE_POWER));
1561
1565
  var unsettledLossUsd = exitFeeUsd;
1562
- var liablitiesUsd = sizeUsd.mul(new anchor_1.BN(constants_1.BPS_POWER)).div(custodyAccount.pricing.maxLeverage).add(unsettledLossUsd);
1566
+ var liablitiesUsd = sizeUsd.mul(new anchor_1.BN(constants_1.BPS_POWER)).div(targetCustodyAccount.pricing.maxLeverage).add(unsettledLossUsd);
1567
+ var targetMinMaxPriceOracle = _this.getMinAndMaxOraclePriceSync(targetPrice, targetEmaPrice, targetCustodyAccount);
1568
+ var collateralMinMaxPriceOracle = _this.getMinAndMaxOraclePriceSync(collateralPrice, collateralEmaPrice, collateralCustodyAccount);
1563
1569
  var liquidationPrice;
1564
1570
  if (marketCorrelation && (0, types_1.isVariant)(side, 'long')) {
1571
+ var newCollateralAmount = void 0;
1572
+ if (targetCustodyAccount.mint == collateralCustodyAccount.mint) {
1573
+ newCollateralAmount = collateralAmount;
1574
+ }
1575
+ else {
1576
+ var pairPrice = collateralMinMaxPriceOracle.min.price.mul(new anchor_1.BN(10).pow(collateralMinMaxPriceOracle.min.exponent)).div(targetMinMaxPriceOracle.max.price);
1577
+ var swapPrice = pairPrice.sub(pairPrice.mul(collateralCustodyAccount.pricing.swapSpread).div(new anchor_1.BN(constants_1.BPS_POWER)));
1578
+ newCollateralAmount = (0, utils_1.checkedDecimalMul)(collateralAmount, new anchor_1.BN(-1 * collateralCustodyAccount.decimals), swapPrice, collateralMinMaxPriceOracle.min.exponent, new anchor_1.BN(-1 * targetCustodyAccount.decimals));
1579
+ }
1565
1580
  var lp = OraclePrice_1.OraclePrice.from({
1566
1581
  price: (sizeUsd.add(liablitiesUsd)).mul(new anchor_1.BN(Math.pow(10, (sizeDecimals + 3))))
1567
- .div(sizeAmount.add(collateralAmount)),
1582
+ .div(sizeAmount.add(newCollateralAmount)),
1568
1583
  exponent: new anchor_1.BN(-1 * constants_1.RATE_DECIMALS),
1569
1584
  confidence: constants_1.BN_ZERO,
1570
1585
  timestamp: constants_1.BN_ZERO
@@ -21,6 +21,7 @@ export interface CustodyConfig {
21
21
  export interface MarketConfig {
22
22
  marketId: number;
23
23
  marketAccount: PublicKey;
24
+ marketCorrelation: boolean;
24
25
  pool: PublicKey;
25
26
  targetCustody: PublicKey;
26
27
  collateralCustody: PublicKey;
@@ -167,7 +167,7 @@ var PoolConfig = (function () {
167
167
  var markets;
168
168
  try {
169
169
  markets = poolConfig['markets'].map(function (i) {
170
- return __assign(__assign({}, i), { marketAccount: new web3_js_1.PublicKey(i.marketAccount), pool: new web3_js_1.PublicKey(i.pool), targetCustody: new web3_js_1.PublicKey(i.targetCustody), collateralCustody: new web3_js_1.PublicKey(i.collateralCustody), side: i.side === 'long' ? types_1.Side.Long : types_1.Side.Short, maxLev: i.maxLev, targetMint: new web3_js_1.PublicKey(i.targetMint), collateralMint: new web3_js_1.PublicKey(i.collateralMint) });
170
+ return __assign(__assign({}, i), { marketAccount: new web3_js_1.PublicKey(i.marketAccount), marketCorrelation: i.marketCorrelation, pool: new web3_js_1.PublicKey(i.pool), targetCustody: new web3_js_1.PublicKey(i.targetCustody), collateralCustody: new web3_js_1.PublicKey(i.collateralCustody), side: i.side === 'long' ? types_1.Side.Long : types_1.Side.Short, maxLev: i.maxLev, targetMint: new web3_js_1.PublicKey(i.targetMint), collateralMint: new web3_js_1.PublicKey(i.collateralMint) });
171
171
  });
172
172
  }
173
173
  catch (error) {
@@ -189,6 +189,7 @@
189
189
  "markets": [
190
190
  {
191
191
  "marketId": 0,
192
+ "marketCorrelation": true,
192
193
  "marketAccount": "3vHoXbUvGhEHFsLUmxyC6VWsbYDreb1zMn9TAp5ijN5K",
193
194
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
194
195
  "targetCustody": "BjzZ33nMnbXZ7rw3Uy9Uu1W7BDCzzugqkiZoamJHRKF7",
@@ -203,6 +204,7 @@
203
204
  {
204
205
  "marketId": 1,
205
206
  "marketAccount": "9tvuK63WUV2mgWt7AvWUm7kRUpFKsRX1jewyJ21VTWsM",
207
+ "marketCorrelation": true,
206
208
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
207
209
  "targetCustody": "BjzZ33nMnbXZ7rw3Uy9Uu1W7BDCzzugqkiZoamJHRKF7",
208
210
  "collateralCustody": "5N2St2e1BdgWsJiXxfetwWKkHS1BYochAp1ruPFJUfgY",
@@ -216,6 +218,7 @@
216
218
  {
217
219
  "marketId": 2,
218
220
  "marketAccount": "GGV4VHTAEyWGyGubXTiQZiPajCEtGv2Ed2G2BHmY3zNZ",
221
+ "marketCorrelation": true,
219
222
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
220
223
  "targetCustody": "Ghi8YvZeDEzPAGvve7we3Rthquk84CULra6ERkGQF1Rv",
221
224
  "collateralCustody": "Ghi8YvZeDEzPAGvve7we3Rthquk84CULra6ERkGQF1Rv",
@@ -229,6 +232,7 @@
229
232
  {
230
233
  "marketId": 3,
231
234
  "marketAccount": "AAHFmCVd4JXXrLFmGBataeCJ6CwrYs4cYMiebXmBFvPE",
235
+ "marketCorrelation": true,
232
236
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
233
237
  "targetCustody": "Ghi8YvZeDEzPAGvve7we3Rthquk84CULra6ERkGQF1Rv",
234
238
  "collateralCustody": "5N2St2e1BdgWsJiXxfetwWKkHS1BYochAp1ruPFJUfgY",
@@ -242,6 +246,7 @@
242
246
  {
243
247
  "marketId": 4,
244
248
  "marketAccount": "8r5MBC3oULSWdm69yn2q3gBLp6h1AL4Wo11LBzcCZGWJ",
249
+ "marketCorrelation": true,
245
250
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
246
251
  "targetCustody": "4oX9yQW5oW4MEjphzMuUV9gn5VQvjCL1LwkBqrSLscQ9",
247
252
  "collateralCustody": "4oX9yQW5oW4MEjphzMuUV9gn5VQvjCL1LwkBqrSLscQ9",
@@ -255,6 +260,7 @@
255
260
  {
256
261
  "marketId": 5,
257
262
  "marketAccount": "GxkxRPheec7f9ZbamzeWdiHiMbrgyoUV7MFPxXW1387q",
263
+ "marketCorrelation": true,
258
264
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
259
265
  "targetCustody": "4oX9yQW5oW4MEjphzMuUV9gn5VQvjCL1LwkBqrSLscQ9",
260
266
  "collateralCustody": "5N2St2e1BdgWsJiXxfetwWKkHS1BYochAp1ruPFJUfgY",
@@ -268,6 +274,7 @@
268
274
  {
269
275
  "marketId": 6,
270
276
  "marketAccount": "EHUaxjoTqTJTWRwQQNy1Wq4sDGdua5r6YGvFzPcuA1eV",
277
+ "marketCorrelation": true,
271
278
  "pool": "HfF7GCcEc76xubFCHLLXRdYcgRzwjEPdfKWqzRS8Ncog",
272
279
  "targetCustody": "BjzZ33nMnbXZ7rw3Uy9Uu1W7BDCzzugqkiZoamJHRKF7",
273
280
  "collateralCustody": "BA4Au3RCBQyZf3f55RQBsxbaHpE32qLnoGoYJYwkCQPg",
@@ -480,6 +487,7 @@
480
487
  {
481
488
  "marketId": 0,
482
489
  "marketAccount": "88zawd3Rw6tknWvgEm8QBgBuf5Y2GTeA18S788qUrSnM",
490
+ "marketCorrelation": true,
483
491
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
484
492
  "targetCustody": "3j1xiP6GckKCzsTm6sni5iy6zrpZX5BWZGbKCq5buk4d",
485
493
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -493,6 +501,7 @@
493
501
  {
494
502
  "marketId": 1,
495
503
  "marketAccount": "G2rj5artQzevbsQtCJ1rkDt3Pd5b6ZYAf8e9AjZPipui",
504
+ "marketCorrelation": true,
496
505
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
497
506
  "targetCustody": "3j1xiP6GckKCzsTm6sni5iy6zrpZX5BWZGbKCq5buk4d",
498
507
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -506,6 +515,7 @@
506
515
  {
507
516
  "marketId": 2,
508
517
  "marketAccount": "Caqzhuj2Hj5MUwQigdtLNokLZbuqs6NrcmwWbMsSqwqH",
518
+ "marketCorrelation": true,
509
519
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
510
520
  "targetCustody": "GMqeFJ8LG5BcrRtVgvfQuA7giBETcY76ikC8h5hPh59h",
511
521
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -519,6 +529,7 @@
519
529
  {
520
530
  "marketId": 3,
521
531
  "marketAccount": "7JwSejqoicRSzks3mKwk9TPp5rUNhUttKx2yzgU8UGtc",
532
+ "marketCorrelation": true,
522
533
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
523
534
  "targetCustody": "GMqeFJ8LG5BcrRtVgvfQuA7giBETcY76ikC8h5hPh59h",
524
535
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -532,6 +543,7 @@
532
543
  {
533
544
  "marketId": 4,
534
545
  "marketAccount": "DXbQZYeT1LfyJvr86wnaMhwkPaFHazmHJkuyb1XzCmo3",
546
+ "marketCorrelation": true,
535
547
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
536
548
  "targetCustody": "7WWSRZSgFmp7UDfD1KHWYJ2CqXVbpCdQ5cQfgBxjpFeL",
537
549
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -545,6 +557,7 @@
545
557
  {
546
558
  "marketId": 5,
547
559
  "marketAccount": "2CvUh7whei331D2djP4W2QwV7UUiMbpKgfJNSDojcjne",
560
+ "marketCorrelation": true,
548
561
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
549
562
  "targetCustody": "7WWSRZSgFmp7UDfD1KHWYJ2CqXVbpCdQ5cQfgBxjpFeL",
550
563
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -558,6 +571,7 @@
558
571
  {
559
572
  "marketId": 6,
560
573
  "marketAccount": "8p5imag5r4JBZoxb7Wq8ysgu9LpkPix7n4i9z6TJZDt7",
574
+ "marketCorrelation": true,
561
575
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
562
576
  "targetCustody": "Ah1Kd146CtAexGvbVNWRMQ8aXJTJDf4AopNLQZKGfYck",
563
577
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -571,6 +585,7 @@
571
585
  {
572
586
  "marketId": 7,
573
587
  "marketAccount": "6pKnzQwmrSCz6HK4C4qXUscysGpQj381ksmNwmVHSdJ4",
588
+ "marketCorrelation": true,
574
589
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
575
590
  "targetCustody": "Ah1Kd146CtAexGvbVNWRMQ8aXJTJDf4AopNLQZKGfYck",
576
591
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -584,6 +599,7 @@
584
599
  {
585
600
  "marketId": 8,
586
601
  "marketAccount": "CxC8u5SBCtu9a53x7jSZtaAuJoKYA2ukXLuMuB9NtqoQ",
602
+ "marketCorrelation": true,
587
603
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
588
604
  "targetCustody": "AFrALLNuCbBBnhUvEjxrK96e8yjComh2xuTak1y5TEJL",
589
605
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -597,6 +613,7 @@
597
613
  {
598
614
  "marketId": 9,
599
615
  "marketAccount": "JCwYots22PTcPn2XQz9un15kMj6tqEYjUKgQaay5sMY1",
616
+ "marketCorrelation": true,
600
617
  "pool": "KwhpybQPe9xuZFmAfcjLHj3ukownWex1ratyascAC1X",
601
618
  "targetCustody": "AFrALLNuCbBBnhUvEjxrK96e8yjComh2xuTak1y5TEJL",
602
619
  "collateralCustody": "9yANuRkTRxb9jjxnG1h3xcUz2kM8fJgDbdYJV4PfZ7dy",
@@ -836,6 +853,7 @@
836
853
  {
837
854
  "marketId": 0,
838
855
  "marketAccount": "5QQstJ2LpeHESWqGTWBw5aid8h4cdVUjXU61R84Pj2jr",
856
+ "marketCorrelation": true,
839
857
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
840
858
  "targetCustody": "GvxrQuz7tHxqiyfJNnGKh4GAPYycZ3cvqgmwifduiBCf",
841
859
  "collateralCustody": "GvxrQuz7tHxqiyfJNnGKh4GAPYycZ3cvqgmwifduiBCf",
@@ -849,6 +867,7 @@
849
867
  {
850
868
  "marketId": 1,
851
869
  "marketAccount": "Hi8kSmbtzucZpEYxvcq2H1QuyUCRuY3m7WGmTF2RhkVw",
870
+ "marketCorrelation": true,
852
871
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
853
872
  "targetCustody": "GvxrQuz7tHxqiyfJNnGKh4GAPYycZ3cvqgmwifduiBCf",
854
873
  "collateralCustody": "6fiadNoZVTha5NdaktZgJ3PHm7bncZpiqGvFbCsrUv72",
@@ -862,6 +881,7 @@
862
881
  {
863
882
  "marketId": 2,
864
883
  "marketAccount": "9V9eYLhVV13VoSfi3McfMcN7ie4WNkRdTbHggkaT8QCQ",
884
+ "marketCorrelation": true,
865
885
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
866
886
  "targetCustody": "A8SKWb3pwbFUtxLQhnpUTfy7CkxBpWGvTLYyJyWHCMWv",
867
887
  "collateralCustody": "A8SKWb3pwbFUtxLQhnpUTfy7CkxBpWGvTLYyJyWHCMWv",
@@ -875,6 +895,7 @@
875
895
  {
876
896
  "marketId": 3,
877
897
  "marketAccount": "2By2fgwfZQetZ56414KBDMZwNBstg3GAJtEePQtf3Aty",
898
+ "marketCorrelation": true,
878
899
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
879
900
  "targetCustody": "A8SKWb3pwbFUtxLQhnpUTfy7CkxBpWGvTLYyJyWHCMWv",
880
901
  "collateralCustody": "6fiadNoZVTha5NdaktZgJ3PHm7bncZpiqGvFbCsrUv72",
@@ -888,6 +909,7 @@
888
909
  {
889
910
  "marketId": 4,
890
911
  "marketAccount": "7gnDo7scDFYmEnXW2JrGRzCrynmbakoCMqaEo7d2fydG",
912
+ "marketCorrelation": true,
891
913
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
892
914
  "targetCustody": "43f5Y7ysVysbkwqnRSjggCPPj4gvuaVnmgz9MkPUk88L",
893
915
  "collateralCustody": "43f5Y7ysVysbkwqnRSjggCPPj4gvuaVnmgz9MkPUk88L",
@@ -901,6 +923,7 @@
901
923
  {
902
924
  "marketId": 5,
903
925
  "marketAccount": "G7RdCWx4eNfLdagGp4H2tKwhTi9JihBozVLGMVduF1Xe",
926
+ "marketCorrelation": true,
904
927
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
905
928
  "targetCustody": "43f5Y7ysVysbkwqnRSjggCPPj4gvuaVnmgz9MkPUk88L",
906
929
  "collateralCustody": "6fiadNoZVTha5NdaktZgJ3PHm7bncZpiqGvFbCsrUv72",
@@ -914,6 +937,7 @@
914
937
  {
915
938
  "marketId": 6,
916
939
  "marketAccount": "Dk2P1xDyewb9nxsMacw6gfuhTb3DqPZM1Sm97K66CTQK",
940
+ "marketCorrelation": true,
917
941
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
918
942
  "targetCustody": "58NxGYaVq1CXpNJUsvUDGgBeBtMcoGHP8u58KSk2bagE",
919
943
  "collateralCustody": "58NxGYaVq1CXpNJUsvUDGgBeBtMcoGHP8u58KSk2bagE",
@@ -927,6 +951,7 @@
927
951
  {
928
952
  "marketId": 7,
929
953
  "marketAccount": "9mMAN4hFvw5AGB6eNay1WvNsGoyK9xcBafZ5tVbHcHQq",
954
+ "marketCorrelation": true,
930
955
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
931
956
  "targetCustody": "58NxGYaVq1CXpNJUsvUDGgBeBtMcoGHP8u58KSk2bagE",
932
957
  "collateralCustody": "6fiadNoZVTha5NdaktZgJ3PHm7bncZpiqGvFbCsrUv72",
@@ -940,6 +965,7 @@
940
965
  {
941
966
  "marketId": 8,
942
967
  "marketAccount": "aZCThBPnK1j8feCAKnVtS3QjULzNwPDy4a8V3FzbM9V",
968
+ "marketCorrelation": true,
943
969
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
944
970
  "targetCustody": "AuzpQGWBNTYKXj4pe5WPoT95dc2T7ouMWpjcriF9t4XS",
945
971
  "collateralCustody": "AuzpQGWBNTYKXj4pe5WPoT95dc2T7ouMWpjcriF9t4XS",
@@ -953,6 +979,7 @@
953
979
  {
954
980
  "marketId": 9,
955
981
  "marketAccount": "6u6QrwkmAF4kzk41FkjpLv8AbYaTtkRtbmVZsPSf7wSd",
982
+ "marketCorrelation": true,
956
983
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
957
984
  "targetCustody": "AuzpQGWBNTYKXj4pe5WPoT95dc2T7ouMWpjcriF9t4XS",
958
985
  "collateralCustody": "6fiadNoZVTha5NdaktZgJ3PHm7bncZpiqGvFbCsrUv72",
@@ -966,6 +993,7 @@
966
993
  {
967
994
  "marketId": 10,
968
995
  "marketAccount": "FaT568uYioPFsf2rFgSSFrNyrqHZfG9LZBReaq56dSYJ",
996
+ "marketCorrelation": true,
969
997
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
970
998
  "targetCustody": "5JtPiHFmkb1nv1Qvs3sryLgXmjs8p5iQexAseC2Ljjzg",
971
999
  "collateralCustody": "5JtPiHFmkb1nv1Qvs3sryLgXmjs8p5iQexAseC2Ljjzg",
@@ -979,6 +1007,7 @@
979
1007
  {
980
1008
  "marketId": 11,
981
1009
  "marketAccount": "Hfkgp91DXQivzd8XihGHh7ansPm1SFfosNZ5CN3yz1PW",
1010
+ "marketCorrelation": true,
982
1011
  "pool": "D6bfytnxoZBSzJM7fcixg5sgWJ2hj8SbwkPvb2r8XpbH",
983
1012
  "targetCustody": "5JtPiHFmkb1nv1Qvs3sryLgXmjs8p5iQexAseC2Ljjzg",
984
1013
  "collateralCustody": "6fiadNoZVTha5NdaktZgJ3PHm7bncZpiqGvFbCsrUv72",
@@ -1110,6 +1139,7 @@
1110
1139
  {
1111
1140
  "marketId": 0,
1112
1141
  "marketAccount": "DvvnSEZueicT9UN9WMvfYP3B4NQDgiNjjtbKLenLakxv",
1142
+ "marketCorrelation": true,
1113
1143
  "pool": "6HukhSeVVLQekKaGJYkwztBacjhKLKywVPrmcvccaYMz",
1114
1144
  "targetCustody": "7gfDTeMREaKcg3SMfrgVP7fjrstmrzzAeYCAcVaHTV9h",
1115
1145
  "collateralCustody": "7gfDTeMREaKcg3SMfrgVP7fjrstmrzzAeYCAcVaHTV9h",
@@ -1123,6 +1153,7 @@
1123
1153
  {
1124
1154
  "marketId": 1,
1125
1155
  "marketAccount": "3EYDn8VkY19QBStG4QtvLAdPScReLS7kuchhterF7ADP",
1156
+ "marketCorrelation": true,
1126
1157
  "pool": "6HukhSeVVLQekKaGJYkwztBacjhKLKywVPrmcvccaYMz",
1127
1158
  "targetCustody": "7gfDTeMREaKcg3SMfrgVP7fjrstmrzzAeYCAcVaHTV9h",
1128
1159
  "collateralCustody": "qFFbK8PHbNt4433AUTHHDsmDuQGTQhixc8t4sCzugG4",
@@ -1136,6 +1167,7 @@
1136
1167
  {
1137
1168
  "marketId": 2,
1138
1169
  "marketAccount": "FPYjBQg9PL1qjCEqSK6RDs4T9Lhip1uJytkpB7zzG35N",
1170
+ "marketCorrelation": true,
1139
1171
  "pool": "6HukhSeVVLQekKaGJYkwztBacjhKLKywVPrmcvccaYMz",
1140
1172
  "targetCustody": "Gw81Uk5LarYkoCtwY95b1uT8tqTyzYQf3WM3yvgi9N43",
1141
1173
  "collateralCustody": "Gw81Uk5LarYkoCtwY95b1uT8tqTyzYQf3WM3yvgi9N43",
@@ -1149,6 +1181,7 @@
1149
1181
  {
1150
1182
  "marketId": 3,
1151
1183
  "marketAccount": "A39w24T4wWqx9ZRk8dPKQjQL9xgwBhPGc1dBmFfBh4mY",
1184
+ "marketCorrelation": true,
1152
1185
  "pool": "6HukhSeVVLQekKaGJYkwztBacjhKLKywVPrmcvccaYMz",
1153
1186
  "targetCustody": "Gw81Uk5LarYkoCtwY95b1uT8tqTyzYQf3WM3yvgi9N43",
1154
1187
  "collateralCustody": "qFFbK8PHbNt4433AUTHHDsmDuQGTQhixc8t4sCzugG4",
@@ -1253,6 +1286,7 @@
1253
1286
  {
1254
1287
  "marketId": 0,
1255
1288
  "marketAccount": "DRMbqfx6No2MzRLtyo4RUaKExe4daiVAXKsX3F3RAK3u",
1289
+ "marketCorrelation": true,
1256
1290
  "pool": "DP1FnZjWzDjSMQA64BcMzUdpDpyAQ6723d5fpX4yTk5G",
1257
1291
  "targetCustody": "AMAea38ijDJuoq14mwxzQkGEyZEnjw69eqrMQ9uHPdyP",
1258
1292
  "collateralCustody": "AMAea38ijDJuoq14mwxzQkGEyZEnjw69eqrMQ9uHPdyP",
@@ -1266,6 +1300,7 @@
1266
1300
  {
1267
1301
  "marketId": 1,
1268
1302
  "marketAccount": "9X4S2ZeFdpoTe5LkEUZ6hPqkTo6k4LyYpBZJiwBVRj6",
1303
+ "marketCorrelation": true,
1269
1304
  "pool": "DP1FnZjWzDjSMQA64BcMzUdpDpyAQ6723d5fpX4yTk5G",
1270
1305
  "targetCustody": "AMAea38ijDJuoq14mwxzQkGEyZEnjw69eqrMQ9uHPdyP",
1271
1306
  "collateralCustody": "EtLnmKsmbTPH1mUhZSNU5ErEoFrSgYoxoKX8BSzEZmnn",
@@ -1370,6 +1405,7 @@
1370
1405
  {
1371
1406
  "marketId": 0,
1372
1407
  "marketAccount": "FULXckUCpsHnUsaXZNys4bFCbY5s2199SEg6eyeQuxTH",
1408
+ "marketCorrelation": true,
1373
1409
  "pool": "F8qWvHm5F288VodQ7zGLhnrbbRR3zDbae6aNE53HQ98f",
1374
1410
  "targetCustody": "ArnD1faZVVkkewX4HUSoDuht46egAtVvhDTFMJn3DkFo",
1375
1411
  "collateralCustody": "ArnD1faZVVkkewX4HUSoDuht46egAtVvhDTFMJn3DkFo",
@@ -1383,6 +1419,7 @@
1383
1419
  {
1384
1420
  "marketId": 1,
1385
1421
  "marketAccount": "GchNQzigTFP4bUuH3LwdoDSvn1fexHw84Gtjap8x8Ppm",
1422
+ "marketCorrelation": true,
1386
1423
  "pool": "F8qWvHm5F288VodQ7zGLhnrbbRR3zDbae6aNE53HQ98f",
1387
1424
  "targetCustody": "ArnD1faZVVkkewX4HUSoDuht46egAtVvhDTFMJn3DkFo",
1388
1425
  "collateralCustody": "888zpafZJEtPYp15HJocz45rw7kTr8BnEM9Hvcd7opy3",
@@ -1487,6 +1524,7 @@
1487
1524
  {
1488
1525
  "marketId": 0,
1489
1526
  "marketAccount": "53zJK3muUnpmp1LBZKYiiDsJLnqNw9vTWALVanaRMdyv",
1527
+ "marketCorrelation": true,
1490
1528
  "pool": "Crk3yzGpPCt9thXmV9wCkBM9nBq8EHhBct71ArkKY9wA",
1491
1529
  "targetCustody": "Ckt7Bzzq5S1aKukXZqMZov9i2gxJGAT2Yn4AunqkKdDP",
1492
1530
  "collateralCustody": "Ckt7Bzzq5S1aKukXZqMZov9i2gxJGAT2Yn4AunqkKdDP",
@@ -1500,6 +1538,7 @@
1500
1538
  {
1501
1539
  "marketId": 1,
1502
1540
  "marketAccount": "DvK3NQLuwEH525Yw8XchJySNYWiy1gZNY4wfPENBakA3",
1541
+ "marketCorrelation": true,
1503
1542
  "pool": "Crk3yzGpPCt9thXmV9wCkBM9nBq8EHhBct71ArkKY9wA",
1504
1543
  "targetCustody": "Ckt7Bzzq5S1aKukXZqMZov9i2gxJGAT2Yn4AunqkKdDP",
1505
1544
  "collateralCustody": "B1b3WnCbwrQC8yk6o5rVLGGJFD7BdQBLyaWsRw4Lqgp2",
@@ -1604,6 +1643,7 @@
1604
1643
  {
1605
1644
  "marketId": 0,
1606
1645
  "marketAccount": "VUP8ywiDqH5ZbEmUCmwrmUCNuETwbxSksono1BVj2jN",
1646
+ "marketCorrelation": true,
1607
1647
  "pool": "HAMrKdJu6UKaELV7hRy9d2ZQaaT4YHmdbac9HQGcSs4p",
1608
1648
  "targetCustody": "12UF24xdtkb2xuGA5qK74jE52JzeB29y1J3zKXsGRHNJ",
1609
1649
  "collateralCustody": "12UF24xdtkb2xuGA5qK74jE52JzeB29y1J3zKXsGRHNJ",
@@ -1617,6 +1657,7 @@
1617
1657
  {
1618
1658
  "marketId": 1,
1619
1659
  "marketAccount": "91ki4mEELMuEpweTMdSAuiykj3wTCsogEtVQsetRDnwQ",
1660
+ "marketCorrelation": true,
1620
1661
  "pool": "HAMrKdJu6UKaELV7hRy9d2ZQaaT4YHmdbac9HQGcSs4p",
1621
1662
  "targetCustody": "12UF24xdtkb2xuGA5qK74jE52JzeB29y1J3zKXsGRHNJ",
1622
1663
  "collateralCustody": "AaA92Zfjz3qDa2WQdqRZ7apdnvNDK5iaXuEoNYckgYE5",
@@ -1813,6 +1854,7 @@
1813
1854
  {
1814
1855
  "marketId": 0,
1815
1856
  "marketAccount": "7HkcVQpXAR9RB4aQhuV9TAXaSLWGbu5JMs6M3EWB3Gj2",
1857
+ "marketCorrelation": true,
1816
1858
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1817
1859
  "targetCustody": "8BHHyTJKvZXQkjCeigdkH7hAFcnfX5ecXwysjLnG18FT",
1818
1860
  "collateralCustody": "8BHHyTJKvZXQkjCeigdkH7hAFcnfX5ecXwysjLnG18FT",
@@ -1826,6 +1868,7 @@
1826
1868
  {
1827
1869
  "marketId": 1,
1828
1870
  "marketAccount": "Fj1hwfeccqjSAKGkX6jEbJZ2auW2zWsoYPjzugwKBTpJ",
1871
+ "marketCorrelation": true,
1829
1872
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1830
1873
  "targetCustody": "8BHHyTJKvZXQkjCeigdkH7hAFcnfX5ecXwysjLnG18FT",
1831
1874
  "collateralCustody": "AqZSmo7tVgPrZ72kSpRugN8pTCBTHovw65qPikP15dmK",
@@ -1839,6 +1882,7 @@
1839
1882
  {
1840
1883
  "marketId": 2,
1841
1884
  "marketAccount": "GZ9HHuNoz17Tj6xBks1ZRAN4k4h47E88iEeBoeZUTNbX",
1885
+ "marketCorrelation": true,
1842
1886
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1843
1887
  "targetCustody": "F8peHuGzRwLAgRXm9CGQNKqpWkxTkJQVZw6uLJPx12TV",
1844
1888
  "collateralCustody": "F8peHuGzRwLAgRXm9CGQNKqpWkxTkJQVZw6uLJPx12TV",
@@ -1852,6 +1896,7 @@
1852
1896
  {
1853
1897
  "marketId": 3,
1854
1898
  "marketAccount": "FXVWNVv1y7vS7boZmTWq9TujhdZLfGmrWFDEqnTpg9zU",
1899
+ "marketCorrelation": true,
1855
1900
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1856
1901
  "targetCustody": "F8peHuGzRwLAgRXm9CGQNKqpWkxTkJQVZw6uLJPx12TV",
1857
1902
  "collateralCustody": "AqZSmo7tVgPrZ72kSpRugN8pTCBTHovw65qPikP15dmK",
@@ -1865,6 +1910,7 @@
1865
1910
  {
1866
1911
  "marketId": 4,
1867
1912
  "marketAccount": "4xZb6fic3bDcXG38tXzjQ5n7qRpPoQt7P2rRfEPfYYmz",
1913
+ "marketCorrelation": true,
1868
1914
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1869
1915
  "targetCustody": "4Xtj4GEPwHjeXeDRmcAyAoZyPH4bsEQ4qFyhcK8bBGgy",
1870
1916
  "collateralCustody": "4Xtj4GEPwHjeXeDRmcAyAoZyPH4bsEQ4qFyhcK8bBGgy",
@@ -1878,6 +1924,7 @@
1878
1924
  {
1879
1925
  "marketId": 5,
1880
1926
  "marketAccount": "96GfXnGddBdZbFfbLAcpj4BLAvKj8VAoAti97vhvsizG",
1927
+ "marketCorrelation": true,
1881
1928
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1882
1929
  "targetCustody": "4Xtj4GEPwHjeXeDRmcAyAoZyPH4bsEQ4qFyhcK8bBGgy",
1883
1930
  "collateralCustody": "AqZSmo7tVgPrZ72kSpRugN8pTCBTHovw65qPikP15dmK",
@@ -1891,6 +1938,7 @@
1891
1938
  {
1892
1939
  "marketId": 6,
1893
1940
  "marketAccount": "BWhe2aFnpcmtLKVPWCgxeUuyKCUFKVMicnXVYK8iYyEz",
1941
+ "marketCorrelation": true,
1894
1942
  "pool": "7jA4ZSGwaBxXk5EmPKDCSc5RtZNHxyoxy22iQt3D2mH9",
1895
1943
  "targetCustody": "8BHHyTJKvZXQkjCeigdkH7hAFcnfX5ecXwysjLnG18FT",
1896
1944
  "collateralCustody": "ATbBmmYoe8boViFtxYV2QLkX6b194sHMG54gFu9pNCWa",
@@ -2103,6 +2151,7 @@
2103
2151
  {
2104
2152
  "marketId": 0,
2105
2153
  "marketAccount": "B71om3HUqZ64e9wRj1R8LbWUFvw6cde4yuU4yXvo4GYv",
2154
+ "marketCorrelation": true,
2106
2155
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2107
2156
  "targetCustody": "3de6DnZhfv7TmuaAsfzBtkmueWxLQuJ772ATYB7GCguW",
2108
2157
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2116,6 +2165,7 @@
2116
2165
  {
2117
2166
  "marketId": 1,
2118
2167
  "marketAccount": "9wV2Y87ix64cFP6B3VNxuXiabTPYgAm65MuqgivXVUn7",
2168
+ "marketCorrelation": true,
2119
2169
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2120
2170
  "targetCustody": "3de6DnZhfv7TmuaAsfzBtkmueWxLQuJ772ATYB7GCguW",
2121
2171
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2129,6 +2179,7 @@
2129
2179
  {
2130
2180
  "marketId": 2,
2131
2181
  "marketAccount": "33tCg8Mao8ga7tC6XaFdAVCswXx1rmSWQ15k3bafv2Nc",
2182
+ "marketCorrelation": true,
2132
2183
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2133
2184
  "targetCustody": "4x2hq8Jtji4H5SRDrZenBtpsCuJh8Rt8hV1sBACxGuRn",
2134
2185
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2142,6 +2193,7 @@
2142
2193
  {
2143
2194
  "marketId": 3,
2144
2195
  "marketAccount": "5jZUiUV8BXdE1xDkVShLTKmPHhM4mk7vo9mASa3yZJZD",
2196
+ "marketCorrelation": true,
2145
2197
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2146
2198
  "targetCustody": "4x2hq8Jtji4H5SRDrZenBtpsCuJh8Rt8hV1sBACxGuRn",
2147
2199
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2155,6 +2207,7 @@
2155
2207
  {
2156
2208
  "marketId": 4,
2157
2209
  "marketAccount": "4ryTFNWPE1J1X3akTrXjygS47b9agM9uGGByc1TvxbdN",
2210
+ "marketCorrelation": true,
2158
2211
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2159
2212
  "targetCustody": "EoCbHAPYhUPZY977AKU7j4XU5rgYnbjQMnB9nqZYCrrG",
2160
2213
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2168,6 +2221,7 @@
2168
2221
  {
2169
2222
  "marketId": 5,
2170
2223
  "marketAccount": "Cz3FVEBdQ2Ns2uorfM6ZjWbvqMNRSnSHaTFprAcKUzEJ",
2224
+ "marketCorrelation": true,
2171
2225
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2172
2226
  "targetCustody": "EoCbHAPYhUPZY977AKU7j4XU5rgYnbjQMnB9nqZYCrrG",
2173
2227
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2181,6 +2235,7 @@
2181
2235
  {
2182
2236
  "marketId": 6,
2183
2237
  "marketAccount": "9DsZe98fHrdqpswQEy1Hj7rnNdFJ8CnHdU1bxLAHgMge",
2238
+ "marketCorrelation": true,
2184
2239
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2185
2240
  "targetCustody": "HP4DsgavjjEDVgbStiNuYdCHwE2kNS5LSaEUXcgAaNS7",
2186
2241
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2194,6 +2249,7 @@
2194
2249
  {
2195
2250
  "marketId": 7,
2196
2251
  "marketAccount": "5bZp6dEDMq3Bb7r4YidXtvffZdxfsU3qZ9ueSZt4vu6S",
2252
+ "marketCorrelation": true,
2197
2253
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2198
2254
  "targetCustody": "HP4DsgavjjEDVgbStiNuYdCHwE2kNS5LSaEUXcgAaNS7",
2199
2255
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2207,6 +2263,7 @@
2207
2263
  {
2208
2264
  "marketId": 8,
2209
2265
  "marketAccount": "6yCsUoaTU4JVNikkEXfCV7KKDh7FcMY23hcvKk9dqhqf",
2266
+ "marketCorrelation": true,
2210
2267
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2211
2268
  "targetCustody": "GcMKm7441Vx3rtUuE4qQzV7tWmv8mHWShZ9CerasWuwc",
2212
2269
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2220,6 +2277,7 @@
2220
2277
  {
2221
2278
  "marketId": 9,
2222
2279
  "marketAccount": "BnA1TVMsE4jsrdCwo38n6EwpRCkKzVxwVhXE7izmBd8F",
2280
+ "marketCorrelation": true,
2223
2281
  "pool": "5MCtcNsF3dxna8ArzMamyciWDV3TBkiAzY1NqLtNiXvw",
2224
2282
  "targetCustody": "GcMKm7441Vx3rtUuE4qQzV7tWmv8mHWShZ9CerasWuwc",
2225
2283
  "collateralCustody": "8DrHPGQq4dBrSYV2oy8oDi3sQDSgeCaAe1jq3s9tSh42",
@@ -2459,6 +2517,7 @@
2459
2517
  {
2460
2518
  "marketId": 0,
2461
2519
  "marketAccount": "Fkg1HVxR6jMoQUgUegLUcjUifRSx3Dvr33PGGfVp3W77",
2520
+ "marketCorrelation": true,
2462
2521
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2463
2522
  "targetCustody": "D5FjET7npedKke6fxyqonk7Fr3iDpHEsWMTtdnArFewp",
2464
2523
  "collateralCustody": "D5FjET7npedKke6fxyqonk7Fr3iDpHEsWMTtdnArFewp",
@@ -2472,6 +2531,7 @@
2472
2531
  {
2473
2532
  "marketId": 1,
2474
2533
  "marketAccount": "5mXpc1W2Sm93tT9GSbjpcm8o1VTSMWbCbc3Qgc9fBX2P",
2534
+ "marketCorrelation": true,
2475
2535
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2476
2536
  "targetCustody": "D5FjET7npedKke6fxyqonk7Fr3iDpHEsWMTtdnArFewp",
2477
2537
  "collateralCustody": "4BwjABgU78jqjKeyCemyCCLwEtFdZ8JSeP9ogPMQS8Zg",
@@ -2485,6 +2545,7 @@
2485
2545
  {
2486
2546
  "marketId": 2,
2487
2547
  "marketAccount": "AYUfYB4FNVsvhC1tHxACirxYV3UPfMrKpq6MKabCuw9Y",
2548
+ "marketCorrelation": true,
2488
2549
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2489
2550
  "targetCustody": "BsWPLoGv392eTqtgCyqV9VLuTs2KhkhfzgMtFVF587oA",
2490
2551
  "collateralCustody": "BsWPLoGv392eTqtgCyqV9VLuTs2KhkhfzgMtFVF587oA",
@@ -2498,6 +2559,7 @@
2498
2559
  {
2499
2560
  "marketId": 3,
2500
2561
  "marketAccount": "38zQypDNfUhthfZDgEvp33yWWiBqGSdHyZ4wwnDGTap3",
2562
+ "marketCorrelation": true,
2501
2563
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2502
2564
  "targetCustody": "BsWPLoGv392eTqtgCyqV9VLuTs2KhkhfzgMtFVF587oA",
2503
2565
  "collateralCustody": "4BwjABgU78jqjKeyCemyCCLwEtFdZ8JSeP9ogPMQS8Zg",
@@ -2511,6 +2573,7 @@
2511
2573
  {
2512
2574
  "marketId": 4,
2513
2575
  "marketAccount": "3Hi1EDVqdYBzcbiSAdeiJksgK7QrryY2cXZwCwJPq3E3",
2576
+ "marketCorrelation": true,
2514
2577
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2515
2578
  "targetCustody": "Du9y3QF4DRuBqNaTSobJ8a84HXnzgA8hf5Qgbgh4nviu",
2516
2579
  "collateralCustody": "Du9y3QF4DRuBqNaTSobJ8a84HXnzgA8hf5Qgbgh4nviu",
@@ -2524,6 +2587,7 @@
2524
2587
  {
2525
2588
  "marketId": 5,
2526
2589
  "marketAccount": "ELng4KqEbAbxHDPeREwTnB2oaQBPxoNTqXFBQ1ZUGUio",
2590
+ "marketCorrelation": true,
2527
2591
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2528
2592
  "targetCustody": "Du9y3QF4DRuBqNaTSobJ8a84HXnzgA8hf5Qgbgh4nviu",
2529
2593
  "collateralCustody": "4BwjABgU78jqjKeyCemyCCLwEtFdZ8JSeP9ogPMQS8Zg",
@@ -2537,6 +2601,7 @@
2537
2601
  {
2538
2602
  "marketId": 6,
2539
2603
  "marketAccount": "9zvixTyYoxSeiEW1Acb3aScdi6HUPbSGQqTLa1PinAZb",
2604
+ "marketCorrelation": true,
2540
2605
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2541
2606
  "targetCustody": "7DLv5QVuRizNG4P5ak8jZRdn9PeSETSeGogzPMh6p3WU",
2542
2607
  "collateralCustody": "7DLv5QVuRizNG4P5ak8jZRdn9PeSETSeGogzPMh6p3WU",
@@ -2550,6 +2615,7 @@
2550
2615
  {
2551
2616
  "marketId": 7,
2552
2617
  "marketAccount": "7AcT3XJsLT97MeXUpai71zEuFGdg5QetbTDTQheWMqFT",
2618
+ "marketCorrelation": true,
2553
2619
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2554
2620
  "targetCustody": "7DLv5QVuRizNG4P5ak8jZRdn9PeSETSeGogzPMh6p3WU",
2555
2621
  "collateralCustody": "4BwjABgU78jqjKeyCemyCCLwEtFdZ8JSeP9ogPMQS8Zg",
@@ -2563,6 +2629,7 @@
2563
2629
  {
2564
2630
  "marketId": 8,
2565
2631
  "marketAccount": "CmKDkRzjB4sGiVqui7JPKL5wARFjcryPNFTbwDgPNxzB",
2632
+ "marketCorrelation": true,
2566
2633
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2567
2634
  "targetCustody": "4t4CxpF8cjtgdiVKNgpsM5i7K3C1zUpvUcbG4hCToNfD",
2568
2635
  "collateralCustody": "4t4CxpF8cjtgdiVKNgpsM5i7K3C1zUpvUcbG4hCToNfD",
@@ -2576,6 +2643,7 @@
2576
2643
  {
2577
2644
  "marketId": 9,
2578
2645
  "marketAccount": "8nY84A5Pmw4DVkrAUXMsSQ7QgzWFw68tzsZnJrMqZohb",
2646
+ "marketCorrelation": true,
2579
2647
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2580
2648
  "targetCustody": "4t4CxpF8cjtgdiVKNgpsM5i7K3C1zUpvUcbG4hCToNfD",
2581
2649
  "collateralCustody": "4BwjABgU78jqjKeyCemyCCLwEtFdZ8JSeP9ogPMQS8Zg",
@@ -2589,6 +2657,7 @@
2589
2657
  {
2590
2658
  "marketId": 10,
2591
2659
  "marketAccount": "5MyvTFC9WrYNpkiMJLCvd1N8zUCgFGxQFEuQMV1AbM1Y",
2660
+ "marketCorrelation": true,
2592
2661
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2593
2662
  "targetCustody": "DHaP6PyLpgugW3NumW8GpMddbwNKpnckhet9ec92qE5p",
2594
2663
  "collateralCustody": "DHaP6PyLpgugW3NumW8GpMddbwNKpnckhet9ec92qE5p",
@@ -2602,6 +2671,7 @@
2602
2671
  {
2603
2672
  "marketId": 11,
2604
2673
  "marketAccount": "tkzeXG2G7bzmCSZsZcYzXMeifMLbaF9hJBM7ao2gt2Y",
2674
+ "marketCorrelation": true,
2605
2675
  "pool": "FpRXePeSYyPZrBKrCSvLNSQGYT6gkgZXGDCBWVVRkNRT",
2606
2676
  "targetCustody": "DHaP6PyLpgugW3NumW8GpMddbwNKpnckhet9ec92qE5p",
2607
2677
  "collateralCustody": "4BwjABgU78jqjKeyCemyCCLwEtFdZ8JSeP9ogPMQS8Zg",
@@ -2733,6 +2803,7 @@
2733
2803
  {
2734
2804
  "marketId": 0,
2735
2805
  "marketAccount": "GfSgg8DkT7GQwAcbnvwokuy2rzDR6X9Zdc13JtTdTGyw",
2806
+ "marketCorrelation": true,
2736
2807
  "pool": "2SLfjsonPtdBugZke3UJzQ8s7DcHQHJxqUuVN1wrthnc",
2737
2808
  "targetCustody": "DtmPaayiEidB5VQEZXCv5g54F5aaTguCQXck13wfE7Sp",
2738
2809
  "collateralCustody": "DtmPaayiEidB5VQEZXCv5g54F5aaTguCQXck13wfE7Sp",
@@ -2746,6 +2817,7 @@
2746
2817
  {
2747
2818
  "marketId": 1,
2748
2819
  "marketAccount": "6KaEvCmhy3YwqikB2MsmzTKWR7HJsSmmmPaoaYRTxg71",
2820
+ "marketCorrelation": true,
2749
2821
  "pool": "2SLfjsonPtdBugZke3UJzQ8s7DcHQHJxqUuVN1wrthnc",
2750
2822
  "targetCustody": "DtmPaayiEidB5VQEZXCv5g54F5aaTguCQXck13wfE7Sp",
2751
2823
  "collateralCustody": "9ikjiYhjcNhGF7t6zfsDpXh2MwCT2ydm5rFsB4yN3XEs",
@@ -2759,6 +2831,7 @@
2759
2831
  {
2760
2832
  "marketId": 2,
2761
2833
  "marketAccount": "H9h7SvUvLZzkVjrpj5XmrryLYrVzyWtjgW8MnrC7vofL",
2834
+ "marketCorrelation": true,
2762
2835
  "pool": "2SLfjsonPtdBugZke3UJzQ8s7DcHQHJxqUuVN1wrthnc",
2763
2836
  "targetCustody": "D3o8xWXiaCx3JfWAFn2PGtGVChXUM2NtA7zLLZ7jSY4Z",
2764
2837
  "collateralCustody": "D3o8xWXiaCx3JfWAFn2PGtGVChXUM2NtA7zLLZ7jSY4Z",
@@ -2772,6 +2845,7 @@
2772
2845
  {
2773
2846
  "marketId": 3,
2774
2847
  "marketAccount": "13rECe3spGy1A8SqtRP9xv3PHeUEwqgft2Ur2Qxzkfji",
2848
+ "marketCorrelation": true,
2775
2849
  "pool": "2SLfjsonPtdBugZke3UJzQ8s7DcHQHJxqUuVN1wrthnc",
2776
2850
  "targetCustody": "D3o8xWXiaCx3JfWAFn2PGtGVChXUM2NtA7zLLZ7jSY4Z",
2777
2851
  "collateralCustody": "9ikjiYhjcNhGF7t6zfsDpXh2MwCT2ydm5rFsB4yN3XEs",
@@ -2876,6 +2950,7 @@
2876
2950
  {
2877
2951
  "marketId": 0,
2878
2952
  "marketAccount": "YypLTvzuQhHN36oz2CcyxfNXPcp9BEURBVvftfzZnLM",
2953
+ "marketCorrelation": true,
2879
2954
  "pool": "74MmsAH8H4S95KbBgWA4XP4vHcxe7jxEopjUkMabQUa",
2880
2955
  "targetCustody": "8Z94RGNLFuAxxgi3e4TQ2mxsmD4JJypxFTVaTw5BANC7",
2881
2956
  "collateralCustody": "8Z94RGNLFuAxxgi3e4TQ2mxsmD4JJypxFTVaTw5BANC7",
@@ -2889,6 +2964,7 @@
2889
2964
  {
2890
2965
  "marketId": 1,
2891
2966
  "marketAccount": "F8Ac9tLngosbTtawdHzQ6dkFBHmkff6ZLX1YMk9N4yiR",
2967
+ "marketCorrelation": true,
2892
2968
  "pool": "74MmsAH8H4S95KbBgWA4XP4vHcxe7jxEopjUkMabQUa",
2893
2969
  "targetCustody": "8Z94RGNLFuAxxgi3e4TQ2mxsmD4JJypxFTVaTw5BANC7",
2894
2970
  "collateralCustody": "6nMH1Yz7dDgqE4qiFP7FESD233zDBexuBsefGSshAJnM",
@@ -2993,6 +3069,7 @@
2993
3069
  {
2994
3070
  "marketId": 0,
2995
3071
  "marketAccount": "5imEjk3DH84hj5ZwnusPndzz2EX14rypTQnFvmq7zQWT",
3072
+ "marketCorrelation": true,
2996
3073
  "pool": "CVdbySirAWcygBo3WsmJH1QPnQi3oyDaDWv5C3d3xQAH",
2997
3074
  "targetCustody": "F5JkHhc88PgvtPMdQfgZUZzbKDvbJPvSeDkZ2r2QL1P7",
2998
3075
  "collateralCustody": "F5JkHhc88PgvtPMdQfgZUZzbKDvbJPvSeDkZ2r2QL1P7",
@@ -3006,6 +3083,7 @@
3006
3083
  {
3007
3084
  "marketId": 1,
3008
3085
  "marketAccount": "3A4Utfy9yQnLoNVpoocWzUXgRuWHeUVhanKNgnBF8krs",
3086
+ "marketCorrelation": true,
3009
3087
  "pool": "CVdbySirAWcygBo3WsmJH1QPnQi3oyDaDWv5C3d3xQAH",
3010
3088
  "targetCustody": "F5JkHhc88PgvtPMdQfgZUZzbKDvbJPvSeDkZ2r2QL1P7",
3011
3089
  "collateralCustody": "AJWCQ8atLYkjKDQ2mBvRx2kUqwkADghZaWwJyk5rq86g",
@@ -3110,6 +3188,7 @@
3110
3188
  {
3111
3189
  "marketId": 0,
3112
3190
  "marketAccount": "CZBZsoRS8zyoysWqQoQGQct12srenVvKdqG5cyFhyRJN",
3191
+ "marketCorrelation": true,
3113
3192
  "pool": "CVdbySirAWcygBo3WsmJH1QPnQi3oyDaDWv5C3d3xQAH",
3114
3193
  "targetCustody": "2dLnRMbXfMx8DnGb6CbM3BrLv4F78SWLx7uWRTZPTZ1y",
3115
3194
  "collateralCustody": "2dLnRMbXfMx8DnGb6CbM3BrLv4F78SWLx7uWRTZPTZ1y",
@@ -3123,6 +3202,7 @@
3123
3202
  {
3124
3203
  "marketId": 1,
3125
3204
  "marketAccount": "E2f2k4bMv6g4usjt9zAz43CudykXWGwjG8s6nYtJF8Yy",
3205
+ "marketCorrelation": true,
3126
3206
  "pool": "CVdbySirAWcygBo3WsmJH1QPnQi3oyDaDWv5C3d3xQAH",
3127
3207
  "targetCustody": "2dLnRMbXfMx8DnGb6CbM3BrLv4F78SWLx7uWRTZPTZ1y",
3128
3208
  "collateralCustody": "FheNnJ2RmuVCJFvHbhADFHwfQwnCX9nMhdsay1hxSmkv",
@@ -5447,6 +5447,11 @@ export type Perpetuals = {
5447
5447
  "isMut": false;
5448
5448
  "isSigner": false;
5449
5449
  },
5450
+ {
5451
+ "name": "targetOracleAccount";
5452
+ "isMut": false;
5453
+ "isSigner": false;
5454
+ },
5450
5455
  {
5451
5456
  "name": "collateralCustody";
5452
5457
  "isMut": false;
@@ -7760,6 +7765,10 @@ export type Perpetuals = {
7760
7765
  "type": {
7761
7766
  "defined": "MarketPermissions";
7762
7767
  };
7768
+ },
7769
+ {
7770
+ "name": "correlation";
7771
+ "type": "bool";
7763
7772
  }
7764
7773
  ];
7765
7774
  };
@@ -5450,6 +5450,11 @@ exports.IDL = {
5450
5450
  "isMut": false,
5451
5451
  "isSigner": false
5452
5452
  },
5453
+ {
5454
+ "name": "targetOracleAccount",
5455
+ "isMut": false,
5456
+ "isSigner": false
5457
+ },
5453
5458
  {
5454
5459
  "name": "collateralCustody",
5455
5460
  "isMut": false,
@@ -7763,6 +7768,10 @@ exports.IDL = {
7763
7768
  "type": {
7764
7769
  "defined": "MarketPermissions"
7765
7770
  }
7771
+ },
7772
+ {
7773
+ "name": "correlation",
7774
+ "type": "bool"
7766
7775
  }
7767
7776
  ]
7768
7777
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/buffer/index.d.ts","../node_modules/@solana/web3.js/lib/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/bn.js/index.d.ts","../src/constants/index.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/idl.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/context.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/common.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/provider.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/nodewallet.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/error.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/account.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/accounts-resolver.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/transaction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/simulate.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/views.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/methods.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/events.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/sha256.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/pubkey.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/hex.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/utf8.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/bs58.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/base64.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/token.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/features.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/registry.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/system.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/index.d.ts","../src/idl/perpetuals.ts","../src/idl/fbnft_rewards.ts","../node_modules/bignumber.js/bignumber.d.ts","../src/utils/index.ts","../src/OraclePrice.ts","../src/types/index.ts","../src/PositionAccount.ts","../src/CustodyAccount.ts","../src/MarketAccount.ts","../src/OrderAccount.ts","../node_modules/@solana/spl-token/lib/types/actions/amountToUiAmount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approveChecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burnChecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/closeAccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createAccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createAssociatedTokenAccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createAssociatedTokenAccountIdempotent.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createMint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createMultisig.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createNativeMint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createWrappedNativeAccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/freezeAccount.d.ts","../node_modules/@solana/buffer-layout/lib/Layout.d.ts","../node_modules/@solana/spl-token/lib/types/state/mint.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/extensionType.d.ts","../node_modules/@solana/spl-token/lib/types/state/account.d.ts","../node_modules/@solana/spl-token/lib/types/actions/getOrCreateAssociatedTokenAccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/mintTo.d.ts","../node_modules/@solana/spl-token/lib/types/actions/mintToChecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/types.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/setAuthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/setAuthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/syncNative.d.ts","../node_modules/@solana/spl-token/lib/types/actions/thawAccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transferChecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/uiAmountToAmount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/index.d.ts","../node_modules/@solana/spl-token/lib/types/constants.d.ts","../node_modules/@solana/spl-token/lib/types/errors.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/accountType.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiGuard/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiGuard/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiGuard/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiGuard/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultAccountState/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultAccountState/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultAccountState/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultAccountState/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/immutableOwner.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestBearingMint/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestBearingMint/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestBearingMint/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestBearingMint/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memoTransfer/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memoTransfer/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memoTransfer/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memoTransfer/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/mintCloseAuthority.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/nonTransferable.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferFee/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferFee/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferFee/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferFee/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/permanentDelegate.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/index.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/associatedTokenAccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/amountToUiAmount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approveChecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burnChecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/closeAccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/freezeAccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeAccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeAccount2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeAccount3.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeMint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeMint2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeMultisig.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/mintTo.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/mintToChecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/syncNative.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/thawAccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transferChecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/uiAmountToAmount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/decode.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeMultisig2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeImmutableOwner.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeMintCloseAuthority.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/reallocate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/createNativeMint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeNonTransferableMint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializePermanentDelegate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/index.d.ts","../node_modules/@solana/spl-token/lib/types/state/multisig.d.ts","../node_modules/@solana/spl-token/lib/types/state/index.d.ts","../node_modules/@solana/spl-token/lib/types/index.d.ts","../node_modules/js-sha256/index.d.ts","../node_modules/base-x/src/index.d.ts","../node_modules/bs58/index.d.ts","../src/PoolAccount.ts","../src/idl/perp_composability.ts","../src/idl/reward_distribution.ts","../src/utils/rpc.ts","../src/PoolConfig.json","../src/PoolConfig.ts","../node_modules/@pythnetwork/price-service-sdk/lib/index.d.ts","../node_modules/ts-log/build/src/index.d.ts","../node_modules/@pythnetwork/price-service-client/lib/PriceServiceConnection.d.ts","../node_modules/@pythnetwork/price-service-client/lib/index.d.ts","../node_modules/tweetnacl/nacl.d.ts","../src/backupOracle.ts","../src/utils/getNftAccounts.ts","../node_modules/camelcase/index.d.ts","../node_modules/@coral-xyz/borsh/dist/index.d.ts","../src/utils/IdlCoder.ts","../src/ViewHelper.ts","../src/PerpetualsClient.ts","../src/PoolDataClient.ts","../src/TradingAccount.ts","../src/utils/anchorCpiEvents.ts","../src/utils/alt.ts","../src/index.ts","../src/test.ts","../src/test2.ts","../src/testView.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/uuid/index.d.ts","../node_modules/@types/ws/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","d399924e7c02f65744ed87cdd5b2ec79449e6b009f2c98baa38d42ade768a5f9","b4473933ebd454f0b38bf002e92738f978f5197ad47627e6b2a6647046997256","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"84168c1e1f6e21906eea5167154748c1e9fea5ef6f2e1b2b2d2cb19e89fbd81a",{"version":"8155b7b79b6e7d7c13d3203f40cd8c201bdf2c0c25af536992d8962a28cac561","affectsGlobalScope":true},"5ca34a9a8b59bcc0e58730e702aa0823557122c86d6a6e1b6eeae85babb48513","c1d93a28c5312d757e449ad068c3a43ad0d961ab06e6a3b7aaa7d48c204a1deb",{"version":"77b2a2f1719b4c19b79bf2bf4833f67770e30767e49102a6b75ab3b3cf8b5db7","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57e75559358fd6f9593b44506d75871004c124a70b6be3e0ce18597b71a08fc2","160f307d5ccc1f934de7fbed97f1d2016402f90f204c484e20bd5c2a19a4172a","9c1363edb96f09d8d2140284a39015dba08d5b01a98334ba9ad8784ab160c835","2a56407acc5881608ef5fa4c0688d446df6adfd010578ce83dd1b747d895b17f","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","ad5c7ca4a4dc8e39e0aa221b981f6306ca1c037c99bd4902bf02831ba5d7fae9",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"5362b44ccdfba77ac392febf7f8d755af484222cfdc7a9aa1dee67bf51a352f9","affectsGlobalScope":true},"4866843595b27b290ce6cc8092818ede98631734525453dec48d32d7f6726f18","d036da8d9e6391ad06ff5a71b8018838f0990667a178390eb48462059dba92de","63728b518fee91037e3d44081b0c7f3cc6fafb79a997dca5300a899277384867","8c4a16f8523cd932b16f3b6feb983037d2ca5699946d1f32b3787055fccbfff3","b76baf9af98ef1da1c3a681e66034c9ce21862fa4177235153d9719df72c2b1d","89d639ae440d34751d94c0333d83bc4dcfadc45cd15849f74cc1d9c0f0ce0413",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"92cfb0fd9ea018f140b7a9af0868daa80646e4f2fcbde2d60fb60c0319862ec8","7faa534c9c865c9338a8b46fe3fc3822f6ad58747240b103d0606e63990a4935","0ae6b96cc95c41d86deb7c208256f126bc58bbb6829e1e29b063aa9eed9ea3f7",{"version":"c6e4a85271072ff15b04d09075b357407d4cdead8ca536ec613a2bb02a03285e","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"e9f997f4724f4a19ddb396660061b55ae90dd0e4bb7a34788f7c9d1ceaf7dade","f6c9e1baa89f163bc1b29001ed43d3a24734e53a756e0ed89a92e40be17af5e3","4103297e96869b5226a7570a295fbf5f845e9dc4a3b3f8f242993c7f8aad1d42","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f3b323d28220d61475dc0229fad6d0bff24381766b40a30fe67743da772c82ad","b966a6e620b297ecd31d0359894a4018255d85da5a277b21867296e97e21fefd","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","cd2b61246eeb62ebc6842fe28f7b3389c081d3b6355091cffe3d12c083bd5705","48e2eb12763f6f72f9daf15967499f69bc4dcda00e1c93696ba25d14af513660",{"version":"57141225815ac2d5caf7e781c6442861854149675096afd9ed5b699aff80a5e7","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","1edbd43bfc703943f0eabfef8aac222fb3e509d9b13c60295cb206b9b75bb6be","12fd795309573a15193cf71d22f7e5debbec599b77ffeb3bb5c0fd1bd15cbe6d","4082bc53696f77cae7f84dd002d4766f3a814b9b2b0d9be4e399ee3f9afc501d",{"version":"e32d7b239d2649efbb57eca949ffc764fb76fd8cce9f57632c0217407a79fa1a","affectsGlobalScope":true},{"version":"5bf73febf7c8cc741ba62e94758eed3208f62473c50702d209bcfece18e12421","affectsGlobalScope":true},"3758d3cb9971c113455a802ad7fa16fa216639add0f2c90767cf177f8d85106d","048a373805662e209f7af8717b45ae77a8052ff2272234d6f8cb84d87831f516","f71e0cc279b5086fa3f46f0bb467d376a18776ec7c99c45b3bd7c670097e1308",{"version":"09e6c9b5d3f323c84bc103e387d1b41e03f5155909615ad877d862ff82758d00","affectsGlobalScope":true},"5af698993d8ba0b74e6d34902091b9cadab8e30d3b009746331721651b5890a4",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"27fea46e25bceaf52375ad48afdf5b9f78af76d551e30cc86077541d1c405e8e","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb",{"version":"2ac0f7acb8725f29dc323f58705778c095c169418728315404bd0090ed26d746","signature":"0522ca0e6e36eaaf19415a17868346f8c298dbb70c55b54a358133ca90042738"},"b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968","b61b573ff4ba88d0ca9f59655f66ddd34db4696d2b51c6ef7a959f2b70cb4109","8174e9c229331b9202cf34327e89794a98bb1a442aeee03c46c4b50034b72142","f40fd5b46add805ff018d3490352931e069eb524e3068b86d46d048534d1b824","2c31f69dc0e07f3c396462dae566bf822b1fbc9b56ae1f64ac73a652cf7e4a35","6888c13dda417d9057790a8c403e77e0fa1d7a083d947fdd9310961548a0a08e","a0ff940b1a0e503c45976623abdb39bcfecee97e9f40c3c59f16c659a4da3239","e2befcff13777268fe913fdae10fdca86632e142d0a56bafa88c2a15ee220701","5a739f3dbc49e8769afe70233c31489ed34ba9efe7f1150635658497cb1cbc71","3035306296b362047b08a2a4040a3bf33f0625287b3891e69b864b5d78b8286b","b11e5173a66497863b6d525009624f56ec5124cd6c30e56e8a3e9b41dd303962","178e4bbf4575f0f3d8027d67870aa11bf30ea98663a9f205ca03adc05fa135d7","d57e501aa9e3208fa52cdf03c414173e40523b20a89b5f70c5bffb53ead42c07","a011ef547fb4aca43d5b37d44419f9fc16ba089edf1eb96d20d9c9ee6beefc77","0eb499336fda2cdb3acbfb5c160153028f647904326921b84103e2c83f6892fb","29d441a45ca67aa4b9dc48eb80f26dce82602a066e51af92978a1b4bcb78c507","c5dbca090d5b388006482f4c159f9560ac5a44a7a6d77bb4a64c8749cf8ddb4b","cf18efc36568036078617bb6bd66186f3f68ba789baa67147a0e3128c9398bd0","dc4b884038ecf1dc687a89944e04cf6b1e83391f2d541212dccbb0de67c97f1d","8835ccff7f7bf75094749fd5da9604becacc31016f683907642f92cfefa9346d","8ac4904be5b82699041086aa0dd33327d2afa3bcb107fa887c308bbdde1ea7ce","257e143511763fc89bde384f58bf0a02e1708330705370c0a4483e9f1500ceaa","18584847cdf14e522faa67916d50b8ba7479c8f12262c99d90078dffcae12a8e","44e590a660a2ed3c71e92c85a4af2507b43359825ab4805ec2dcef54e9d564ee","30a39429dd194c9bd3bbb32a32e247d9b547524308d61acc1ba8f16e72e61ee9","f0b04452cd330d29522cbe34176e683f21429e690c2aaec5ecee88303537fda4","f499b42bfdba1be1e0a9cf2ea797ad00694bc7908fdbb8f1f50e4a8034387f67","57794fc7348347817d469e09db6a3faf7aec386f92cb0dad0acbe1336a3f68d7","b82e3f89b8b5d563df90b8e5da3dc2b39443a4db8a3c0310919d55a242da56dc","847ccc20490110124a2252c5a705dfe1355921470d2bd6da9af1d4943e54346b","4cc6d8bdf1e7d492569cf7437ca3f01bf9cc767c3295953b415a6c8d5badf1ab","3b0309147d62225ffd116d3440f480e8df63a47e71e47fb6b432858db931b9e0","139db12276e11f90df65778f7513bc3f85957d74fd0d1bbeb19e4a1dace4f662","2884fcc91f5d42a3288a75a558b036923e3d926354fa0c3fa0251c2c3d4b54e8","013446b40d561ed0b2c2822d01954d4612d5e67222369073345aeebeb03fd406","4cb9df3ea8035d85480096a5ff94dbbcf941efb38c5c1ea77f1dc164d4342728","b35517e270f8735aa771989daa684625bc6285c91e8e4377f13f70a6ff415fc9","291b47b629e4c15e96bacb8d1f707573e72fedbb0fcab43f729e5f9d73560c3c","ae147af43f062662157775c85e3801ea3b70dc7b8f39c7aa260ad215e1942cb3","2a1d0598c9acba389f6a3369d52822a34045bd2ce75d012613bd0b802663c73b","78e817751f43865838b80e44aec551f4d2eb50c7a8ef528a628da9cf8c427b66","878d8319802cbd907be389848225859546d87c66c5b8cf7b864fab14d3dda283","897537e8a5aa22a4ec865ade55b791c0010c863ac5f34e57e7e1c156d9862546","f253b0f34ac2757af5c73868b3235104f5e311c03859987b2402afd1382db058","88f98a99221fa413325886b54d3f2eec69c6092190c2693c2a460240c7bb2f28",{"version":"bcd045afadcaebd32e3753fae4fe4582ed1c5c396f60cf36c4c417916d626cfa","signature":"4fc4c98eb71580f4036ffff925f1d57779e9c29d5b9e542b4d81ff4fec067859"},{"version":"06f0d8b2efacb35849de04e3d0507c29d104933741d6491f0a5863417a8f6e5e","signature":"bc5af62a310ababca0b90a2896b2d8731d59896f517f28505dd1f21d62e8166e"},"e9b48596baefe465d46567a4beccd564035024a154d99f54c7fed02380707333",{"version":"6eb50a0c85cda6b9a3bb7de0a4768fbac1e10b82adac1ab9c9e4c712137604a6","signature":"78a24d28a45c741b54a73122c3a894d0ca7064e7e9c74d499e1881f9fb112e30"},{"version":"7a8b986cbf4f9befb594e7ec761cebb9ee2de486f88f9a5953bec3054148855d","signature":"fd7c479f74afe26ef554e363cd00d6a95d6d00669ea0940d4b781a2c5300b257"},{"version":"b796c98689b56adf4f1c31e374680cf37b9d39fd0d729de699b21237bfc93a12","signature":"15d7ffbafc4a916e9bb8ba0cedf9cf36ff7b4e98f66211302610774fe58ea086"},{"version":"b8749593d3681b39437b6bcdbe2bc9870ac15b5ea3f3ac5465fbc745354c3295","signature":"6e4e77c8de2e84b944f3c04d8b89f5002693aa778d5c6fb553e1c93b2525ec09"},{"version":"908fa8b42dd3f6f174f363f368027794225de9d0a70c1a7a6bf163aba146e9bc","signature":"400d6d3f6d8565e910bd19590c80f44fe2539b78d1cffcfdad20db3bdade51df"},{"version":"035c97517b53f6404703525f8a366ca8cb445ce796352110c27f89d4af3aeb44","signature":"c4fb23423b7b38403c0a0d59473167633539995eeb42e842ec35cc5b65f4a857"},{"version":"b69ade040a9a3344104dd90f0d9da4bdf847a2d08d6d3bd3257cc65cadf7b24f","signature":"71f8cd261903a0f7710e3ade5856ee951a298f2e6952e84892eca1e39858cb0c"},"f2e5fa7d4aefe542762909ac966abdeaaaa76befbf561924edabb02b9b57542d","28e9fcac58f5957d1b82ab2b856799c24f7530e1d048198c1d0b9923762265ed","072a49808080400016c2557d47648297d854da5d75c2005083432f5bbbc19949","f25d3ac13258725686f0fbad31b82418ce00799f5d145570d6ee398a39651043","bbfcec9ed673c3dcb2668c3b216c7be9102a9e900e3d73801611da7f21746fdc","da3e4adedc5b5fd041f31a11d6bd98dde20febb2f2705988396d5a07f6f17543","9e6a844fae8202f8aa8bc6c7d076980221a15106c2a6a6f1e38fe1f2b8d07d62","99b07e053c9eae92b706ce3914d4b14bde4d896afc5a351c4660918ac64c6584","9fd36cbc7e5eaa50308919a4496ac677490c20a36a26208ef288f3033ad4c855","739adbaa02fd46f768fb88c72bc3359966241d36bc844a54f158fc68539f951b","8909288948f7bf5a408b6521a659a78765939ee319cd68ad5df4fb76fe1a755d","ff90f20e235b71cea80a352916e7f2a4737302e4f5b539d00e75204c82014b70","10ed1e58a17e61a6eb4f1bca430999ac214629058239489d498b88dc891f2327","1d1c0c879e2139313479670b032fc056ac93136a8199ed3e30fd118004077627","92ad95e6220ab829c8f5cfca9be43e26e041a2922cde6e998782030d41c49963","12c924e7f2e516943ce436ad51965a38cbbd9dee5fe670ae6349bd8c1bf76f52","75f4d060766b9c61825a122b94d61c45bbb6cafaa9f077c59987dc6c00467c76","42b7e0b9bed165997eb168904dfcd11254ff978ceeacda906e77d8f44c89f31f","b16879b91b181532922b7f279d8cba9c877c1436d3b0c55285ab8c6f43fd5dce","278055752eff1ed4b30b663d6b812923f041fbfd6cb6563d1b9350b53850059e","4ba1b1b1750a88a8fcc7d521d3ec3ba6235c28c73993e38adcaaec51afd57d5b","4991ee4482820b62aa2e6cd775d9984e0a45a7f6ba64d8a2737cbbb8af7c53f9","450257cba6657271a6646f9561b43062a5d2b39dba8b2e7b4d7c7fda73c6fe57","9a909c6bcc1cd061f649dc3b4dc9922fda9858166617bbc7263dd4c8bee7546f","c47421f20cec5286ce39834a3327579f36cad21f053ef8c09076c1894cd66d93","4c9975f07791ea91c74c2b8140ab48eb5ac2cc81417a108e6612c889a8bd23b3","b7b49dc760f6440dc8677ef49f0ca75c7f0f2f97f461a07bf2aa03723ac61d3d","79d938cb2e44b94e4f1497a9ccc2ff5da2fb7360d4eb7485da114055bc712379","566fd6af165b3acfa13b916594e422994e5d14f4138609fd252504800c9b96b7","ba9605656fa2ff88d69fd3676770ff1440fd70b4cbdce4ca85ac4ce27e659c7a","fedb9303cc3d1af9e5698092e3fd3622c2eb05805582107ac36c8cf0a160d16e","65d51b460383b6f7546f22c888c8b41e0de7385f20ec971acbb56da83bcbe611","b64e1ff30069e6fcfbd6b01df71b89e9f7d34581d1eba2e1fe3f3b1eaf70f28e","b725c869a5ff20458780f26afbe392017e690ee03decdb7d1202ac3539a8e235","4aaaa437c7b26c9b2668da29c1674d5be3b8f8fa150f3d7dac75d67314be9f37","f945eeb4aa141ce1af78affc6547c979f97b1cbb7d8995d4762d006e3e35c667","13bce356dc26c750244fe75f160388f59a1725d33e401ae26dc084277dd9491e","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8a561d8bcaf60594a95c3390a489824c6688e81802701260444fb47881950257","cbc6cad822896d9d97bda9a0cea0834be8999dbe2040758cd6da3948c24415b3","e6ee1dcd00ca1c765c95b0abb2114c2ead786ae7610c823df4cd8fffbcbede10","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8b25e65927ea90be5da89799997c6f7e7dbcd826a954bd1a466a931d380a3511","af7d2a7f8f8a0d9bcce2a017b1a9f6ec85f57e9484a65f46b6cafe8fb079e9a3","9cb1f37abda1396ced2508edf3d111c99a94421553138edc06353c1c824b8cc8","68a8ceeea894c6d5989c89207e3ac1b33c2c2026ad4a9e8c3cff1d87ea67ec77","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","989b5f3bf15619484ef2327c0a108ad33191bfc2e3deb6347bf175e79fd02e51","2b51763cbd722ee2747bc9e860dd0cc0200cdfdf6735c5c2fd4f5e3e02f1ec86","b650f3fdfd9e86f82d906dfbd81b87ef7c7d7434ee1de923d7d6cf5647434a02","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","3e2b6603bed1f4a82bdad05b68a66cc5943f8e12c647bf2f45a06c9d72cc0e00","eabca6c007c20da02a0cbbf23f6de3c39e662a9adc1a92736968179d7c4cc569","625ea89b6b179966c652b7bb93b57e7c1c2343eb9aba6cfb3ddf801359cde65c","1a69659e9cd6e3785e995d1e748809aa708a76fda03988b7ead402534311c106","27e553ea7ffbcaef2be2af5a79fdbf83cfcda0f95bf17e3c378b33402a28c1d6","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","068a6c2f0554b945cbfb006187f4c9c27386684810189dfe026a9b30470d3984","dd22a6e590d7fbabb29b903a809141cb1426846d23c21164ff4223a7f9dcff1d","93cd3ba5193ea2029b2eb0b20b94ca9c4e6b9c2a696d7d1a05211a2916ca0d77","748553e51bfbef2b4c8e646275f687e60ea77665c514ee1f880bf5a3cd509f37","a4d09f9410ec90d4b07cd054e8e2f234feb27b66b106202b386ab0b157663358","3749f5690d24338ff4b878db8d0f1b47d04fe891634c88ca56f7166f944fb96b","939f5a5215d6be2165c6a4116f5abb433b84df00f3ac4e458f3cd732786e8431","5f92a8bc72a87fca63d413ed8f303a2df36fb8143f0e974d0844c7422318909c","2a0e1e0a89c6a3991cc04812d4c6fcf92fe7511de87a684bc60357438dddf399","4ddb790ba5f1fd3689213c0501dbf21a7285f2edf562a8f7d86654877a868fc9","b0b840a3379f3539d037cb5b602541d2ab6984462761e505a23793866dc7a0d7","7aed6616e78d880577a37fa5edd42b690354874f1001acdbf21ead2f803a36a0","73a7dc6d00925ef047bc915a54cab15bb242d549b9334d9b5151cc0f35cfaf77","0a1c74bccc0c5a1f22012144a3d9afc19951348540c7ff5e5feaf4eef6259b80","3a1d5de5adaede0fb1ca2045f8b10a0e86f480a1082a11829a0b48da8ad6157f","0a1057aef93b764fb9665d101f2a050f6e060c37ec5b88f2d27bb83412a3487e","6164b754612e5776cc934dc0d6494fe2ee084d39d1cbc6fe4a23a45326730ccc","47679a6b6411019e8f7a443ec3addbec38a79a7e4679c00bc73d3ccdb81d64ce","cac86b9dbfd00f0ac7731f4074d2c69260c88ea28de96a71b0cb4efb5779b869","65bd0d34233fcaab54f5463703a0f022b2db197ef24c4a1d3adda1a9d3d6d502","f5cd1b398a44c53407e4aa1e8b503d0664299f002313d31bbce221644aadc6cb","c2f032cbe6aa8d59f021ccd865990d4d55c11fd3a1b96b81c56903cf05e36f1f","aa20bc1ba435f2a49bd640992da9517e31896e8f6d1a4817800ac96d6f10d6ea","5621180d5cf6e50f53fd6c73e0a60cd4115353f919bdd193580746896167da63","9cc5c390465b87096b69b2b0612a341d974b658cd28447696583f2762226f8c3","08371984685828cedaa25037b76def8f8f7f8304910dc66627bb58a2f53ecea4","7dd1c6c1b927f9edb94773f9333666f52f7b0bdf49a9a7f63129e9e66d1222cf","174f99dc1948a64c4211702a0fcc45d684d05fdfba3100ba4485fe45adb4d7f3","19405c79422e9c2d9ae1affae558857d3cbd138b17db596c642d008cd6c485cb","6c2ba8fe0797b626104a2fd4e8de0dad6edc4b932e4a50a7b72afa09fdcddbe9","dabc6bfb18fc1f988d37c8b659eb07fd35e8269bfa099b6dc02c14093c2b8b1a","ec9dd267b792e7c5c3733a45a3d2e43b93f02b98d86d8be50e11f9c15940c02b","a8f278a697ab8646f88cb2ba9783814e5438637cdfc3c5278e8aca82b4a1fc44","239d9e77e0026e7375dc9b6122f1b62d2c39fc2e5c10f50787cd321880146b95","0f3ca52b0d50160be177f8c79efbbcd666726c2de9256d6335e0d0bcb2e40d6f","1d8820a067af2309ef4f7739d2ada59882eebb3b2b595ff78496760c6f51ba60","0afbe91142eb631d6f31be624cf8a550b03736bfd22b0f309405a6fe4d4c9517","a3c89483a38d76c77a13b69b268a9e5d13abcdf0957ca3f28c9702c47ce8050f","40ec7e761ea0ddfc0add7aedb95dacfc579b25010ed0e2190abc1d34bb67f81e",{"version":"adca65935f69728fc768633e3c1b40a18007afb18d94b954dacee5d770ada756","signature":"db61d2a95e606ee86ac69e1986a92e96eee517cbaa24af2f6a71238702d21bb2"},{"version":"fb11689a1078638918660158ec5e1687090fbf95f4447f5aa1f4473b88ab0a99","signature":"56e786af6fa611f609261ea2caa12bca483fe30f399baaae40f9009621b032b9"},{"version":"140f53f84f6506c9087d46b5d49fde23809a385977a8105d5632db3be71a47cc","signature":"70ac27c0080c56163445f7f85578d54c5971ca3661744377745ab95f9c1e0dc5"},{"version":"abda89a9e8ca775f5c73d6b362e02ab5734bf82fc6e3a611cce58aae443bfa5c","signature":"a66b58a87fb7224e176e70db4db893528a904f4cf3c21fc328f1d451cdfa476d"},"f295e700ed50c4750fc716e8411643466348804ae05cb85f261641398363f135",{"version":"73db582b274a5067863152804b1b607811c4d3b425f0674688acc0933edb50e1","signature":"7974d919b7e6d13bc9d12ac23acf0299eb8522d8b5d9b92ba16dc981491b5acf"},"a3236c8367c87e6f65b9ffc0c6156aa3baacd241227c544c5d030237c7b544f3","eed09b7c5ba70de22474b9b92fa037e95ba0a65d5e21c38355c0a6c70812df2f","f7826f9a68a0e18c6926a3c977aebfc7876f523d5562a2009674951315676373","6c3465d4cc3ca86c4b4e540af16a1fca4310e29600a58ec29876ad84483d0bdb","60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",{"version":"e8f1cc96ebcf6d317eb4dc703a37c8f17761a3f7c364af19570e592c77420fec","signature":"10a73d78af44f1ae64192864ddadcd5d182e9ff67dc3cc04bb401059f4557dc8"},{"version":"9d8d0e178389a4966b75b1af3c04b1b0d6dc9180c74af04d03a1b40ef6acc2b1","signature":"432a295507da7ad393064e725004e0dfe7b81a74fe9ca3e293ec8b40cd5e8288"},"2154ffa8f93802db249ddbc404a083959be0ddf036d0afd5280a88369c555c01","bc25b6bb85312a63daed8272183df26f9c49607a99d6af0eab3c90c1ccaf6587",{"version":"d0e2f019b679935b812469aa0f3f2f94e15efc9ce10595fd878a35265011ead6","signature":"e09aa6b719e63d3a43c5d18ed21b7f0d921f23ff2f9497fa2a170dc6f9a9a60f"},{"version":"ef48dcaca5279e295c89e930872d1390f96d67cd3cbba51edd8889750a46de3c","signature":"d7669a870b7f7590b26d7f7194de1f1f69f5298f10c31026df716336c895f764"},{"version":"9aba54a2ababe5d9c2b629eac3b5ecb05006c459fb3c023334e84ccfb26f3e90","signature":"da07b931b9fee9aaf4f247f0eccd265e6a2756035bc8937821fe34ada490fa13"},{"version":"1a7e1755ac7c40e244716d1ce2ee79c4a3c4f498c4b6e162d70ce214a6225352","signature":"69ab4e06f1e59d50a9b25626c43cf0154399e0fdefded058c876c3462d1dbf6b"},{"version":"0a06c4e4b9067f7f9d32b78199e60dbf422737c9738acc000a254f4b00fc36f4","signature":"cebb0d1afc52824b60dd9552510941e4995496e374ac2aa7e33a14efd4f59835"},{"version":"4bb86003d8526672afbd15a347660b6749d83124d2d8302a645b0493bb9dcb1e","signature":"78fa342775f68d2c9160b5728b6642e66479372e62f5c5d08c399a4a95786243"},{"version":"2ee083bf1b1c02fb348e15c45754f18b926d3796d0d9e18c467246f3079ff489","signature":"7d920f00d4638306b7d2a381069c79b1490065e394f6c9e29949a70bca33934a"},{"version":"591ad70ad3c8d2cbdfa661870a69c11623a9d4a79931c95d98853cafa0b5a15e","signature":"c4204dec4459b212317cd94424b44369b3f02ffe61bdba57e356df760ea99f31"},{"version":"e753c92a54b315a698a7e2d35da5f046c76ea6437fda40a1eb7c2f78aec3e569","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"b52b12cf6bced0192fd98163c997f6700879b375062bf0bee50db34058b0f6b4","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"a9b7f0577843b861b634f49719be0dbe15a2512195991ef8689491cb66a1f0f5","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","removeComments":true,"skipLibCheck":true,"target":1},"fileIdsList":[[52,94,101,105,131],[52,94,101,105,121,131],[94,105,122,123,124,131,132],[47,52,94,101,105,131],[94,101,105,121,125,130],[94,101,105,131],[94,105,121,131],[94,105,126,127,128,129,131],[47,94],[47,52,94,101],[47,94,102,105,109,110,111,113,131,132,143,145,147],[94,146,148],[94,109,130,145],[47,94,109],[47,94,105,109,112,119,120],[47,94,104,105,106],[47,94,105,107],[47,94,105,109,120,131],[47,94,105,106,107,109,113,121,131,144],[47,94,101,104,105,107,109,120,131],[47,94,105,109,112,113,114,115,116,117,118,119,120,131],[47,94,101,105,106,120],[47,94,105,106,107,109,112,113,114,115,116,117,118,120],[47,94,105,109,115,120],[47,94,105,109,115,120,121,131],[47,94,105,114,120],[47,94,101,102,105,106,119,148],[47,94,105,117,120],[47,94,108],[52,94,101],[94,101],[94,135,136,137,138],[94],[94,108,133,134,139,140,141,142],[47,52,94,101,107],[47,94,101,102],[47,52,94,101,107,109],[94,261,262],[94,261,263],[52,94],[47,94,176],[94,159,160,161,162,163,164,165,166,167,168,169,170,171,172,177,178,179,180,183,184,185,186,187,188],[47,94,182],[94,193,194,195],[47,94,173,181],[94,173,176],[94,197,198,199],[47,94,173,176,181],[94,173,174,176],[94,101,174],[94,175,192,196,200,201,205,209,210,211,215,216],[94,202,203,204],[47,94,173,174],[94,206,207,208],[94,173,174],[94,212,213,214],[47,94,173,174,176],[94,189,190,191,217,248,250],[47,94,182,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239],[94,181,182,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[47,94,175,181],[47,94,181],[47,94,101,173,175],[94,174,176,249],[47,94,101,173],[52,67,69,94],[67,94,101],[48,94],[51,94],[52,57,85,94],[53,64,65,72,82,93,94],[53,54,64,72,94],[55,94],[56,57,65,73,94],[57,82,90,94],[58,60,64,72,94],[59,94],[60,61,94],[64,94],[62,64,94],[64,65,66,82,93,94],[64,65,66,79,82,85,94],[94,98],[60,67,72,82,93,94],[64,65,67,68,72,82,90,93,94],[67,69,82,90,93,94],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],[64,70,94],[71,93,94],[60,64,72,82,94],[73,94],[74,94],[51,75,94],[76,92,94,98],[77,94],[78,94],[64,79,80,94],[79,81,94,96],[52,64,82,83,84,85,94],[52,82,84,94],[82,83,94],[85,94],[86,94],[64,88,89,94],[88,89,94],[57,72,82,90,94],[91,94],[72,92,94],[52,67,78,93,94],[57,94],[82,94,95],[94,96],[94,97],[52,57,64,66,75,82,93,94,96,98],[82,94,99],[64,67,69,72,82,90,93,94,99,101],[94,253],[47,94,102,103,152,154,155],[47,94,102,103,154,155],[94,103,148,152,154],[47,94,148,154],[47,94,102,103,139,148,149,150,151,152,153,154,155,156,157,251,252,254,255,256,257,258,260,265,266,267,271],[47,94,148,154,259],[94,103,148,151,152,153,156,157,251,255,260],[47,94,138,149,270,272],[47,94,102,148,149,154,254,260,264,265],[47,94,102],[94,103,149,152,153,154,155,156,157,158,255,258,260,266,270,271,272,273,274,275,276],[47,94,103,148,149,150,153],[94,105,148,268,269],[94,139,148,149],[47,94,154],[47,94,102,103,151],[47,94,110,139,148],[47,102,154],[47,102,154,155],[148,154],[47,148,154],[47,102,148,149,150,153,154,155,156,157,255,256,257,258,260],[47,148,154,259],[148,153,156,157,251,255,260],[47,272],[47,148,149,154,260,264],[47,102],[103,149,152,153,154,155,156,157,158,255,258,260,266,270,271,272,273,274,275,276],[148,149,150,153],[105],[47],[148],[47,154],[47,102,151],[47,148]],"referencedMap":[[122,1],[123,2],[125,3],[132,4],[124,1],[131,5],[127,6],[128,7],[130,8],[126,6],[129,6],[111,9],[105,10],[148,11],[147,12],[146,13],[110,14],[113,15],[107,16],[106,17],[121,18],[145,19],[112,20],[144,21],[114,22],[119,23],[116,24],[117,25],[115,26],[120,27],[118,28],[109,29],[138,30],[137,31],[135,30],[139,32],[136,33],[141,33],[143,34],[134,35],[142,36],[108,37],[133,33],[140,9],[269,36],[263,38],[264,39],[261,33],[173,40],[159,9],[160,9],[161,9],[162,9],[163,9],[164,9],[165,9],[166,9],[167,9],[168,9],[169,9],[170,9],[171,9],[172,9],[177,41],[189,42],[178,9],[179,9],[180,9],[183,43],[184,9],[185,9],[186,9],[187,9],[188,9],[190,9],[191,33],[192,33],[193,9],[196,44],[194,45],[195,46],[197,41],[200,47],[198,48],[199,49],[175,50],[201,46],[217,51],[202,9],[205,52],[203,45],[204,53],[206,9],[209,54],[207,45],[208,46],[210,53],[211,55],[216,53],[212,9],[215,56],[213,45],[214,57],[251,58],[219,45],[220,45],[221,45],[218,9],[222,45],[223,45],[224,45],[245,45],[240,59],[225,45],[248,60],[226,45],[227,45],[228,45],[242,45],[229,45],[230,45],[243,45],[231,45],[241,33],[246,45],[247,45],[232,45],[233,45],[244,61],[234,45],[182,45],[235,45],[236,45],[237,45],[238,45],[181,33],[239,62],[176,63],[250,64],[174,63],[249,65],[47,66],[102,31],[281,67],[48,68],[49,68],[51,69],[52,70],[53,71],[54,72],[55,73],[56,74],[57,75],[58,76],[59,77],[60,78],[61,78],[63,79],[62,80],[64,79],[65,81],[66,82],[50,83],[100,33],[67,84],[68,85],[69,86],[101,87],[70,88],[71,89],[72,90],[73,91],[74,92],[75,93],[76,94],[77,95],[78,96],[79,97],[80,97],[81,98],[82,99],[84,100],[83,101],[85,102],[86,103],[87,33],[88,104],[89,105],[90,106],[91,107],[92,108],[93,109],[94,110],[95,111],[96,112],[97,113],[98,114],[99,115],[282,33],[283,116],[253,33],[151,33],[254,117],[46,33],[268,33],[104,33],[252,33],[262,33],[265,33],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[156,118],[157,119],[153,120],[158,121],[272,122],[255,121],[259,33],[260,123],[273,124],[155,121],[274,121],[271,125],[266,126],[103,127],[150,33],[256,33],[149,33],[257,33],[277,128],[278,33],[279,33],[280,33],[154,129],[270,130],[276,9],[275,131],[267,132],[152,133],[258,134]],"exportedModulesMap":[[122,1],[123,2],[125,3],[132,4],[124,1],[131,5],[127,6],[128,7],[130,8],[126,6],[129,6],[111,9],[105,10],[148,11],[147,12],[146,13],[110,14],[113,15],[107,16],[106,17],[121,18],[145,19],[112,20],[144,21],[114,22],[119,23],[116,24],[117,25],[115,26],[120,27],[118,28],[109,29],[138,30],[137,31],[135,30],[139,32],[136,33],[141,33],[143,34],[134,35],[142,36],[108,37],[133,33],[140,9],[269,36],[263,38],[264,39],[261,33],[173,40],[159,9],[160,9],[161,9],[162,9],[163,9],[164,9],[165,9],[166,9],[167,9],[168,9],[169,9],[170,9],[171,9],[172,9],[177,41],[189,42],[178,9],[179,9],[180,9],[183,43],[184,9],[185,9],[186,9],[187,9],[188,9],[190,9],[191,33],[192,33],[193,9],[196,44],[194,45],[195,46],[197,41],[200,47],[198,48],[199,49],[175,50],[201,46],[217,51],[202,9],[205,52],[203,45],[204,53],[206,9],[209,54],[207,45],[208,46],[210,53],[211,55],[216,53],[212,9],[215,56],[213,45],[214,57],[251,58],[219,45],[220,45],[221,45],[218,9],[222,45],[223,45],[224,45],[245,45],[240,59],[225,45],[248,60],[226,45],[227,45],[228,45],[242,45],[229,45],[230,45],[243,45],[231,45],[241,33],[246,45],[247,45],[232,45],[233,45],[244,61],[234,45],[182,45],[235,45],[236,45],[237,45],[238,45],[181,33],[239,62],[176,63],[250,64],[174,63],[249,65],[47,66],[102,31],[281,67],[48,68],[49,68],[51,69],[52,70],[53,71],[54,72],[55,73],[56,74],[57,75],[58,76],[59,77],[60,78],[61,78],[63,79],[62,80],[64,79],[65,81],[66,82],[50,83],[100,33],[67,84],[68,85],[69,86],[101,87],[70,88],[71,89],[72,90],[73,91],[74,92],[75,93],[76,94],[77,95],[78,96],[79,97],[80,97],[81,98],[82,99],[84,100],[83,101],[85,102],[86,103],[87,33],[88,104],[89,105],[90,106],[91,107],[92,108],[93,109],[94,110],[95,111],[96,112],[97,113],[98,114],[99,115],[282,33],[283,116],[253,33],[151,33],[254,117],[46,33],[268,33],[104,33],[252,33],[262,33],[265,33],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[156,135],[157,136],[153,137],[158,138],[272,139],[255,138],[259,33],[260,140],[273,141],[155,138],[274,138],[271,142],[266,143],[103,144],[277,145],[154,146],[270,147],[276,148],[275,149],[267,150],[152,151],[258,152]],"semanticDiagnosticsPerFile":[122,123,125,132,124,131,127,128,130,126,129,111,105,148,147,146,110,113,107,106,121,145,112,144,114,119,116,117,115,120,118,109,138,137,135,139,136,141,143,134,142,108,133,140,269,263,264,261,173,159,160,161,162,163,164,165,166,167,168,169,170,171,172,177,189,178,179,180,183,184,185,186,187,188,190,191,192,193,196,194,195,197,200,198,199,175,201,217,202,205,203,204,206,209,207,208,210,211,216,212,215,213,214,251,219,220,221,218,222,223,224,245,240,225,248,226,227,228,242,229,230,243,231,241,246,247,232,233,244,234,182,235,236,237,238,181,239,176,250,174,249,47,102,281,48,49,51,52,53,54,55,56,57,58,59,60,61,63,62,64,65,66,50,100,67,68,69,101,70,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,282,283,253,151,254,46,268,104,252,262,265,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,36,33,34,35,37,8,38,43,44,39,40,41,42,2,45,11,10,156,157,153,158,272,255,259,260,273,155,274,271,266,103,150,256,149,257,277,278,279,280,154,270,276,275,267,152,258]},"version":"4.9.5"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/buffer/index.d.ts","../node_modules/@solana/web3.js/lib/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/bn.js/index.d.ts","../src/constants/index.ts","../node_modules/formdata-polyfill/esm.min.d.ts","../node_modules/fetch-blob/file.d.ts","../node_modules/fetch-blob/index.d.ts","../node_modules/fetch-blob/from.d.ts","../node_modules/node-fetch/@types/index.d.ts","../node_modules/@coral-xyz/anchor/node_modules/@solana/web3.js/lib/index.d.ts","../node_modules/eventemitter3/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/idl.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/context.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/common.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/provider.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/nodewallet.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/error.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/account.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/accounts-resolver.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/transaction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/rpc.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/simulate.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/views.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/methods.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/event.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/accounts.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/events.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/types.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/system/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/coder/borsh/instruction.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/sha256.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/pubkey.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/hex.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/utf8.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/bs58.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/base64.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/bytes/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/token.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/features.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/registry.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/utils/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/namespace/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/program/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/system.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/native/index.d.ts","../node_modules/@coral-xyz/anchor/dist/cjs/index.d.ts","../src/idl/perpetuals.ts","../src/idl/fbnft_rewards.ts","../node_modules/bignumber.js/bignumber.d.ts","../src/utils/index.ts","../src/oracleprice.ts","../src/types/index.ts","../src/positionaccount.ts","../src/custodyaccount.ts","../src/marketaccount.ts","../src/orderaccount.ts","../node_modules/@solana/spl-token/lib/types/actions/amounttouiamount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/actions/approvechecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/actions/burnchecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/closeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createassociatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createassociatedtokenaccountidempotent.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createmint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createmultisig.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createnativemint.d.ts","../node_modules/@solana/spl-token/lib/types/actions/createwrappednativeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/freezeaccount.d.ts","../node_modules/@solana/buffer-layout/lib/layout.d.ts","../node_modules/@solana/spl-token/lib/types/state/mint.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/extensiontype.d.ts","../node_modules/@solana/spl-token/lib/types/state/account.d.ts","../node_modules/@solana/spl-token/lib/types/actions/getorcreateassociatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/mintto.d.ts","../node_modules/@solana/spl-token/lib/types/actions/minttochecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/types.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/setauthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/setauthority.d.ts","../node_modules/@solana/spl-token/lib/types/actions/syncnative.d.ts","../node_modules/@solana/spl-token/lib/types/actions/thawaccount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/actions/transferchecked.d.ts","../node_modules/@solana/spl-token/lib/types/actions/uiamounttoamount.d.ts","../node_modules/@solana/spl-token/lib/types/actions/index.d.ts","../node_modules/@solana/spl-token/lib/types/constants.d.ts","../node_modules/@solana/spl-token/lib/types/errors.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/accounttype.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/cpiguard/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/defaultaccountstate/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/immutableowner.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/interestbearingmint/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/memotransfer/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/mintcloseauthority.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/nontransferable.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/actions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/instructions.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/state.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/transferfee/index.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/permanentdelegate.d.ts","../node_modules/@solana/spl-token/lib/types/extensions/index.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/associatedtokenaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/amounttouiamount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approve.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/approvechecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burn.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/burnchecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/closeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/freezeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeaccount3.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemint2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemultisig.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/mintto.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/minttochecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/revoke.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/syncnative.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/thawaccount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transfer.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/transferchecked.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/uiamounttoamount.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/decode.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemultisig2.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializeimmutableowner.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializemintcloseauthority.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/reallocate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/createnativemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializenontransferablemint.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/initializepermanentdelegate.d.ts","../node_modules/@solana/spl-token/lib/types/instructions/index.d.ts","../node_modules/@solana/spl-token/lib/types/state/multisig.d.ts","../node_modules/@solana/spl-token/lib/types/state/index.d.ts","../node_modules/@solana/spl-token/lib/types/index.d.ts","../node_modules/js-sha256/index.d.ts","../node_modules/base-x/src/index.d.ts","../node_modules/bs58/index.d.ts","../src/poolaccount.ts","../src/idl/perp_composability.ts","../src/idl/reward_distribution.ts","../src/utils/rpc.ts","../src/poolconfig.json","../src/poolconfig.ts","../node_modules/@pythnetwork/price-service-sdk/lib/index.d.ts","../node_modules/ts-log/build/src/index.d.ts","../node_modules/@pythnetwork/price-service-client/lib/priceserviceconnection.d.ts","../node_modules/@pythnetwork/price-service-client/lib/index.d.ts","../node_modules/tweetnacl/nacl.d.ts","../src/backuporacle.ts","../src/utils/getnftaccounts.ts","../node_modules/camelcase/index.d.ts","../node_modules/@coral-xyz/borsh/dist/index.d.ts","../src/utils/idlcoder.ts","../src/viewhelper.ts","../src/perpetualsclient.ts","../src/pooldataclient.ts","../src/tradingaccount.ts","../src/utils/anchorcpievents.ts","../src/utils/alt.ts","../src/index.ts","../src/test.ts","../src/test2.ts","../src/testview.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/uuid/index.d.ts","../node_modules/@types/ws/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/mocha/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","d399924e7c02f65744ed87cdd5b2ec79449e6b009f2c98baa38d42ade768a5f9","b4473933ebd454f0b38bf002e92738f978f5197ad47627e6b2a6647046997256","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"84168c1e1f6e21906eea5167154748c1e9fea5ef6f2e1b2b2d2cb19e89fbd81a",{"version":"8155b7b79b6e7d7c13d3203f40cd8c201bdf2c0c25af536992d8962a28cac561","affectsGlobalScope":true},"5ca34a9a8b59bcc0e58730e702aa0823557122c86d6a6e1b6eeae85babb48513","c1d93a28c5312d757e449ad068c3a43ad0d961ab06e6a3b7aaa7d48c204a1deb",{"version":"77b2a2f1719b4c19b79bf2bf4833f67770e30767e49102a6b75ab3b3cf8b5db7","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57e75559358fd6f9593b44506d75871004c124a70b6be3e0ce18597b71a08fc2","160f307d5ccc1f934de7fbed97f1d2016402f90f204c484e20bd5c2a19a4172a","9c1363edb96f09d8d2140284a39015dba08d5b01a98334ba9ad8784ab160c835","2a56407acc5881608ef5fa4c0688d446df6adfd010578ce83dd1b747d895b17f","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","ad5c7ca4a4dc8e39e0aa221b981f6306ca1c037c99bd4902bf02831ba5d7fae9",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"5362b44ccdfba77ac392febf7f8d755af484222cfdc7a9aa1dee67bf51a352f9","affectsGlobalScope":true},"4866843595b27b290ce6cc8092818ede98631734525453dec48d32d7f6726f18","d036da8d9e6391ad06ff5a71b8018838f0990667a178390eb48462059dba92de","63728b518fee91037e3d44081b0c7f3cc6fafb79a997dca5300a899277384867","8c4a16f8523cd932b16f3b6feb983037d2ca5699946d1f32b3787055fccbfff3","b76baf9af98ef1da1c3a681e66034c9ce21862fa4177235153d9719df72c2b1d","89d639ae440d34751d94c0333d83bc4dcfadc45cd15849f74cc1d9c0f0ce0413",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"92cfb0fd9ea018f140b7a9af0868daa80646e4f2fcbde2d60fb60c0319862ec8","7faa534c9c865c9338a8b46fe3fc3822f6ad58747240b103d0606e63990a4935","0ae6b96cc95c41d86deb7c208256f126bc58bbb6829e1e29b063aa9eed9ea3f7",{"version":"c6e4a85271072ff15b04d09075b357407d4cdead8ca536ec613a2bb02a03285e","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"e9f997f4724f4a19ddb396660061b55ae90dd0e4bb7a34788f7c9d1ceaf7dade","f6c9e1baa89f163bc1b29001ed43d3a24734e53a756e0ed89a92e40be17af5e3","4103297e96869b5226a7570a295fbf5f845e9dc4a3b3f8f242993c7f8aad1d42","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f3b323d28220d61475dc0229fad6d0bff24381766b40a30fe67743da772c82ad","b966a6e620b297ecd31d0359894a4018255d85da5a277b21867296e97e21fefd","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","cd2b61246eeb62ebc6842fe28f7b3389c081d3b6355091cffe3d12c083bd5705","48e2eb12763f6f72f9daf15967499f69bc4dcda00e1c93696ba25d14af513660",{"version":"57141225815ac2d5caf7e781c6442861854149675096afd9ed5b699aff80a5e7","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","1edbd43bfc703943f0eabfef8aac222fb3e509d9b13c60295cb206b9b75bb6be","12fd795309573a15193cf71d22f7e5debbec599b77ffeb3bb5c0fd1bd15cbe6d","4082bc53696f77cae7f84dd002d4766f3a814b9b2b0d9be4e399ee3f9afc501d",{"version":"e32d7b239d2649efbb57eca949ffc764fb76fd8cce9f57632c0217407a79fa1a","affectsGlobalScope":true},{"version":"5bf73febf7c8cc741ba62e94758eed3208f62473c50702d209bcfece18e12421","affectsGlobalScope":true},"3758d3cb9971c113455a802ad7fa16fa216639add0f2c90767cf177f8d85106d","048a373805662e209f7af8717b45ae77a8052ff2272234d6f8cb84d87831f516","f71e0cc279b5086fa3f46f0bb467d376a18776ec7c99c45b3bd7c670097e1308",{"version":"09e6c9b5d3f323c84bc103e387d1b41e03f5155909615ad877d862ff82758d00","affectsGlobalScope":true},"5af698993d8ba0b74e6d34902091b9cadab8e30d3b009746331721651b5890a4",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"27fea46e25bceaf52375ad48afdf5b9f78af76d551e30cc86077541d1c405e8e","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb",{"version":"2ac0f7acb8725f29dc323f58705778c095c169418728315404bd0090ed26d746","signature":"0522ca0e6e36eaaf19415a17868346f8c298dbb70c55b54a358133ca90042738"},"d782e571cb7d6ec0f0645957ed843d00e3f8577e08cc2940f400c931bc47a8df","9167246623f181441e6116605221268d94e33a1ebd88075e2dc80133c928ae7e","dc1a838d8a514b6de9fbce3bd5e6feb9ccfe56311e9338bb908eb4d0d966ecaf","186f09ed4b1bc1d5a5af5b1d9f42e2d798f776418e82599b3de16423a349d184","d692ae73951775d2448df535ce8bc8abf162dc343911fedda2c37b8de3b20d8e","867d62c61432e319e2cbdef2980ae7e1fc034f72fd265c91f92eec3d07e4d9d6","b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968","b61b573ff4ba88d0ca9f59655f66ddd34db4696d2b51c6ef7a959f2b70cb4109","8174e9c229331b9202cf34327e89794a98bb1a442aeee03c46c4b50034b72142","f40fd5b46add805ff018d3490352931e069eb524e3068b86d46d048534d1b824","2c31f69dc0e07f3c396462dae566bf822b1fbc9b56ae1f64ac73a652cf7e4a35","6888c13dda417d9057790a8c403e77e0fa1d7a083d947fdd9310961548a0a08e","a0ff940b1a0e503c45976623abdb39bcfecee97e9f40c3c59f16c659a4da3239","e2befcff13777268fe913fdae10fdca86632e142d0a56bafa88c2a15ee220701","5a739f3dbc49e8769afe70233c31489ed34ba9efe7f1150635658497cb1cbc71","3035306296b362047b08a2a4040a3bf33f0625287b3891e69b864b5d78b8286b","b11e5173a66497863b6d525009624f56ec5124cd6c30e56e8a3e9b41dd303962","178e4bbf4575f0f3d8027d67870aa11bf30ea98663a9f205ca03adc05fa135d7","d57e501aa9e3208fa52cdf03c414173e40523b20a89b5f70c5bffb53ead42c07","a011ef547fb4aca43d5b37d44419f9fc16ba089edf1eb96d20d9c9ee6beefc77","0eb499336fda2cdb3acbfb5c160153028f647904326921b84103e2c83f6892fb","29d441a45ca67aa4b9dc48eb80f26dce82602a066e51af92978a1b4bcb78c507","c5dbca090d5b388006482f4c159f9560ac5a44a7a6d77bb4a64c8749cf8ddb4b","cf18efc36568036078617bb6bd66186f3f68ba789baa67147a0e3128c9398bd0","dc4b884038ecf1dc687a89944e04cf6b1e83391f2d541212dccbb0de67c97f1d","8835ccff7f7bf75094749fd5da9604becacc31016f683907642f92cfefa9346d","8ac4904be5b82699041086aa0dd33327d2afa3bcb107fa887c308bbdde1ea7ce","257e143511763fc89bde384f58bf0a02e1708330705370c0a4483e9f1500ceaa","18584847cdf14e522faa67916d50b8ba7479c8f12262c99d90078dffcae12a8e","44e590a660a2ed3c71e92c85a4af2507b43359825ab4805ec2dcef54e9d564ee","30a39429dd194c9bd3bbb32a32e247d9b547524308d61acc1ba8f16e72e61ee9","f0b04452cd330d29522cbe34176e683f21429e690c2aaec5ecee88303537fda4","f499b42bfdba1be1e0a9cf2ea797ad00694bc7908fdbb8f1f50e4a8034387f67","57794fc7348347817d469e09db6a3faf7aec386f92cb0dad0acbe1336a3f68d7","b82e3f89b8b5d563df90b8e5da3dc2b39443a4db8a3c0310919d55a242da56dc","847ccc20490110124a2252c5a705dfe1355921470d2bd6da9af1d4943e54346b","4cc6d8bdf1e7d492569cf7437ca3f01bf9cc767c3295953b415a6c8d5badf1ab","3b0309147d62225ffd116d3440f480e8df63a47e71e47fb6b432858db931b9e0","139db12276e11f90df65778f7513bc3f85957d74fd0d1bbeb19e4a1dace4f662","2884fcc91f5d42a3288a75a558b036923e3d926354fa0c3fa0251c2c3d4b54e8","013446b40d561ed0b2c2822d01954d4612d5e67222369073345aeebeb03fd406","4cb9df3ea8035d85480096a5ff94dbbcf941efb38c5c1ea77f1dc164d4342728","b35517e270f8735aa771989daa684625bc6285c91e8e4377f13f70a6ff415fc9","291b47b629e4c15e96bacb8d1f707573e72fedbb0fcab43f729e5f9d73560c3c","ae147af43f062662157775c85e3801ea3b70dc7b8f39c7aa260ad215e1942cb3","2a1d0598c9acba389f6a3369d52822a34045bd2ce75d012613bd0b802663c73b","78e817751f43865838b80e44aec551f4d2eb50c7a8ef528a628da9cf8c427b66","878d8319802cbd907be389848225859546d87c66c5b8cf7b864fab14d3dda283","897537e8a5aa22a4ec865ade55b791c0010c863ac5f34e57e7e1c156d9862546","f253b0f34ac2757af5c73868b3235104f5e311c03859987b2402afd1382db058","88f98a99221fa413325886b54d3f2eec69c6092190c2693c2a460240c7bb2f28",{"version":"cb209441133820460c3d12d9390e66424faa995b4044f6bf86877a1b1b944d9b","signature":"c58aef05b743cdcb2c40b9d8abe2fa1874fb9884b7c74d3c03205bde903c2bec"},{"version":"06f0d8b2efacb35849de04e3d0507c29d104933741d6491f0a5863417a8f6e5e","signature":"bc5af62a310ababca0b90a2896b2d8731d59896f517f28505dd1f21d62e8166e"},"e9b48596baefe465d46567a4beccd564035024a154d99f54c7fed02380707333",{"version":"6eb50a0c85cda6b9a3bb7de0a4768fbac1e10b82adac1ab9c9e4c712137604a6","signature":"78a24d28a45c741b54a73122c3a894d0ca7064e7e9c74d499e1881f9fb112e30"},{"version":"7a8b986cbf4f9befb594e7ec761cebb9ee2de486f88f9a5953bec3054148855d","signature":"fd7c479f74afe26ef554e363cd00d6a95d6d00669ea0940d4b781a2c5300b257"},{"version":"b796c98689b56adf4f1c31e374680cf37b9d39fd0d729de699b21237bfc93a12","signature":"15d7ffbafc4a916e9bb8ba0cedf9cf36ff7b4e98f66211302610774fe58ea086"},{"version":"b8749593d3681b39437b6bcdbe2bc9870ac15b5ea3f3ac5465fbc745354c3295","signature":"6e4e77c8de2e84b944f3c04d8b89f5002693aa778d5c6fb553e1c93b2525ec09"},{"version":"908fa8b42dd3f6f174f363f368027794225de9d0a70c1a7a6bf163aba146e9bc","signature":"400d6d3f6d8565e910bd19590c80f44fe2539b78d1cffcfdad20db3bdade51df"},{"version":"035c97517b53f6404703525f8a366ca8cb445ce796352110c27f89d4af3aeb44","signature":"c4fb23423b7b38403c0a0d59473167633539995eeb42e842ec35cc5b65f4a857"},{"version":"b69ade040a9a3344104dd90f0d9da4bdf847a2d08d6d3bd3257cc65cadf7b24f","signature":"71f8cd261903a0f7710e3ade5856ee951a298f2e6952e84892eca1e39858cb0c"},"f2e5fa7d4aefe542762909ac966abdeaaaa76befbf561924edabb02b9b57542d","28e9fcac58f5957d1b82ab2b856799c24f7530e1d048198c1d0b9923762265ed","072a49808080400016c2557d47648297d854da5d75c2005083432f5bbbc19949","f25d3ac13258725686f0fbad31b82418ce00799f5d145570d6ee398a39651043","bbfcec9ed673c3dcb2668c3b216c7be9102a9e900e3d73801611da7f21746fdc","da3e4adedc5b5fd041f31a11d6bd98dde20febb2f2705988396d5a07f6f17543","9e6a844fae8202f8aa8bc6c7d076980221a15106c2a6a6f1e38fe1f2b8d07d62","99b07e053c9eae92b706ce3914d4b14bde4d896afc5a351c4660918ac64c6584","9fd36cbc7e5eaa50308919a4496ac677490c20a36a26208ef288f3033ad4c855","739adbaa02fd46f768fb88c72bc3359966241d36bc844a54f158fc68539f951b","8909288948f7bf5a408b6521a659a78765939ee319cd68ad5df4fb76fe1a755d","ff90f20e235b71cea80a352916e7f2a4737302e4f5b539d00e75204c82014b70","10ed1e58a17e61a6eb4f1bca430999ac214629058239489d498b88dc891f2327","1d1c0c879e2139313479670b032fc056ac93136a8199ed3e30fd118004077627","92ad95e6220ab829c8f5cfca9be43e26e041a2922cde6e998782030d41c49963","12c924e7f2e516943ce436ad51965a38cbbd9dee5fe670ae6349bd8c1bf76f52","75f4d060766b9c61825a122b94d61c45bbb6cafaa9f077c59987dc6c00467c76","42b7e0b9bed165997eb168904dfcd11254ff978ceeacda906e77d8f44c89f31f","b16879b91b181532922b7f279d8cba9c877c1436d3b0c55285ab8c6f43fd5dce","278055752eff1ed4b30b663d6b812923f041fbfd6cb6563d1b9350b53850059e","4ba1b1b1750a88a8fcc7d521d3ec3ba6235c28c73993e38adcaaec51afd57d5b","4991ee4482820b62aa2e6cd775d9984e0a45a7f6ba64d8a2737cbbb8af7c53f9","450257cba6657271a6646f9561b43062a5d2b39dba8b2e7b4d7c7fda73c6fe57","9a909c6bcc1cd061f649dc3b4dc9922fda9858166617bbc7263dd4c8bee7546f","c47421f20cec5286ce39834a3327579f36cad21f053ef8c09076c1894cd66d93","4c9975f07791ea91c74c2b8140ab48eb5ac2cc81417a108e6612c889a8bd23b3","b7b49dc760f6440dc8677ef49f0ca75c7f0f2f97f461a07bf2aa03723ac61d3d","79d938cb2e44b94e4f1497a9ccc2ff5da2fb7360d4eb7485da114055bc712379","566fd6af165b3acfa13b916594e422994e5d14f4138609fd252504800c9b96b7","ba9605656fa2ff88d69fd3676770ff1440fd70b4cbdce4ca85ac4ce27e659c7a","fedb9303cc3d1af9e5698092e3fd3622c2eb05805582107ac36c8cf0a160d16e","65d51b460383b6f7546f22c888c8b41e0de7385f20ec971acbb56da83bcbe611","b64e1ff30069e6fcfbd6b01df71b89e9f7d34581d1eba2e1fe3f3b1eaf70f28e","b725c869a5ff20458780f26afbe392017e690ee03decdb7d1202ac3539a8e235","4aaaa437c7b26c9b2668da29c1674d5be3b8f8fa150f3d7dac75d67314be9f37","f945eeb4aa141ce1af78affc6547c979f97b1cbb7d8995d4762d006e3e35c667","13bce356dc26c750244fe75f160388f59a1725d33e401ae26dc084277dd9491e","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8a561d8bcaf60594a95c3390a489824c6688e81802701260444fb47881950257","cbc6cad822896d9d97bda9a0cea0834be8999dbe2040758cd6da3948c24415b3","e6ee1dcd00ca1c765c95b0abb2114c2ead786ae7610c823df4cd8fffbcbede10","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","8b25e65927ea90be5da89799997c6f7e7dbcd826a954bd1a466a931d380a3511","af7d2a7f8f8a0d9bcce2a017b1a9f6ec85f57e9484a65f46b6cafe8fb079e9a3","9cb1f37abda1396ced2508edf3d111c99a94421553138edc06353c1c824b8cc8","68a8ceeea894c6d5989c89207e3ac1b33c2c2026ad4a9e8c3cff1d87ea67ec77","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","989b5f3bf15619484ef2327c0a108ad33191bfc2e3deb6347bf175e79fd02e51","2b51763cbd722ee2747bc9e860dd0cc0200cdfdf6735c5c2fd4f5e3e02f1ec86","b650f3fdfd9e86f82d906dfbd81b87ef7c7d7434ee1de923d7d6cf5647434a02","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","3e2b6603bed1f4a82bdad05b68a66cc5943f8e12c647bf2f45a06c9d72cc0e00","eabca6c007c20da02a0cbbf23f6de3c39e662a9adc1a92736968179d7c4cc569","625ea89b6b179966c652b7bb93b57e7c1c2343eb9aba6cfb3ddf801359cde65c","1a69659e9cd6e3785e995d1e748809aa708a76fda03988b7ead402534311c106","27e553ea7ffbcaef2be2af5a79fdbf83cfcda0f95bf17e3c378b33402a28c1d6","1c91d24b8452adecfa340f4eefa3752b546eb68441b01a6ec43aa39f182f2181","068a6c2f0554b945cbfb006187f4c9c27386684810189dfe026a9b30470d3984","dd22a6e590d7fbabb29b903a809141cb1426846d23c21164ff4223a7f9dcff1d","93cd3ba5193ea2029b2eb0b20b94ca9c4e6b9c2a696d7d1a05211a2916ca0d77","748553e51bfbef2b4c8e646275f687e60ea77665c514ee1f880bf5a3cd509f37","a4d09f9410ec90d4b07cd054e8e2f234feb27b66b106202b386ab0b157663358","3749f5690d24338ff4b878db8d0f1b47d04fe891634c88ca56f7166f944fb96b","939f5a5215d6be2165c6a4116f5abb433b84df00f3ac4e458f3cd732786e8431","5f92a8bc72a87fca63d413ed8f303a2df36fb8143f0e974d0844c7422318909c","2a0e1e0a89c6a3991cc04812d4c6fcf92fe7511de87a684bc60357438dddf399","4ddb790ba5f1fd3689213c0501dbf21a7285f2edf562a8f7d86654877a868fc9","b0b840a3379f3539d037cb5b602541d2ab6984462761e505a23793866dc7a0d7","7aed6616e78d880577a37fa5edd42b690354874f1001acdbf21ead2f803a36a0","73a7dc6d00925ef047bc915a54cab15bb242d549b9334d9b5151cc0f35cfaf77","0a1c74bccc0c5a1f22012144a3d9afc19951348540c7ff5e5feaf4eef6259b80","3a1d5de5adaede0fb1ca2045f8b10a0e86f480a1082a11829a0b48da8ad6157f","0a1057aef93b764fb9665d101f2a050f6e060c37ec5b88f2d27bb83412a3487e","6164b754612e5776cc934dc0d6494fe2ee084d39d1cbc6fe4a23a45326730ccc","47679a6b6411019e8f7a443ec3addbec38a79a7e4679c00bc73d3ccdb81d64ce","cac86b9dbfd00f0ac7731f4074d2c69260c88ea28de96a71b0cb4efb5779b869","65bd0d34233fcaab54f5463703a0f022b2db197ef24c4a1d3adda1a9d3d6d502","f5cd1b398a44c53407e4aa1e8b503d0664299f002313d31bbce221644aadc6cb","c2f032cbe6aa8d59f021ccd865990d4d55c11fd3a1b96b81c56903cf05e36f1f","aa20bc1ba435f2a49bd640992da9517e31896e8f6d1a4817800ac96d6f10d6ea","5621180d5cf6e50f53fd6c73e0a60cd4115353f919bdd193580746896167da63","9cc5c390465b87096b69b2b0612a341d974b658cd28447696583f2762226f8c3","08371984685828cedaa25037b76def8f8f7f8304910dc66627bb58a2f53ecea4","7dd1c6c1b927f9edb94773f9333666f52f7b0bdf49a9a7f63129e9e66d1222cf","174f99dc1948a64c4211702a0fcc45d684d05fdfba3100ba4485fe45adb4d7f3","19405c79422e9c2d9ae1affae558857d3cbd138b17db596c642d008cd6c485cb","6c2ba8fe0797b626104a2fd4e8de0dad6edc4b932e4a50a7b72afa09fdcddbe9","dabc6bfb18fc1f988d37c8b659eb07fd35e8269bfa099b6dc02c14093c2b8b1a","ec9dd267b792e7c5c3733a45a3d2e43b93f02b98d86d8be50e11f9c15940c02b","a8f278a697ab8646f88cb2ba9783814e5438637cdfc3c5278e8aca82b4a1fc44","239d9e77e0026e7375dc9b6122f1b62d2c39fc2e5c10f50787cd321880146b95","0f3ca52b0d50160be177f8c79efbbcd666726c2de9256d6335e0d0bcb2e40d6f","1d8820a067af2309ef4f7739d2ada59882eebb3b2b595ff78496760c6f51ba60","0afbe91142eb631d6f31be624cf8a550b03736bfd22b0f309405a6fe4d4c9517","a3c89483a38d76c77a13b69b268a9e5d13abcdf0957ca3f28c9702c47ce8050f","40ec7e761ea0ddfc0add7aedb95dacfc579b25010ed0e2190abc1d34bb67f81e",{"version":"adca65935f69728fc768633e3c1b40a18007afb18d94b954dacee5d770ada756","signature":"db61d2a95e606ee86ac69e1986a92e96eee517cbaa24af2f6a71238702d21bb2"},{"version":"fb11689a1078638918660158ec5e1687090fbf95f4447f5aa1f4473b88ab0a99","signature":"56e786af6fa611f609261ea2caa12bca483fe30f399baaae40f9009621b032b9"},{"version":"140f53f84f6506c9087d46b5d49fde23809a385977a8105d5632db3be71a47cc","signature":"70ac27c0080c56163445f7f85578d54c5971ca3661744377745ab95f9c1e0dc5"},{"version":"abda89a9e8ca775f5c73d6b362e02ab5734bf82fc6e3a611cce58aae443bfa5c","signature":"a66b58a87fb7224e176e70db4db893528a904f4cf3c21fc328f1d451cdfa476d"},"cc4eaa0373d20e3ceb0c3fb78259823476f9aaff606300d2b2a2724ed5e27e95",{"version":"10d5d357ab8ccf3b29fa6d163da01979930920fd09df7f82a3aa5521140f7a61","signature":"9db532b3db7160d93568e1341d2ba47460045b82824344bb48ae19b45b32540c"},"a3236c8367c87e6f65b9ffc0c6156aa3baacd241227c544c5d030237c7b544f3","eed09b7c5ba70de22474b9b92fa037e95ba0a65d5e21c38355c0a6c70812df2f","f7826f9a68a0e18c6926a3c977aebfc7876f523d5562a2009674951315676373","6c3465d4cc3ca86c4b4e540af16a1fca4310e29600a58ec29876ad84483d0bdb","60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",{"version":"e8f1cc96ebcf6d317eb4dc703a37c8f17761a3f7c364af19570e592c77420fec","signature":"10a73d78af44f1ae64192864ddadcd5d182e9ff67dc3cc04bb401059f4557dc8"},{"version":"9d8d0e178389a4966b75b1af3c04b1b0d6dc9180c74af04d03a1b40ef6acc2b1","signature":"432a295507da7ad393064e725004e0dfe7b81a74fe9ca3e293ec8b40cd5e8288"},"2154ffa8f93802db249ddbc404a083959be0ddf036d0afd5280a88369c555c01","bc25b6bb85312a63daed8272183df26f9c49607a99d6af0eab3c90c1ccaf6587",{"version":"d0e2f019b679935b812469aa0f3f2f94e15efc9ce10595fd878a35265011ead6","signature":"e09aa6b719e63d3a43c5d18ed21b7f0d921f23ff2f9497fa2a170dc6f9a9a60f"},{"version":"ef48dcaca5279e295c89e930872d1390f96d67cd3cbba51edd8889750a46de3c","signature":"d7669a870b7f7590b26d7f7194de1f1f69f5298f10c31026df716336c895f764"},{"version":"03afc61a3d2e3a9f97b8add90c68f081d44f4414770a0dbd9b117cd70909c37f","signature":"6e8f8f0b66074e7dbfede0eed3dfa5c51540930a6e03a35efc906f0e1b35f1a6"},{"version":"1a7e1755ac7c40e244716d1ce2ee79c4a3c4f498c4b6e162d70ce214a6225352","signature":"69ab4e06f1e59d50a9b25626c43cf0154399e0fdefded058c876c3462d1dbf6b"},{"version":"0a06c4e4b9067f7f9d32b78199e60dbf422737c9738acc000a254f4b00fc36f4","signature":"cebb0d1afc52824b60dd9552510941e4995496e374ac2aa7e33a14efd4f59835"},{"version":"4bb86003d8526672afbd15a347660b6749d83124d2d8302a645b0493bb9dcb1e","signature":"78fa342775f68d2c9160b5728b6642e66479372e62f5c5d08c399a4a95786243"},{"version":"2ee083bf1b1c02fb348e15c45754f18b926d3796d0d9e18c467246f3079ff489","signature":"df8c1a9e35dfd82f6c803fa8a089b689e1c806d84a2dbeade09121681238857a"},{"version":"591ad70ad3c8d2cbdfa661870a69c11623a9d4a79931c95d98853cafa0b5a15e","signature":"c4204dec4459b212317cd94424b44369b3f02ffe61bdba57e356df760ea99f31"},{"version":"e753c92a54b315a698a7e2d35da5f046c76ea6437fda40a1eb7c2f78aec3e569","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"b52b12cf6bced0192fd98163c997f6700879b375062bf0bee50db34058b0f6b4","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"a9b7f0577843b861b634f49719be0dbe15a2512195991ef8689491cb66a1f0f5","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31",{"version":"1fb008c1a29f86a8a0e9a674b7235f23c6d2a86c9658772941fb626a60aac53b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",{"version":"677646e2620795c98a539fb12fb531f10331c217cef1492132b2518f894fa92d","affectsGlobalScope":true}],"options":{"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","removeComments":true,"skipLibCheck":true,"target":1},"fileIdsList":[[52,94,101,111,137],[52,94,101,111,127,137],[94,111,128,129,130,137,138],[52,94,101,109,111,137],[94,101,111,127,131,136],[94,101,111,137],[94,111,127,137],[94,111,132,133,134,135,137],[94,109],[52,94,101,109],[94,102,109,111,115,116,117,119,137,138,149,151,153],[94,152,154],[94,115,136,151],[94,109,115],[94,109,111,115,118,125,126],[94,109,110,111,112],[94,109,111,113],[94,109,111,115,126,137],[94,109,111,112,113,115,119,127,137,150],[94,101,109,110,111,113,115,126,137],[94,109,111,115,118,119,120,121,122,123,124,125,126,137],[94,101,109,111,112,126],[94,109,111,112,113,115,118,119,120,121,122,123,124,126],[94,109,111,115,121,126],[94,109,111,115,121,126,127,137],[94,109,111,120,126],[94,101,102,109,111,112,125,154],[94,109,111,123,126],[94,109,114],[52,94,101],[94,101],[94,141,142,143,144],[94],[94,114,139,140,145,146,147,148],[52,94,101,109,113],[94,101,102,109],[52,94,101,109,113,115],[52,67,69,94,101,108],[94,267,269],[94,267,268],[52,94],[94,109,182],[94,165,166,167,168,169,170,171,172,173,174,175,176,177,178,183,184,185,186,189,190,191,192,193,194],[94,109,188],[94,199,200,201],[94,109,179,187],[94,179,182],[94,203,204,205],[94,109,179,182,187],[94,179,180,182],[94,101,180],[94,181,198,202,206,207,211,215,216,217,221,222],[94,208,209,210],[94,109,179,180],[94,212,213,214],[94,179,180],[94,218,219,220],[94,109,179,180,182],[94,195,196,197,223,254,256],[94,109,188,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[94,187,188,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253],[94,109,181,187],[94,109,187],[94,101,109,179,181],[94,180,182,255],[94,101,109,179],[52,67,69,94],[67,94,101],[48,94],[51,94],[52,57,85,94],[53,64,65,72,82,93,94],[53,54,64,72,94],[55,94],[56,57,65,73,94],[57,82,90,94],[58,60,64,72,94],[59,94],[60,61,94],[64,94],[62,64,94],[64,65,66,82,93,94],[64,65,66,79,82,85,94],[94,98],[60,67,72,82,93,94],[64,65,67,68,72,82,90,93,94],[67,69,82,90,93,94],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],[64,70,94],[71,93,94],[60,64,72,82,94],[73,94],[74,94],[51,75,94],[76,92,94,98],[77,94],[78,94],[64,79,80,94],[79,81,94,96],[52,64,82,83,84,85,94],[52,82,84,94],[82,83,94],[85,94],[86,94],[64,88,89,94],[88,89,94],[57,72,82,90,94],[91,94],[72,92,94],[52,67,78,93,94],[57,94],[82,94,95],[94,96],[94,97],[52,57,64,66,75,82,93,94,96,98],[82,94,99],[64,67,69,72,82,90,93,94,99,101],[94,259],[94,105,106],[67,94,101,104,107],[94,102,109,154,155,160,260,266,270,271],[94,102,109],[94,102,103,109,158,160,161],[94,103,155,158,159,160,161,162,163,164,261,264,266,272,276,277,278,279,280,281,282],[94,102,103,109,160,161],[94,103,154,158,160],[94,109,154,160],[94,102,103,109,145,154,155,156,157,158,159,160,161,162,163,257,258,260,261,262,263,264,266,271,272,273,277],[94,109,154,160,265],[94,103,154,157,158,159,162,163,257,261,266],[94,103,109,154,155,156,159],[94,145,154,155],[94,109,160],[94,111,154,274,275],[94,102,103,109,157],[94,109,116,145,154],[94,109,144,155,276,278],[109,154,155,160,266,270],[102,109],[102,109,160],[103,155,158,159,160,161,162,163,164,261,264,266,272,276,277,278,279,280,281,282],[102,109,160,161],[154,160],[109,154,160],[102,109,154,155,156,159,160,161,162,163,261,262,263,264,266],[109,154,160,265],[154,159,162,163,257,261,266],[154,155,156,159],[109],[154],[109,160],[111],[102,109,157],[109,154],[109,278]],"referencedMap":[[128,1],[129,2],[131,3],[138,4],[130,1],[137,5],[133,6],[134,7],[136,8],[132,6],[135,6],[117,9],[111,10],[154,11],[153,12],[152,13],[116,14],[119,15],[113,16],[112,17],[127,18],[151,19],[118,20],[150,21],[120,22],[125,23],[122,24],[123,25],[121,26],[126,27],[124,28],[115,29],[144,30],[143,31],[141,30],[145,32],[142,33],[147,33],[149,34],[140,35],[148,36],[114,37],[139,33],[146,9],[109,38],[275,36],[270,39],[269,40],[267,33],[179,41],[165,9],[166,9],[167,9],[168,9],[169,9],[170,9],[171,9],[172,9],[173,9],[174,9],[175,9],[176,9],[177,9],[178,9],[183,42],[195,43],[184,9],[185,9],[186,9],[189,44],[190,9],[191,9],[192,9],[193,9],[194,9],[196,9],[197,33],[198,33],[199,9],[202,45],[200,46],[201,47],[203,42],[206,48],[204,49],[205,50],[181,51],[207,47],[223,52],[208,9],[211,53],[209,46],[210,54],[212,9],[215,55],[213,46],[214,47],[216,54],[217,56],[222,54],[218,9],[221,57],[219,46],[220,58],[257,59],[225,46],[226,46],[227,46],[224,9],[228,46],[229,46],[230,46],[251,46],[246,60],[231,46],[254,61],[232,46],[233,46],[234,46],[248,46],[235,46],[236,46],[249,46],[237,46],[247,33],[252,46],[253,46],[238,46],[239,46],[250,62],[240,46],[188,46],[241,46],[242,46],[243,46],[244,46],[187,33],[245,63],[182,64],[256,65],[180,64],[255,66],[47,67],[102,31],[287,68],[48,69],[49,69],[51,70],[52,71],[53,72],[54,73],[55,74],[56,75],[57,76],[58,77],[59,78],[60,79],[61,79],[63,80],[62,81],[64,80],[65,82],[66,83],[50,84],[100,33],[67,85],[68,86],[69,87],[101,88],[70,89],[71,90],[72,91],[73,92],[74,93],[75,94],[76,95],[77,96],[78,97],[79,98],[80,98],[81,99],[82,100],[84,101],[83,102],[85,103],[86,104],[87,33],[88,105],[89,106],[90,107],[91,108],[92,109],[93,110],[94,111],[95,112],[96,113],[97,114],[98,115],[99,116],[288,33],[289,117],[259,33],[157,33],[260,118],[46,33],[274,33],[110,33],[105,33],[107,119],[106,33],[104,33],[258,33],[108,120],[268,33],[271,33],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[272,121],[103,122],[162,123],[156,33],[262,33],[155,33],[263,33],[283,124],[163,125],[159,126],[164,127],[278,128],[261,127],[265,33],[266,129],[279,130],[161,127],[284,33],[285,33],[286,33],[280,127],[160,131],[282,9],[281,132],[273,133],[276,134],[158,135],[264,136],[277,137],[290,33],[291,33],[292,33]],"exportedModulesMap":[[128,1],[129,2],[131,3],[138,4],[130,1],[137,5],[133,6],[134,7],[136,8],[132,6],[135,6],[117,9],[111,10],[154,11],[153,12],[152,13],[116,14],[119,15],[113,16],[112,17],[127,18],[151,19],[118,20],[150,21],[120,22],[125,23],[122,24],[123,25],[121,26],[126,27],[124,28],[115,29],[144,30],[143,31],[141,30],[145,32],[142,33],[147,33],[149,34],[140,35],[148,36],[114,37],[139,33],[146,9],[109,38],[275,36],[270,39],[269,40],[267,33],[179,41],[165,9],[166,9],[167,9],[168,9],[169,9],[170,9],[171,9],[172,9],[173,9],[174,9],[175,9],[176,9],[177,9],[178,9],[183,42],[195,43],[184,9],[185,9],[186,9],[189,44],[190,9],[191,9],[192,9],[193,9],[194,9],[196,9],[197,33],[198,33],[199,9],[202,45],[200,46],[201,47],[203,42],[206,48],[204,49],[205,50],[181,51],[207,47],[223,52],[208,9],[211,53],[209,46],[210,54],[212,9],[215,55],[213,46],[214,47],[216,54],[217,56],[222,54],[218,9],[221,57],[219,46],[220,58],[257,59],[225,46],[226,46],[227,46],[224,9],[228,46],[229,46],[230,46],[251,46],[246,60],[231,46],[254,61],[232,46],[233,46],[234,46],[248,46],[235,46],[236,46],[249,46],[237,46],[247,33],[252,46],[253,46],[238,46],[239,46],[250,62],[240,46],[188,46],[241,46],[242,46],[243,46],[244,46],[187,33],[245,63],[182,64],[256,65],[180,64],[255,66],[47,67],[102,31],[287,68],[48,69],[49,69],[51,70],[52,71],[53,72],[54,73],[55,74],[56,75],[57,76],[58,77],[59,78],[60,79],[61,79],[63,80],[62,81],[64,80],[65,82],[66,83],[50,84],[100,33],[67,85],[68,86],[69,87],[101,88],[70,89],[71,90],[72,91],[73,92],[74,93],[75,94],[76,95],[77,96],[78,97],[79,98],[80,98],[81,99],[82,100],[84,101],[83,102],[85,103],[86,104],[87,33],[88,105],[89,106],[90,107],[91,108],[92,109],[93,110],[94,111],[95,112],[96,113],[97,114],[98,115],[99,116],[288,33],[289,117],[259,33],[157,33],[260,118],[46,33],[274,33],[110,33],[105,33],[107,119],[106,33],[104,33],[258,33],[108,120],[268,33],[271,33],[1,33],[9,33],[13,33],[12,33],[3,33],[14,33],[15,33],[16,33],[17,33],[18,33],[19,33],[20,33],[21,33],[4,33],[5,33],[25,33],[22,33],[23,33],[24,33],[26,33],[27,33],[28,33],[6,33],[29,33],[30,33],[31,33],[32,33],[7,33],[36,33],[33,33],[34,33],[35,33],[37,33],[8,33],[38,33],[43,33],[44,33],[39,33],[40,33],[41,33],[42,33],[2,33],[45,33],[11,33],[10,33],[272,138],[103,139],[162,140],[283,141],[163,142],[159,143],[164,144],[278,145],[261,144],[265,33],[266,146],[279,147],[161,144],[280,144],[160,148],[282,149],[281,150],[273,151],[276,152],[158,153],[264,154],[277,155],[290,33],[291,33],[292,33]],"semanticDiagnosticsPerFile":[128,129,131,138,130,137,133,134,136,132,135,117,111,154,153,152,116,119,113,112,127,151,118,150,120,125,122,123,121,126,124,115,144,143,141,145,142,147,149,140,148,114,139,146,109,275,270,269,267,179,165,166,167,168,169,170,171,172,173,174,175,176,177,178,183,195,184,185,186,189,190,191,192,193,194,196,197,198,199,202,200,201,203,206,204,205,181,207,223,208,211,209,210,212,215,213,214,216,217,222,218,221,219,220,257,225,226,227,224,228,229,230,251,246,231,254,232,233,234,248,235,236,249,237,247,252,253,238,239,250,240,188,241,242,243,244,187,245,182,256,180,255,47,102,287,48,49,51,52,53,54,55,56,57,58,59,60,61,63,62,64,65,66,50,100,67,68,69,101,70,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,288,289,259,157,260,46,274,110,105,107,106,104,258,108,268,271,1,9,13,12,3,14,15,16,17,18,19,20,21,4,5,25,22,23,24,26,27,28,6,29,30,31,32,7,36,33,34,35,37,8,38,43,44,39,40,41,42,2,45,11,10,272,103,162,156,262,155,263,283,163,159,164,278,261,265,266,279,161,284,285,286,280,160,282,281,273,276,158,264,277,290,291,292]},"version":"4.9.5"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="@coral-xyz/anchor/node_modules/@solana/web3.js" />
1
2
  import { Connection, PublicKey } from '@solana/web3.js';
2
3
  export declare function createLookupTable(authority: PublicKey, payer: PublicKey, connection: Connection): Promise<{
3
4
  lookupTableInst: import("@solana/web3.js").TransactionInstruction;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flash-sdk",
3
- "version": "2.32.1",
3
+ "version": "2.33.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [