forked from vatlab/jupyterlab-sos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.tsbuildinfo
8044 lines (8044 loc) · 456 KB
/
tsconfig.tsbuildinfo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"program": {
"fileInfos": {
"./node_modules/typescript/lib/lib.es5.d.ts": {
"version": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
"signature": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.d.ts": {
"version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
"signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2016.d.ts": {
"version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
"signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.es2017.d.ts": {
"version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
"signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
"affectsGlobalScope": false
},
"./node_modules/typescript/lib/lib.dom.d.ts": {
"version": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
"signature": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.dom.iterable.d.ts": {
"version": "d42f4141bd9ce82b4e2902f26acb00c183e321be19a38bbc0e76a922c1724c94",
"signature": "d42f4141bd9ce82b4e2902f26acb00c183e321be19a38bbc0e76a922c1724c94",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.webworker.importscripts.d.ts": {
"version": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481",
"signature": "7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.scripthost.d.ts": {
"version": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd",
"signature": "097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.core.d.ts": {
"version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
"signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.collection.d.ts": {
"version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
"signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.generator.d.ts": {
"version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
"signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
"version": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
"signature": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.promise.d.ts": {
"version": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
"signature": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
"version": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
"signature": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
"version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
"signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
"version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
"signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
"version": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
"signature": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
"version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
"signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.object.d.ts": {
"version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
"signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
"version": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
"signature": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.string.d.ts": {
"version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
"signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.intl.d.ts": {
"version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
"signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
"version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
"signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
"affectsGlobalScope": true
},
"./node_modules/typescript/lib/lib.es2017.full.d.ts": {
"version": "d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",
"signature": "d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed",
"affectsGlobalScope": false
},
"./node_modules/@types/codemirror/index.d.ts": {
"version": "59e1a98b6e8328e226e3c23fd93272507cf31b256e940ad1ebd34c2bbc824383",
"signature": "59e1a98b6e8328e226e3c23fd93272507cf31b256e940ad1ebd34c2bbc824383",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/json.d.ts": {
"version": "44a4b5ef53f2ff94bfcfa223e3fc3ad35f32bef57337e050513dd7c729a0cb63",
"signature": "44a4b5ef53f2ff94bfcfa223e3fc3ad35f32bef57337e050513dd7c729a0cb63",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/mime.d.ts": {
"version": "47dbb9212d0f309e56914de06038a91ad4f0ce9e28a200ebe7c8268bada8fede",
"signature": "47dbb9212d0f309e56914de06038a91ad4f0ce9e28a200ebe7c8268bada8fede",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/promise.d.ts": {
"version": "a57ee34edf8791c8c4395ada1fb459df7aad714838555ab306729b66db795840",
"signature": "a57ee34edf8791c8c4395ada1fb459df7aad714838555ab306729b66db795840",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/random.d.ts": {
"version": "615e4d11ecad76f74ca65a175f3c3b3f7c82be6abe41436c61505d6bf700fab5",
"signature": "615e4d11ecad76f74ca65a175f3c3b3f7c82be6abe41436c61505d6bf700fab5",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/token.d.ts": {
"version": "facc62a0c8748f37d6c85d3e5a6eb4cd1d40a899d4ee2c360c9ec4756513931c",
"signature": "facc62a0c8748f37d6c85d3e5a6eb4cd1d40a899d4ee2c360c9ec4756513931c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/uuid.d.ts": {
"version": "912f540154a35a5c589e394710cf2472e7fd005893f3aed8353e3ff1c6cc7509",
"signature": "912f540154a35a5c589e394710cf2472e7fd005893f3aed8353e3ff1c6cc7509",
"affectsGlobalScope": false
},
"./node_modules/@lumino/coreutils/types/index.d.ts": {
"version": "14291b5cf9f3318a8aec9e856b6563cc1aaf8b0fc4b7a87117f29ecac8e7b803",
"signature": "14291b5cf9f3318a8aec9e856b6563cc1aaf8b0fc4b7a87117f29ecac8e7b803",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/clipboard.d.ts": {
"version": "b9a2b4d2c1040298a3940b1f904553904336c6618bd87aaefa9e170b0b9331e9",
"signature": "b9a2b4d2c1040298a3940b1f904553904336c6618bd87aaefa9e170b0b9331e9",
"affectsGlobalScope": false
},
"./node_modules/@lumino/messaging/types/index.d.ts": {
"version": "cac40d24651330bd29ebcf835dc9014a8d9ce02219503fb1dd880ffd27d71b3b",
"signature": "cac40d24651330bd29ebcf835dc9014a8d9ce02219503fb1dd880ffd27d71b3b",
"affectsGlobalScope": false
},
"./node_modules/@lumino/signaling/types/index.d.ts": {
"version": "11e5e4c5983c5150410112a156503aa02b29fed56100314eb3a77334a5e2ec6c",
"signature": "11e5e4c5983c5150410112a156503aa02b29fed56100314eb3a77334a5e2ec6c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/array.d.ts": {
"version": "df52f40fae2bd287b9fb52f0d4cd6978891f5b9e12c8bc4b51f5aeb20673db24",
"signature": "df52f40fae2bd287b9fb52f0d4cd6978891f5b9e12c8bc4b51f5aeb20673db24",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/iter.d.ts": {
"version": "95a373d620cf8adb5baa4d4f18c0880d9279761d742075693b64dcfe25d93249",
"signature": "95a373d620cf8adb5baa4d4f18c0880d9279761d742075693b64dcfe25d93249",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/chain.d.ts": {
"version": "59c71ace3907b7558202ab9fb0fc29d0f000455e6addb8891476ea6f29704fb0",
"signature": "59c71ace3907b7558202ab9fb0fc29d0f000455e6addb8891476ea6f29704fb0",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/empty.d.ts": {
"version": "ac222059167c12b97693a32458d469428079921ef2e21a41370e192f679559a4",
"signature": "ac222059167c12b97693a32458d469428079921ef2e21a41370e192f679559a4",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/enumerate.d.ts": {
"version": "49fa72b3dd09f2d8cfa8538f3aba53644e90a99866c486a1e535f6e45a809019",
"signature": "49fa72b3dd09f2d8cfa8538f3aba53644e90a99866c486a1e535f6e45a809019",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/filter.d.ts": {
"version": "4bd953ab46129d1a06fc848cc1e04f69d003cba1010839ae5f11d9a8ecc1b45c",
"signature": "4bd953ab46129d1a06fc848cc1e04f69d003cba1010839ae5f11d9a8ecc1b45c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/find.d.ts": {
"version": "985be8579445c37fccc690db36529d9197abac484b76e2374845eda82fc134be",
"signature": "985be8579445c37fccc690db36529d9197abac484b76e2374845eda82fc134be",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/map.d.ts": {
"version": "778e780516d0cfa36e160dcdbc2cc64193fb13853c4019bafeb2adc39d4b6f95",
"signature": "778e780516d0cfa36e160dcdbc2cc64193fb13853c4019bafeb2adc39d4b6f95",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/range.d.ts": {
"version": "61821a4dfe8525bb4082648600ecd1f945698fb65a0bbf4fa2b6e160751fe5e1",
"signature": "61821a4dfe8525bb4082648600ecd1f945698fb65a0bbf4fa2b6e160751fe5e1",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/reduce.d.ts": {
"version": "6f2192fe22e5aed3e61ae7891921feb8601bfa101161c7b522965d709210cc41",
"signature": "6f2192fe22e5aed3e61ae7891921feb8601bfa101161c7b522965d709210cc41",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/repeat.d.ts": {
"version": "39effd6ab75c733dd48cbe43a91658cec9cf86db5a961d3b091d8194b7e7b573",
"signature": "39effd6ab75c733dd48cbe43a91658cec9cf86db5a961d3b091d8194b7e7b573",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/retro.d.ts": {
"version": "431207ccbae58b4046cba4a5956beeea69a151defc993bcba16b357cbc8871e7",
"signature": "431207ccbae58b4046cba4a5956beeea69a151defc993bcba16b357cbc8871e7",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/sort.d.ts": {
"version": "2053f012d9d8edaeb4b66bb65120888dd342be84316cc7b85e78cae9ceade349",
"signature": "2053f012d9d8edaeb4b66bb65120888dd342be84316cc7b85e78cae9ceade349",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/stride.d.ts": {
"version": "bcfae0d75f0dd13b0d0bd6bb6a1a527076f23d48335a1530211d4926556edf4d",
"signature": "bcfae0d75f0dd13b0d0bd6bb6a1a527076f23d48335a1530211d4926556edf4d",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/string.d.ts": {
"version": "b8186710d384b0b58f9ac2e8e9e4a8cf6385718fd47f12adfca9e163def1fa5e",
"signature": "b8186710d384b0b58f9ac2e8e9e4a8cf6385718fd47f12adfca9e163def1fa5e",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/take.d.ts": {
"version": "2e55931399ada20784a0903627d3e7cac14e6849ef7e589f32907ed733160af0",
"signature": "2e55931399ada20784a0903627d3e7cac14e6849ef7e589f32907ed733160af0",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/zip.d.ts": {
"version": "425744ecce376e0c201eb15a24df23c20b9f9222c25501a64147191255f1a5bb",
"signature": "425744ecce376e0c201eb15a24df23c20b9f9222c25501a64147191255f1a5bb",
"affectsGlobalScope": false
},
"./node_modules/@lumino/algorithm/types/index.d.ts": {
"version": "d9700500170f5138bbb3b59ede0d2303486b24826a19dd242eaaa667a3735b63",
"signature": "d9700500170f5138bbb3b59ede0d2303486b24826a19dd242eaaa667a3735b63",
"affectsGlobalScope": false
},
"./node_modules/@lumino/disposable/types/index.d.ts": {
"version": "80a29bdb045c8403249b0df81e2c660139556735e363b9228b9e6ed731576cfe",
"signature": "80a29bdb045c8403249b0df81e2c660139556735e363b9228b9e6ed731576cfe",
"affectsGlobalScope": false
},
"./node_modules/@lumino/virtualdom/types/index.d.ts": {
"version": "189b287ec7c821f61bf76d90a62575b048d0434c3baee8fc8dea6c30ebc35999",
"signature": "189b287ec7c821f61bf76d90a62575b048d0434c3baee8fc8dea6c30ebc35999",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/title.d.ts": {
"version": "c8b38613b1fcd5b96a6162af731a52ad9d208fc92d608653c922d316eef14253",
"signature": "c8b38613b1fcd5b96a6162af731a52ad9d208fc92d608653c922d316eef14253",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/widget.d.ts": {
"version": "029429c3856d52ba6344e17423c994bb35a263b7ce9d1df436882f729f9f51fd",
"signature": "029429c3856d52ba6344e17423c994bb35a263b7ce9d1df436882f729f9f51fd",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/layout.d.ts": {
"version": "e28b6033949daa05a21c45ac3bf4db03d07e9da632a976224c57744c46bce08e",
"signature": "e28b6033949daa05a21c45ac3bf4db03d07e9da632a976224c57744c46bce08e",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/panellayout.d.ts": {
"version": "b6fe9902db09a08fb5816c2644d47b21b48763a6493d1f2080dcc8f97f63ffd5",
"signature": "b6fe9902db09a08fb5816c2644d47b21b48763a6493d1f2080dcc8f97f63ffd5",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/splitlayout.d.ts": {
"version": "bd93c73452e6255119d7494fdb2ce62bc9c7a1953c7b4e2e25a14367e84d62ac",
"signature": "bd93c73452e6255119d7494fdb2ce62bc9c7a1953c7b4e2e25a14367e84d62ac",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/accordionlayout.d.ts": {
"version": "713db1c72c935314f949fd6f5f8933695b35c519dbdceb8a863c74dd5791f0bd",
"signature": "713db1c72c935314f949fd6f5f8933695b35c519dbdceb8a863c74dd5791f0bd",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/panel.d.ts": {
"version": "4ea4e4aeb7cc473d641ec53cc7a05324ff1c528e452e1a0f5949a245911d4775",
"signature": "4ea4e4aeb7cc473d641ec53cc7a05324ff1c528e452e1a0f5949a245911d4775",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/splitpanel.d.ts": {
"version": "bd5604d87894ac046a5f017c1fd820f15fcf70d58ac7db47e537205cf5a9f80d",
"signature": "bd5604d87894ac046a5f017c1fd820f15fcf70d58ac7db47e537205cf5a9f80d",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/accordionpanel.d.ts": {
"version": "364424975a06176d6342996b748c1f3f27d309d0217b97abae77c2f08eb57f00",
"signature": "364424975a06176d6342996b748c1f3f27d309d0217b97abae77c2f08eb57f00",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/boxengine.d.ts": {
"version": "6ce99f2c6e7c79a0b467e93cc607909fdeea4075ac24b2ea26df81c756c91197",
"signature": "6ce99f2c6e7c79a0b467e93cc607909fdeea4075ac24b2ea26df81c756c91197",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/boxlayout.d.ts": {
"version": "b450cc3a4ab4ba2663144cb5d2bee1dad19437bb22008bf4cb6abf33ab93c394",
"signature": "b450cc3a4ab4ba2663144cb5d2bee1dad19437bb22008bf4cb6abf33ab93c394",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/boxpanel.d.ts": {
"version": "eb0acd32fc29c07e864c737a4811b71159e03833b36febb85f7e47259d87e135",
"signature": "eb0acd32fc29c07e864c737a4811b71159e03833b36febb85f7e47259d87e135",
"affectsGlobalScope": false
},
"./node_modules/@lumino/commands/types/index.d.ts": {
"version": "6550ffa9641e93e5fb68583aea46d260931c1fd29a2eb4c44b9f8594e7004774",
"signature": "6550ffa9641e93e5fb68583aea46d260931c1fd29a2eb4c44b9f8594e7004774",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/commandpalette.d.ts": {
"version": "1293b8f4930237c82f58861ca488f50a2537a88f94682440f9fd07223ccee56c",
"signature": "1293b8f4930237c82f58861ca488f50a2537a88f94682440f9fd07223ccee56c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/menu.d.ts": {
"version": "2c12e9393125ae27eee5f69e9b28cd65bd1073db0c99dd0625436f9b9815258e",
"signature": "2c12e9393125ae27eee5f69e9b28cd65bd1073db0c99dd0625436f9b9815258e",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/contextmenu.d.ts": {
"version": "cfef3a852fed8d8e32682841735514dc19a614d2bb04e0de6a430e72a3130ac6",
"signature": "cfef3a852fed8d8e32682841735514dc19a614d2bb04e0de6a430e72a3130ac6",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/tabbar.d.ts": {
"version": "79187f49bd3934bcec4cb65b390c50cde42b20cef85133a69fcbf57524d974a5",
"signature": "79187f49bd3934bcec4cb65b390c50cde42b20cef85133a69fcbf57524d974a5",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/docklayout.d.ts": {
"version": "3d279bfc7fc1a30029916365b53c7ca9b1c36de179bc88c6e2558cca35f32bc4",
"signature": "3d279bfc7fc1a30029916365b53c7ca9b1c36de179bc88c6e2558cca35f32bc4",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/dockpanel.d.ts": {
"version": "18656c4246d6bd373e18347d7d03800b2b6c75b222dbb7abcfc6dd4ff57c443e",
"signature": "18656c4246d6bd373e18347d7d03800b2b6c75b222dbb7abcfc6dd4ff57c443e",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/focustracker.d.ts": {
"version": "b36ccfcfa507c9be4bc662468d708d9fadb87d6950583f60456799e2534eac1b",
"signature": "b36ccfcfa507c9be4bc662468d708d9fadb87d6950583f60456799e2534eac1b",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/gridlayout.d.ts": {
"version": "9d3fb450742b3f5c5f459177e70fa3c4c4ab52d0b4215be87cfcdf5fc8685ad2",
"signature": "9d3fb450742b3f5c5f459177e70fa3c4c4ab52d0b4215be87cfcdf5fc8685ad2",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/menubar.d.ts": {
"version": "036adf93fb4f6f977fdfa686d8add1830e9d30f3066b4390530c4c2189754fc2",
"signature": "036adf93fb4f6f977fdfa686d8add1830e9d30f3066b4390530c4c2189754fc2",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/scrollbar.d.ts": {
"version": "ff8fce615e42a7a40d34fd1110488663bc010469e7cd3d21df8ddda06f6ebd95",
"signature": "ff8fce615e42a7a40d34fd1110488663bc010469e7cd3d21df8ddda06f6ebd95",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/singletonlayout.d.ts": {
"version": "cb114e95d686eadc19feda14f7ae0c497fd060415cf669d4062447ef22b54e93",
"signature": "cb114e95d686eadc19feda14f7ae0c497fd060415cf669d4062447ef22b54e93",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/stackedlayout.d.ts": {
"version": "c7e1800b0e4e0914d2109b02cc4efa98c3fb79acb98f6a9a0dd5c1311576a42f",
"signature": "c7e1800b0e4e0914d2109b02cc4efa98c3fb79acb98f6a9a0dd5c1311576a42f",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/stackedpanel.d.ts": {
"version": "c94759a4b4d2f1044f2b03f3057319194739841524d22aa73b13e556a99bef5c",
"signature": "c94759a4b4d2f1044f2b03f3057319194739841524d22aa73b13e556a99bef5c",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/tabpanel.d.ts": {
"version": "782b97111ead965ce8ea465f96d94b181a830f70d41223f89fb8361f69418edb",
"signature": "782b97111ead965ce8ea465f96d94b181a830f70d41223f89fb8361f69418edb",
"affectsGlobalScope": false
},
"./node_modules/@lumino/widgets/types/index.d.ts": {
"version": "5f90fbeec75ffafa87e37f8e1caa1411174f0d89f24b0bb19970e18bb1dd3c0d",
"signature": "5f90fbeec75ffafa87e37f8e1caa1411174f0d89f24b0bb19970e18bb1dd3c0d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/collapse.d.ts": {
"version": "147d833a2c635e5e69bcf63b33bbbd07fc47cd95d012d8199a132c8e63a78f05",
"signature": "147d833a2c635e5e69bcf63b33bbbd07fc47cd95d012d8199a132c8e63a78f05",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/commandlinker.d.ts": {
"version": "78f55430f6416c48a547522a56dc085b23955c7a2dfbb79865367ebfa3ac8f0a",
"signature": "78f55430f6416c48a547522a56dc085b23955c7a2dfbb79865367ebfa3ac8f0a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/commandpalette.d.ts": {
"version": "b69b18f9708e8a2c5eea2898b2800a0e97085f1e5ce5a895dec59cab01040bb7",
"signature": "b69b18f9708e8a2c5eea2898b2800a0e97085f1e5ce5a895dec59cab01040bb7",
"affectsGlobalScope": false
},
"./node_modules/@types/react/global.d.ts": {
"version": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
"signature": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
"affectsGlobalScope": true
},
"./node_modules/csstype/index.d.ts": {
"version": "5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df",
"signature": "5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df",
"affectsGlobalScope": false
},
"./node_modules/@types/prop-types/index.d.ts": {
"version": "f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",
"signature": "f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",
"affectsGlobalScope": false
},
"./node_modules/@types/scheduler/tracing.d.ts": {
"version": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
"signature": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
"affectsGlobalScope": false
},
"./node_modules/@types/react/index.d.ts": {
"version": "7b4a3453c60663af7f58636bf4673bfcc540d83ce1c41b816a5cc2e924009880",
"signature": "7b4a3453c60663af7f58636bf4673bfcc540d83ce1c41b816a5cc2e924009880",
"affectsGlobalScope": true
},
"./node_modules/@jupyterlab/statedb/lib/interfaces.d.ts": {
"version": "9bfdb958a6b460d0c0c0f2781dece557cd20698820f0d4e644690dc23bc05cd9",
"signature": "9bfdb958a6b460d0c0c0f2781dece557cd20698820f0d4e644690dc23bc05cd9",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/dataconnector.d.ts": {
"version": "bd969829f3805c917933ef812d4cabe2c045aff801859f2c5166eb8d56aea4eb",
"signature": "bd969829f3805c917933ef812d4cabe2c045aff801859f2c5166eb8d56aea4eb",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/restorablepool.d.ts": {
"version": "4c21323d9575649908d578c403dac9a3f240e839c5e0f3a7422d6bdea0d596f8",
"signature": "4c21323d9575649908d578c403dac9a3f240e839c5e0f3a7422d6bdea0d596f8",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/tokens.d.ts": {
"version": "d3ee87ecc46e36a9b361b0ad770cde8a06f5b973b7fea6d5aa7cb2b7cc56315c",
"signature": "d3ee87ecc46e36a9b361b0ad770cde8a06f5b973b7fea6d5aa7cb2b7cc56315c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/statedb.d.ts": {
"version": "f8c57de65d7a1c151041621bf9ed1cc3da20ffb5bd004182e4e04dbbaa21e41e",
"signature": "f8c57de65d7a1c151041621bf9ed1cc3da20ffb5bd004182e4e04dbbaa21e41e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/statedb/lib/index.d.ts": {
"version": "cc935329b723e345e8118454fde946f73b69f40086589d11f25513137075720a",
"signature": "cc935329b723e345e8118454fde946f73b69f40086589d11f25513137075720a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/widgettracker.d.ts": {
"version": "47373ee1335c841b028086f19214476c62380d6db1061331b365fb03a77131c6",
"signature": "47373ee1335c841b028086f19214476c62380d6db1061331b365fb03a77131c6",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/dialog.d.ts": {
"version": "f1e099f59452350f2532972bba0063a5239c371cd222317b4f79914da52b9059",
"signature": "f1e099f59452350f2532972bba0063a5239c371cd222317b4f79914da52b9059",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/domutils.d.ts": {
"version": "b8a6b60217ac1eb177c22d3e78878387fb9b4326d9c42d48e7db569f397609c6",
"signature": "b8a6b60217ac1eb177c22d3e78878387fb9b4326d9c42d48e7db569f397609c6",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/hoverbox.d.ts": {
"version": "1aeef85f101d6623640784d3208baa1c01922a891d8da0bbdc1439f0863d3656",
"signature": "1aeef85f101d6623640784d3208baa1c01922a891d8da0bbdc1439f0863d3656",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/iframe.d.ts": {
"version": "e590fee01c5af4203c63b179c12531dbaf17f9027ed1bc9e58ccadf1999ac495",
"signature": "e590fee01c5af4203c63b179c12531dbaf17f9027ed1bc9e58ccadf1999ac495",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/inputdialog.d.ts": {
"version": "ce3504946dfdd742270be199cc1cdbb6bc3e2f5c1d321aab6c3f015dfa9ad7cd",
"signature": "ce3504946dfdd742270be199cc1cdbb6bc3e2f5c1d321aab6c3f015dfa9ad7cd",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/config/index.d.ts": {
"version": "41bd5decb99be607b760e0fcec9bccb318b0db4e32fa4771d07fdeffca120552",
"signature": "41bd5decb99be607b760e0fcec9bccb318b0db4e32fa4771d07fdeffca120552",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablemap.d.ts": {
"version": "f4b2304c8d9dd3ddb3d614dd8bc4c26f5fdb1dc9e4a0ab0a2df2fdc4d5d859e4",
"signature": "f4b2304c8d9dd3ddb3d614dd8bc4c26f5fdb1dc9e4a0ab0a2df2fdc4d5d859e4",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablejson.d.ts": {
"version": "e330139099ebcf6830ae396ff59e59e09ae0f6b56ebdc9205609e66843d7e3ef",
"signature": "e330139099ebcf6830ae396ff59e59e09ae0f6b56ebdc9205609e66843d7e3ef",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablestring.d.ts": {
"version": "f3c6769aeebc6890c190aa33831461a7d7d0d59ae1474555594dc480af6a4a5b",
"signature": "f3c6769aeebc6890c190aa33831461a7d7d0d59ae1474555594dc480af6a4a5b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/observablelist.d.ts": {
"version": "04112734ad3a86529f9c78ba774e2999caafdf446c0d987304ac4eb65807902a",
"signature": "04112734ad3a86529f9c78ba774e2999caafdf446c0d987304ac4eb65807902a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/undoablelist.d.ts": {
"version": "17b1e1fc5d431f6380ab9ae528d4c3fa648bcfbe5cd49e9061c7779fc3095f7f",
"signature": "17b1e1fc5d431f6380ab9ae528d4c3fa648bcfbe5cd49e9061c7779fc3095f7f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/modeldb.d.ts": {
"version": "14b8b314fea37db11061f1dc67aa9877a925e2fbf8c11213d547cdb8cf164ed1",
"signature": "14b8b314fea37db11061f1dc67aa9877a925e2fbf8c11213d547cdb8cf164ed1",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/observables/lib/index.d.ts": {
"version": "ce0d82d3a839e026518bee8d357cce5ec6396010314ebd7176bf3486e6eb0730",
"signature": "ce0d82d3a839e026518bee8d357cce5ec6396010314ebd7176bf3486e6eb0730",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/contents/index.d.ts": {
"version": "fdd25846f3054fa2d14f909a4d0b859f69639dee1be9b845f886c5b03eaa4dbf",
"signature": "fdd25846f3054fa2d14f909a4d0b859f69639dee1be9b845f886c5b03eaa4dbf",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/nbformat/lib/index.d.ts": {
"version": "dc7f49f32cf69143e107d01525143bdc11986f6e4c80e89bf450415d38c95b25",
"signature": "dc7f49f32cf69143e107d01525143bdc11986f6e4c80e89bf450415d38c95b25",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/messages.d.ts": {
"version": "9509676d5f597f0fae0bd56b2cc7699e48e07ecdcb9dd9a5a4131269403aca3f",
"signature": "9509676d5f597f0fae0bd56b2cc7699e48e07ecdcb9dd9a5a4131269403aca3f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/serverconnection.d.ts": {
"version": "090c14cd80bfa4ee3709139dafa5df319eda501736d465a41c822346f564331b",
"signature": "090c14cd80bfa4ee3709139dafa5df319eda501736d465a41c822346f564331b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/basemanager.d.ts": {
"version": "ed186aff8f5899e1c5bc14ccff9c892a6e701d6aee339e38e10ae76d8d0f60fe",
"signature": "ed186aff8f5899e1c5bc14ccff9c892a6e701d6aee339e38e10ae76d8d0f60fe",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/restapi.d.ts": {
"version": "1e516b8aace99b3cfd896b1d52f51c8d7186fb721718007f2fd632d65caaa204",
"signature": "1e516b8aace99b3cfd896b1d52f51c8d7186fb721718007f2fd632d65caaa204",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/kernelspec.d.ts": {
"version": "e655ecf9defa4207f36029831d09487233b7cb3d0af1f22cdd39bbbcc89ed242",
"signature": "e655ecf9defa4207f36029831d09487233b7cb3d0af1f22cdd39bbbcc89ed242",
"affectsGlobalScope": false
},
"./node_modules/@lumino/polling/types/poll.d.ts": {
"version": "ce473f99dd39a6d3df6ccd27fa99482e4195d7c64c06d75d58eec9a272a421fe",
"signature": "ce473f99dd39a6d3df6ccd27fa99482e4195d7c64c06d75d58eec9a272a421fe",
"affectsGlobalScope": false
},
"./node_modules/@lumino/polling/types/ratelimiter.d.ts": {
"version": "b666aaa284576533582a375288a6c129f261b866e6c33c392e34db0fe5b98fbd",
"signature": "b666aaa284576533582a375288a6c129f261b866e6c33c392e34db0fe5b98fbd",
"affectsGlobalScope": false
},
"./node_modules/@lumino/polling/types/index.d.ts": {
"version": "3800fa91e1e1a17b2d8497a388c9249bb7b7c4adb87540e71ad02c69a79d7a5c",
"signature": "3800fa91e1e1a17b2d8497a388c9249bb7b7c4adb87540e71ad02c69a79d7a5c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/manager.d.ts": {
"version": "5af5d2530e681dfea1ca7271eee7ede8d55eb4f0f8ae12cc7f02a87b50191b1d",
"signature": "5af5d2530e681dfea1ca7271eee7ede8d55eb4f0f8ae12cc7f02a87b50191b1d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernelspec/index.d.ts": {
"version": "ee46549bb25b958e351bbfeb37b4a0fb42091b5d9e95233a25000a8abeedb688",
"signature": "ee46549bb25b958e351bbfeb37b4a0fb42091b5d9e95233a25000a8abeedb688",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/restapi.d.ts": {
"version": "bed01ccd9b1f468911157e9eb263866b495e9ba7ac62e28b3ebef745a818bb33",
"signature": "bed01ccd9b1f468911157e9eb263866b495e9ba7ac62e28b3ebef745a818bb33",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/kernel.d.ts": {
"version": "4894eaacd6ee120d11e0a7e173ed538d0efb89015bd1ee618e092b3b56557e03",
"signature": "4894eaacd6ee120d11e0a7e173ed538d0efb89015bd1ee618e092b3b56557e03",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/manager.d.ts": {
"version": "64355cb023413b9f710306b65a083d3d70226c8f28e32bf866492a2c843ac641",
"signature": "64355cb023413b9f710306b65a083d3d70226c8f28e32bf866492a2c843ac641",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/kernel/index.d.ts": {
"version": "dcffdebf16fc799783c78f5333bd8dc595a8c353e6aecb3df3c8ca5a25eafecd",
"signature": "dcffdebf16fc799783c78f5333bd8dc595a8c353e6aecb3df3c8ca5a25eafecd",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/builder/index.d.ts": {
"version": "7c4ca33d63aba0dd458b26f777d76ec26467537eaa7f86c6676bef45e2deb36e",
"signature": "7c4ca33d63aba0dd458b26f777d76ec26467537eaa7f86c6676bef45e2deb36e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/nbconvert/index.d.ts": {
"version": "e3d73207d0e9c210e4a9d133a929c474f870e9d23ff0075c7d2512a107e50a5e",
"signature": "e3d73207d0e9c210e4a9d133a929c474f870e9d23ff0075c7d2512a107e50a5e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/activitymonitor.d.ts": {
"version": "b5575443873e492a09e84e53f65c37a24f5d291a306036f74fd34646ee9c14dd",
"signature": "b5575443873e492a09e84e53f65c37a24f5d291a306036f74fd34646ee9c14dd",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/interfaces.d.ts": {
"version": "e4591a005f34ccbbbec0bd140702e243387d57a21b1d4bb6bd3e76de152fc89f",
"signature": "e4591a005f34ccbbbec0bd140702e243387d57a21b1d4bb6bd3e76de152fc89f",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/markdowncodeblocks.d.ts": {
"version": "377fa33e5213ba934d4350d674296c1387aa2ebd225e2a296a465bb691915884",
"signature": "377fa33e5213ba934d4350d674296c1387aa2ebd225e2a296a465bb691915884",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/pageconfig.d.ts": {
"version": "65d314617b12110191f395cc2292b1b544d2c15ee8a2b9987a157e4c166a3e3c",
"signature": "65d314617b12110191f395cc2292b1b544d2c15ee8a2b9987a157e4c166a3e3c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/path.d.ts": {
"version": "6baff3e4e3aca45d2879a6b26369316430f8756d85319898c64c69019036ab61",
"signature": "6baff3e4e3aca45d2879a6b26369316430f8756d85319898c64c69019036ab61",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/text.d.ts": {
"version": "7efd9303320cf186211b14e1723172a2bc15378c0d95e49990f31be5d2f271d4",
"signature": "7efd9303320cf186211b14e1723172a2bc15378c0d95e49990f31be5d2f271d4",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/time.d.ts": {
"version": "315dfd130e525ffa1934e769dc2266bafb35d021951a7845eb145089501ed86d",
"signature": "315dfd130e525ffa1934e769dc2266bafb35d021951a7845eb145089501ed86d",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/url.d.ts": {
"version": "99dda0cb4742feb2ea1339c6227119d47df6bc4ba8c886341c1fc879dfccb1d2",
"signature": "99dda0cb4742feb2ea1339c6227119d47df6bc4ba8c886341c1fc879dfccb1d2",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/coreutils/lib/index.d.ts": {
"version": "7a7fa32e403e381e681ef4984c9dc22adf0d32c1e4b7ad9fd5c6552412c855f0",
"signature": "7a7fa32e403e381e681ef4984c9dc22adf0d32c1e4b7ad9fd5c6552412c855f0",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/session.d.ts": {
"version": "7e2865d064da62a77c2134090d4362c70a25d41dbbd43799ffe7b29798fca9a2",
"signature": "7e2865d064da62a77c2134090d4362c70a25d41dbbd43799ffe7b29798fca9a2",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/restapi.d.ts": {
"version": "1e376fe94028a3e12ca8c3d2db097bb6f1c9de17a72f6e854e1d512bb1734adf",
"signature": "1e376fe94028a3e12ca8c3d2db097bb6f1c9de17a72f6e854e1d512bb1734adf",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/manager.d.ts": {
"version": "30e5c9e5ecd787438ad41ca8a487a77d6d571122c4eca365b24074eb2163964c",
"signature": "30e5c9e5ecd787438ad41ca8a487a77d6d571122c4eca365b24074eb2163964c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/session/index.d.ts": {
"version": "0214c4398c638c72f77a78bc20c16fb8fab08d9cfe2bdfcd67f0baeafcc5b02b",
"signature": "0214c4398c638c72f77a78bc20c16fb8fab08d9cfe2bdfcd67f0baeafcc5b02b",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/settingregistry/lib/tokens.d.ts": {
"version": "b6a3bd35d5f1e32f2ed9f97b4c0a77d01b318ebf20b7b4e1d20f4f2b7caa6172",
"signature": "b6a3bd35d5f1e32f2ed9f97b4c0a77d01b318ebf20b7b4e1d20f4f2b7caa6172",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/settingregistry/lib/settingregistry.d.ts": {
"version": "1ec1ab3d0d18bcb13952ce16c8b1062381b01c5d9352428d34965c6290cf8dd1",
"signature": "1ec1ab3d0d18bcb13952ce16c8b1062381b01c5d9352428d34965c6290cf8dd1",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/settingregistry/lib/index.d.ts": {
"version": "178c7c98157f7910ea4e19771e26374ecfd552df7c35b1cda6cd9dcc03b32016",
"signature": "178c7c98157f7910ea4e19771e26374ecfd552df7c35b1cda6cd9dcc03b32016",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/setting/index.d.ts": {
"version": "3f60325f8360846557509a160b9211c90419c4325581b04d3bd6fbe8a0972f9e",
"signature": "3f60325f8360846557509a160b9211c90419c4325581b04d3bd6fbe8a0972f9e",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/restapi.d.ts": {
"version": "ad222cd4778885952eb6624fcd2348c2105d8293dcb4326ca15583f859c78747",
"signature": "ad222cd4778885952eb6624fcd2348c2105d8293dcb4326ca15583f859c78747",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/terminal.d.ts": {
"version": "a2feee4df1f1d753bcbd3c433c21c8448a1ac0056e3ac9be4cc27a03fbace276",
"signature": "a2feee4df1f1d753bcbd3c433c21c8448a1ac0056e3ac9be4cc27a03fbace276",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/manager.d.ts": {
"version": "6bfbf1f9ad12ab0b95cf1c41468f90c006bc5d10fc4dccc9a875854f14f9dd61",
"signature": "6bfbf1f9ad12ab0b95cf1c41468f90c006bc5d10fc4dccc9a875854f14f9dd61",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/terminal/index.d.ts": {
"version": "77a4cfb8baa8f9861178b8ff4de8409841b387cd73ea4e51e2beee758c2d818a",
"signature": "77a4cfb8baa8f9861178b8ff4de8409841b387cd73ea4e51e2beee758c2d818a",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/workspace/index.d.ts": {
"version": "11bb21614c3c792941e289fdc340489be2881f51198217894d510dde943544fa",
"signature": "11bb21614c3c792941e289fdc340489be2881f51198217894d510dde943544fa",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/manager.d.ts": {
"version": "fdbe60857d35ec916e210e581890f5387e885d0e73e8c6fb62052bad05362bb8",
"signature": "fdbe60857d35ec916e210e581890f5387e885d0e73e8c6fb62052bad05362bb8",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/services/lib/index.d.ts": {
"version": "3a8bab6cc1bee98448c5869f0ae38ab59a0651b533fdd9118ff23e02bc27ac4c",
"signature": "3a8bab6cc1bee98448c5869f0ae38ab59a0651b533fdd9118ff23e02bc27ac4c",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/tokens.d.ts": {
"version": "c97410aab3860667c54e48ab4f751222911f8887202df5c11b61868009d4ff14",
"signature": "c97410aab3860667c54e48ab4f751222911f8887202df5c11b61868009d4ff14",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/base.d.ts": {
"version": "7e80cbd62318016cfedfd4ccb53f930b4abe7f4b6bc4673fd8ec44f9de6243e2",
"signature": "7e80cbd62318016cfedfd4ccb53f930b4abe7f4b6bc4673fd8ec44f9de6243e2",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/gettext.d.ts": {
"version": "ba9e2a7e215602ba81103f3f2c7cdb3457e48e1b8fb96dae3af9873e12821f40",
"signature": "ba9e2a7e215602ba81103f3f2c7cdb3457e48e1b8fb96dae3af9873e12821f40",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/manager.d.ts": {
"version": "e527ab52c64b2db062a12f22ec2050608b99b8b08cc5397fd869ae66bc441fdc",
"signature": "e527ab52c64b2db062a12f22ec2050608b99b8b08cc5397fd869ae66bc441fdc",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/server.d.ts": {
"version": "e2bfb86488150c78cea78c2b726a3bd81c9a2053a5d56916beed898d4dc7f5b5",
"signature": "e2bfb86488150c78cea78c2b726a3bd81c9a2053a5d56916beed898d4dc7f5b5",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/translation/lib/index.d.ts": {
"version": "c2d417bfcfb62ed2101db6175ea83f91b2656ada1397d4abaf8c7681c42fb534",
"signature": "c2d417bfcfb62ed2101db6175ea83f91b2656ada1397d4abaf8c7681c42fb534",
"affectsGlobalScope": false
},
"./node_modules/@jupyterlab/apputils/lib/printing.d.ts": {
"version": "3c94850686707d1d046e05ea6178e3fc7cd115ba1eb159d1c59e93594e54131f",
"signature": "3c94850686707d1d046e05ea6178e3fc7cd115ba1eb159d1c59e93594e54131f",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/refs.d.ts": {
"version": "459a61b7dfec3982abca4e3f22e2fdb064053793fbc9a74240f03207a863c1db",
"signature": "459a61b7dfec3982abca4e3f22e2fdb064053793fbc9a74240f03207a863c1db",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractcomponent.d.ts": {
"version": "d1dbebf193f3122f34a883ec910beb7c5e6d2921a56cc3065c33c91ff27a01d5",
"signature": "d1dbebf193f3122f34a883ec910beb7c5e6d2921a56cc3065c33c91ff27a01d5",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractcomponent2.d.ts": {
"version": "4e81cedd4aca5f757c315cbf9a4ac69acfa79d178af0f60511f6cca9f55f82a2",
"signature": "4e81cedd4aca5f757c315cbf9a4ac69acfa79d178af0f60511f6cca9f55f82a2",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractpurecomponent.d.ts": {
"version": "93bb365a11749a610355844b9cec34b2b2390581fa49619cec047610b0e92432",
"signature": "93bb365a11749a610355844b9cec34b2b2390581fa49619cec047610b0e92432",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/abstractpurecomponent2.d.ts": {
"version": "f2c9ddb2fe02d13686be12dc202659ff0de37837859bbc40c004c0296b424bfa",
"signature": "f2c9ddb2fe02d13686be12dc202659ff0de37837859bbc40c004c0296b424bfa",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/alignment.d.ts": {
"version": "bd2ab07f4d3e1f9f541383e8ef2c61658344348181d3020f6c663ee042375c88",
"signature": "bd2ab07f4d3e1f9f541383e8ef2c61658344348181d3020f6c663ee042375c88",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/boundary.d.ts": {
"version": "f1e1e68cbe048ee1112f2929c7d68d53d4ad86dacd6e45bafaa5c5801047b7c6",
"signature": "f1e1e68cbe048ee1112f2929c7d68d53d4ad86dacd6e45bafaa5c5801047b7c6",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/constructor.d.ts": {
"version": "39ce9594d3207d1a101a43eb6eb47a6a1136ee9f96c6166edbd4207da71e6f78",
"signature": "39ce9594d3207d1a101a43eb6eb47a6a1136ee9f96c6166edbd4207da71e6f78",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/elevation.d.ts": {
"version": "5873abbf948918e64a1d648d7b60cdfd2eb9e9902d6d1c580876218824ff689b",
"signature": "5873abbf948918e64a1d648d7b60cdfd2eb9e9902d6d1c580876218824ff689b",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/intent.d.ts": {
"version": "843fbd11bfa2082344b49c439a938f6f0cb3a185eb68acfde43f672b093b8558",
"signature": "843fbd11bfa2082344b49c439a938f6f0cb3a185eb68acfde43f672b093b8558",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/position.d.ts": {
"version": "3ceb238111cbea7ba1b9b25a4833c5a0432637610f3245c6b1cf5804acfcfbb8",
"signature": "3ceb238111cbea7ba1b9b25a4833c5a0432637610f3245c6b1cf5804acfcfbb8",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/generated/iconcontents.d.ts": {
"version": "1cfa9fdb2b2bcb3e204dfb2da4cbb1035725124ef2472018e9153bc945f9d60e",
"signature": "1cfa9fdb2b2bcb3e204dfb2da4cbb1035725124ef2472018e9153bc945f9d60e",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/generated/iconnames.d.ts": {
"version": "f0343ccf156b5187180cdd8578fd1ec51cd3a2906ed55da3e0c5fce28f2bf1e8",
"signature": "f0343ccf156b5187180cdd8578fd1ec51cd3a2906ed55da3e0c5fce28f2bf1e8",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/iconname.d.ts": {
"version": "f83b02a0e5d2ea81b9a14362a1cadafd534392bacdf731e461afc330c476980d",
"signature": "f83b02a0e5d2ea81b9a14362a1cadafd534392bacdf731e461afc330c476980d",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/generated/iconsvgpaths.d.ts": {
"version": "f634926161579868440ca5372c890f0e20200b1323af31802a7075c4efdabe04",
"signature": "f634926161579868440ca5372c890f0e20200b1323af31802a7075c4efdabe04",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/icons/lib/esm/index.d.ts": {
"version": "9954e278f4c8a55b3c70710fc601addf02cf0a3eeccfb1b569917f10e3899a20",
"signature": "9954e278f4c8a55b3c70710fc601addf02cf0a3eeccfb1b569917f10e3899a20",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/props.d.ts": {
"version": "bd0768976a45dcf05d2d8ffb93f2879f89ecadcdd73e9fd2163e2c7a44ef85c5",
"signature": "bd0768976a45dcf05d2d8ffb93f2879f89ecadcdd73e9fd2163e2c7a44ef85c5",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/colors/lib/colors.d.ts": {
"version": "4f550fd426755517c47898eb3117278f08a40f297f088eaa1c58ccb1941f7d60",
"signature": "4f550fd426755517c47898eb3117278f08a40f297f088eaa1c58ccb1941f7d60",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/colors/lib/legacycolors.d.ts": {
"version": "7ca3385c0aa96444c5844d30a9901c2eb5f603d244aced7804098c859b6cbd48",
"signature": "7ca3385c0aa96444c5844d30a9901c2eb5f603d244aced7804098c859b6cbd48",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/colors/lib/index.d.ts": {
"version": "4707b9c356bc62eb759e065f6f9ba111c5a4c4f1e848c520e4ff868860c2ca5f",
"signature": "4707b9c356bc62eb759e065f6f9ba111c5a4c4f1e848c520e4ff868860c2ca5f",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/classes.d.ts": {
"version": "358639c3ef05eccb6ff33b258bf5f09624e3651115a2de8b1cf6c9ea6f12ac69",
"signature": "358639c3ef05eccb6ff33b258bf5f09624e3651115a2de8b1cf6c9ea6f12ac69",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/keys.d.ts": {
"version": "75eaa6171bc3ce74f87a9fea83c35e5d2bfda3518eec74466cf3551fadded8fe",
"signature": "75eaa6171bc3ce74f87a9fea83c35e5d2bfda3518eec74466cf3551fadded8fe",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/compareutils.d.ts": {
"version": "46b6fd7de6d4297b7c8c24209672f1e87db5119a4e73ec08bc6426662cb6fd21",
"signature": "46b6fd7de6d4297b7c8c24209672f1e87db5119a4e73ec08bc6426662cb6fd21",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/domutils.d.ts": {
"version": "5fe0701f446d17874b6ab8c141985faf0fe9c898cea9a84b009a30911cc86bee",
"signature": "5fe0701f446d17874b6ab8c141985faf0fe9c898cea9a84b009a30911cc86bee",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/functionutils.d.ts": {
"version": "8802ee7636d5e15d7f732f8dd5d52e972f7c139c279f15f0b2768a1af183e1fc",
"signature": "8802ee7636d5e15d7f732f8dd5d52e972f7c139c279f15f0b2768a1af183e1fc",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/jsutils.d.ts": {
"version": "9a54ced1026d946236b15d77a2f106d479087928c0d458f43917c26db39c96f7",
"signature": "9a54ced1026d946236b15d77a2f106d479087928c0d458f43917c26db39c96f7",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/reactutils.d.ts": {
"version": "0d919be05b4ed8807e5fb995a328532cc83f2cf959ca886b336e9411ecdbb0f1",
"signature": "0d919be05b4ed8807e5fb995a328532cc83f2cf959ca886b336e9411ecdbb0f1",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/safeinvokemember.d.ts": {
"version": "76a73ecc334a853411ba43d5e977bc56811b90448dafb383b4062acdd716c310",
"signature": "76a73ecc334a853411ba43d5e977bc56811b90448dafb383b4062acdd716c310",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/configuredom4.d.ts": {
"version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/isdarktheme.d.ts": {
"version": "525d24d74fbf1b3d4427e8e56db49667d67c15ec1685dd20d88cc5ee106a031d",
"signature": "525d24d74fbf1b3d4427e8e56db49667d67c15ec1685dd20d88cc5ee106a031d",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/utils/index.d.ts": {
"version": "10ae57df94ab0cc4e92643ff0052454ec0a15b3956e4ba8b9d7a3e6e1497c747",
"signature": "10ae57df94ab0cc4e92643ff0052454ec0a15b3956e4ba8b9d7a3e6e1497c747",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/common/index.d.ts": {
"version": "4101222cb90618653ff2fc889b068d3cdb26a05228d6144414a39f437811e803",
"signature": "4101222cb90618653ff2fc889b068d3cdb26a05228d6144414a39f437811e803",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/icon/icon.d.ts": {
"version": "215a85b4d33bcc3d955c9a7dfe84368e97ce828aa095b07a1c39b9b136055f29",
"signature": "215a85b4d33bcc3d955c9a7dfe84368e97ce828aa095b07a1c39b9b136055f29",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/button/abstractbutton.d.ts": {
"version": "1e68276863ff95b351c28a311677032982c871654e405346614b63b21c431865",
"signature": "1e68276863ff95b351c28a311677032982c871654e405346614b63b21c431865",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/button/buttons.d.ts": {
"version": "aed5c2f80124fcda53b6fe13b187fbf45979c931504b534601c8ea3ce9b2adba",
"signature": "aed5c2f80124fcda53b6fe13b187fbf45979c931504b534601c8ea3ce9b2adba",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/collapse/collapse.d.ts": {
"version": "3f2f9f1108a3901476d5ef23697bc3e3684658fda5c71768fb9800d85c4c4d90",
"signature": "3f2f9f1108a3901476d5ef23697bc3e3684658fda5c71768fb9800d85c4c4d90",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/forms/controls.d.ts": {
"version": "521ee48f7b1eef1cd4bcfee470204c69b35a08f6e9ddffd8bbb77957c13c83b1",
"signature": "521ee48f7b1eef1cd4bcfee470204c69b35a08f6e9ddffd8bbb77957c13c83b1",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/cjs/components/forms/inputgroup.d.ts": {
"version": "d50d9194e32d5435de6ea7d7732f7ad87317857e07e75efb114d9af8d7c10564",
"signature": "d50d9194e32d5435de6ea7d7732f7ad87317857e07e75efb114d9af8d7c10564",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/esm/accessibility/focusstylemanager.d.ts": {
"version": "45764e880cd0158b4a1692c38670441b7d60ddfe6f8835641ca9bfceb5f78b9e",
"signature": "45764e880cd0158b4a1692c38670441b7d60ddfe6f8835641ca9bfceb5f78b9e",
"affectsGlobalScope": false
},
"./node_modules/@blueprintjs/core/lib/esm/accessibility/index.d.ts": {
"version": "30b5e83c2c380e084df3b84fcf910e70f43abfe11448875356cd38e7a3bbf7cd",