@indexing/jiti 0.0.48 → 0.0.50

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.
package/dist/module.js CHANGED
@@ -44,6 +44,11 @@ const $09654dffcb68affa$var$PARTIAL_VM_TO_NETWORK_MAP = {
44
44
  RIPPLE: [
45
45
  "RIPPLE"
46
46
  ],
47
+ SNAPCHAIN: [
48
+ "CAST_PROTOCOL",
49
+ "FARCASTER",
50
+ "SNAPCHAIN"
51
+ ],
47
52
  STARKNET: [
48
53
  "STARKNET"
49
54
  ],
@@ -163,7 +168,7 @@ const $bea1ed486f96b980$export$ace043a4f2efe476 = {
163
168
  if (partial.tokenAddress?.toLowerCase().includes("aptos_coin")) finalToken = null;
164
169
  else finalToken = partial.tokenAddress?.toLowerCase();
165
170
  transfers.push({
166
- amount: BigInt(partial.amount),
171
+ amount: BigInt(partial.amount || 0),
167
172
  blockNumber: parseInt(block.block_height, 10),
168
173
  from: partial.from,
169
174
  to: partial.to,
@@ -387,7 +392,12 @@ const $8d6646508fb2fa58$export$b5fd4920e8b7d913 = {
387
392
  const blockNumber = Number(typedBlock.block.header.height);
388
393
  const blockTimestamp = new Date(typedBlock.block.header.time).toISOString();
389
394
  for (const txRaw of typedBlock.block.data.txs || []){
390
- const decoded = (0, $hgUW1$decodeTxRaw)(new Uint8Array($8d6646508fb2fa58$require$Buffer.from(txRaw, "base64")));
395
+ let decoded;
396
+ try {
397
+ decoded = (0, $hgUW1$decodeTxRaw)(new Uint8Array($8d6646508fb2fa58$require$Buffer.from(txRaw, "base64")));
398
+ } catch (e) {
399
+ continue;
400
+ }
391
401
  const txHash = (0, $hgUW1$sha256)(new Uint8Array($8d6646508fb2fa58$require$Buffer.from(txRaw, "base64")));
392
402
  const transactionGasFee = BigInt(decoded.authInfo.fee?.amount?.[0]?.amount || "0");
393
403
  const registry = new (0, $hgUW1$Registry)((0, $hgUW1$defaultRegistryTypes));
@@ -400,8 +410,8 @@ const $8d6646508fb2fa58$export$b5fd4920e8b7d913 = {
400
410
  blockNumber: blockNumber,
401
411
  from: decodedMsg.sender,
402
412
  to: decodedMsg.receiver,
403
- amount: BigInt(decodedMsg.token.amount),
404
- token: decodedMsg.token.denom,
413
+ amount: BigInt(decodedMsg.token?.amount || 0),
414
+ token: decodedMsg.token?.denom,
405
415
  tokenType: "NATIVE",
406
416
  timestamp: blockTimestamp,
407
417
  transactionHash: txHash.slice(2).toUpperCase(),
@@ -683,6 +693,101 @@ function $8f1e0ae1ead9a2a9$export$685b7dc2197cd06c(rawBlock) {
683
693
  }
684
694
 
685
695
 
696
+ var $8331f131029dede8$exports = {};
697
+
698
+ $parcel$export($8331f131029dede8$exports, "snapchainTimestampFromMsg", () => $8331f131029dede8$export$f69db31cc49f73fd);
699
+ $parcel$export($8331f131029dede8$exports, "snapchainParseEvent", () => $8331f131029dede8$export$146821f89c094be4);
700
+
701
+ var $8331f131029dede8$require$Buffer = $hgUW1$Buffer;
702
+ function $8331f131029dede8$var$getValueFromObject(obj, path) {
703
+ if (!obj || !path || !path.length) return undefined;
704
+ const parts = path.replace(/\.\./g, ".__dot__").split(".");
705
+ if (parts[0].startsWith("__dot__")) parts[0] = parts[0].replace(/__dot__/, ".");
706
+ if (parts.length === 1) return obj[parts[0]];
707
+ return $8331f131029dede8$var$getValueFromObject(obj[parts[0]], parts.slice(1).join("."));
708
+ }
709
+ function $8331f131029dede8$export$f69db31cc49f73fd(msg) {
710
+ return new Date(parseInt(msg.timestamp || msg.data?.timestamp) * 1000 + 1609459200000);
711
+ }
712
+ function $8331f131029dede8$export$146821f89c094be4(evt) {
713
+ if (!evt?.data?.type) return null;
714
+ const data = evt.data;
715
+ const processed = {
716
+ fid: data.fid,
717
+ signer: evt.signer,
718
+ timestamp: $8331f131029dede8$export$f69db31cc49f73fd(data).toISOString()
719
+ };
720
+ switch(data.type){
721
+ case "MESSAGE_TYPE_CAST_ADD":
722
+ processed._dataType = "cast";
723
+ processed.hash = evt.hash;
724
+ processed.embeds = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.embeds");
725
+ processed.parentCastUrl = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.parent_url");
726
+ processed.parentCastFid = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.parent_cast_id.fid");
727
+ processed.parentCastHash = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.parent_cast_id.hash");
728
+ processed.text = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.text");
729
+ processed.mentions = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.mentions");
730
+ processed.mentionsPositions = $8331f131029dede8$var$getValueFromObject(data, "cast_add_body.mentions_positions");
731
+ processed.deletedAt = "";
732
+ break;
733
+ case "MESSAGE_TYPE_CAST_REMOVE":
734
+ processed._dataType = "cast";
735
+ processed.hash = $8331f131029dede8$var$getValueFromObject(data, "cast_remove_body.target_hash");
736
+ if (typeof processed.hash === "string" && !processed.hash?.startsWith("0x")) processed.hash = "0x" + $8331f131029dede8$require$Buffer.from(processed.hash, "base64").toString("hex");
737
+ processed.deletedAt = processed.timestamp;
738
+ break;
739
+ case "MESSAGE_TYPE_REACTION_ADD":
740
+ case "MESSAGE_TYPE_REACTION_REMOVE":
741
+ processed._dataType = "reaction";
742
+ processed.targetCastFid = $8331f131029dede8$var$getValueFromObject(data, "reaction_body.target_cast_id.fid");
743
+ processed.targetCastHash = $8331f131029dede8$var$getValueFromObject(data, "reaction_body.target_cast_id.hash");
744
+ processed.type = $8331f131029dede8$var$getValueFromObject(data, "reaction_body.type")?.split("_TYPE_").pop().toLowerCase();
745
+ if (data.type === "MESSAGE_TYPE_REACTION_REMOVE") processed.deletedAt = processed.timestamp;
746
+ else processed.deletedAt = "";
747
+ break;
748
+ case "MESSAGE_TYPE_LINK_ADD":
749
+ case "MESSAGE_TYPE_LINK_REMOVE":
750
+ processed._dataType = "link";
751
+ processed.target_fid = $8331f131029dede8$var$getValueFromObject(data, "link_body.target_fid");
752
+ processed.type = $8331f131029dede8$var$getValueFromObject(data, "link_body.type");
753
+ if (data.type === "MESSAGE_TYPE_LINK_REMOVE") processed.deletedAt = processed.timestamp;
754
+ else processed.deletedAt = "";
755
+ break;
756
+ case "MESSAGE_TYPE_VERIFICATION_ADD_ETH_ADDRESS":
757
+ processed._dataType = "verification";
758
+ processed.address = $8331f131029dede8$var$getValueFromObject(data, "verification_add_address_body.address");
759
+ if (processed.address?.startsWith("0x")) processed.address = processed.address.toLowerCase();
760
+ processed.deletedAt = "";
761
+ break;
762
+ case "MESSAGE_TYPE_VERIFICATION_REMOVE":
763
+ processed._dataType = "verification";
764
+ processed.address = $8331f131029dede8$var$getValueFromObject(data, "verification_remove_body.address");
765
+ if (processed.address?.startsWith("0x")) processed.address = processed.address.toLowerCase();
766
+ processed.deletedAt = processed.timestamp;
767
+ break;
768
+ case "MESSAGE_TYPE_USER_DATA_ADD":
769
+ {
770
+ processed._dataType = "user_data";
771
+ const key = $8331f131029dede8$var$getValueFromObject(data, "user_data_body.type")?.split("_").pop().toLowerCase();
772
+ if (key) processed.data = {
773
+ [key]: $8331f131029dede8$var$getValueFromObject(data, "user_data_body.value")
774
+ };
775
+ break;
776
+ }
777
+ case "MESSAGE_TYPE_USERNAME_PROOF":
778
+ return null;
779
+ default:
780
+ return null;
781
+ }
782
+ for(const k in processed){
783
+ if (processed[k] === null || processed[k] === undefined) delete processed[k];
784
+ if (k === "deletedAt" && processed[k] === "") processed[k] = null;
785
+ if ((k.endsWith("Hash") || k === "hash") && processed[k] && !processed[k].startsWith("0x")) processed[k] = "0x" + $8331f131029dede8$require$Buffer.from(processed[k], "base64").toString("hex");
786
+ }
787
+ return processed;
788
+ }
789
+
790
+
686
791
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $cc5213c20a6615f3$exports);
687
792
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $09654dffcb68affa$exports);
688
793
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $42564d9f228fe302$exports);
@@ -690,6 +795,7 @@ $parcel$exportWildcard($fde9406d76ec24a9$exports, $68871103c7bc00cf$exports);
690
795
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $cfa23334cbdf9391$exports);
691
796
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $f6a81337d3532e59$exports);
692
797
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $8f1e0ae1ead9a2a9$exports);
798
+ $parcel$exportWildcard($fde9406d76ec24a9$exports, $8331f131029dede8$exports);
693
799
 
694
800
 
695
801
 
@@ -1867,6 +1973,7 @@ const $0ab1acc1eff391f6$var$tokenTransfersTemplate = {
1867
1973
  var $0ab1acc1eff391f6$export$2e2bcd8739ae039 = $0ab1acc1eff391f6$var$tokenTransfersTemplate;
1868
1974
 
1869
1975
 
1976
+
1870
1977
  const $dc0c078500ed1fea$var$NULL_ADDRESS = "0x0000000000000000000000000000000000000000";
1871
1978
  const $dc0c078500ed1fea$var$filterValuesTemplate = {
1872
1979
  key: "filter_values",
@@ -1892,7 +1999,7 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
1892
1999
  finalValues = Array.from(finalValues.values()).filter((v)=>v?.length > 3).map((v)=>v.startsWith("0x") && v.length === 66 ? v.toLowerCase() : v);
1893
2000
  break;
1894
2001
  case "COSMOS":
1895
- for (const tx of block.txs_results){
2002
+ for (const tx of block.txs_results || []){
1896
2003
  for (const evt of tx.events || [])for (const attr of evt.attributes || []){
1897
2004
  const val = attr.value;
1898
2005
  if (typeof val === "string" && val?.length > 35 && val?.length < 70) {
@@ -1905,6 +2012,7 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
1905
2012
  }
1906
2013
  }
1907
2014
  }
2015
+ finalValues = Array.from(finalValues.values()).filter((v)=>v?.length && /^[A-z0-9]+$/.test(v));
1908
2016
  break;
1909
2017
  case "EVM":
1910
2018
  for (const tx of block.transactions || []){
@@ -1943,6 +2051,24 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
1943
2051
  for(const key in tx)if (tx[key]?.issuer) finalValues.add(tx[key]?.issuer);
1944
2052
  }
1945
2053
  break;
2054
+ case "SNAPCHAIN":
2055
+ {
2056
+ const typedBlock = block;
2057
+ let parsed = [];
2058
+ if (typedBlock.processed?.length) parsed = typedBlock.processed;
2059
+ else {
2060
+ const shards = typedBlock.shards ? typedBlock.shards : [
2061
+ block
2062
+ ];
2063
+ const messages = shards.map((s)=>s.transactions?.map((t)=>t.user_messages || []).flat()).flat();
2064
+ parsed = messages.map((0, $8331f131029dede8$export$146821f89c094be4));
2065
+ }
2066
+ for (const p of parsed){
2067
+ if (!p) continue;
2068
+ finalValues.add(`${p.fid}`);
2069
+ }
2070
+ break;
2071
+ }
1946
2072
  case "STARKNET":
1947
2073
  for (const tx of block.transactions || []){
1948
2074
  const from = tx.send_address?.toLowerCase() || $dc0c078500ed1fea$var$NULL_ADDRESS;
@@ -9168,8 +9294,185 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
9168
9294
  "0xcf6884a33693df6c33b57b5adf66118da99057ea7c985ada4fbb396672f71fd1",
9169
9295
  "0xf000a96be506d1be0a696348aa7a52c0715d88e16593abca800b35cd70518490"
9170
9296
  ]
9297
+ },
9298
+ {
9299
+ params: {},
9300
+ payload: "https://jiti.indexing.co/networks/cast_protocol/14863292",
9301
+ output: [
9302
+ "1023860",
9303
+ "1039346",
9304
+ "1060442",
9305
+ "1078023",
9306
+ "1100071",
9307
+ "1115733",
9308
+ "1136215",
9309
+ "1149176",
9310
+ "1158447",
9311
+ "1181611",
9312
+ "1190222",
9313
+ "1190224",
9314
+ "1293795",
9315
+ "285998",
9316
+ "291813",
9317
+ "308094",
9318
+ "315240",
9319
+ "516359",
9320
+ "549592",
9321
+ "7637",
9322
+ "773458",
9323
+ "832276",
9324
+ "957217",
9325
+ "968720"
9326
+ ]
9327
+ },
9328
+ {
9329
+ params: {},
9330
+ payload: "https://jiti.indexing.co/networks/celestia/7496481",
9331
+ output: [
9332
+ "celestia10er54gljsfdt2c638ayndpahrr9590mncfcpl3",
9333
+ "celestia17xpfvakm2amg962yls6f84z3kell8c5lpnjs3s",
9334
+ "celestia1ldf3mhs0z5h5effkkyvc5scpy0xah00t98xfml"
9335
+ ]
9336
+ },
9337
+ {
9338
+ params: {},
9339
+ payload: "https://jiti.indexing.co/networks/injective/133343704",
9340
+ output: [
9341
+ "0x21f3eed62ddc64458129c0dcbff32b3f54c92084db787eb5cf7c20e69a1de033",
9342
+ "0xe7df227480a497a8fe0811d4d9136e74fa8f83e9000074616c69732d75736474",
9343
+ "1225173393peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9344
+ "1233796937peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9345
+ "1241634179peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9346
+ "1250417137peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9347
+ "14158133000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9348
+ "14212603544peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9349
+ "1peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9350
+ "619992652peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9351
+ "620004155peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9352
+ "629994219peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9353
+ "630018486peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9354
+ "866763289peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9355
+ "899000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9356
+ "900000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9357
+ "902000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9358
+ "inj12423gsxq64jax0ghtdcjdt30x3wtq6md63ec2x",
9359
+ "inj12vpajtjf5cvmk2w737m0t8qwwkyjz0xgvxwyus",
9360
+ "inj13hqsrfuehaj6d09fnyh5602trlztysymxrfjvs",
9361
+ "inj13npv2370futcvy8j2qxmq59recxftufdjnljlq",
9362
+ "inj144w02j59yh5jwf6ufe6pf3uasckw7cca833r6r",
9363
+ "inj14vnmw2wee3xtrsqfvpcqg35jg9v7j2vdpzx0kk",
9364
+ "inj14xvft0xh82cu44kvtj0jsyp8tssqanyufpn26n",
9365
+ "inj15cqe6e94w4pjj3ycm2lmpaf8zc8qtxnm4j2e5m",
9366
+ "inj15z55ukc7wd97ephadyc3nmdy7ts8ln99xwrchn",
9367
+ "inj16mynjh2fpkm5970zxdwxr8pfh9zemhlrxczh7f",
9368
+ "inj17n8kpnavff2xx86s9rgv8vjy64mkxagflyz6rr",
9369
+ "inj17xpfvakm2amg962yls6f84z3kell8c5l6s5ye9",
9370
+ "inj180qqam730rzf4efq0rk4c752eglxf3mlmza3xe",
9371
+ "inj18t8vwhnsdk0u0h5pd7u7nnlmv8yx7r243vqk8e",
9372
+ "inj19l0hx5qvghgcnxel0ju2vtuv3su74khnaees0c",
9373
+ "inj19z7379t2cycrm8cmsfxx0p5f0cj5jpjzv726vz",
9374
+ "inj19zpejr68rk8a00eavzp4hxz9m9hdlpqzdvsdeh",
9375
+ "inj1ax24sjxls440qgpeagxtvl4rgxduvqk86tm8xd",
9376
+ "inj1dd9qeprk8t3pjsxuv3ukz8xp0kk64tqm4m8vdq",
9377
+ "inj1e7t9u68y7502pgzv24fcww5eq2asc8qecmgeck",
9378
+ "inj1e9u3ljf356hgtgjr7380nupnj38trm5a0mv9re",
9379
+ "inj1ew6kqpwyuhps6j5mpj47pyhcwulzm0drc7ttvy",
9380
+ "inj1f7aaq5vlefhxh3hvmsxxd8dfnpd26mu3z6e797",
9381
+ "inj1g9prkzgfjk0wgeg6uwx808u0p7h7d5j08ryfgw",
9382
+ "inj1gnt4c7nfelz50ueqamxejh5hh76474xnj3gs3a",
9383
+ "inj1hny8rk4455rkynj44l42jdss5sjvg3kvv58tdh",
9384
+ "inj1jr7v0g7nvc9hadz3djyjpdqdmalxzu62997n0d",
9385
+ "inj1ku8h6nkgp4hrf5nc5uukx30f2w6r4g2747x0z0",
9386
+ "inj1l74zlrsd2ydyq6jupj6qxgu40dayjqxjzh8ywd",
9387
+ "inj1r3tj245qe2hvxthqe3rxqsm8zss8sz6u0zpvst",
9388
+ "inj1rknucfv74ul9xxxe2tzdw63w7zdzak0zdvvctj",
9389
+ "inj1s9hhrdgzerf79w963gv6kez4hvp3jds5avsc6e",
9390
+ "inj1snp7q6v56fvc0xcmzkmvgnf9pth8d86whe5hz2",
9391
+ "inj1tfu0tmzffp7elc7tp7f5ale4zugagf28uwn890",
9392
+ "inj1tpzed9lvfc44p3r5ev4llhv03ykfv0ev2tqjj0",
9393
+ "inj1ul0jyayq5jt63lsgz82djymwwnaglqlfdw894u",
9394
+ "inj1vs7wjfd489g69m498fgqa9lkkwqkl3zdcgx08r",
9395
+ "inj1yl6nwv02m26pxnm7gxdetk63tgaxat5z39e37c",
9396
+ "inj1znedx2afn3md4nu9wdnh7q6ksxyjfn3tpf9832"
9397
+ ]
9398
+ },
9399
+ {
9400
+ params: {},
9401
+ payload: "https://jiti.indexing.co/networks/aptos/431238610",
9402
+ output: [
9403
+ "0x03cce78e71ad0b34d22069d0f7941b84785dbcbbba10b569db052a7862639c3a",
9404
+ "0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a",
9405
+ "0x1ef2be2a92393c09ac5bc5e5b934a831611ebab5c4f2419d1d35f0552abec5f6",
9406
+ "0x34b74d880555e3972e1e95c4e215f7d8a2653797d4bd949c8890b5f5e4a97040",
9407
+ "0x381dad0b9af7bc810881258761d6ef2c35c9e3fb6891db5e4d008a7f090d56c9",
9408
+ "0x3b38735644d0be8ac37ebd84a1e42fa5c2487495ef8782f6c694b1a147f82426",
9409
+ "0x45c798416c158c1fd93fed2e40fbc2cd9f27bd640e6a6ed7ce58c9e4f413695b",
9410
+ "0x46d8639fb27ff13f625a652b4dd3e81f3a5d5dc82c2b52b8432337b3baa5685a",
9411
+ "0x5a96fab415f43721a44c5a761ecfcccc3dae9c21f34313f0e594b49d8d4564f4",
9412
+ "0x621fd48a608f1823f2ad11552e387950c3eb9e405c4af6ced2e20faa2bcddade",
9413
+ "0x623ceb896d7b03e8a7c8dd3af0f5a486ac025d466b92ead6fd6316add377bd60",
9414
+ "0x9ec0f229bc76ed56f4488b6e152e7ab37d12cc4eb25ed73d11f4af79b32e8093",
9415
+ "0xa13eae62dc5401fe6b016ece8360f81d0f87c20c1004ab09545dcfbfea9b6377",
9416
+ "0xbc3557a52bcac15d470e6ffa421eeea105baffd8471d6aa2c0238380f363ccd3",
9417
+ "0xc1f907d4bce871f9f0b78d8ce46cb62de2b14e2045338655312b9a861e5a9d4b",
9418
+ "0xda116c9007ec7baa411e11e0fecbebe5618c3a4707b35d14f5a804e3ed377bcc",
9419
+ "0xde2fb400352ecaa78ef076361b675a95f851f9b4943b7a07907a2b5c908385b8",
9420
+ "0xe7f571ba7d04d6bc88f519289bc4f94a54fb25634128b3f9884d64904db32c12"
9421
+ ]
9422
+ },
9423
+ {
9424
+ params: {},
9425
+ payload: "https://jiti.indexing.co/networks/farcaster/2442805",
9426
+ output: [
9427
+ "1053494",
9428
+ "1066546",
9429
+ "1090343",
9430
+ "1131909",
9431
+ "1134046",
9432
+ "1134910",
9433
+ "1135798",
9434
+ "1139813",
9435
+ "1146560",
9436
+ "1148283",
9437
+ "1163463",
9438
+ "1164305",
9439
+ "1167631",
9440
+ "1167984",
9441
+ "1181162",
9442
+ "1182140",
9443
+ "1186458",
9444
+ "1198272",
9445
+ "1230161",
9446
+ "1275123",
9447
+ "1278167",
9448
+ "12938",
9449
+ "1322761",
9450
+ "1332557",
9451
+ "1334507",
9452
+ "1337870",
9453
+ "1337940",
9454
+ "310644",
9455
+ "319554",
9456
+ "377148",
9457
+ "430267",
9458
+ "432992",
9459
+ "448300",
9460
+ "455743",
9461
+ "467181",
9462
+ "474644",
9463
+ "511842",
9464
+ "541835",
9465
+ "618593",
9466
+ "789371",
9467
+ "864838",
9468
+ "897445",
9469
+ "902685",
9470
+ "905676",
9471
+ "957928",
9472
+ "969084"
9473
+ ]
9171
9474
  }
9172
- ]
9475
+ ].slice(0)
9173
9476
  };
9174
9477
  var $dc0c078500ed1fea$export$2e2bcd8739ae039 = $dc0c078500ed1fea$var$filterValuesTemplate;
9175
9478