@indexing/jiti 0.0.48 → 0.0.49

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/main.js CHANGED
@@ -30,6 +30,10 @@ function $parcel$exportWildcard(dest, source) {
30
30
  return dest;
31
31
  }
32
32
 
33
+ function $parcel$defineInteropFlag(a) {
34
+ Object.defineProperty(a, '__esModule', {value: true, configurable: true});
35
+ }
36
+
33
37
  $parcel$export(module.exports, "templates", () => $882b6d93070905b3$export$a8fc3402335b0b04);
34
38
  $parcel$export(module.exports, "getAllTemplates", () => $882b6d93070905b3$export$cceb5167b935aafb);
35
39
  $parcel$export(module.exports, "getTemplateByKey", () => $882b6d93070905b3$export$a07bfd14bbc36e4b);
@@ -54,6 +58,11 @@ const $6bd2ca253e883278$var$PARTIAL_VM_TO_NETWORK_MAP = {
54
58
  RIPPLE: [
55
59
  "RIPPLE"
56
60
  ],
61
+ SNAPCHAIN: [
62
+ "CAST_PROTOCOL",
63
+ "FARCASTER",
64
+ "SNAPCHAIN"
65
+ ],
57
66
  STARKNET: [
58
67
  "STARKNET"
59
68
  ],
@@ -173,7 +182,7 @@ const $25d5bdd23cba31eb$export$ace043a4f2efe476 = {
173
182
  if (partial.tokenAddress?.toLowerCase().includes("aptos_coin")) finalToken = null;
174
183
  else finalToken = partial.tokenAddress?.toLowerCase();
175
184
  transfers.push({
176
- amount: BigInt(partial.amount),
185
+ amount: BigInt(partial.amount || 0),
177
186
  blockNumber: parseInt(block.block_height, 10),
178
187
  from: partial.from,
179
188
  to: partial.to,
@@ -397,7 +406,12 @@ const $f9ab50a3e879ac1c$export$b5fd4920e8b7d913 = {
397
406
  const blockNumber = Number(typedBlock.block.header.height);
398
407
  const blockTimestamp = new Date(typedBlock.block.header.time).toISOString();
399
408
  for (const txRaw of typedBlock.block.data.txs || []){
400
- const decoded = (0, $8zHUo$cosmjsprotosigning.decodeTxRaw)(new Uint8Array($f9ab50a3e879ac1c$require$Buffer.from(txRaw, "base64")));
409
+ let decoded;
410
+ try {
411
+ decoded = (0, $8zHUo$cosmjsprotosigning.decodeTxRaw)(new Uint8Array($f9ab50a3e879ac1c$require$Buffer.from(txRaw, "base64")));
412
+ } catch (e) {
413
+ continue;
414
+ }
401
415
  const txHash = (0, $8zHUo$viem.sha256)(new Uint8Array($f9ab50a3e879ac1c$require$Buffer.from(txRaw, "base64")));
402
416
  const transactionGasFee = BigInt(decoded.authInfo.fee?.amount?.[0]?.amount || "0");
403
417
  const registry = new (0, $8zHUo$cosmjsprotosigning.Registry)((0, $8zHUo$cosmjsstargate.defaultRegistryTypes));
@@ -410,8 +424,8 @@ const $f9ab50a3e879ac1c$export$b5fd4920e8b7d913 = {
410
424
  blockNumber: blockNumber,
411
425
  from: decodedMsg.sender,
412
426
  to: decodedMsg.receiver,
413
- amount: BigInt(decodedMsg.token.amount),
414
- token: decodedMsg.token.denom,
427
+ amount: BigInt(decodedMsg.token?.amount || 0),
428
+ token: decodedMsg.token?.denom,
415
429
  tokenType: "NATIVE",
416
430
  timestamp: blockTimestamp,
417
431
  transactionHash: txHash.slice(2).toUpperCase(),
@@ -693,6 +707,102 @@ function $414c83047563e72e$export$685b7dc2197cd06c(rawBlock) {
693
707
  }
694
708
 
695
709
 
710
+ var $7fd98ef3967673b0$exports = {};
711
+
712
+ $parcel$defineInteropFlag($7fd98ef3967673b0$exports);
713
+
714
+ $parcel$export($7fd98ef3967673b0$exports, "default", () => $7fd98ef3967673b0$export$2e2bcd8739ae039);
715
+
716
+ var $7fd98ef3967673b0$require$Buffer = $8zHUo$buffer.Buffer;
717
+ function $7fd98ef3967673b0$var$getValueFromObject(obj, path) {
718
+ if (!obj || !path || !path.length) return undefined;
719
+ const parts = path.replace(/\.\./g, ".__dot__").split(".");
720
+ if (parts[0].startsWith("__dot__")) parts[0] = parts[0].replace(/__dot__/, ".");
721
+ if (parts.length === 1) return obj[parts[0]];
722
+ return $7fd98ef3967673b0$var$getValueFromObject(obj[parts[0]], parts.slice(1).join("."));
723
+ }
724
+ function $7fd98ef3967673b0$var$getMsgTimestamp(msg) {
725
+ return new Date(parseInt(msg.timestamp || msg.data?.timestamp) * 1000 + 1609459200000);
726
+ }
727
+ function $7fd98ef3967673b0$export$2e2bcd8739ae039(evt) {
728
+ if (!evt?.data?.type) return null;
729
+ const data = evt.data;
730
+ const processed = {
731
+ fid: data.fid,
732
+ signer: evt.signer,
733
+ timestamp: $7fd98ef3967673b0$var$getMsgTimestamp(data).toISOString()
734
+ };
735
+ switch(data.type){
736
+ case "MESSAGE_TYPE_CAST_ADD":
737
+ processed._dataType = "cast";
738
+ processed.hash = evt.hash;
739
+ processed.embeds = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.embeds");
740
+ processed.parentCastUrl = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.parent_url");
741
+ processed.parentCastFid = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.parent_cast_id.fid");
742
+ processed.parentCastHash = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.parent_cast_id.hash");
743
+ processed.text = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.text");
744
+ processed.mentions = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.mentions");
745
+ processed.mentionsPositions = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.mentions_positions");
746
+ processed.deletedAt = "";
747
+ break;
748
+ case "MESSAGE_TYPE_CAST_REMOVE":
749
+ processed._dataType = "cast";
750
+ processed.hash = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_remove_body.target_hash");
751
+ if (typeof processed.hash === "string" && !processed.hash?.startsWith("0x")) processed.hash = "0x" + $7fd98ef3967673b0$require$Buffer.from(processed.hash, "base64").toString("hex");
752
+ processed.deletedAt = processed.timestamp;
753
+ break;
754
+ case "MESSAGE_TYPE_REACTION_ADD":
755
+ case "MESSAGE_TYPE_REACTION_REMOVE":
756
+ processed._dataType = "reaction";
757
+ processed.targetCastFid = $7fd98ef3967673b0$var$getValueFromObject(data, "reaction_body.target_cast_id.fid");
758
+ processed.targetCastHash = $7fd98ef3967673b0$var$getValueFromObject(data, "reaction_body.target_cast_id.hash");
759
+ processed.type = $7fd98ef3967673b0$var$getValueFromObject(data, "reaction_body.type")?.split("_TYPE_").pop().toLowerCase();
760
+ if (data.type === "MESSAGE_TYPE_REACTION_REMOVE") processed.deletedAt = processed.timestamp;
761
+ else processed.deletedAt = "";
762
+ break;
763
+ case "MESSAGE_TYPE_LINK_ADD":
764
+ case "MESSAGE_TYPE_LINK_REMOVE":
765
+ processed._dataType = "link";
766
+ processed.target_fid = $7fd98ef3967673b0$var$getValueFromObject(data, "link_body.target_fid");
767
+ processed.type = $7fd98ef3967673b0$var$getValueFromObject(data, "link_body.type");
768
+ if (data.type === "MESSAGE_TYPE_LINK_REMOVE") processed.deletedAt = processed.timestamp;
769
+ else processed.deletedAt = "";
770
+ break;
771
+ case "MESSAGE_TYPE_VERIFICATION_ADD_ETH_ADDRESS":
772
+ processed._dataType = "verification";
773
+ processed.address = $7fd98ef3967673b0$var$getValueFromObject(data, "verification_add_address_body.address");
774
+ if (processed.address?.startsWith("0x")) processed.address = processed.address.toLowerCase();
775
+ processed.deletedAt = "";
776
+ break;
777
+ case "MESSAGE_TYPE_VERIFICATION_REMOVE":
778
+ processed._dataType = "verification";
779
+ processed.address = $7fd98ef3967673b0$var$getValueFromObject(data, "verification_remove_body.address");
780
+ if (processed.address?.startsWith("0x")) processed.address = processed.address.toLowerCase();
781
+ processed.deletedAt = processed.timestamp;
782
+ break;
783
+ case "MESSAGE_TYPE_USER_DATA_ADD":
784
+ {
785
+ processed._dataType = "user_data";
786
+ const key = $7fd98ef3967673b0$var$getValueFromObject(data, "user_data_body.type").split("_").pop().toLowerCase();
787
+ processed.data = {
788
+ [key]: $7fd98ef3967673b0$var$getValueFromObject(data, "user_data_body.value")
789
+ };
790
+ break;
791
+ }
792
+ case "MESSAGE_TYPE_USERNAME_PROOF":
793
+ return null;
794
+ default:
795
+ return null;
796
+ }
797
+ for(const k in processed){
798
+ if (processed[k] === null || processed[k] === undefined) delete processed[k];
799
+ if (k === "deletedAt" && processed[k] === "") processed[k] = null;
800
+ if ((k.endsWith("Hash") || k === "hash") && processed[k] && !processed[k].startsWith("0x")) processed[k] = "0x" + $7fd98ef3967673b0$require$Buffer.from(processed[k], "base64").toString("hex");
801
+ }
802
+ return processed;
803
+ }
804
+
805
+
696
806
  $parcel$exportWildcard($d7167569386d0d4c$exports, $b8691f253b6baa6e$exports);
697
807
  $parcel$exportWildcard($d7167569386d0d4c$exports, $6bd2ca253e883278$exports);
698
808
  $parcel$exportWildcard($d7167569386d0d4c$exports, $596a656635c74d50$exports);
@@ -700,6 +810,7 @@ $parcel$exportWildcard($d7167569386d0d4c$exports, $e5566e47593dc3e2$exports);
700
810
  $parcel$exportWildcard($d7167569386d0d4c$exports, $da55be3e40667945$exports);
701
811
  $parcel$exportWildcard($d7167569386d0d4c$exports, $f7a3fb164436c9c3$exports);
702
812
  $parcel$exportWildcard($d7167569386d0d4c$exports, $414c83047563e72e$exports);
813
+ $parcel$exportWildcard($d7167569386d0d4c$exports, $7fd98ef3967673b0$exports);
703
814
 
704
815
 
705
816
 
@@ -1877,6 +1988,7 @@ const $7dd402f6ad0dab6a$var$tokenTransfersTemplate = {
1877
1988
  var $7dd402f6ad0dab6a$export$2e2bcd8739ae039 = $7dd402f6ad0dab6a$var$tokenTransfersTemplate;
1878
1989
 
1879
1990
 
1991
+
1880
1992
  const $9af31dbb692f94e3$var$NULL_ADDRESS = "0x0000000000000000000000000000000000000000";
1881
1993
  const $9af31dbb692f94e3$var$filterValuesTemplate = {
1882
1994
  key: "filter_values",
@@ -1902,7 +2014,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
1902
2014
  finalValues = Array.from(finalValues.values()).filter((v)=>v?.length > 3).map((v)=>v.startsWith("0x") && v.length === 66 ? v.toLowerCase() : v);
1903
2015
  break;
1904
2016
  case "COSMOS":
1905
- for (const tx of block.txs_results){
2017
+ for (const tx of block.txs_results || []){
1906
2018
  for (const evt of tx.events || [])for (const attr of evt.attributes || []){
1907
2019
  const val = attr.value;
1908
2020
  if (typeof val === "string" && val?.length > 35 && val?.length < 70) {
@@ -1915,6 +2027,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
1915
2027
  }
1916
2028
  }
1917
2029
  }
2030
+ finalValues = Array.from(finalValues.values()).filter((v)=>v?.length && /^[A-z0-9]+$/.test(v));
1918
2031
  break;
1919
2032
  case "EVM":
1920
2033
  for (const tx of block.transactions || []){
@@ -1953,6 +2066,24 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
1953
2066
  for(const key in tx)if (tx[key]?.issuer) finalValues.add(tx[key]?.issuer);
1954
2067
  }
1955
2068
  break;
2069
+ case "SNAPCHAIN":
2070
+ {
2071
+ const typedBlock = block;
2072
+ let parsed = [];
2073
+ if (typedBlock.processed?.length) parsed = typedBlock.processed;
2074
+ else {
2075
+ const shards = typedBlock.shards ? typedBlock.shards : [
2076
+ block
2077
+ ];
2078
+ const messages = shards.map((s)=>s.transactions?.map((t)=>t.user_messages || []).flat()).flat();
2079
+ parsed = messages.map((0, $7fd98ef3967673b0$export$2e2bcd8739ae039));
2080
+ }
2081
+ for (const p of parsed){
2082
+ if (!p) continue;
2083
+ finalValues.add(`${p.fid}`);
2084
+ }
2085
+ break;
2086
+ }
1956
2087
  case "STARKNET":
1957
2088
  for (const tx of block.transactions || []){
1958
2089
  const from = tx.send_address?.toLowerCase() || $9af31dbb692f94e3$var$NULL_ADDRESS;
@@ -9178,8 +9309,185 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
9178
9309
  "0xcf6884a33693df6c33b57b5adf66118da99057ea7c985ada4fbb396672f71fd1",
9179
9310
  "0xf000a96be506d1be0a696348aa7a52c0715d88e16593abca800b35cd70518490"
9180
9311
  ]
9312
+ },
9313
+ {
9314
+ params: {},
9315
+ payload: "https://jiti.indexing.co/networks/cast_protocol/14863292",
9316
+ output: [
9317
+ "1023860",
9318
+ "1039346",
9319
+ "1060442",
9320
+ "1078023",
9321
+ "1100071",
9322
+ "1115733",
9323
+ "1136215",
9324
+ "1149176",
9325
+ "1158447",
9326
+ "1181611",
9327
+ "1190222",
9328
+ "1190224",
9329
+ "1293795",
9330
+ "285998",
9331
+ "291813",
9332
+ "308094",
9333
+ "315240",
9334
+ "516359",
9335
+ "549592",
9336
+ "7637",
9337
+ "773458",
9338
+ "832276",
9339
+ "957217",
9340
+ "968720"
9341
+ ]
9342
+ },
9343
+ {
9344
+ params: {},
9345
+ payload: "https://jiti.indexing.co/networks/celestia/7496481",
9346
+ output: [
9347
+ "celestia10er54gljsfdt2c638ayndpahrr9590mncfcpl3",
9348
+ "celestia17xpfvakm2amg962yls6f84z3kell8c5lpnjs3s",
9349
+ "celestia1ldf3mhs0z5h5effkkyvc5scpy0xah00t98xfml"
9350
+ ]
9351
+ },
9352
+ {
9353
+ params: {},
9354
+ payload: "https://jiti.indexing.co/networks/injective/133343704",
9355
+ output: [
9356
+ "0x21f3eed62ddc64458129c0dcbff32b3f54c92084db787eb5cf7c20e69a1de033",
9357
+ "0xe7df227480a497a8fe0811d4d9136e74fa8f83e9000074616c69732d75736474",
9358
+ "1225173393peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9359
+ "1233796937peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9360
+ "1241634179peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9361
+ "1250417137peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9362
+ "14158133000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9363
+ "14212603544peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9364
+ "1peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9365
+ "619992652peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9366
+ "620004155peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9367
+ "629994219peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9368
+ "630018486peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9369
+ "866763289peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9370
+ "899000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9371
+ "900000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9372
+ "902000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
9373
+ "inj12423gsxq64jax0ghtdcjdt30x3wtq6md63ec2x",
9374
+ "inj12vpajtjf5cvmk2w737m0t8qwwkyjz0xgvxwyus",
9375
+ "inj13hqsrfuehaj6d09fnyh5602trlztysymxrfjvs",
9376
+ "inj13npv2370futcvy8j2qxmq59recxftufdjnljlq",
9377
+ "inj144w02j59yh5jwf6ufe6pf3uasckw7cca833r6r",
9378
+ "inj14vnmw2wee3xtrsqfvpcqg35jg9v7j2vdpzx0kk",
9379
+ "inj14xvft0xh82cu44kvtj0jsyp8tssqanyufpn26n",
9380
+ "inj15cqe6e94w4pjj3ycm2lmpaf8zc8qtxnm4j2e5m",
9381
+ "inj15z55ukc7wd97ephadyc3nmdy7ts8ln99xwrchn",
9382
+ "inj16mynjh2fpkm5970zxdwxr8pfh9zemhlrxczh7f",
9383
+ "inj17n8kpnavff2xx86s9rgv8vjy64mkxagflyz6rr",
9384
+ "inj17xpfvakm2amg962yls6f84z3kell8c5l6s5ye9",
9385
+ "inj180qqam730rzf4efq0rk4c752eglxf3mlmza3xe",
9386
+ "inj18t8vwhnsdk0u0h5pd7u7nnlmv8yx7r243vqk8e",
9387
+ "inj19l0hx5qvghgcnxel0ju2vtuv3su74khnaees0c",
9388
+ "inj19z7379t2cycrm8cmsfxx0p5f0cj5jpjzv726vz",
9389
+ "inj19zpejr68rk8a00eavzp4hxz9m9hdlpqzdvsdeh",
9390
+ "inj1ax24sjxls440qgpeagxtvl4rgxduvqk86tm8xd",
9391
+ "inj1dd9qeprk8t3pjsxuv3ukz8xp0kk64tqm4m8vdq",
9392
+ "inj1e7t9u68y7502pgzv24fcww5eq2asc8qecmgeck",
9393
+ "inj1e9u3ljf356hgtgjr7380nupnj38trm5a0mv9re",
9394
+ "inj1ew6kqpwyuhps6j5mpj47pyhcwulzm0drc7ttvy",
9395
+ "inj1f7aaq5vlefhxh3hvmsxxd8dfnpd26mu3z6e797",
9396
+ "inj1g9prkzgfjk0wgeg6uwx808u0p7h7d5j08ryfgw",
9397
+ "inj1gnt4c7nfelz50ueqamxejh5hh76474xnj3gs3a",
9398
+ "inj1hny8rk4455rkynj44l42jdss5sjvg3kvv58tdh",
9399
+ "inj1jr7v0g7nvc9hadz3djyjpdqdmalxzu62997n0d",
9400
+ "inj1ku8h6nkgp4hrf5nc5uukx30f2w6r4g2747x0z0",
9401
+ "inj1l74zlrsd2ydyq6jupj6qxgu40dayjqxjzh8ywd",
9402
+ "inj1r3tj245qe2hvxthqe3rxqsm8zss8sz6u0zpvst",
9403
+ "inj1rknucfv74ul9xxxe2tzdw63w7zdzak0zdvvctj",
9404
+ "inj1s9hhrdgzerf79w963gv6kez4hvp3jds5avsc6e",
9405
+ "inj1snp7q6v56fvc0xcmzkmvgnf9pth8d86whe5hz2",
9406
+ "inj1tfu0tmzffp7elc7tp7f5ale4zugagf28uwn890",
9407
+ "inj1tpzed9lvfc44p3r5ev4llhv03ykfv0ev2tqjj0",
9408
+ "inj1ul0jyayq5jt63lsgz82djymwwnaglqlfdw894u",
9409
+ "inj1vs7wjfd489g69m498fgqa9lkkwqkl3zdcgx08r",
9410
+ "inj1yl6nwv02m26pxnm7gxdetk63tgaxat5z39e37c",
9411
+ "inj1znedx2afn3md4nu9wdnh7q6ksxyjfn3tpf9832"
9412
+ ]
9413
+ },
9414
+ {
9415
+ params: {},
9416
+ payload: "https://jiti.indexing.co/networks/aptos/431238610",
9417
+ output: [
9418
+ "0x03cce78e71ad0b34d22069d0f7941b84785dbcbbba10b569db052a7862639c3a",
9419
+ "0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a",
9420
+ "0x1ef2be2a92393c09ac5bc5e5b934a831611ebab5c4f2419d1d35f0552abec5f6",
9421
+ "0x34b74d880555e3972e1e95c4e215f7d8a2653797d4bd949c8890b5f5e4a97040",
9422
+ "0x381dad0b9af7bc810881258761d6ef2c35c9e3fb6891db5e4d008a7f090d56c9",
9423
+ "0x3b38735644d0be8ac37ebd84a1e42fa5c2487495ef8782f6c694b1a147f82426",
9424
+ "0x45c798416c158c1fd93fed2e40fbc2cd9f27bd640e6a6ed7ce58c9e4f413695b",
9425
+ "0x46d8639fb27ff13f625a652b4dd3e81f3a5d5dc82c2b52b8432337b3baa5685a",
9426
+ "0x5a96fab415f43721a44c5a761ecfcccc3dae9c21f34313f0e594b49d8d4564f4",
9427
+ "0x621fd48a608f1823f2ad11552e387950c3eb9e405c4af6ced2e20faa2bcddade",
9428
+ "0x623ceb896d7b03e8a7c8dd3af0f5a486ac025d466b92ead6fd6316add377bd60",
9429
+ "0x9ec0f229bc76ed56f4488b6e152e7ab37d12cc4eb25ed73d11f4af79b32e8093",
9430
+ "0xa13eae62dc5401fe6b016ece8360f81d0f87c20c1004ab09545dcfbfea9b6377",
9431
+ "0xbc3557a52bcac15d470e6ffa421eeea105baffd8471d6aa2c0238380f363ccd3",
9432
+ "0xc1f907d4bce871f9f0b78d8ce46cb62de2b14e2045338655312b9a861e5a9d4b",
9433
+ "0xda116c9007ec7baa411e11e0fecbebe5618c3a4707b35d14f5a804e3ed377bcc",
9434
+ "0xde2fb400352ecaa78ef076361b675a95f851f9b4943b7a07907a2b5c908385b8",
9435
+ "0xe7f571ba7d04d6bc88f519289bc4f94a54fb25634128b3f9884d64904db32c12"
9436
+ ]
9437
+ },
9438
+ {
9439
+ params: {},
9440
+ payload: "https://jiti.indexing.co/networks/farcaster/2442805",
9441
+ output: [
9442
+ "1053494",
9443
+ "1066546",
9444
+ "1090343",
9445
+ "1131909",
9446
+ "1134046",
9447
+ "1134910",
9448
+ "1135798",
9449
+ "1139813",
9450
+ "1146560",
9451
+ "1148283",
9452
+ "1163463",
9453
+ "1164305",
9454
+ "1167631",
9455
+ "1167984",
9456
+ "1181162",
9457
+ "1182140",
9458
+ "1186458",
9459
+ "1198272",
9460
+ "1230161",
9461
+ "1275123",
9462
+ "1278167",
9463
+ "12938",
9464
+ "1322761",
9465
+ "1332557",
9466
+ "1334507",
9467
+ "1337870",
9468
+ "1337940",
9469
+ "310644",
9470
+ "319554",
9471
+ "377148",
9472
+ "430267",
9473
+ "432992",
9474
+ "448300",
9475
+ "455743",
9476
+ "467181",
9477
+ "474644",
9478
+ "511842",
9479
+ "541835",
9480
+ "618593",
9481
+ "789371",
9482
+ "864838",
9483
+ "897445",
9484
+ "902685",
9485
+ "905676",
9486
+ "957928",
9487
+ "969084"
9488
+ ]
9181
9489
  }
9182
- ]
9490
+ ].slice(0)
9183
9491
  };
9184
9492
  var $9af31dbb692f94e3$export$2e2bcd8739ae039 = $9af31dbb692f94e3$var$filterValuesTemplate;
9185
9493