-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
4535 lines (3922 loc) · 178 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"@jridgewell/trace-mapping" "^0.3.0"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7":
"integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/highlight" "^7.16.7"
"@babel/compat-data@^7.16.4":
"integrity" "sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz"
"version" "7.17.0"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0":
"integrity" "sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.17.5.tgz"
"version" "7.17.5"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.17.3"
"@babel/helper-compilation-targets" "^7.16.7"
"@babel/helper-module-transforms" "^7.16.7"
"@babel/helpers" "^7.17.2"
"@babel/parser" "^7.17.3"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.17.3"
"@babel/types" "^7.17.0"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"@babel/generator@^7.17.3":
"integrity" "sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.17.3.tgz"
"version" "7.17.3"
dependencies:
"@babel/types" "^7.17.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.16.7":
"integrity" "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/compat-data" "^7.16.4"
"@babel/helper-validator-option" "^7.16.7"
"browserslist" "^4.17.5"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.16.7":
"integrity" "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-function-name@^7.16.7":
"integrity" "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-get-function-arity" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/helper-get-function-arity@^7.16.7":
"integrity" "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-hoist-variables@^7.16.7":
"integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
"integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-transforms@^7.16.7":
"integrity" "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-simple-access" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/helper-validator-identifier" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/helper-plugin-utils@^7.16.7":
"integrity" "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"
"version" "7.16.7"
"@babel/helper-simple-access@^7.16.7":
"integrity" "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-split-export-declaration@^7.16.7":
"integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-validator-identifier@^7.16.7":
"integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
"version" "7.16.7"
"@babel/helper-validator-option@^7.16.7":
"integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
"version" "7.16.7"
"@babel/helpers@^7.17.2":
"integrity" "sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz"
"version" "7.17.2"
dependencies:
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.17.0"
"@babel/types" "^7.17.0"
"@babel/highlight@^7.16.7":
"integrity" "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"
"version" "7.16.10"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.16.7", "@babel/parser@^7.17.3":
"integrity" "sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.17.3.tgz"
"version" "7.17.3"
"@babel/plugin-syntax-jsx@^7.12.13":
"integrity" "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/runtime@^7.12.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.13.16", "@babel/runtime@^7.14.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
"integrity" "sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.2.tgz"
"version" "7.17.2"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.16.7":
"integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/parser" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/traverse@^7.16.7", "@babel/traverse@^7.17.0", "@babel/traverse@^7.17.3":
"integrity" "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz"
"version" "7.17.3"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.17.3"
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-function-name" "^7.16.7"
"@babel/helper-hoist-variables" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/parser" "^7.17.3"
"@babel/types" "^7.17.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.16.7", "@babel/types@^7.17.0":
"integrity" "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"to-fast-properties" "^2.0.0"
"@bugsnag/browser@^7.16.1":
"integrity" "sha512-Tq9fWpwmqdOsbedYL67GzsTKrG5MERIKtnKCi5FyvFjTj143b6as0pwj7LWQ+Eh8grWlR7S11+VvJmb8xnY8Tg=="
"resolved" "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.16.1.tgz"
"version" "7.16.1"
dependencies:
"@bugsnag/core" "^7.16.1"
"@bugsnag/core@^7.0.0", "@bugsnag/core@^7.16.1":
"integrity" "sha512-zuBnL7B329VldItRqhXYrp1hjmjZnltJwNXMysi9WtY4t29WKk5LVwgWb1mPM9clJ0FoObZ7kvvQMUTKh3ezFQ=="
"resolved" "https://registry.npmjs.org/@bugsnag/core/-/core-7.16.1.tgz"
"version" "7.16.1"
dependencies:
"@bugsnag/cuid" "^3.0.0"
"@bugsnag/safe-json-stringify" "^6.0.0"
"error-stack-parser" "^2.0.3"
"iserror" "0.0.2"
"stack-generator" "^2.0.3"
"@bugsnag/cuid@^3.0.0":
"integrity" "sha512-LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg=="
"resolved" "https://registry.npmjs.org/@bugsnag/cuid/-/cuid-3.0.0.tgz"
"version" "3.0.0"
"@bugsnag/js@^7.16.1":
"integrity" "sha512-yb83OmsbIMDJhX3hHhbHl5StN72feqdr/Ctq7gqsdcfOHNb2121Edf2EbegPJKZhFqSik66vWwiVbGJ6CdS/UQ=="
"resolved" "https://registry.npmjs.org/@bugsnag/js/-/js-7.16.1.tgz"
"version" "7.16.1"
dependencies:
"@bugsnag/browser" "^7.16.1"
"@bugsnag/node" "^7.16.1"
"@bugsnag/node@^7.16.1":
"integrity" "sha512-9zBA1IfDTbLKMoDltdhELpTd1e+b5+vUW4j40zGA+4SYIe64XNZKShfqRdvij7embvC1iHQ9UpuPRSk60P6Dng=="
"resolved" "https://registry.npmjs.org/@bugsnag/node/-/node-7.16.1.tgz"
"version" "7.16.1"
dependencies:
"@bugsnag/core" "^7.16.1"
"byline" "^5.0.0"
"error-stack-parser" "^2.0.2"
"iserror" "^0.0.2"
"pump" "^3.0.0"
"stack-generator" "^2.0.3"
"@bugsnag/plugin-react@^7.16.1":
"integrity" "sha512-cMO1ujjo/cZTE3k6c/KpF7mFhWnYHjfn622NuvYijkNlRbxcdRXtLHhiPJ+gL31Z4AGA/PRvzWXxR4eWxHF8Mw=="
"resolved" "https://registry.npmjs.org/@bugsnag/plugin-react/-/plugin-react-7.16.1.tgz"
"version" "7.16.1"
"@bugsnag/safe-json-stringify@^6.0.0":
"integrity" "sha512-htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA=="
"resolved" "https://registry.npmjs.org/@bugsnag/safe-json-stringify/-/safe-json-stringify-6.0.0.tgz"
"version" "6.0.0"
"@confio/ics23@^0.6.3":
"integrity" "sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w=="
"resolved" "https://registry.npmjs.org/@confio/ics23/-/ics23-0.6.8.tgz"
"version" "0.6.8"
dependencies:
"@noble/hashes" "^1.0.0"
"protobufjs" "^6.8.8"
"@cosmjs/amino@0.27.1":
"integrity" "sha512-w56ar/nK9+qlvWDpBPRmD0Blk2wfkkLqRi1COs1x7Ll1LF0AtkIBUjbRKplENLbNovK0T3h+w8bHiFm+GBGQOA=="
"resolved" "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@cosmjs/crypto" "0.27.1"
"@cosmjs/encoding" "0.27.1"
"@cosmjs/math" "0.27.1"
"@cosmjs/utils" "0.27.1"
"@cosmjs/crypto@0.27.1":
"integrity" "sha512-vbcxwSt99tIYJg8Spp00wc3zx72qx+pY3ozGuBN8gAvySnagK9dQ/jHwtWQWdammmdD6oW+75WfIHZ+gNa+Ybg=="
"resolved" "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@cosmjs/encoding" "0.27.1"
"@cosmjs/math" "0.27.1"
"@cosmjs/utils" "0.27.1"
"bip39" "^3.0.2"
"bn.js" "^5.2.0"
"elliptic" "^6.5.3"
"js-sha3" "^0.8.0"
"libsodium-wrappers" "^0.7.6"
"ripemd160" "^2.0.2"
"sha.js" "^2.4.11"
"@cosmjs/encoding@0.27.1":
"integrity" "sha512-rayLsA0ojHeniaRfWWcqSsrE/T1rl1gl0OXVNtXlPwLJifKBeLEefGbOUiAQaT0wgJ8VNGBazVtAZBpJidfDhw=="
"resolved" "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"base64-js" "^1.3.0"
"bech32" "^1.1.4"
"readonly-date" "^1.0.0"
"@cosmjs/json-rpc@0.27.1":
"integrity" "sha512-AKvsllGr6oN5kiroatIeIIxRdCFetLd8LCWV04RRNkoJ2OefDNb46VlWEQ+gI3ay5GgfVjB9qAcfvbJyrcEv+A=="
"resolved" "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@cosmjs/stream" "0.27.1"
"xstream" "^11.14.0"
"@cosmjs/math@0.27.1":
"integrity" "sha512-cHWVjmfIjtRc7f80n7x+J5k8pe+vTVTQ0lA82tIxUgqUvgS6rogPP/TmGtTiZ4+NxWxd11DUISY6gVpr18/VNQ=="
"resolved" "https://registry.npmjs.org/@cosmjs/math/-/math-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"bn.js" "^5.2.0"
"@cosmjs/proto-signing@^0.27.1", "@cosmjs/proto-signing@0.27.1":
"integrity" "sha512-t7/VvQivMdM1KgKWai/9ZCEcGFXJtr9Xo0hGcPLTn9wGkh9tmOsUXINYVMsf5D/jWIm1MDPbGCYfdb9V1Od4hw=="
"resolved" "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@cosmjs/amino" "0.27.1"
"@cosmjs/crypto" "0.27.1"
"@cosmjs/math" "0.27.1"
"cosmjs-types" "^0.4.0"
"long" "^4.0.0"
"protobufjs" "~6.10.2"
"@cosmjs/socket@0.27.1":
"integrity" "sha512-bKCRsaSXh/TA7efxVCogzS2K3cgC40Ge2itFYmTfgpOE+++52FchCblVCsCYwMNDLS497RP4P0GbeC1VEBToMA=="
"resolved" "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@cosmjs/stream" "0.27.1"
"isomorphic-ws" "^4.0.1"
"ws" "^7"
"xstream" "^11.14.0"
"@cosmjs/stargate@^0.27.1":
"integrity" "sha512-7hAIyNd6NbhQA51w9mPVyMYw515Hpj0o7SXMaqbc7nxs3hkJNMONQ9RakyMm0U/WeCd6ObcSaPEcdkqbfkc+mg=="
"resolved" "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@confio/ics23" "^0.6.3"
"@cosmjs/amino" "0.27.1"
"@cosmjs/encoding" "0.27.1"
"@cosmjs/math" "0.27.1"
"@cosmjs/proto-signing" "0.27.1"
"@cosmjs/stream" "0.27.1"
"@cosmjs/tendermint-rpc" "0.27.1"
"@cosmjs/utils" "0.27.1"
"cosmjs-types" "^0.4.0"
"long" "^4.0.0"
"protobufjs" "~6.10.2"
"xstream" "^11.14.0"
"@cosmjs/stream@0.27.1":
"integrity" "sha512-cEyEAVfXEyuUpKYBeEJrOj8Dp/c+M6a0oGJHxvDdhP5gSsaeCPgQXrh7qZFBiUfu3Brmqd+e/bKZm+068l9bBw=="
"resolved" "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"xstream" "^11.14.0"
"@cosmjs/tendermint-rpc@0.27.1":
"integrity" "sha512-eN1NyBYIiFutDNleEaTfvIJ3S3KA1gP45UHaLhSETm8KyiaUqg/b0Mj6sp7J3h4BhgwLq2zn/TDtIn0k5luedg=="
"resolved" "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.27.1.tgz"
"version" "0.27.1"
dependencies:
"@cosmjs/crypto" "0.27.1"
"@cosmjs/encoding" "0.27.1"
"@cosmjs/json-rpc" "0.27.1"
"@cosmjs/math" "0.27.1"
"@cosmjs/socket" "0.27.1"
"@cosmjs/stream" "0.27.1"
"axios" "^0.21.2"
"readonly-date" "^1.0.0"
"xstream" "^11.14.0"
"@cosmjs/utils@0.27.1":
"integrity" "sha512-VG7QPDiMUzVPxRdJahDV8PXxVdnuAHiIuG56hldV4yPnOz/si/DLNd7VAUUA5923b6jS1Hhev0Hr6AhEkcxBMg=="
"resolved" "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.27.1.tgz"
"version" "0.27.1"
"@emotion/babel-plugin@^11.7.1":
"integrity" "sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ=="
"resolved" "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz"
"version" "11.7.2"
dependencies:
"@babel/helper-module-imports" "^7.12.13"
"@babel/plugin-syntax-jsx" "^7.12.13"
"@babel/runtime" "^7.13.10"
"@emotion/hash" "^0.8.0"
"@emotion/memoize" "^0.7.5"
"@emotion/serialize" "^1.0.2"
"babel-plugin-macros" "^2.6.1"
"convert-source-map" "^1.5.0"
"escape-string-regexp" "^4.0.0"
"find-root" "^1.1.0"
"source-map" "^0.5.7"
"stylis" "4.0.13"
"@emotion/cache@^11.4.0", "@emotion/cache@^11.7.1":
"integrity" "sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.7.1.tgz"
"version" "11.7.1"
dependencies:
"@emotion/memoize" "^0.7.4"
"@emotion/sheet" "^1.1.0"
"@emotion/utils" "^1.0.0"
"@emotion/weak-memoize" "^0.2.5"
"stylis" "4.0.13"
"@emotion/hash@^0.8.0":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
"integrity" "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz"
"version" "0.7.5"
"@emotion/react@^11.1.1":
"integrity" "sha512-XGaie4nRxmtP1BZYBXqC5JGqMYF2KRKKI7vjqNvQxyRpekVAZhb6QqrElmZCAYXH1L90lAelADSVZC4PFsrJ8Q=="
"resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.8.1.tgz"
"version" "11.8.1"
dependencies:
"@babel/runtime" "^7.13.10"
"@emotion/babel-plugin" "^11.7.1"
"@emotion/cache" "^11.7.1"
"@emotion/serialize" "^1.0.2"
"@emotion/sheet" "^1.1.0"
"@emotion/utils" "^1.1.0"
"@emotion/weak-memoize" "^0.2.5"
"hoist-non-react-statics" "^3.3.1"
"@emotion/serialize@^1.0.2":
"integrity" "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"@emotion/hash" "^0.8.0"
"@emotion/memoize" "^0.7.4"
"@emotion/unitless" "^0.7.5"
"@emotion/utils" "^1.0.0"
"csstype" "^3.0.2"
"@emotion/sheet@^1.1.0":
"integrity" "sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.1.0.tgz"
"version" "1.1.0"
"@emotion/unitless@^0.7.5":
"integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
"version" "0.7.5"
"@emotion/utils@^1.0.0", "@emotion/utils@^1.1.0":
"integrity" "sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-1.1.0.tgz"
"version" "1.1.0"
"@emotion/weak-memoize@^0.2.5":
"integrity" "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz"
"version" "0.2.5"
"@eslint/eslintrc@^1.2.0":
"integrity" "sha512-igm9SjJHNEJRiUnecP/1R5T3wKLEJ7pL6e2P+GUSfCd0dGjPYYZve08uzw8L2J8foVHFz+NGu12JxRcU2gGo6w=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.3.1"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@humanwhocodes/config-array@^0.9.2":
"integrity" "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@jridgewell/resolve-uri@^3.0.3":
"integrity" "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz"
"version" "3.0.5"
"@jridgewell/sourcemap-codec@^1.4.10":
"integrity" "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz"
"version" "1.4.11"
"@jridgewell/trace-mapping@^0.3.0":
"integrity" "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz"
"version" "0.3.4"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@noble/hashes@^1.0.0":
"integrity" "sha512-DZVbtY62kc3kkBtMHqwCOfXrT/hnoORy5BJ4+HU1IR59X0KWAOqsfzQPcUl/lQLlG7qXbe/fZ3r/emxtAl+sqg=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.0.0.tgz"
"version" "1.0.0"
"@parcel/bundler-default@2.3.2":
"integrity" "sha512-JUrto4mjSD0ic9dEqRp0loL5o3HVYHja1ZIYSq+rBl2UWRV6/9cGTb07lXOCqqm0BWE+hQ4krUxB76qWaF0Lqw=="
"resolved" "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/hash" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/cache@2.3.2":
"integrity" "sha512-Xxq+ekgcFEme6Fn1v7rEOBkyMOUOUu7eNqQw0l6HQS+INZ2Q7YzzfdW7pI8rEOAAICVg5BWKpmBQZpgJlT+HxQ=="
"resolved" "https://registry.npmjs.org/@parcel/cache/-/cache-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/fs" "2.3.2"
"@parcel/logger" "2.3.2"
"@parcel/utils" "2.3.2"
"lmdb" "^2.0.2"
"@parcel/codeframe@2.3.2":
"integrity" "sha512-ireQALcxxrTdIEpzTOoMo/GpfbFm1qlyezeGl3Hce3PMvHLg3a5S6u/Vcy7SAjdld5GfhHEqVY+blME6Z4CyXQ=="
"resolved" "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"chalk" "^4.1.0"
"@parcel/compressor-raw@2.3.2":
"integrity" "sha512-8dIoFwinYK6bOTpnZOAwwIv0v73y0ezsctPmfMnIqVQPn7wJwfhw/gbKVcmK5AkgQMkyid98hlLZoaZtGF1Mdg=="
"resolved" "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/config-default@2.3.2":
"integrity" "sha512-E7/iA7fGCYvXU3u6zF9nxjeDVsgjCN6MVvDjymjaxYMoDWTIsPV245SBEXqzgtmzbMAV+VAl4rVWLMB4pzMt9g=="
"resolved" "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/bundler-default" "2.3.2"
"@parcel/compressor-raw" "2.3.2"
"@parcel/namer-default" "2.3.2"
"@parcel/optimizer-cssnano" "2.3.2"
"@parcel/optimizer-htmlnano" "2.3.2"
"@parcel/optimizer-image" "2.3.2"
"@parcel/optimizer-svgo" "2.3.2"
"@parcel/optimizer-terser" "2.3.2"
"@parcel/packager-css" "2.3.2"
"@parcel/packager-html" "2.3.2"
"@parcel/packager-js" "2.3.2"
"@parcel/packager-raw" "2.3.2"
"@parcel/packager-svg" "2.3.2"
"@parcel/reporter-dev-server" "2.3.2"
"@parcel/resolver-default" "2.3.2"
"@parcel/runtime-browser-hmr" "2.3.2"
"@parcel/runtime-js" "2.3.2"
"@parcel/runtime-react-refresh" "2.3.2"
"@parcel/runtime-service-worker" "2.3.2"
"@parcel/transformer-babel" "2.3.2"
"@parcel/transformer-css" "2.3.2"
"@parcel/transformer-html" "2.3.2"
"@parcel/transformer-image" "2.3.2"
"@parcel/transformer-js" "2.3.2"
"@parcel/transformer-json" "2.3.2"
"@parcel/transformer-postcss" "2.3.2"
"@parcel/transformer-posthtml" "2.3.2"
"@parcel/transformer-raw" "2.3.2"
"@parcel/transformer-react-refresh-wrap" "2.3.2"
"@parcel/transformer-svg" "2.3.2"
"@parcel/core@^2.3.2", "@parcel/core@2.3.2":
"integrity" "sha512-gdJzpsgeUhv9H8T0UKVmyuptiXdduEfKIUx0ci+/PGhq8cCoiFnlnuhW6H7oLr79OUc+YJStabDJuG4U2A6ysw=="
"resolved" "https://registry.npmjs.org/@parcel/core/-/core-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/cache" "2.3.2"
"@parcel/diagnostic" "2.3.2"
"@parcel/events" "2.3.2"
"@parcel/fs" "2.3.2"
"@parcel/graph" "2.3.2"
"@parcel/hash" "2.3.2"
"@parcel/logger" "2.3.2"
"@parcel/package-manager" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/types" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/workers" "2.3.2"
"abortcontroller-polyfill" "^1.1.9"
"base-x" "^3.0.8"
"browserslist" "^4.6.6"
"clone" "^2.1.1"
"dotenv" "^7.0.0"
"dotenv-expand" "^5.1.0"
"json-source-map" "^0.6.1"
"json5" "^2.2.0"
"msgpackr" "^1.5.1"
"nullthrows" "^1.1.1"
"semver" "^5.7.1"
"@parcel/diagnostic@2.3.2":
"integrity" "sha512-/xW93Az4AOiifuYW/c4CDbUcu3lx5FcUDAj9AGiR9NSTsF/ROC/RqnxvQ3AGtqa14R7vido4MXEpY3JEp6FsqA=="
"resolved" "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"json-source-map" "^0.6.1"
"nullthrows" "^1.1.1"
"@parcel/events@2.3.2":
"integrity" "sha512-WiYIwXMo4Vd+pi58vRoHkul8TPE5VEfMY+3FYwVCKPl/LYqSD+vz6wMx9uG18mEbB1d/ofefv5ZFQNtPGKO4tQ=="
"resolved" "https://registry.npmjs.org/@parcel/events/-/events-2.3.2.tgz"
"version" "2.3.2"
"@parcel/fs-search@2.3.2":
"integrity" "sha512-u3DTEFnPtKuZvEtgGzfVjQUytegSSn3POi7WfwMwPIaeDPfYcyyhfl+c96z7VL9Gk/pqQ99/cGyAwFdFsnxxXA=="
"resolved" "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"detect-libc" "^1.0.3"
"@parcel/fs@2.3.2":
"integrity" "sha512-XV+OsnRpN01QKU37lBN0TFKvv7uPKfQGbqFqYOrMbXH++Ae8rBU0Ykz+Yu4tv2h7shMlde+AMKgRnRTAJZpWEQ=="
"resolved" "https://registry.npmjs.org/@parcel/fs/-/fs-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/fs-search" "2.3.2"
"@parcel/types" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/watcher" "^2.0.0"
"@parcel/workers" "2.3.2"
"@parcel/graph@2.3.2":
"integrity" "sha512-ltTBM3IEqumgmy4ABBFETT8NtAwSsjD9mY3WCyJ5P8rUshfVCg093rvBPbpuJYMaH/TV1AHVaWfZqaZ4JQDIQQ=="
"resolved" "https://registry.npmjs.org/@parcel/graph/-/graph-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/hash@2.3.2":
"integrity" "sha512-SMtYTsHihws/wqdVnOr0QAGyGYsW9rJSJkkoRujUxo8l2ctnBN1ztv89eOUrdtgHsmcnj/oz1yw6sN38X+BUng=="
"resolved" "https://registry.npmjs.org/@parcel/hash/-/hash-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"detect-libc" "^1.0.3"
"xxhash-wasm" "^0.4.2"
"@parcel/logger@2.3.2":
"integrity" "sha512-jIWd8TXDQf+EnNWSa7Q10lSQ6C1LSH8OZkTlaINrfVIw7s+3tVxO3I4pjp7/ARw7RX2gdNPlw6fH4Gn/HvvYbw=="
"resolved" "https://registry.npmjs.org/@parcel/logger/-/logger-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/events" "2.3.2"
"@parcel/markdown-ansi@2.3.2":
"integrity" "sha512-l01ggmag5QScCk9mYA0xHh5TWSffR84uPFP2KvaAMQQ9NLNufcFiU0mn/Mtr3pCb5L5dSzmJ+Oo9s7P1Kh/Fmg=="
"resolved" "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"chalk" "^4.1.0"
"@parcel/namer-default@2.3.2":
"integrity" "sha512-3QUMC0+5+3KMKfoAxYAbpZtuRqTgyZKsGDWzOpuqwemqp6P8ahAvNPwSCi6QSkGcTmvtYwBu9/NHPSONxIFOfg=="
"resolved" "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/plugin" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/node-resolver-core@2.3.2":
"integrity" "sha512-wmrnMNzJN4GuHw2Ftho+BWgSWR6UCkW3XoMdphqcxpw/ieAdS2a+xYSosYkZgQZ6lGutSvLyJ1CkVvP6RLIdQQ=="
"resolved" "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/optimizer-cssnano@2.3.2":
"integrity" "sha512-wTBOxMiBI38NAB9XIlQZRCjS59+EWjWR9M04D3TWyxl+dL5gYMc1cl4GNynUnmcPdz+3s1UbOdo5/8V90wjiiw=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-cssnano/-/optimizer-cssnano-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"cssnano" "^5.0.15"
"postcss" "^8.4.5"
"@parcel/optimizer-htmlnano@2.3.2":
"integrity" "sha512-U8C0TDSxsx8HmHaLW0Zc7ha1fXQynzhvBjCRMGYnOiLiw0MOfLQxzQ2WKVSeCotmdlF63ayCwxWsd6BuqStiKQ=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"htmlnano" "^2.0.0"
"nullthrows" "^1.1.1"
"posthtml" "^0.16.5"
"svgo" "^2.4.0"
"@parcel/optimizer-image@2.3.2":
"integrity" "sha512-HOk3r5qdvY/PmI7Q3i2qEgFH3kP2QWG4Wq3wmC4suaF1+c2gpiQc+HKHWp4QvfbH3jhT00c5NxQyqPhbXeNI9Q=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/workers" "2.3.2"
"detect-libc" "^1.0.3"
"@parcel/optimizer-svgo@2.3.2":
"integrity" "sha512-l7WvZ5+e7D1mVmLUxMVaSb29cviXzuvSY2OpQs0ukdPACDqag+C65hWMzwTiOSSRGPMIu96kQKpeVru2YjibhA=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"svgo" "^2.4.0"
"@parcel/optimizer-terser@2.3.2":
"integrity" "sha512-dOapHhfy0xiNZa2IoEyHGkhhla07xsja79NPem14e5jCqY6Oi40jKNV4ab5uu5u1elWUjJuw69tiYbkDZWbKQw=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"terser" "^5.2.0"
"@parcel/package-manager@2.3.2":
"integrity" "sha512-pAQfywKVORY8Ee+NHAyKzzQrKbnz8otWRejps7urwhDaTVLfAd5C/1ZV64ATZ9ALYP9jyoQ8bTaxVd4opcSuwg=="
"resolved" "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/fs" "2.3.2"
"@parcel/logger" "2.3.2"
"@parcel/types" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/workers" "2.3.2"
"semver" "^5.7.1"
"@parcel/packager-css@2.3.2":
"integrity" "sha512-ByuF9xDnQnpVL1Hdu9aY6SpxOuZowd3TH7joh1qdRPLeMHTEvUywHBXoiAyNdrhnLGum8uPEdY8Ra5Xuo1U7kg=="
"resolved" "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/packager-html@2.3.2":
"integrity" "sha512-YqAptdU+uqfgwSii76mRGcA/3TpuC6yHr8xG+11brqj/tEFLsurmX0naombzd7FgmrTE9w+kb0HUIMl2vRBn0A=="
"resolved" "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/types" "2.3.2"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"posthtml" "^0.16.5"
"@parcel/packager-js@2.3.2":
"integrity" "sha512-3OP0Ro9M1J+PIKZK4Ec2N5hjIPiqk++B2kMFeiUqvaNZjJgKrPPEICBhjS52rma4IE/NgmIMB3aI5pWqE/KwNA=="
"resolved" "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/hash" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/utils" "2.3.2"
"globals" "^13.2.0"
"nullthrows" "^1.1.1"
"@parcel/packager-raw-url@^2.3.2":
"integrity" "sha512-xkV/fC5OtMi8xIOO6aRAQcIR2rmRfKvVCME4aXfMj4pKSqvZKyF75/UsIezAt41GTaO0H/hYIUTQUJdzI0wq5g=="
"resolved" "https://registry.npmjs.org/@parcel/packager-raw-url/-/packager-raw-url-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/packager-raw@2.3.2":
"integrity" "sha512-RnoZ7WgNAFWkEPrEefvyDqus7xfv9XGprHyTbfLittPaVAZpl+4eAv43nXyMfzk77Cgds6KcNpkosj3acEpNIQ=="
"resolved" "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/packager-svg@2.3.2":
"integrity" "sha512-iIC0VeczOXynS7M5jCi3naMBRyAznBVJ3iMg92/GaI9duxPlUMGAlHzLAKNtoXkc00HMXDH7rrmMb04VX6FYSg=="
"resolved" "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/types" "2.3.2"
"@parcel/utils" "2.3.2"
"posthtml" "^0.16.4"
"@parcel/plugin@2.3.2":
"integrity" "sha512-SaLZAJX4KH+mrAmqmcy9KJN+V7L+6YNTlgyqYmfKlNiHu7aIjLL+3prX8QRcgGtjAYziCxvPj0cl1CCJssaiGg=="
"resolved" "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/types" "2.3.2"
"@parcel/reporter-bundle-buddy@^2.3.2":
"integrity" "sha512-3UsI/NX83DceWM0Z4Z6eLHluSJeLa5N8yuv6dD0C3H257EDa7AxmoRY13ZqyTG/Gaf8N1HQKB97Ke9X+WvEMjQ=="
"resolved" "https://registry.npmjs.org/@parcel/reporter-bundle-buddy/-/reporter-bundle-buddy-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/reporter-cli@2.3.2":
"integrity" "sha512-VYetmTXqW83npsvVvqlQZTbF3yVL3k/FCCl3kSWvOr9LZA0lmyqJWPjMHq37yIIOszQN/p5guLtgCjsP0UQw1Q=="
"resolved" "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/types" "2.3.2"
"@parcel/utils" "2.3.2"
"chalk" "^4.1.0"
"@parcel/reporter-dev-server@2.3.2":
"integrity" "sha512-E7LtnjAX4iiWMw2qKUyFBi3+bDz0UGjqgHoPQylUYYLi6opXjJz/oC+cCcCy4e3RZlkrl187XonvagS59YjDxA=="
"resolved" "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/resolver-default@2.3.2":
"integrity" "sha512-y3r+xOwWsATrNGUWuZ6soA7q24f8E5tY1AZ9lHCufnkK2cdKZJ5O1cyd7ohkAiKZx2/pMd+FgmVZ/J3oxetXkA=="
"resolved" "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/node-resolver-core" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/runtime-browser-hmr@2.3.2":
"integrity" "sha512-nRD6uOyF1+HGylP9GASbYmvUDOsDaNwvaxuGTSh8+5M0mmCgib+hVBiPEKbwdmKjGbUPt9wRFPyMa/JpeQZsIQ=="
"resolved" "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"@parcel/runtime-js@2.3.2":
"integrity" "sha512-SJepcHvYO/7CEe/Q85sngk+smcJ6TypuPh4D2R8kN+cAJPi5WvbQEe7+x5BEgbN+5Jumi/Uo3FfOOE5mYh+F6g=="
"resolved" "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/runtime-react-refresh@2.3.2":
"integrity" "sha512-P+GRPO2XVDSBQ4HmRSj2xfbHSQvL9+ahTE/AB74IJExLTITv5l4SHAV3VsiKohuHYUAYHW3A/Oe7tEFCAb6Cug=="
"resolved" "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"react-refresh" "^0.9.0"
"@parcel/runtime-service-worker@2.3.2":
"integrity" "sha512-iREHj/eapphC4uS/zGUkiTJvG57q+CVbTrfE42kB8ECtf/RYNo5YC9htdvPZjRSXDPrEPc5NCoKp4X09ENNikw=="
"resolved" "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/source-map@^2.0.0":
"integrity" "sha512-NnUrPYLpYB6qyx2v6bcRPn/gVigmGG6M6xL8wIg/i0dP1GLkuY1nf+Hqdf63FzPTqqT7K3k6eE5yHPQVMO5jcA=="
"resolved" "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"detect-libc" "^1.0.3"
"@parcel/transformer-babel@2.3.2":
"integrity" "sha512-QpWfH2V6jJ+kcUBIMM/uBBG8dGFvNaOGS+8jD6b+eTP+1owzm83RoWgqhRV2D/hhv2qMXEQzIljoc/wg2y+X4g=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/utils" "2.3.2"
"browserslist" "^4.6.6"
"json5" "^2.2.0"
"nullthrows" "^1.1.1"
"semver" "^5.7.0"
"@parcel/transformer-css@2.3.2":
"integrity" "sha512-8lzvDny+78DIAqhcXam2Bf9FyaUoqzHdUQdNFn+PuXTHroG/QGPvln1kvqngJjn4/cpJS9vYmAPVXe+nai3P8g=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/hash" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/utils" "2.3.2"
"nullthrows" "^1.1.1"
"postcss" "^8.4.5"
"postcss-value-parser" "^4.2.0"
"semver" "^5.7.1"
"@parcel/transformer-html@2.3.2":
"integrity" "sha512-idT1I/8WM65IFYBqzRwpwT7sf0xGur4EDQDHhuPX1w+pIVZnh0lkLMAnEqs6ar1SPRMys4chzkuDNnqh0d76hg=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/hash" "2.3.2"
"@parcel/plugin" "2.3.2"
"nullthrows" "^1.1.1"
"posthtml" "^0.16.5"
"posthtml-parser" "^0.10.1"
"posthtml-render" "^3.0.0"
"semver" "^5.7.1"
"@parcel/transformer-image@2.3.2":
"integrity" "sha512-0K7cJHXysli6hZsUz/zVGO7WCoaaIeVdzAxKpLA1Yl3LKw/ODiMyXKt08LiV/ljQ2xT5qb9EsXUWDRvcZ0b96A=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"@parcel/workers" "2.3.2"
"nullthrows" "^1.1.1"
"@parcel/transformer-js@2.3.2":
"integrity" "sha512-U1fbIoAoqR5P49S+DMhH8BUd9IHRPwrTTv6ARYGsYnhuNsjTFhNYE0kkfRYboe/e0z7vEbeJICZXjnZ7eQDw5A=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/diagnostic" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/source-map" "^2.0.0"
"@parcel/utils" "2.3.2"
"@parcel/workers" "2.3.2"
"@swc/helpers" "^0.2.11"
"browserslist" "^4.6.6"
"detect-libc" "^1.0.3"
"nullthrows" "^1.1.1"
"regenerator-runtime" "^0.13.7"
"semver" "^5.7.1"
"@parcel/transformer-json@2.3.2":
"integrity" "sha512-Pv2iPaxKINtFwOk5fDbHjQlSm2Vza/NLimQY896FLxiXPNAJxWGvMwdutgOPEBKksxRx9LZPyIOHiRVZ0KcA3w=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/plugin" "2.3.2"
"json5" "^2.2.0"
"@parcel/transformer-postcss@2.3.2":
"integrity" "sha512-Rpdxc1rt2aJFCh/y/ccaBc9J1crDjNY5o44xYoOemBoUNDMREsmg5sR5iO81qKKO5GxfoosGb2zh59aeTmywcg=="
"resolved" "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@parcel/hash" "2.3.2"
"@parcel/plugin" "2.3.2"
"@parcel/utils" "2.3.2"