-
Notifications
You must be signed in to change notification settings - Fork 6
/
.pnp.cjs
executable file
·16238 lines (16143 loc) · 835 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";
// function $$SETUP_STATE(hydrateRuntimeState, basePath) {
// return hydrateRuntimeState(JSON.parse('{\
// "__info": [\
// "This file is automatically generated. Do not touch it, or risk",\
// "your modifications being lost. We also recommend you not to read",\
// "it either without using the @yarnpkg/pnp package, as the data layout",\
// "is entirely unspecified and WILL change from a version to another."\
// ],\
// "dependencyTreeRoots": [\
// {\
// "name": "nextjs-13-boilerplate",\
// "reference": "workspace:."\
// }\
// ],\
// "enableTopLevelFallback": true,\
// "ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
// "fallbackExclusionList": [\
// ["nextjs-13-boilerplate", ["workspace:."]]\
// ],\
// "fallbackPool": [\
// ],\
// "packageRegistryData": [\
// [null, [\
// [null, {\
// "packageLocation": "./",\
// "packageDependencies": [\
// ["@next/font", "npm:13.1.2"],\
// ["@types/node", "npm:18.11.18"],\
// ["@types/react", "npm:18.0.26"],\
// ["@types/react-dom", "npm:18.0.10"],\
// ["autoprefixer", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:10.4.13"],\
// ["eslint", "npm:8.32.0"],\
// ["eslint-config-next", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:13.1.2"],\
// ["husky", "npm:8.0.3"],\
// ["lint-staged", "npm:13.1.1"],\
// ["next", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:13.1.2"],\
// ["next-reveal", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:1.0.6"],\
// ["phosphor-react", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:1.4.1"],\
// ["postcss", "npm:8.4.21"],\
// ["prettier", "npm:2.8.4"],\
// ["react", "npm:18.2.0"],\
// ["react-dom", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:18.2.0"],\
// ["tailwindcss", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:3.2.4"],\
// ["tslib", "npm:2.6.2"],\
// ["typescript", "patch:typescript@npm%3A4.9.4#~builtin<compat/typescript>::version=4.9.4&hash=289587"]\
// ],\
// "linkType": "SOFT"\
// }]\
// ]],\
// ["@babel/runtime", [\
// ["npm:7.20.7", {\
// "packageLocation": "./.yarn/cache/@babel-runtime-npm-7.20.7-69d8df458c-4629ce5c46.zip/node_modules/@babel/runtime/",\
// "packageDependencies": [\
// ["@babel/runtime", "npm:7.20.7"],\
// ["regenerator-runtime", "npm:0.13.11"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@eslint/eslintrc", [\
// ["npm:1.4.1", {\
// "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-1.4.1-007f670de2-cd3e5a8683.zip/node_modules/@eslint/eslintrc/",\
// "packageDependencies": [\
// ["@eslint/eslintrc", "npm:1.4.1"],\
// ["ajv", "npm:6.12.6"],\
// ["debug", "virtual:007f670de2e506a151fec572a83f2de9d546622ece352a4cf72e57296c0aa644478f43ac47fd07d8495ee7103d37c60645e444556d514defaeb66e67a086d21f#npm:4.3.4"],\
// ["espree", "npm:9.4.1"],\
// ["globals", "npm:13.19.0"],\
// ["ignore", "npm:5.2.4"],\
// ["import-fresh", "npm:3.3.0"],\
// ["js-yaml", "npm:4.1.0"],\
// ["minimatch", "npm:3.1.2"],\
// ["strip-json-comments", "npm:3.1.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@humanwhocodes/config-array", [\
// ["npm:0.11.8", {\
// "packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.11.8-7955bfecc2-0fd6b3c54f.zip/node_modules/@humanwhocodes/config-array/",\
// "packageDependencies": [\
// ["@humanwhocodes/config-array", "npm:0.11.8"],\
// ["@humanwhocodes/object-schema", "npm:1.2.1"],\
// ["debug", "virtual:007f670de2e506a151fec572a83f2de9d546622ece352a4cf72e57296c0aa644478f43ac47fd07d8495ee7103d37c60645e444556d514defaeb66e67a086d21f#npm:4.3.4"],\
// ["minimatch", "npm:3.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@humanwhocodes/module-importer", [\
// ["npm:1.0.1", {\
// "packageLocation": "./.yarn/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-0fd22007db.zip/node_modules/@humanwhocodes/module-importer/",\
// "packageDependencies": [\
// ["@humanwhocodes/module-importer", "npm:1.0.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@humanwhocodes/object-schema", [\
// ["npm:1.2.1", {\
// "packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip/node_modules/@humanwhocodes/object-schema/",\
// "packageDependencies": [\
// ["@humanwhocodes/object-schema", "npm:1.2.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@isaacs/cliui", [\
// ["npm:8.0.2", {\
// "packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-4a473b9b32.zip/node_modules/@isaacs/cliui/",\
// "packageDependencies": [\
// ["@isaacs/cliui", "npm:8.0.2"],\
// ["string-width", "npm:5.1.2"],\
// ["string-width-cjs", [\
// "string-width",\
// "npm:4.2.3"\
// ]],\
// ["strip-ansi", "npm:7.0.1"],\
// ["strip-ansi-cjs", [\
// "strip-ansi",\
// "npm:6.0.1"\
// ]],\
// ["wrap-ansi", "npm:8.1.0"],\
// ["wrap-ansi-cjs", [\
// "wrap-ansi",\
// "npm:7.0.0"\
// ]]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/env", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/cache/@next-env-npm-12.3.0-487def4880-9f5d0894de.zip/node_modules/@next/env/",\
// "packageDependencies": [\
// ["@next/env", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/cache/@next-env-npm-13.1.2-7075a70589-0b25af4a1c.zip/node_modules/@next/env/",\
// "packageDependencies": [\
// ["@next/env", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/eslint-plugin-next", [\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/cache/@next-eslint-plugin-next-npm-13.1.2-10f098f40d-6095e224fe.zip/node_modules/@next/eslint-plugin-next/",\
// "packageDependencies": [\
// ["@next/eslint-plugin-next", "npm:13.1.2"],\
// ["glob", "npm:7.1.7"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/font", [\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/cache/@next-font-npm-13.1.2-20441f5803-36fa827f95.zip/node_modules/@next/font/",\
// "packageDependencies": [\
// ["@next/font", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-android-arm-eabi", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-android-arm-eabi-npm-12.3.0-280d9a467b/node_modules/@next/swc-android-arm-eabi/",\
// "packageDependencies": [\
// ["@next/swc-android-arm-eabi", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-android-arm-eabi-npm-13.1.2-7e75255834/node_modules/@next/swc-android-arm-eabi/",\
// "packageDependencies": [\
// ["@next/swc-android-arm-eabi", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-android-arm64", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-android-arm64-npm-12.3.0-957e2b4914/node_modules/@next/swc-android-arm64/",\
// "packageDependencies": [\
// ["@next/swc-android-arm64", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-android-arm64-npm-13.1.2-16a93ad635/node_modules/@next/swc-android-arm64/",\
// "packageDependencies": [\
// ["@next/swc-android-arm64", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-darwin-arm64", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-darwin-arm64-npm-12.3.0-2b93f6942b/node_modules/@next/swc-darwin-arm64/",\
// "packageDependencies": [\
// ["@next/swc-darwin-arm64", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-darwin-arm64-npm-13.1.2-1936e39ed9/node_modules/@next/swc-darwin-arm64/",\
// "packageDependencies": [\
// ["@next/swc-darwin-arm64", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-darwin-x64", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-darwin-x64-npm-12.3.0-01c6ac964a/node_modules/@next/swc-darwin-x64/",\
// "packageDependencies": [\
// ["@next/swc-darwin-x64", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-darwin-x64-npm-13.1.2-99fe43f01f/node_modules/@next/swc-darwin-x64/",\
// "packageDependencies": [\
// ["@next/swc-darwin-x64", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-freebsd-x64", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-freebsd-x64-npm-12.3.0-2958801aad/node_modules/@next/swc-freebsd-x64/",\
// "packageDependencies": [\
// ["@next/swc-freebsd-x64", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-freebsd-x64-npm-13.1.2-fc567eaa21/node_modules/@next/swc-freebsd-x64/",\
// "packageDependencies": [\
// ["@next/swc-freebsd-x64", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-linux-arm-gnueabihf", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-arm-gnueabihf-npm-12.3.0-86397b571d/node_modules/@next/swc-linux-arm-gnueabihf/",\
// "packageDependencies": [\
// ["@next/swc-linux-arm-gnueabihf", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-arm-gnueabihf-npm-13.1.2-8dfc2b359e/node_modules/@next/swc-linux-arm-gnueabihf/",\
// "packageDependencies": [\
// ["@next/swc-linux-arm-gnueabihf", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-linux-arm64-gnu", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-arm64-gnu-npm-12.3.0-ad64f7daf2/node_modules/@next/swc-linux-arm64-gnu/",\
// "packageDependencies": [\
// ["@next/swc-linux-arm64-gnu", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-arm64-gnu-npm-13.1.2-7853060194/node_modules/@next/swc-linux-arm64-gnu/",\
// "packageDependencies": [\
// ["@next/swc-linux-arm64-gnu", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-linux-arm64-musl", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-arm64-musl-npm-12.3.0-b5809dd56d/node_modules/@next/swc-linux-arm64-musl/",\
// "packageDependencies": [\
// ["@next/swc-linux-arm64-musl", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-arm64-musl-npm-13.1.2-36640f5522/node_modules/@next/swc-linux-arm64-musl/",\
// "packageDependencies": [\
// ["@next/swc-linux-arm64-musl", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-linux-x64-gnu", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-x64-gnu-npm-12.3.0-563a18e704/node_modules/@next/swc-linux-x64-gnu/",\
// "packageDependencies": [\
// ["@next/swc-linux-x64-gnu", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-x64-gnu-npm-13.1.2-22f45902ec/node_modules/@next/swc-linux-x64-gnu/",\
// "packageDependencies": [\
// ["@next/swc-linux-x64-gnu", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-linux-x64-musl", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-x64-musl-npm-12.3.0-14e796a0c0/node_modules/@next/swc-linux-x64-musl/",\
// "packageDependencies": [\
// ["@next/swc-linux-x64-musl", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-linux-x64-musl-npm-13.1.2-0be5444d6e/node_modules/@next/swc-linux-x64-musl/",\
// "packageDependencies": [\
// ["@next/swc-linux-x64-musl", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-win32-arm64-msvc", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-win32-arm64-msvc-npm-12.3.0-023a231521/node_modules/@next/swc-win32-arm64-msvc/",\
// "packageDependencies": [\
// ["@next/swc-win32-arm64-msvc", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-win32-arm64-msvc-npm-13.1.2-7eafb1d1be/node_modules/@next/swc-win32-arm64-msvc/",\
// "packageDependencies": [\
// ["@next/swc-win32-arm64-msvc", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-win32-ia32-msvc", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-win32-ia32-msvc-npm-12.3.0-49d2823d5d/node_modules/@next/swc-win32-ia32-msvc/",\
// "packageDependencies": [\
// ["@next/swc-win32-ia32-msvc", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-win32-ia32-msvc-npm-13.1.2-73373a6979/node_modules/@next/swc-win32-ia32-msvc/",\
// "packageDependencies": [\
// ["@next/swc-win32-ia32-msvc", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@next/swc-win32-x64-msvc", [\
// ["npm:12.3.0", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-win32-x64-msvc-npm-12.3.0-bdea615b9f/node_modules/@next/swc-win32-x64-msvc/",\
// "packageDependencies": [\
// ["@next/swc-win32-x64-msvc", "npm:12.3.0"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:13.1.2", {\
// "packageLocation": "./.yarn/unplugged/@next-swc-win32-x64-msvc-npm-13.1.2-a265282130/node_modules/@next/swc-win32-x64-msvc/",\
// "packageDependencies": [\
// ["@next/swc-win32-x64-msvc", "npm:13.1.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@nodelib/fs.scandir", [\
// ["npm:2.1.5", {\
// "packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-a970d595bd.zip/node_modules/@nodelib/fs.scandir/",\
// "packageDependencies": [\
// ["@nodelib/fs.scandir", "npm:2.1.5"],\
// ["@nodelib/fs.stat", "npm:2.0.5"],\
// ["run-parallel", "npm:1.2.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@nodelib/fs.stat", [\
// ["npm:2.0.5", {\
// "packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-012480b5ca.zip/node_modules/@nodelib/fs.stat/",\
// "packageDependencies": [\
// ["@nodelib/fs.stat", "npm:2.0.5"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@nodelib/fs.walk", [\
// ["npm:1.2.8", {\
// "packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-190c643f15.zip/node_modules/@nodelib/fs.walk/",\
// "packageDependencies": [\
// ["@nodelib/fs.walk", "npm:1.2.8"],\
// ["@nodelib/fs.scandir", "npm:2.1.5"],\
// ["fastq", "npm:1.15.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@npmcli/fs", [\
// ["npm:3.1.0", {\
// "packageLocation": "./.yarn/cache/@npmcli-fs-npm-3.1.0-0844a57978-a50a6818de.zip/node_modules/@npmcli/fs/",\
// "packageDependencies": [\
// ["@npmcli/fs", "npm:3.1.0"],\
// ["semver", "npm:7.5.4"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@pkgjs/parseargs", [\
// ["npm:0.11.0", {\
// "packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-6ad6a00fc4.zip/node_modules/@pkgjs/parseargs/",\
// "packageDependencies": [\
// ["@pkgjs/parseargs", "npm:0.11.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@pkgr/utils", [\
// ["npm:2.3.1", {\
// "packageLocation": "./.yarn/cache/@pkgr-utils-npm-2.3.1-c89c217c08-118a197112.zip/node_modules/@pkgr/utils/",\
// "packageDependencies": [\
// ["@pkgr/utils", "npm:2.3.1"],\
// ["cross-spawn", "npm:7.0.3"],\
// ["is-glob", "npm:4.0.3"],\
// ["open", "npm:8.4.0"],\
// ["picocolors", "npm:1.0.0"],\
// ["tiny-glob", "npm:0.2.9"],\
// ["tslib", "npm:2.4.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@rushstack/eslint-patch", [\
// ["npm:1.2.0", {\
// "packageLocation": "./.yarn/cache/@rushstack-eslint-patch-npm-1.2.0-917f402e4e-faa749faae.zip/node_modules/@rushstack/eslint-patch/",\
// "packageDependencies": [\
// ["@rushstack/eslint-patch", "npm:1.2.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@swc/helpers", [\
// ["npm:0.4.11", {\
// "packageLocation": "./.yarn/cache/@swc-helpers-npm-0.4.11-d20747f9c8-736857d524.zip/node_modules/@swc/helpers/",\
// "packageDependencies": [\
// ["@swc/helpers", "npm:0.4.11"],\
// ["tslib", "npm:2.4.1"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:0.4.14", {\
// "packageLocation": "./.yarn/cache/@swc-helpers-npm-0.4.14-f806c3fb16-273fd3f3fc.zip/node_modules/@swc/helpers/",\
// "packageDependencies": [\
// ["@swc/helpers", "npm:0.4.14"],\
// ["tslib", "npm:2.4.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@tootallnate/once", [\
// ["npm:2.0.0", {\
// "packageLocation": "./.yarn/cache/@tootallnate-once-npm-2.0.0-e36cf4f140-ad87447820.zip/node_modules/@tootallnate/once/",\
// "packageDependencies": [\
// ["@tootallnate/once", "npm:2.0.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@types/json5", [\
// ["npm:0.0.29", {\
// "packageLocation": "./.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-e60b153664.zip/node_modules/@types/json5/",\
// "packageDependencies": [\
// ["@types/json5", "npm:0.0.29"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@types/node", [\
// ["npm:18.11.18", {\
// "packageLocation": "./.yarn/cache/@types-node-npm-18.11.18-d61e8a4a20-03f17f9480.zip/node_modules/@types/node/",\
// "packageDependencies": [\
// ["@types/node", "npm:18.11.18"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@types/prop-types", [\
// ["npm:15.7.5", {\
// "packageLocation": "./.yarn/cache/@types-prop-types-npm-15.7.5-2aa48aa177-5b43b8b154.zip/node_modules/@types/prop-types/",\
// "packageDependencies": [\
// ["@types/prop-types", "npm:15.7.5"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@types/react", [\
// ["npm:18.0.26", {\
// "packageLocation": "./.yarn/cache/@types-react-npm-18.0.26-d708995a34-b62f0ea3cd.zip/node_modules/@types/react/",\
// "packageDependencies": [\
// ["@types/react", "npm:18.0.26"],\
// ["@types/prop-types", "npm:15.7.5"],\
// ["@types/scheduler", "npm:0.16.2"],\
// ["csstype", "npm:3.1.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@types/react-dom", [\
// ["npm:18.0.10", {\
// "packageLocation": "./.yarn/cache/@types-react-dom-npm-18.0.10-97fe360927-ff8282d500.zip/node_modules/@types/react-dom/",\
// "packageDependencies": [\
// ["@types/react-dom", "npm:18.0.10"],\
// ["@types/react", "npm:18.0.26"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@types/scheduler", [\
// ["npm:0.16.2", {\
// "packageLocation": "./.yarn/cache/@types-scheduler-npm-0.16.2-ba3a7d8c68-b6b4dcfeae.zip/node_modules/@types/scheduler/",\
// "packageDependencies": [\
// ["@types/scheduler", "npm:0.16.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@typescript-eslint/parser", [\
// ["npm:5.48.2", {\
// "packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-5.48.2-6f99da2a9f-0ca1494dfd.zip/node_modules/@typescript-eslint/parser/",\
// "packageDependencies": [\
// ["@typescript-eslint/parser", "npm:5.48.2"]\
// ],\
// "linkType": "SOFT"\
// }],\
// ["virtual:a7b2b185cae99c3982994b3bcc72cffd830f87fc2c1caad49cee7ded1766355d6a71cd637b646b7a19bcf19e1ddd75df20c5bed60a9bc49f4160da997996d04a#npm:5.48.2", {\
// "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-fee6434b54/0/cache/@typescript-eslint-parser-npm-5.48.2-6f99da2a9f-0ca1494dfd.zip/node_modules/@typescript-eslint/parser/",\
// "packageDependencies": [\
// ["@typescript-eslint/parser", "virtual:a7b2b185cae99c3982994b3bcc72cffd830f87fc2c1caad49cee7ded1766355d6a71cd637b646b7a19bcf19e1ddd75df20c5bed60a9bc49f4160da997996d04a#npm:5.48.2"],\
// ["@types/eslint", null],\
// ["@types/typescript", null],\
// ["@typescript-eslint/scope-manager", "npm:5.48.2"],\
// ["@typescript-eslint/types", "npm:5.48.2"],\
// ["@typescript-eslint/typescript-estree", "virtual:fee6434b54ce330a46fd4bac3140f602815633579504f73548fef5ec87b53a844bd15db81e58096d85bdcc54699d39faeb288493129ee33709578d756a3b3a3c#npm:5.48.2"],\
// ["debug", "virtual:007f670de2e506a151fec572a83f2de9d546622ece352a4cf72e57296c0aa644478f43ac47fd07d8495ee7103d37c60645e444556d514defaeb66e67a086d21f#npm:4.3.4"],\
// ["eslint", "npm:8.32.0"],\
// ["typescript", "patch:typescript@npm%3A4.9.4#~builtin<compat/typescript>::version=4.9.4&hash=289587"]\
// ],\
// "packagePeers": [\
// "@types/eslint",\
// "@types/typescript",\
// "eslint",\
// "typescript"\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@typescript-eslint/scope-manager", [\
// ["npm:5.48.2", {\
// "packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-5.48.2-9a72dae708-d18a9016b7.zip/node_modules/@typescript-eslint/scope-manager/",\
// "packageDependencies": [\
// ["@typescript-eslint/scope-manager", "npm:5.48.2"],\
// ["@typescript-eslint/types", "npm:5.48.2"],\
// ["@typescript-eslint/visitor-keys", "npm:5.48.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@typescript-eslint/types", [\
// ["npm:5.48.2", {\
// "packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-5.48.2-bdebd4d2d7-9c5e860a01.zip/node_modules/@typescript-eslint/types/",\
// "packageDependencies": [\
// ["@typescript-eslint/types", "npm:5.48.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@typescript-eslint/typescript-estree", [\
// ["npm:5.48.2", {\
// "packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-5.48.2-2166870a0a-3ae06c5972.zip/node_modules/@typescript-eslint/typescript-estree/",\
// "packageDependencies": [\
// ["@typescript-eslint/typescript-estree", "npm:5.48.2"]\
// ],\
// "linkType": "SOFT"\
// }],\
// ["virtual:fee6434b54ce330a46fd4bac3140f602815633579504f73548fef5ec87b53a844bd15db81e58096d85bdcc54699d39faeb288493129ee33709578d756a3b3a3c#npm:5.48.2", {\
// "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-9df085d4fa/0/cache/@typescript-eslint-typescript-estree-npm-5.48.2-2166870a0a-3ae06c5972.zip/node_modules/@typescript-eslint/typescript-estree/",\
// "packageDependencies": [\
// ["@typescript-eslint/typescript-estree", "virtual:fee6434b54ce330a46fd4bac3140f602815633579504f73548fef5ec87b53a844bd15db81e58096d85bdcc54699d39faeb288493129ee33709578d756a3b3a3c#npm:5.48.2"],\
// ["@types/typescript", null],\
// ["@typescript-eslint/types", "npm:5.48.2"],\
// ["@typescript-eslint/visitor-keys", "npm:5.48.2"],\
// ["debug", "virtual:007f670de2e506a151fec572a83f2de9d546622ece352a4cf72e57296c0aa644478f43ac47fd07d8495ee7103d37c60645e444556d514defaeb66e67a086d21f#npm:4.3.4"],\
// ["globby", "npm:11.1.0"],\
// ["is-glob", "npm:4.0.3"],\
// ["semver", "npm:7.3.8"],\
// ["tsutils", "virtual:9df085d4fa4574c48ebe56e1fc92a1d8084fccad74e1f80b4ff93855fff8f4c7bcb4fa4128b2dccad355118f781a16fb36d30edc93fca71d593e27da756d39fe#npm:3.21.0"],\
// ["typescript", "patch:typescript@npm%3A4.9.4#~builtin<compat/typescript>::version=4.9.4&hash=289587"]\
// ],\
// "packagePeers": [\
// "@types/typescript",\
// "typescript"\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["@typescript-eslint/visitor-keys", [\
// ["npm:5.48.2", {\
// "packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-5.48.2-b644f53ee6-4d83d1e4b3.zip/node_modules/@typescript-eslint/visitor-keys/",\
// "packageDependencies": [\
// ["@typescript-eslint/visitor-keys", "npm:5.48.2"],\
// ["@typescript-eslint/types", "npm:5.48.2"],\
// ["eslint-visitor-keys", "npm:3.3.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["abbrev", [\
// ["npm:1.1.1", {\
// "packageLocation": "./.yarn/cache/abbrev-npm-1.1.1-3659247eab-a4a97ec07d.zip/node_modules/abbrev/",\
// "packageDependencies": [\
// ["abbrev", "npm:1.1.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["acorn", [\
// ["npm:7.4.1", {\
// "packageLocation": "./.yarn/cache/acorn-npm-7.4.1-f450b4646c-1860f23c21.zip/node_modules/acorn/",\
// "packageDependencies": [\
// ["acorn", "npm:7.4.1"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:8.8.1", {\
// "packageLocation": "./.yarn/cache/acorn-npm-8.8.1-20e4aea981-4079b67283.zip/node_modules/acorn/",\
// "packageDependencies": [\
// ["acorn", "npm:8.8.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["acorn-jsx", [\
// ["npm:5.3.2", {\
// "packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\
// "packageDependencies": [\
// ["acorn-jsx", "npm:5.3.2"]\
// ],\
// "linkType": "SOFT"\
// }],\
// ["virtual:b88faf10bc38b7bf99c4359521e8a0ed3f77dcbbc8677c8ff2c327d003d8f82b0e79a6212f450e879d54de3af7d71a6a67818de313afc6e195445593b76b6db0#npm:5.3.2", {\
// "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-18707c8687/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\
// "packageDependencies": [\
// ["acorn-jsx", "virtual:b88faf10bc38b7bf99c4359521e8a0ed3f77dcbbc8677c8ff2c327d003d8f82b0e79a6212f450e879d54de3af7d71a6a67818de313afc6e195445593b76b6db0#npm:5.3.2"],\
// ["@types/acorn", null],\
// ["acorn", "npm:8.8.1"]\
// ],\
// "packagePeers": [\
// "@types/acorn",\
// "acorn"\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["acorn-node", [\
// ["npm:1.8.2", {\
// "packageLocation": "./.yarn/cache/acorn-node-npm-1.8.2-b30b72c499-02e1564a1c.zip/node_modules/acorn-node/",\
// "packageDependencies": [\
// ["acorn-node", "npm:1.8.2"],\
// ["acorn", "npm:7.4.1"],\
// ["acorn-walk", "npm:7.2.0"],\
// ["xtend", "npm:4.0.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["acorn-walk", [\
// ["npm:7.2.0", {\
// "packageLocation": "./.yarn/cache/acorn-walk-npm-7.2.0-5f8b515308-9252158a79.zip/node_modules/acorn-walk/",\
// "packageDependencies": [\
// ["acorn-walk", "npm:7.2.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["agent-base", [\
// ["npm:6.0.2", {\
// "packageLocation": "./.yarn/cache/agent-base-npm-6.0.2-428f325a93-f52b6872cc.zip/node_modules/agent-base/",\
// "packageDependencies": [\
// ["agent-base", "npm:6.0.2"],\
// ["debug", "virtual:007f670de2e506a151fec572a83f2de9d546622ece352a4cf72e57296c0aa644478f43ac47fd07d8495ee7103d37c60645e444556d514defaeb66e67a086d21f#npm:4.3.4"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["agentkeepalive", [\
// ["npm:4.5.0", {\
// "packageLocation": "./.yarn/cache/agentkeepalive-npm-4.5.0-f237b580b2-13278cd5b1.zip/node_modules/agentkeepalive/",\
// "packageDependencies": [\
// ["agentkeepalive", "npm:4.5.0"],\
// ["humanize-ms", "npm:1.2.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["aggregate-error", [\
// ["npm:3.1.0", {\
// "packageLocation": "./.yarn/cache/aggregate-error-npm-3.1.0-415a406f4e-1101a33f21.zip/node_modules/aggregate-error/",\
// "packageDependencies": [\
// ["aggregate-error", "npm:3.1.0"],\
// ["clean-stack", "npm:2.2.0"],\
// ["indent-string", "npm:4.0.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["ajv", [\
// ["npm:6.12.6", {\
// "packageLocation": "./.yarn/cache/ajv-npm-6.12.6-4b5105e2b2-874972efe5.zip/node_modules/ajv/",\
// "packageDependencies": [\
// ["ajv", "npm:6.12.6"],\
// ["fast-deep-equal", "npm:3.1.3"],\
// ["fast-json-stable-stringify", "npm:2.1.0"],\
// ["json-schema-traverse", "npm:0.4.1"],\
// ["uri-js", "npm:4.4.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["ansi-escapes", [\
// ["npm:4.3.2", {\
// "packageLocation": "./.yarn/cache/ansi-escapes-npm-4.3.2-3ad173702f-93111c4218.zip/node_modules/ansi-escapes/",\
// "packageDependencies": [\
// ["ansi-escapes", "npm:4.3.2"],\
// ["type-fest", "npm:0.21.3"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["ansi-regex", [\
// ["npm:5.0.1", {\
// "packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-2aa4bb54ca.zip/node_modules/ansi-regex/",\
// "packageDependencies": [\
// ["ansi-regex", "npm:5.0.1"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:6.0.1", {\
// "packageLocation": "./.yarn/cache/ansi-regex-npm-6.0.1-8d663a607d-1ff8b7667c.zip/node_modules/ansi-regex/",\
// "packageDependencies": [\
// ["ansi-regex", "npm:6.0.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["ansi-styles", [\
// ["npm:4.3.0", {\
// "packageLocation": "./.yarn/cache/ansi-styles-npm-4.3.0-245c7d42c7-513b44c3b2.zip/node_modules/ansi-styles/",\
// "packageDependencies": [\
// ["ansi-styles", "npm:4.3.0"],\
// ["color-convert", "npm:2.0.1"]\
// ],\
// "linkType": "HARD"\
// }],\
// ["npm:6.2.1", {\
// "packageLocation": "./.yarn/cache/ansi-styles-npm-6.2.1-d43647018c-ef940f2f0c.zip/node_modules/ansi-styles/",\
// "packageDependencies": [\
// ["ansi-styles", "npm:6.2.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["anymatch", [\
// ["npm:3.1.3", {\
// "packageLocation": "./.yarn/cache/anymatch-npm-3.1.3-bc81d103b1-3e044fd6d1.zip/node_modules/anymatch/",\
// "packageDependencies": [\
// ["anymatch", "npm:3.1.3"],\
// ["normalize-path", "npm:3.0.0"],\
// ["picomatch", "npm:2.3.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["aproba", [\
// ["npm:2.0.0", {\
// "packageLocation": "./.yarn/cache/aproba-npm-2.0.0-8716bcfde6-5615cadcfb.zip/node_modules/aproba/",\
// "packageDependencies": [\
// ["aproba", "npm:2.0.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["are-we-there-yet", [\
// ["npm:3.0.1", {\
// "packageLocation": "./.yarn/cache/are-we-there-yet-npm-3.0.1-3395b1512f-52590c2486.zip/node_modules/are-we-there-yet/",\
// "packageDependencies": [\
// ["are-we-there-yet", "npm:3.0.1"],\
// ["delegates", "npm:1.0.0"],\
// ["readable-stream", "npm:3.6.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["arg", [\
// ["npm:5.0.2", {\
// "packageLocation": "./.yarn/cache/arg-npm-5.0.2-2f5805a547-6c69ada1a9.zip/node_modules/arg/",\
// "packageDependencies": [\
// ["arg", "npm:5.0.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["argparse", [\
// ["npm:2.0.1", {\
// "packageLocation": "./.yarn/cache/argparse-npm-2.0.1-faff7999e6-83644b5649.zip/node_modules/argparse/",\
// "packageDependencies": [\
// ["argparse", "npm:2.0.1"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["aria-query", [\
// ["npm:5.1.3", {\
// "packageLocation": "./.yarn/cache/aria-query-npm-5.1.3-9632eccdee-929ff95f02.zip/node_modules/aria-query/",\
// "packageDependencies": [\
// ["aria-query", "npm:5.1.3"],\
// ["deep-equal", "npm:2.2.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["array-includes", [\
// ["npm:3.1.6", {\
// "packageLocation": "./.yarn/cache/array-includes-npm-3.1.6-d0ff9d248b-f22f8cd8ba.zip/node_modules/array-includes/",\
// "packageDependencies": [\
// ["array-includes", "npm:3.1.6"],\
// ["call-bind", "npm:1.0.2"],\
// ["define-properties", "npm:1.1.4"],\
// ["es-abstract", "npm:1.21.1"],\
// ["get-intrinsic", "npm:1.1.3"],\
// ["is-string", "npm:1.0.7"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["array-union", [\
// ["npm:2.1.0", {\
// "packageLocation": "./.yarn/cache/array-union-npm-2.1.0-4e4852b221-5bee12395c.zip/node_modules/array-union/",\
// "packageDependencies": [\
// ["array-union", "npm:2.1.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["array.prototype.flat", [\
// ["npm:1.3.1", {\
// "packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.3.1-e9a9e389c0-5a8415949d.zip/node_modules/array.prototype.flat/",\
// "packageDependencies": [\
// ["array.prototype.flat", "npm:1.3.1"],\
// ["call-bind", "npm:1.0.2"],\
// ["define-properties", "npm:1.1.4"],\
// ["es-abstract", "npm:1.21.1"],\
// ["es-shim-unscopables", "npm:1.0.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["array.prototype.flatmap", [\
// ["npm:1.3.1", {\
// "packageLocation": "./.yarn/cache/array.prototype.flatmap-npm-1.3.1-c65186ca34-8c1c43a499.zip/node_modules/array.prototype.flatmap/",\
// "packageDependencies": [\
// ["array.prototype.flatmap", "npm:1.3.1"],\
// ["call-bind", "npm:1.0.2"],\
// ["define-properties", "npm:1.1.4"],\
// ["es-abstract", "npm:1.21.1"],\
// ["es-shim-unscopables", "npm:1.0.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["array.prototype.tosorted", [\
// ["npm:1.1.1", {\
// "packageLocation": "./.yarn/cache/array.prototype.tosorted-npm-1.1.1-1be94ad4a7-7923324a67.zip/node_modules/array.prototype.tosorted/",\
// "packageDependencies": [\
// ["array.prototype.tosorted", "npm:1.1.1"],\
// ["call-bind", "npm:1.0.2"],\
// ["define-properties", "npm:1.1.4"],\
// ["es-abstract", "npm:1.21.1"],\
// ["es-shim-unscopables", "npm:1.0.0"],\
// ["get-intrinsic", "npm:1.1.3"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["ast-types-flow", [\
// ["npm:0.0.7", {\
// "packageLocation": "./.yarn/cache/ast-types-flow-npm-0.0.7-7d32a3abf5-a26dcc2182.zip/node_modules/ast-types-flow/",\
// "packageDependencies": [\
// ["ast-types-flow", "npm:0.0.7"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["astral-regex", [\
// ["npm:2.0.0", {\
// "packageLocation": "./.yarn/cache/astral-regex-npm-2.0.0-f30d866aab-876231688c.zip/node_modules/astral-regex/",\
// "packageDependencies": [\
// ["astral-regex", "npm:2.0.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["autoprefixer", [\
// ["npm:10.4.13", {\
// "packageLocation": "./.yarn/cache/autoprefixer-npm-10.4.13-261edbcee5-dcb1cb7ae9.zip/node_modules/autoprefixer/",\
// "packageDependencies": [\
// ["autoprefixer", "npm:10.4.13"]\
// ],\
// "linkType": "SOFT"\
// }],\
// ["virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:10.4.13", {\
// "packageLocation": "./.yarn/__virtual__/autoprefixer-virtual-8c7a8ee92e/0/cache/autoprefixer-npm-10.4.13-261edbcee5-dcb1cb7ae9.zip/node_modules/autoprefixer/",\
// "packageDependencies": [\
// ["autoprefixer", "virtual:28ae0b36ea447cc07609779e9360e2bab190453318b236a8328790b664ecea9c80071ea6307ec196e7e0a2175a89bed2b1cc831545b6e97e1e637ac0169d6f17#npm:10.4.13"],\
// ["@types/postcss", null],\
// ["browserslist", "npm:4.21.4"],\
// ["caniuse-lite", "npm:1.0.30001523"],\
// ["fraction.js", "npm:4.2.0"],\
// ["normalize-range", "npm:0.1.2"],\
// ["picocolors", "npm:1.0.0"],\
// ["postcss", "npm:8.4.21"],\
// ["postcss-value-parser", "npm:4.2.0"]\
// ],\
// "packagePeers": [\
// "@types/postcss",\
// "postcss"\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["available-typed-arrays", [\
// ["npm:1.0.5", {\
// "packageLocation": "./.yarn/cache/available-typed-arrays-npm-1.0.5-88f321e4d3-20eb47b3ce.zip/node_modules/available-typed-arrays/",\
// "packageDependencies": [\
// ["available-typed-arrays", "npm:1.0.5"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["axe-core", [\
// ["npm:4.6.2", {\
// "packageLocation": "./.yarn/cache/axe-core-npm-4.6.2-0de0e7b3e6-81523eeaf1.zip/node_modules/axe-core/",\
// "packageDependencies": [\
// ["axe-core", "npm:4.6.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["axobject-query", [\
// ["npm:3.1.1", {\
// "packageLocation": "./.yarn/cache/axobject-query-npm-3.1.1-13705ce3c1-c12a5da10d.zip/node_modules/axobject-query/",\
// "packageDependencies": [\
// ["axobject-query", "npm:3.1.1"],\
// ["deep-equal", "npm:2.2.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["balanced-match", [\
// ["npm:1.0.2", {\
// "packageLocation": "./.yarn/cache/balanced-match-npm-1.0.2-a53c126459-9706c088a2.zip/node_modules/balanced-match/",\
// "packageDependencies": [\
// ["balanced-match", "npm:1.0.2"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["binary-extensions", [\
// ["npm:2.2.0", {\
// "packageLocation": "./.yarn/cache/binary-extensions-npm-2.2.0-180c33fec7-ccd267956c.zip/node_modules/binary-extensions/",\
// "packageDependencies": [\
// ["binary-extensions", "npm:2.2.0"]\
// ],\
// "linkType": "HARD"\
// }]\
// ]],\
// ["brace-expansion", [\
// ["npm:1.1.11", {\
// "packageLocation": "./.yarn/cache/brace-expansion-npm-1.1.11-fb95eb05ad-faf34a7bb0.zip/node_modules/brace-expansion/",\
// "packageDependencies": [\