-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pnp.cjs
executable file
·12809 lines (12713 loc) · 689 KB
/
.pnp.cjs
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
#!/usr/bin/env node
/* eslint-disable */
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "video.dgmd.cc",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["video.dgmd.cc", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@babel/core", "npm:7.24.3"],\
["@babel/preset-env", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:7.24.3"],\
["@babel/preset-react", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:7.24.1"],\
["@rollup/plugin-babel", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:6.0.4"],\
["@rollup/plugin-terser", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:0.4.4"],\
["@vitejs/plugin-react", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:4.2.1"],\
["react", "npm:18.2.0"],\
["react-dom", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:18.2.0"],\
["vite", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:5.2.7"],\
["vite-plugin-svgr", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:4.2.0"],\
["vite-tsconfig-paths", "virtual:704c00aea917d4ded16445f4f4ee24e76da772877fe12a202cdaec3282e65fa82df0ae03bfac3bd954ff8829b26ac1680bddb837c6c23a37464238afa98f4ab5#npm:4.3.2"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@ampproject/remapping", [\
["npm:2.3.0", {\
"packageLocation": "../../.yarn/berry/cache/@ampproject-remapping-npm-2.3.0-559c14eee4-10c0.zip/node_modules/@ampproject/remapping/",\
"packageDependencies": [\
["@ampproject/remapping", "npm:2.3.0"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.24.2", {\
"packageLocation": "../../.yarn/berry/cache/@babel-code-frame-npm-7.24.2-e104352cc7-10c0.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.24.2"],\
["@babel/highlight", "npm:7.24.2"],\
["picocolors", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/compat-data", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-compat-data-npm-7.24.1-54f5f24a94-10c0.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.24.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/core", [\
["npm:7.24.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-core-npm-7.24.3-1ba98ae816-10c0.zip/node_modules/@babel/core/",\
"packageDependencies": [\
["@babel/core", "npm:7.24.3"],\
["@ampproject/remapping", "npm:2.3.0"],\
["@babel/code-frame", "npm:7.24.2"],\
["@babel/generator", "npm:7.24.1"],\
["@babel/helper-compilation-targets", "npm:7.23.6"],\
["@babel/helper-module-transforms", "virtual:1ba98ae81664f76e6f00d673fb6b33645efd20289826fc5c427f1b1688a017afbd02286ce35343dabb783ba23dc503b65f939e1db7098a2c1274abad2ed799f6#npm:7.23.3"],\
["@babel/helpers", "npm:7.24.1"],\
["@babel/parser", "npm:7.24.1"],\
["@babel/template", "npm:7.24.0"],\
["@babel/traverse", "npm:7.24.1"],\
["@babel/types", "npm:7.24.0"],\
["convert-source-map", "npm:2.0.0"],\
["debug", "virtual:8b235322a8a24e48c015315ac31d9a45375a931d446b3d9b05b3960f64165451979d09fb0441934c12e21122cff6f3cbc821971e2170239ee8406b043c8fdde4#npm:4.3.4"],\
["gensync", "npm:1.0.0-beta.2"],\
["json5", "npm:2.2.3"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-generator-npm-7.24.1-649d75bd2a-10c0.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.24.1"],\
["@babel/types", "npm:7.24.0"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"],\
["jsesc", "npm:2.5.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-annotate-as-pure", [\
["npm:7.22.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-annotate-as-pure-npm-7.22.5-f38dc8aa1c-10c0.zip/node_modules/@babel/helper-annotate-as-pure/",\
"packageDependencies": [\
["@babel/helper-annotate-as-pure", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-builder-binary-assignment-operator-visitor", [\
["npm:7.22.15", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-builder-binary-assignment-operator-visitor-npm-7.22.15-5581622ccf-10c0.zip/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/",\
"packageDependencies": [\
["@babel/helper-builder-binary-assignment-operator-visitor", "npm:7.22.15"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-compilation-targets", [\
["npm:7.23.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-compilation-targets-npm-7.23.6-aa6f07f088-10c0.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.23.6"],\
["@babel/compat-data", "npm:7.24.1"],\
["@babel/helper-validator-option", "npm:7.23.5"],\
["browserslist", "npm:4.23.0"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-create-class-features-plugin", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-create-class-features-plugin-npm-7.24.1-b9c767bf0d-10c0.zip/node_modules/@babel/helper-create-class-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-class-features-plugin", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:b5d6516ab1aaa61554dfb314dedbd90205b56060103485cafe1f87e6c74a93f37ad2cb8914a8ffaed56c08ee66f7bd6e05dfdb02207116d6f349b5b9612530db#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-class-features-plugin-virtual-495e4dd551/3/.yarn/berry/cache/@babel-helper-create-class-features-plugin-npm-7.24.1-b9c767bf0d-10c0.zip/node_modules/@babel/helper-create-class-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-class-features-plugin", "virtual:b5d6516ab1aaa61554dfb314dedbd90205b56060103485cafe1f87e6c74a93f37ad2cb8914a8ffaed56c08ee66f7bd6e05dfdb02207116d6f349b5b9612530db#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-annotate-as-pure", "npm:7.22.5"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-function-name", "npm:7.23.0"],\
["@babel/helper-member-expression-to-functions", "npm:7.23.0"],\
["@babel/helper-optimise-call-expression", "npm:7.22.5"],\
["@babel/helper-replace-supers", "virtual:495e4dd5511c476214bc4d8e70b998e4ba8ef8fefb505011709b417034ebf2591cb8bca6db235eabfdde9d2bdf0a96ec750d6ea8d1e0f6209613b89fa864f6a5#npm:7.24.1"],\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.22.5"],\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@types/babel__core", null],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-create-regexp-features-plugin", [\
["npm:7.22.15", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-create-regexp-features-plugin-npm-7.22.15-5f0e03b865-10c0.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "npm:7.22.15"]\
],\
"linkType": "SOFT"\
}],\
["virtual:c6d5c2db60155f4bb4208fbc50ad0677b6f1298c12e13cd8688e701d50fab9656b36c26438cce63888044db7e02864f3f61e846db25c1eef495e2fd9a30e64b9#npm:7.22.15", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-regexp-features-plugin-virtual-81d3a9e5ca/3/.yarn/berry/cache/@babel-helper-create-regexp-features-plugin-npm-7.22.15-5f0e03b865-10c0.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "virtual:c6d5c2db60155f4bb4208fbc50ad0677b6f1298c12e13cd8688e701d50fab9656b36c26438cce63888044db7e02864f3f61e846db25c1eef495e2fd9a30e64b9#npm:7.22.15"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-annotate-as-pure", "npm:7.22.5"],\
["@types/babel__core", null],\
["regexpu-core", "npm:5.3.2"],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-define-polyfill-provider", [\
["npm:0.6.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-define-polyfill-provider-npm-0.6.1-e972336ec3-10c0.zip/node_modules/@babel/helper-define-polyfill-provider/",\
"packageDependencies": [\
["@babel/helper-define-polyfill-provider", "npm:0.6.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:c4d200112f64e7955bad298038ec42e2ab19ba7949099c617c065cda32f113fbb6098b102f7ec8dedd040adf3afbaf39dcc15fc6a092aaa6af577c807ab0c14a#npm:0.6.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-define-polyfill-provider-virtual-bc8b0f8e4b/3/.yarn/berry/cache/@babel-helper-define-polyfill-provider-npm-0.6.1-e972336ec3-10c0.zip/node_modules/@babel/helper-define-polyfill-provider/",\
"packageDependencies": [\
["@babel/helper-define-polyfill-provider", "virtual:c4d200112f64e7955bad298038ec42e2ab19ba7949099c617c065cda32f113fbb6098b102f7ec8dedd040adf3afbaf39dcc15fc6a092aaa6af577c807ab0c14a#npm:0.6.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-compilation-targets", "npm:7.23.6"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null],\
["debug", "virtual:8b235322a8a24e48c015315ac31d9a45375a931d446b3d9b05b3960f64165451979d09fb0441934c12e21122cff6f3cbc821971e2170239ee8406b043c8fdde4#npm:4.3.4"],\
["lodash.debounce", "npm:4.0.8"],\
["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin<compat/resolve>::version=1.22.8&hash=c3c19d"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-environment-visitor", [\
["npm:7.22.20", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-environment-visitor-npm-7.22.20-260909e014-10c0.zip/node_modules/@babel/helper-environment-visitor/",\
"packageDependencies": [\
["@babel/helper-environment-visitor", "npm:7.22.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-function-name", [\
["npm:7.23.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-function-name-npm-7.23.0-ce38271242-10c0.zip/node_modules/@babel/helper-function-name/",\
"packageDependencies": [\
["@babel/helper-function-name", "npm:7.23.0"],\
["@babel/template", "npm:7.24.0"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-hoist-variables", [\
["npm:7.22.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-hoist-variables-npm-7.22.5-6db3192347-10c0.zip/node_modules/@babel/helper-hoist-variables/",\
"packageDependencies": [\
["@babel/helper-hoist-variables", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-member-expression-to-functions", [\
["npm:7.23.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-member-expression-to-functions-npm-7.23.0-4eb0647557-10c0.zip/node_modules/@babel/helper-member-expression-to-functions/",\
"packageDependencies": [\
["@babel/helper-member-expression-to-functions", "npm:7.23.0"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-imports", [\
["npm:7.24.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-module-imports-npm-7.24.3-edb733448b-10c0.zip/node_modules/@babel/helper-module-imports/",\
"packageDependencies": [\
["@babel/helper-module-imports", "npm:7.24.3"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-transforms", [\
["npm:7.23.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-module-transforms-npm-7.23.3-69078a931c-10c0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "npm:7.23.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:1ba98ae81664f76e6f00d673fb6b33645efd20289826fc5c427f1b1688a017afbd02286ce35343dabb783ba23dc503b65f939e1db7098a2c1274abad2ed799f6#npm:7.23.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-417837302c/3/.yarn/berry/cache/@babel-helper-module-transforms-npm-7.23.3-69078a931c-10c0.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "virtual:1ba98ae81664f76e6f00d673fb6b33645efd20289826fc5c427f1b1688a017afbd02286ce35343dabb783ba23dc503b65f939e1db7098a2c1274abad2ed799f6#npm:7.23.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-module-imports", "npm:7.24.3"],\
["@babel/helper-simple-access", "npm:7.22.5"],\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@babel/helper-validator-identifier", "npm:7.22.20"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-optimise-call-expression", [\
["npm:7.22.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-optimise-call-expression-npm-7.22.5-846964ef82-10c0.zip/node_modules/@babel/helper-optimise-call-expression/",\
"packageDependencies": [\
["@babel/helper-optimise-call-expression", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-plugin-utils", [\
["npm:7.24.0", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-plugin-utils-npm-7.24.0-24ea3c3608-10c0.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-remap-async-to-generator", [\
["npm:7.22.20", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-remap-async-to-generator-npm-7.22.20-86fe82a5c7-10c0.zip/node_modules/@babel/helper-remap-async-to-generator/",\
"packageDependencies": [\
["@babel/helper-remap-async-to-generator", "npm:7.22.20"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3972468d7fad9fef34cabafab7309ce9c311fa9af5e729cc5342d203e0de789bdc2c4cd282ea8226a2847f695a45112a730afe06fcaf800850b851c69ea7bca3#npm:7.22.20", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-remap-async-to-generator-virtual-ffd8472ee8/3/.yarn/berry/cache/@babel-helper-remap-async-to-generator-npm-7.22.20-86fe82a5c7-10c0.zip/node_modules/@babel/helper-remap-async-to-generator/",\
"packageDependencies": [\
["@babel/helper-remap-async-to-generator", "virtual:3972468d7fad9fef34cabafab7309ce9c311fa9af5e729cc5342d203e0de789bdc2c4cd282ea8226a2847f695a45112a730afe06fcaf800850b851c69ea7bca3#npm:7.22.20"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-annotate-as-pure", "npm:7.22.5"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-wrap-function", "npm:7.22.20"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-replace-supers", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-replace-supers-npm-7.24.1-0f96b0a406-10c0.zip/node_modules/@babel/helper-replace-supers/",\
"packageDependencies": [\
["@babel/helper-replace-supers", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:495e4dd5511c476214bc4d8e70b998e4ba8ef8fefb505011709b417034ebf2591cb8bca6db235eabfdde9d2bdf0a96ec750d6ea8d1e0f6209613b89fa864f6a5#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-replace-supers-virtual-4ad0d21772/3/.yarn/berry/cache/@babel-helper-replace-supers-npm-7.24.1-0f96b0a406-10c0.zip/node_modules/@babel/helper-replace-supers/",\
"packageDependencies": [\
["@babel/helper-replace-supers", "virtual:495e4dd5511c476214bc4d8e70b998e4ba8ef8fefb505011709b417034ebf2591cb8bca6db235eabfdde9d2bdf0a96ec750d6ea8d1e0f6209613b89fa864f6a5#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-member-expression-to-functions", "npm:7.23.0"],\
["@babel/helper-optimise-call-expression", "npm:7.22.5"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-simple-access", [\
["npm:7.22.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-simple-access-npm-7.22.5-0a3f578780-10c0.zip/node_modules/@babel/helper-simple-access/",\
"packageDependencies": [\
["@babel/helper-simple-access", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-skip-transparent-expression-wrappers", [\
["npm:7.22.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-skip-transparent-expression-wrappers-npm-7.22.5-a398428942-10c0.zip/node_modules/@babel/helper-skip-transparent-expression-wrappers/",\
"packageDependencies": [\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.22.5"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-split-export-declaration", [\
["npm:7.22.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-split-export-declaration-npm-7.22.6-e723505aef-10c0.zip/node_modules/@babel/helper-split-export-declaration/",\
"packageDependencies": [\
["@babel/helper-split-export-declaration", "npm:7.22.6"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-string-parser-npm-7.24.1-0a40ece7f8-10c0.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.24.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.22.20", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.22.20-18305bb306-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.22.20"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-option", [\
["npm:7.23.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-validator-option-npm-7.23.5-d83bbfe738-10c0.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.23.5"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-wrap-function", [\
["npm:7.22.20", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helper-wrap-function-npm-7.22.20-c8e9214527-10c0.zip/node_modules/@babel/helper-wrap-function/",\
"packageDependencies": [\
["@babel/helper-wrap-function", "npm:7.22.20"],\
["@babel/helper-function-name", "npm:7.23.0"],\
["@babel/template", "npm:7.24.0"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helpers", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-helpers-npm-7.24.1-665db13190-10c0.zip/node_modules/@babel/helpers/",\
"packageDependencies": [\
["@babel/helpers", "npm:7.24.1"],\
["@babel/template", "npm:7.24.0"],\
["@babel/traverse", "npm:7.24.1"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.24.2", {\
"packageLocation": "../../.yarn/berry/cache/@babel-highlight-npm-7.24.2-d2e9453f0c-10c0.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.24.2"],\
["@babel/helper-validator-identifier", "npm:7.22.20"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"],\
["picocolors", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-parser-npm-7.24.1-8b30631d26-10c0.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.24.1"],\
["@babel/types", "npm:7.24.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-npm-7.24.1-2081d870b1-10c0.zip/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/",\
"packageDependencies": [\
["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-virtual-0c0e124aa5/3/.yarn/berry/cache/@babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-npm-7.24.1-2081d870b1-10c0.zip/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/",\
"packageDependencies": [\
["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-npm-7.24.1-e66a2e7616-10c0.zip/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-virtual-e4e9033126/3/.yarn/berry/cache/@babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-npm-7.24.1-e66a2e7616-10c0.zip/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.22.5"],\
["@babel/plugin-transform-optional-chaining", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-npm-7.24.1-c74fbb2041-10c0.zip/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-virtual-12b08e4a73/3/.yarn/berry/cache/@babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-npm-7.24.1-c74fbb2041-10c0.zip/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-environment-visitor", "npm:7.22.20"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-private-property-in-object", [\
["npm:7.21.0-placeholder-for-preset-env.2", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-proposal-private-property-in-object-npm-7.21.0-placeholder-for-preset-env.2-eb70026c88-10c0.zip/node_modules/@babel/plugin-proposal-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-proposal-private-property-in-object", "npm:7.21.0-placeholder-for-preset-env.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.21.0-placeholder-for-preset-env.2", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-private-property-in-object-virtual-98df373cf4/3/.yarn/berry/cache/@babel-plugin-proposal-private-property-in-object-npm-7.21.0-placeholder-for-preset-env.2-eb70026c88-10c0.zip/node_modules/@babel/plugin-proposal-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-proposal-private-property-in-object", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.21.0-placeholder-for-preset-env.2"],\
["@babel/core", "npm:7.24.3"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-async-generators", [\
["npm:7.8.4", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-10c0.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "npm:7.8.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-async-generators-virtual-2d3fc2de41/3/.yarn/berry/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-10c0.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.4"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-properties", [\
["npm:7.12.13", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-10c0.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "npm:7.12.13"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-f56893610d/3/.yarn/berry/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-10c0.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.12.13"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-static-block", [\
["npm:7.14.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-10c0.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-static-block-virtual-1ca6b8c29b/3/.yarn/berry/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-10c0.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.14.5"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-dynamic-import", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-10c0.zip/node_modules/@babel/plugin-syntax-dynamic-import/",\
"packageDependencies": [\
["@babel/plugin-syntax-dynamic-import", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-dynamic-import-virtual-cdc8868566/3/.yarn/berry/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-10c0.zip/node_modules/@babel/plugin-syntax-dynamic-import/",\
"packageDependencies": [\
["@babel/plugin-syntax-dynamic-import", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-export-namespace-from", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-export-namespace-from-npm-7.8.3-1747201aa9-10c0.zip/node_modules/@babel/plugin-syntax-export-namespace-from/",\
"packageDependencies": [\
["@babel/plugin-syntax-export-namespace-from", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-export-namespace-from-virtual-ef13066135/3/.yarn/berry/cache/@babel-plugin-syntax-export-namespace-from-npm-7.8.3-1747201aa9-10c0.zip/node_modules/@babel/plugin-syntax-export-namespace-from/",\
"packageDependencies": [\
["@babel/plugin-syntax-export-namespace-from", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-assertions", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-import-assertions-npm-7.24.1-70d4eb103e-10c0.zip/node_modules/@babel/plugin-syntax-import-assertions/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-assertions", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-assertions-virtual-dd33747a67/3/.yarn/berry/cache/@babel-plugin-syntax-import-assertions-npm-7.24.1-70d4eb103e-10c0.zip/node_modules/@babel/plugin-syntax-import-assertions/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-assertions", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-attributes", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-import-attributes-npm-7.24.1-92cad8d5f1-10c0.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-attributes-virtual-e1b1d83307/3/.yarn/berry/cache/@babel-plugin-syntax-import-attributes-npm-7.24.1-92cad8d5f1-10c0.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-meta", [\
["npm:7.10.4", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-10c0.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-meta-virtual-0a2f5ffcf1/3/.yarn/berry/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-10c0.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.10.4"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-json-strings", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-10c0.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-json-strings-virtual-58c56e5472/3/.yarn/berry/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-10c0.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-jsx", [\
["npm:7.24.1", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.24.1-b105166357-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "npm:7.24.1"]\
],\
"linkType": "SOFT"\
}],\
["virtual:14a4342ba34d1d5a7bcd7fe04b385d99a847a08f3d9c55dbc259499c43a59b82800da6e3b2aeb5b921ed2b23bc8b53ea0df5265076697b6174a6e52e0fbaca05#npm:7.24.1", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-jsx-virtual-b4af8e6ab0/3/.yarn/berry/cache/@babel-plugin-syntax-jsx-npm-7.24.1-b105166357-10c0.zip/node_modules/@babel/plugin-syntax-jsx/",\
"packageDependencies": [\
["@babel/plugin-syntax-jsx", "virtual:14a4342ba34d1d5a7bcd7fe04b385d99a847a08f3d9c55dbc259499c43a59b82800da6e3b2aeb5b921ed2b23bc8b53ea0df5265076697b6174a6e52e0fbaca05#npm:7.24.1"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-logical-assignment-operators", [\
["npm:7.10.4", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-10c0.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-logical-assignment-operators-virtual-e663a3f58b/3/.yarn/berry/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-10c0.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.10.4"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-nullish-coalescing-operator", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-10c0.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-45a12513b1/3/.yarn/berry/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-10c0.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-numeric-separator", [\
["npm:7.10.4", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-10c0.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-numeric-separator-virtual-243ffddab3/3/.yarn/berry/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-10c0.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.10.4"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-object-rest-spread", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-10c0.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-object-rest-spread-virtual-1b3b4fb6f3/3/.yarn/berry/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-10c0.zip/node_modules/@babel/plugin-syntax-object-rest-spread/",\
"packageDependencies": [\
["@babel/plugin-syntax-object-rest-spread", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-optional-catch-binding", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-10c0.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-catch-binding-virtual-6ab5345b71/3/.yarn/berry/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-10c0.zip/node_modules/@babel/plugin-syntax-optional-catch-binding/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-catch-binding", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-optional-chaining", [\
["npm:7.8.3", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-10c0.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-optional-chaining-virtual-c418503fc2/3/.yarn/berry/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-10c0.zip/node_modules/@babel/plugin-syntax-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-syntax-optional-chaining", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.8.3"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-private-property-in-object", [\
["npm:7.14.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-10c0.zip/node_modules/@babel/plugin-syntax-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-syntax-private-property-in-object", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-private-property-in-object-virtual-3b0bd78010/3/.yarn/berry/cache/@babel-plugin-syntax-private-property-in-object-npm-7.14.5-ee837fdbb2-10c0.zip/node_modules/@babel/plugin-syntax-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-syntax-private-property-in-object", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.14.5"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-top-level-await", [\
["npm:7.14.5", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-10c0.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-top-level-await-virtual-86d110c0d0/3/.yarn/berry/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-10c0.zip/node_modules/@babel/plugin-syntax-top-level-await/",\
"packageDependencies": [\
["@babel/plugin-syntax-top-level-await", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.14.5"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-plugin-utils", "npm:7.24.0"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-unicode-sets-regex", [\
["npm:7.18.6", {\
"packageLocation": "../../.yarn/berry/cache/@babel-plugin-syntax-unicode-sets-regex-npm-7.18.6-b618a36bfd-10c0.zip/node_modules/@babel/plugin-syntax-unicode-sets-regex/",\
"packageDependencies": [\
["@babel/plugin-syntax-unicode-sets-regex", "npm:7.18.6"]\
],\
"linkType": "SOFT"\
}],\
["virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.18.6", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-unicode-sets-regex-virtual-c6d5c2db60/3/.yarn/berry/cache/@babel-plugin-syntax-unicode-sets-regex-npm-7.18.6-b618a36bfd-10c0.zip/node_modules/@babel/plugin-syntax-unicode-sets-regex/",\
"packageDependencies": [\
["@babel/plugin-syntax-unicode-sets-regex", "virtual:3ecffd0d803c367c40d7aa0033d0650f52ca815b56ee47454326da897413252315d547c0553ac6f192bf958aafeeabcfe6ae96360401badb799ef6914c166ef2#npm:7.18.6"],\
["@babel/core", "npm:7.24.3"],\
["@babel/helper-create-regexp-features-plugin", "virtual:c6d5c2db60155f4bb4208fbc50ad0677b6f1298c12e13cd8688e701d50fab9656b36c26438cce63888044db7e02864f3f61e846db25c1eef495e2fd9a30e64b9#npm:7.22.15"],\