-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.sum
More file actions
1203 lines (1203 loc) · 120 KB
/
go.sum
File metadata and controls
1203 lines (1203 loc) · 120 KB
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
cloud.google.com/go v0.123.0 h1:2NAUJwPR47q+E35uaJeYoNhuNEM9kM8SjgRgdeOJUSE=
cloud.google.com/go v0.123.0/go.mod h1:xBoMV08QcqUGuPW65Qfm1o9Y4zKZBpGS+7bImXLTAZU=
cloud.google.com/go/auth v0.17.0 h1:74yCm7hCj2rUyyAocqnFzsAYXgJhrG26XCFimrc/Kz4=
cloud.google.com/go/auth v0.17.0/go.mod h1:6wv/t5/6rOPAX4fJiRjKkJCvswLwdet7G8+UGXt7nCQ=
cloud.google.com/go/compute/metadata v0.9.0 h1:pDUj4QMoPejqq20dK0Pg2N4yG9zIkYGdBtwLoEkH9Zs=
cloud.google.com/go/compute/metadata v0.9.0/go.mod h1:E0bWwX5wTnLPedCKqk3pJmVgCBSM6qQI1yTBdEb3C10=
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0=
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/alexaandru/go-sitter-forest v1.9.163 h1:IIlt8ll7/hE5EpefBin360l+d/G2m5rvp4ogxPeiFEo=
github.com/alexaandru/go-sitter-forest v1.9.163/go.mod h1:0BOiaHsCFNAysRIekafkvf43hCZrcgxxul8t2W7qGlY=
github.com/alexaandru/go-sitter-forest/abap v1.9.0 h1:wIlRUQWSGSphgVcfR9CIdHNtf12XJFgAACeEm+Ohj98=
github.com/alexaandru/go-sitter-forest/abap v1.9.0/go.mod h1:ncd58d6p7W8g02hiVkNCffYAmx1RGsiF+7/OBDugqj0=
github.com/alexaandru/go-sitter-forest/abl v1.9.7 h1:sg8ATr+d4DorNQKNrChZRwdKfF4hM0y9LmjiEpwGhKQ=
github.com/alexaandru/go-sitter-forest/abl v1.9.7/go.mod h1:sapMcPJ6TwB9MUVjbzp3SX8iIj5EZr/sL1IVO4BOqY0=
github.com/alexaandru/go-sitter-forest/ada v1.9.0 h1:hV0rMiYCssJD6rRTya4HD1w9LnvgJUoq2QAJAQM7kzs=
github.com/alexaandru/go-sitter-forest/ada v1.9.0/go.mod h1:/p7T4GAxcLusrbWR0atkOhmCekrV7Qx+SDnropaRRI8=
github.com/alexaandru/go-sitter-forest/agda v1.9.0 h1:SVqCoIGf8teLuKIC6jP91xdMS4C4kmDQQhIqdSH5i4c=
github.com/alexaandru/go-sitter-forest/agda v1.9.0/go.mod h1:5mQ1eA8fz/GRFYFW1nlhbvmVEf/2AhEMlgYkAfnKGwM=
github.com/alexaandru/go-sitter-forest/aiken v1.9.0 h1:KfHS1uHsrMqHy+838DSeN3gsPhoBvDrdWmvM5MkN8Es=
github.com/alexaandru/go-sitter-forest/aiken v1.9.0/go.mod h1:tqD+NLMie3gpjrAkti8pcWUA0CfB0A7Ehof7TNjW7kI=
github.com/alexaandru/go-sitter-forest/al v1.9.14 h1:duNTKsb2W51XLwD9UIxbYvjiZgb/EryyjFHaeTkJDqg=
github.com/alexaandru/go-sitter-forest/al v1.9.14/go.mod h1:rBblF3CWZva6V3JwgaqOGhlOhxqF2KZJrh7hoX+mCik=
github.com/alexaandru/go-sitter-forest/alcha v1.9.6 h1:sYRKXLEtSQ3FNyeQkyosQQE2Vch52DclfF1dheYNAhw=
github.com/alexaandru/go-sitter-forest/alcha v1.9.6/go.mod h1:6w7KsjklrjSX5hep5303DbhVGB3OOnZ02i1KQPBnpdw=
github.com/alexaandru/go-sitter-forest/amber v1.9.4 h1:R29zrKKWBO1rqP+yOGAj0Kpk15bGKrEdafFxYfMrtn8=
github.com/alexaandru/go-sitter-forest/amber v1.9.4/go.mod h1:rytOkqtnNY3SSF4UqIg1cKyPoWVirvIro+taERhyO58=
github.com/alexaandru/go-sitter-forest/angular v1.9.4 h1:lT6J8XPUoqGm6abIa8791OvQwht48IR9i4LYVXDo9J4=
github.com/alexaandru/go-sitter-forest/angular v1.9.4/go.mod h1:n1fDgEgoPx8b6poY21Bfd7COjxIqibIPYGyNaQks7lU=
github.com/alexaandru/go-sitter-forest/animationtxt v1.9.0 h1:Wr4jgFhXHOLvny/NKcsSOeKAKnpq495FIovqZ1Uze4E=
github.com/alexaandru/go-sitter-forest/animationtxt v1.9.0/go.mod h1:p5sU+0x7oeif3Hhdp/NeyxIoXAAe95o1HAsAPkt5ZVI=
github.com/alexaandru/go-sitter-forest/ansible v1.9.0 h1:PmVWbjFpSbsbPrslekgUgtbdDNy4mFijO09hKWkhZHQ=
github.com/alexaandru/go-sitter-forest/ansible v1.9.0/go.mod h1:IKyHLF+SjXuqLhv3cyAPJ5Nk3QtRYOSJRAULK9HuROc=
github.com/alexaandru/go-sitter-forest/anzu v1.9.0 h1:f4NWdAz/QgdNpCFl+l3qRRKvhHshlxwySfPj8c2oleE=
github.com/alexaandru/go-sitter-forest/anzu v1.9.0/go.mod h1:5J1e+ilHbqlS4PH7dZOu+uTRt1QxdZvkT17JwM71zBs=
github.com/alexaandru/go-sitter-forest/apex v1.9.8 h1:DHutXiWPhDL6MrzURbnPb5PG6Y9+/UdnaU/AaeLGbfQ=
github.com/alexaandru/go-sitter-forest/apex v1.9.8/go.mod h1:sJBWVWpDk1SqqAlcqZrV8OE8+/739OaqRN8iqN8wC78=
github.com/alexaandru/go-sitter-forest/applesoft v1.9.0 h1:75+8VK94k363oFTlW+40s8c8g7kiQLllSgi4HnvMY8g=
github.com/alexaandru/go-sitter-forest/applesoft v1.9.0/go.mod h1:0Lm+H6Dd8NQEX2Cfjebe3XOsZEYAYStW58mmMWK9cRk=
github.com/alexaandru/go-sitter-forest/arduino v1.9.0 h1:37uB3jPuXjjER8m8vFcB+vl12pzmZPpmWgZGpqD2TG8=
github.com/alexaandru/go-sitter-forest/arduino v1.9.0/go.mod h1:7Aq/fJEkZB+jFW3bVcTDWHGUSn3LCRvka7YsEx375RI=
github.com/alexaandru/go-sitter-forest/asciidoc v1.9.2 h1:4U6vuAOfQT4MeqBOw5f99yJatosxa3swx1B/pF27Zlk=
github.com/alexaandru/go-sitter-forest/asciidoc v1.9.2/go.mod h1:MxTE6p3tth1TsFcCrN6hsiTBXe3v/zSdx9b7+8nBCKY=
github.com/alexaandru/go-sitter-forest/asciidoc_inline v1.9.4 h1:KAv9T06fPHSOe6mqpYyzvuMMdUvgHBhiLOnpSQclyik=
github.com/alexaandru/go-sitter-forest/asciidoc_inline v1.9.4/go.mod h1:eDcZmJOyiOQvRX7TYreCK5zzgsidqEteeC+1hAtKsI0=
github.com/alexaandru/go-sitter-forest/asm v1.9.1 h1:pfsxgLh/PV3sQvYoGYtPBOge2zB2mW2nQl5wzCHij+E=
github.com/alexaandru/go-sitter-forest/asm v1.9.1/go.mod h1:TMGi0OBTAPmJ86MhznPbForh5NsAyGMS1s7YWH14TXM=
github.com/alexaandru/go-sitter-forest/astro v1.9.3 h1:BIvw4zNviMKiDn0Kepws65kH1/xtPaVQGfILSn0WzYY=
github.com/alexaandru/go-sitter-forest/astro v1.9.3/go.mod h1:36+gesnODQN7t0NZJiaF6schHQsaPgCnCbJ+q0R4l8g=
github.com/alexaandru/go-sitter-forest/august v1.9.0 h1:LIVsVed+sH41tCGwbJTlFl0ZZxs9rzU9oV2m4im2D4g=
github.com/alexaandru/go-sitter-forest/august v1.9.0/go.mod h1:OT4FlrDG7F2tFIBYD9jJThgOWBC10kKYPOvFHkbd7e0=
github.com/alexaandru/go-sitter-forest/authzed v1.9.0 h1:elcOFaQ1D+uNuvZUTd6PxS7WeCiQQ5o2vegeQ8M4v4k=
github.com/alexaandru/go-sitter-forest/authzed v1.9.0/go.mod h1:lScol565hoBvPbKL74LCx9HB0jq56NB1VB3ATRsZ0yo=
github.com/alexaandru/go-sitter-forest/awa5_rs v1.9.1 h1:6iESI8wKnv2lmJ6uII9vcOS8aPmhScWTZKL8Qgemcq4=
github.com/alexaandru/go-sitter-forest/awa5_rs v1.9.1/go.mod h1:QmGsCnzfOdbVUlcFzdDts4Omhl9ocofWUYjl8/g6Xww=
github.com/alexaandru/go-sitter-forest/awatalk v1.9.0 h1:kxYx2w5OSUe3rKEEynu5kybSk+v3jUC6x23P4odv6hg=
github.com/alexaandru/go-sitter-forest/awatalk v1.9.0/go.mod h1:QT0Vkk5lQt5xoNaxN84yGMdP6itpP5X19JDSynU57Js=
github.com/alexaandru/go-sitter-forest/awk v1.9.2 h1:mt71QRir2Yg2S7Ql5N1rsqKAdt8OIizLqoLXFfgbUL4=
github.com/alexaandru/go-sitter-forest/awk v1.9.2/go.mod h1:OEweh7+GNWAeSK8BlCYb/FznbC3Qhc9LyPl0ViyOUgo=
github.com/alexaandru/go-sitter-forest/bara v1.9.0 h1:Ws/7a26eZ/P2EMbKu7nCwFsQ7zvdVf72g2yZRs+uNSA=
github.com/alexaandru/go-sitter-forest/bara v1.9.0/go.mod h1:URDbG2vb9sViurYn9N6dHCSThzDt/Kb8ugm9SNPgqNU=
github.com/alexaandru/go-sitter-forest/barq v1.9.4 h1:6UQCTck5VbGmWx/zLzuvaqr4r8NjT0nLAUOJUfWB3og=
github.com/alexaandru/go-sitter-forest/barq v1.9.4/go.mod h1:MzWu5aDC58QK9fyHB2tiL5SScgTnykSq6dqkX3Jaz5Q=
github.com/alexaandru/go-sitter-forest/bash v1.9.6 h1:08bixRLEPEeo5dUMUa5AkGRso5RA9T/gYJ1iqxx4lvk=
github.com/alexaandru/go-sitter-forest/bash v1.9.6/go.mod h1:n7akT/YMJSe0m+kKMZRzi+lQlXDjKU0vvYrrvejJ0no=
github.com/alexaandru/go-sitter-forest/bass v1.9.0 h1:UvSfGuJIM538Dv/uYEu6CMuHDpQ/h00E1cmYhyiKAo8=
github.com/alexaandru/go-sitter-forest/bass v1.9.0/go.mod h1:NI3e/5+bJdfjlHkvb9BaejvGUcL6oaIJyKww7mOl9g8=
github.com/alexaandru/go-sitter-forest/beancount v1.9.0 h1:mogTAWha81TfaNKZc/BcAtqlWdmMT+rqtF02keDynTg=
github.com/alexaandru/go-sitter-forest/beancount v1.9.0/go.mod h1:sRTsh5n9tiO3ADTy5hAWtWLTdWplPbOLAX1nMxuXmf0=
github.com/alexaandru/go-sitter-forest/bend v1.9.0 h1:j7t/ZIe798TGW6N4Zpn3kXvgWbNgWNWzJkJ1gmB5Svg=
github.com/alexaandru/go-sitter-forest/bend v1.9.0/go.mod h1:nty4iujnTPMSTqQFnz5Gjpq+E+PtgeFeFqUO3mZdgAc=
github.com/alexaandru/go-sitter-forest/bibtex v1.9.3 h1:MUM7KCwjhZ3fyHLF1hphLSBjoELCcQVLZ+mViqoXD8w=
github.com/alexaandru/go-sitter-forest/bibtex v1.9.3/go.mod h1:cOuGiV3GULPojgK4r+m7d1o9tgzyvHek7739hTd8KzM=
github.com/alexaandru/go-sitter-forest/bicep v1.9.1 h1:G9kCRh+kv5kTPfnLYUqcQkBLSaCLCSeT+dAMEADpdDE=
github.com/alexaandru/go-sitter-forest/bicep v1.9.1/go.mod h1:qP/AZJS/nLCqcrUeYft2WPjAxpVY9yOLFiyGRXGspbk=
github.com/alexaandru/go-sitter-forest/bitbake v1.9.1 h1:acZJDrsvXoEJN7LLzl4q3ja1tm2WrrK3ciqtnh59xZU=
github.com/alexaandru/go-sitter-forest/bitbake v1.9.1/go.mod h1:lB1ryMzSKC0DTsQQAr6lX4sMoOMJ4Kpo0K+A95TtM7E=
github.com/alexaandru/go-sitter-forest/blade v1.9.3 h1:TMxFIM1vmJVrP5dTlB80PS6AzJ1lsIW4ePPW2eLjyow=
github.com/alexaandru/go-sitter-forest/blade v1.9.3/go.mod h1:C6jEulWj5o9kma3NEW83aWtYGZM93Uy5x5kMYrl2U3Q=
github.com/alexaandru/go-sitter-forest/blueprint v1.9.0 h1:eHjv0b00Pi09t6Dn+vMTvobttKaUpL3NQLDfOa8qkhU=
github.com/alexaandru/go-sitter-forest/blueprint v1.9.0/go.mod h1:+/K1XwjyfIjXht7A0mCzu3igmlp+gXzgZD0aro0+T9g=
github.com/alexaandru/go-sitter-forest/bluespec v1.9.0 h1:ExOc+LO/TlkRv8ybUp++0hjaJk/jNgWXEXW7jPYvHz8=
github.com/alexaandru/go-sitter-forest/bluespec v1.9.0/go.mod h1:DwKLYFApp/bME7pfCt65KqLxsKW8A6yO2tqQFsm/s5E=
github.com/alexaandru/go-sitter-forest/bond v1.9.1 h1:tHpNk1ANOERIISu/1+o0hpq+0zj/+k+56ZRm5JrFzrc=
github.com/alexaandru/go-sitter-forest/bond v1.9.1/go.mod h1:lVPHbOojfbSfwED+8dacwbhfAieAtAZL5z6cr5bbA+o=
github.com/alexaandru/go-sitter-forest/bp v1.9.2 h1:mZ2kvlK6BPEC1eswMsXmwnKTeA2SgUHuLxysIP5pOic=
github.com/alexaandru/go-sitter-forest/bp v1.9.2/go.mod h1:AYPS5x90N+07Ybdu8T+HSHiYaSOY27L83okcv9tit38=
github.com/alexaandru/go-sitter-forest/bqn v1.9.1 h1:IZE36cbCAdlhneaZYcFGXd40CTz21pqQcGyObrgEqUM=
github.com/alexaandru/go-sitter-forest/bqn v1.9.1/go.mod h1:esxwk+7E6+mZixGHvP9khq9JjUNxBWgCQeUMv/da2Oc=
github.com/alexaandru/go-sitter-forest/brightscript v1.9.4 h1:P7kc+EBBv8JmuFdvFBg4aFw4dNtW/PbQNLfvu6i0o98=
github.com/alexaandru/go-sitter-forest/brightscript v1.9.4/go.mod h1:9Uo6frlolS2/uPGBbLjjDHmibNNz5l/u0NfnuUfKVes=
github.com/alexaandru/go-sitter-forest/bruno v1.9.1 h1:UFuReA9M0C0DDPrW3tnCtSTaL5DZXFOJQRRMSk5qwps=
github.com/alexaandru/go-sitter-forest/bruno v1.9.1/go.mod h1:vNRugE3dlS61x79XlKQBGbFDPuyFG0+84DAM/GU71tU=
github.com/alexaandru/go-sitter-forest/c v1.9.4 h1:E7Qb0zN/DSQhsIaJvfKHIhk6QLxu+4DNi8OgoMpvyMM=
github.com/alexaandru/go-sitter-forest/c v1.9.4/go.mod h1:ycxxUak8lW4au1HrvwY93ztpiJyCjm0lUb0OYhXcvmk=
github.com/alexaandru/go-sitter-forest/c3 v1.9.25 h1:Ai0l+Aba8KbjKFON7zuuXW9MH722jtN48vK1VaEKkvQ=
github.com/alexaandru/go-sitter-forest/c3 v1.9.25/go.mod h1:/mAUOAqbfjoxfjV+tPt1zZptzE98QI40btksoSDZtJs=
github.com/alexaandru/go-sitter-forest/c_sharp v1.9.6 h1:qGVeM/rs6ITL+WVZh0DVn6sHtDwuZpQIQwgmnVUbb9o=
github.com/alexaandru/go-sitter-forest/c_sharp v1.9.6/go.mod h1:Z7u9b/RpBzNY7Q17Rs0ASuRkDjXUn9eGOv0Hwsn8maw=
github.com/alexaandru/go-sitter-forest/ca65 v1.9.0 h1:/Z9wtkuDQm0XG6WdqkIii6Ue5vMCx+qrdwSSB28Uxl8=
github.com/alexaandru/go-sitter-forest/ca65 v1.9.0/go.mod h1:GCTjdthlpLhSWO9eTSS6oJJ4lhxm9cliK9MYseRtsNU=
github.com/alexaandru/go-sitter-forest/caddy v1.9.0 h1:Y2MLwaJ+fs823/A7Eb9h4kJF96LPouUEv+v9SeG0hks=
github.com/alexaandru/go-sitter-forest/caddy v1.9.0/go.mod h1:cHdcUwWZ/vg+whe7yjtIC1x7UOSTUV/m9pEgFIeiqrU=
github.com/alexaandru/go-sitter-forest/cairo v1.9.0 h1:EtF5U0g9lOY5yEUBb/EY1IuuXyA2nkKLFpiZDnXeetw=
github.com/alexaandru/go-sitter-forest/cairo v1.9.0/go.mod h1:gW0/NFz148HLzD3GlybLWo/I8iApZA/ClBoPWwDQMC8=
github.com/alexaandru/go-sitter-forest/calc v1.9.0 h1:dsOzqwLINikZXVriEUZ2U7hl0rWKfLJePHqfOsqhD7A=
github.com/alexaandru/go-sitter-forest/calc v1.9.0/go.mod h1:kKRNnCN1IiWortB14r8A6oG50bqqhwqmlGNA6IgScS0=
github.com/alexaandru/go-sitter-forest/capnp v1.9.0 h1:LC+s5xxqDVREsHxFRzOdrnH3GY5c3xyOzCk/oUiuOGU=
github.com/alexaandru/go-sitter-forest/capnp v1.9.0/go.mod h1:CFNjWPCnLwh1HGhN23oKzpNcTmUgkrOKPbG5bX0Dj9M=
github.com/alexaandru/go-sitter-forest/carbon v1.9.2 h1:GHcFE1FoJu5jPQQTU2wormdH7MbPsvrIc7J5HUOb5cA=
github.com/alexaandru/go-sitter-forest/carbon v1.9.2/go.mod h1:rk7P5q6UuYt4iiC4CIq41wLwe0qagFGU4cG3ELjIN24=
github.com/alexaandru/go-sitter-forest/cds v1.9.2 h1:61uFeVimO14ar+4COntF7lgmtMfjXgtP9E1skjOpoiI=
github.com/alexaandru/go-sitter-forest/cds v1.9.2/go.mod h1:8Iy/Vz7ZVf2oTD6hnVgPDqcfd/gxGguMQfmBBD3T+EI=
github.com/alexaandru/go-sitter-forest/cedar v1.9.0 h1:Fh4RWEUci1iP12UfSPqeEeFj4/2H32wo1bI8ywNKoOk=
github.com/alexaandru/go-sitter-forest/cedar v1.9.0/go.mod h1:we/iMmg1Z91MiXdemOhFNdcqptesFCdPNh9/F8zdhfY=
github.com/alexaandru/go-sitter-forest/cel v1.9.0 h1:SidxMBeUDOwyEL6FckuM8ugYjUZwNXOTsbFFL66bCPk=
github.com/alexaandru/go-sitter-forest/cel v1.9.0/go.mod h1:Bt+cJ+RTYYHuAZ5inywkaOCWj4kHoR3np70QzPSxHLk=
github.com/alexaandru/go-sitter-forest/cfengine v1.9.1 h1:b8/djVXeqHYu2hwihFljreUrB3oS2/340iZBK/husG0=
github.com/alexaandru/go-sitter-forest/cfengine v1.9.1/go.mod h1:nTisVy4MkxkYk0oIqNHcyfcMwfN4CJ2yrqVUgEL8q3s=
github.com/alexaandru/go-sitter-forest/cg v1.9.3 h1:eJxRHd+0nxth4zbCiLqgn4nWWtyyanrJfkxu9p69Jpg=
github.com/alexaandru/go-sitter-forest/cg v1.9.3/go.mod h1:xeiUuIfoDRaYmL+qi106WJ+PIzYYZCsJVoidDmzc5KQ=
github.com/alexaandru/go-sitter-forest/cgsql v1.9.7 h1:22lElGkt68sCkiYBwQLia8LGvngu3V2XhbMtr2DGu78=
github.com/alexaandru/go-sitter-forest/cgsql v1.9.7/go.mod h1:NpmeMHv878NJJV2lO7IGy4Vhy8FSbuhZyXMmMH4lL2E=
github.com/alexaandru/go-sitter-forest/chatito v1.9.1 h1:a4QQHTvwS7W5fU64VkRHq7EAHJtZyCqkQlQeZtIMtiQ=
github.com/alexaandru/go-sitter-forest/chatito v1.9.1/go.mod h1:MCBRzbrIP5AKWhT9qH20NEri6+CmL11dEGNmgEwMwi0=
github.com/alexaandru/go-sitter-forest/circom v1.9.1 h1:A4u/8OqKx0CoQNwn1ZnfcJCxfxJvcWybBwiH+ePGXeY=
github.com/alexaandru/go-sitter-forest/circom v1.9.1/go.mod h1:iFCNOiruRx/9+utOh2IBTeWAe4KKLUbIOvyRcgHCnAQ=
github.com/alexaandru/go-sitter-forest/clarity v1.9.5 h1:LPM/xqBOgEfFcEZkPN+OPrn6WGXul11zGv7umbm0DEU=
github.com/alexaandru/go-sitter-forest/clarity v1.9.5/go.mod h1:y0YKg+1DhUGKsVUAy3LrGTD++GTc2Npn/6P9ik8P+1I=
github.com/alexaandru/go-sitter-forest/cleancopy v1.9.0 h1:LYGSYxY3jv53da0LjeJw9YtFIQFqa1P3ts9VZISu44c=
github.com/alexaandru/go-sitter-forest/cleancopy v1.9.0/go.mod h1:nC2BsYoh+sAa6n2RMnwCpeYVerglia0Qt75HcQqfJ/Y=
github.com/alexaandru/go-sitter-forest/clingo v1.9.0 h1:IbGOM7y/S6McOdEXK9mhUuBlRgxTj/4GYvJL/qknj9E=
github.com/alexaandru/go-sitter-forest/clingo v1.9.0/go.mod h1:ff76kplHAqLEiGVIGkqtDYEOxbnlNG9JqNhzXgtL3es=
github.com/alexaandru/go-sitter-forest/clojure v1.9.1 h1:92l8hciDLzr1QpCdpIkn4PQJAyDWAkoj7TsDPo1gASA=
github.com/alexaandru/go-sitter-forest/clojure v1.9.1/go.mod h1:fIQc6DUtA0D1SbZmKOrpmBuuMZhysWyajjU5K6jXlcA=
github.com/alexaandru/go-sitter-forest/cloudflare v1.9.0 h1:imYpcUtabDBAOTz7L9Rv4Vb841XSodlzYy7hwSjxPDI=
github.com/alexaandru/go-sitter-forest/cloudflare v1.9.0/go.mod h1:hl1/nU0O7IO8k2Upj8hbnri3txEEe9Xo9bQVpwup//0=
github.com/alexaandru/go-sitter-forest/cmake v1.9.5 h1:j7gEdWdso5eho1MniDlnVJbEDKW5uT7kppMw+7LXrkQ=
github.com/alexaandru/go-sitter-forest/cmake v1.9.5/go.mod h1:pCkW4vC19G7TsX0pUXR/SahcSwgL3VvbyUY6OuV7qDc=
github.com/alexaandru/go-sitter-forest/cmdl v1.9.0 h1:9lCWj9Xh/P5olSGey822TXjNCm4smhiMyPG5F5xQa4E=
github.com/alexaandru/go-sitter-forest/cmdl v1.9.0/go.mod h1:Gsn3PbJ7UoS3HVDVm9/Kx0caaBzXQ0ZhXahKWJGqHik=
github.com/alexaandru/go-sitter-forest/cobol v1.9.1 h1:pVQzXTWOT+CpFPjm64dz7nlKOUXX8JcVMqZI8f7BW8k=
github.com/alexaandru/go-sitter-forest/cobol v1.9.1/go.mod h1:mIuPUKqbXhTLia5LFWtRev3qdjSL8q/cxPnCuTCxEf8=
github.com/alexaandru/go-sitter-forest/cognate v1.9.0 h1:pilOhGWXpSyQ2jbiFPa513efYVBK3jg8uG5CJEnax6g=
github.com/alexaandru/go-sitter-forest/cognate v1.9.0/go.mod h1:dqHG3AXBIF+axyQPcaDXJq7Z+X73hrx+PuHMprMfLYA=
github.com/alexaandru/go-sitter-forest/comment v1.9.2 h1:XLMbDB/P1kThHDbGKHRCcfilU/JE/1ddx52i7cTV8Ms=
github.com/alexaandru/go-sitter-forest/comment v1.9.2/go.mod h1:M0IYmOtOoOdGznMOPFayh9NYf/28YqSMG3E64H/I6mQ=
github.com/alexaandru/go-sitter-forest/commonlisp v1.9.1 h1:j5IFAUC0sOskJtvgQYiAzuDqBESh51+J1Qcbg3d+mGo=
github.com/alexaandru/go-sitter-forest/commonlisp v1.9.1/go.mod h1:icU+eAqo4erv5HM23nBqDoberycIVMpcCkzXtWZggIA=
github.com/alexaandru/go-sitter-forest/context v1.9.0 h1:H+NE3Loojqd3TjH2teMXJxW4BkkAELtAra5hT4+wAgY=
github.com/alexaandru/go-sitter-forest/context v1.9.0/go.mod h1:hNRp8n3d9+FgQSKUD6lsh3Vv0dxIfr0cLarFOecjzWg=
github.com/alexaandru/go-sitter-forest/cooklang v1.9.0 h1:VMDN2+xRB0AIVqNuwJ6G2p1HFb3mNB95NIhLc/ti1KQ=
github.com/alexaandru/go-sitter-forest/cooklang v1.9.0/go.mod h1:oRvCTcsRxbkfQPMchjlq/WsfL6AA3J7qcsYM88bEG1o=
github.com/alexaandru/go-sitter-forest/core v1.9.3 h1:3dQnmlVQkXv4U7eXnrOmPJabB/ohWJKbonUT5P3hLsI=
github.com/alexaandru/go-sitter-forest/core v1.9.3/go.mod h1:3aIDXHXwvyePcyJRfI5BQ47vQJwtVfGhvO4Ax6zX8+U=
github.com/alexaandru/go-sitter-forest/corn v1.9.0 h1:mEvhXPBQ3pOcZfvVIY+X3zymQGORauv1HnFlMmyHHss=
github.com/alexaandru/go-sitter-forest/corn v1.9.0/go.mod h1:amXoa83QIgvHLYUUkW70GqTGK5LUlvdDcg8xFHb4Sig=
github.com/alexaandru/go-sitter-forest/cpon v1.9.0 h1:z1h+ptBFTF108Cmxp5RHMSLt1nbTuB2ntt1UUswa5jk=
github.com/alexaandru/go-sitter-forest/cpon v1.9.0/go.mod h1:+f6qL15fsVbKU3S765O21PEC+smQwGSme1HwOqkiX/0=
github.com/alexaandru/go-sitter-forest/cpp v1.9.5 h1:GudtwF4yPlT5NANI8+rU7xS3ilm03wVWghmuaorMzEw=
github.com/alexaandru/go-sitter-forest/cpp v1.9.5/go.mod h1:OVmJ399hre2mWHm+n0iOOZVcw9MHG2RuldxIvQKlbQ0=
github.com/alexaandru/go-sitter-forest/crystal v1.9.29 h1:Cdow/MZfN+VGQk8kHT8lgCio0DtUw0t8EdmZngv/JV8=
github.com/alexaandru/go-sitter-forest/crystal v1.9.29/go.mod h1:LTW73FI3gh1zQ1ctJTABi6DN6F/OhqGIDznReZGvuSw=
github.com/alexaandru/go-sitter-forest/css v1.9.4 h1:MBdaNeWhmIBqrxetO0HBiyit9Sfxw4WBukUPqHGA/Ho=
github.com/alexaandru/go-sitter-forest/css v1.9.4/go.mod h1:5lnhmNpkGjiHgp6LfEyUtcS11G4MDwgvaV0naJeJEY8=
github.com/alexaandru/go-sitter-forest/csv v1.9.0 h1:Du1BseqbluiBuxiGWsMWDcN5isBwAGHcps0X7lfncUg=
github.com/alexaandru/go-sitter-forest/csv v1.9.0/go.mod h1:A17YDdpl2MpSNLauUEudcDuOm2JiTRm7hu7pq0dQ3Og=
github.com/alexaandru/go-sitter-forest/cuda v1.9.1 h1:cpt2374o7HWFzqbbLkwJo2t2jT8aFrvGFaU4r7vkees=
github.com/alexaandru/go-sitter-forest/cuda v1.9.1/go.mod h1:jV6wS6b8cCTPSVNIEX1C1tZYoH8LA/3IbBmPje4cRps=
github.com/alexaandru/go-sitter-forest/cue v1.9.1 h1:Dtrh/66ckdmE+0yXdUpq5Xzc189x5flNjFi83izjWOg=
github.com/alexaandru/go-sitter-forest/cue v1.9.1/go.mod h1:LAAU8XksDpU4K34PJ5nq2hJkvvfqFRA8vvF933Ud08M=
github.com/alexaandru/go-sitter-forest/cylc v1.9.2 h1:IoLI5JLjvjhdCMizs7l5I3yIHtpKhrQKiGFdFX/fXLg=
github.com/alexaandru/go-sitter-forest/cylc v1.9.2/go.mod h1:EwiH33uncFw7pxuwnGg8S/Gz5bPkOUMt7GorRLL0o80=
github.com/alexaandru/go-sitter-forest/d v1.9.0 h1:BJVFQM4gMlo6lqsFsMShBOO/TLXIhPsifWSkkeMRPFM=
github.com/alexaandru/go-sitter-forest/d v1.9.0/go.mod h1:h+jXbECGhUMYBK4ekzN68z0Z1Geh9UBGCcqZ682IhvU=
github.com/alexaandru/go-sitter-forest/d2 v1.9.0 h1:oWPl0Hg6lE45Hr9lJTRxT5k0ABBwS6zK6yUU2V/hFHY=
github.com/alexaandru/go-sitter-forest/d2 v1.9.0/go.mod h1:8yxpwrZpaqLDMUAszgLuPAuTzLclZ6WHdpJ13OD6++o=
github.com/alexaandru/go-sitter-forest/dale v1.9.0 h1:Z80spFUs1pfbqeKkZ70EgHBS/Do/mx8eIy9nO9L2ZdY=
github.com/alexaandru/go-sitter-forest/dale v1.9.0/go.mod h1:VRX15gUfb8/HCm2ZnI5b2ruDnMZC1qN2n/uc97/Jk10=
github.com/alexaandru/go-sitter-forest/dart v1.9.4 h1:WvN+ShV7DuSDjYNSgI4N2mH4ucivqJCu+q8E1zycdts=
github.com/alexaandru/go-sitter-forest/dart v1.9.4/go.mod h1:7HT0VRdDilKAPTmOPdjgM9Gx/U0z8mgw5p0/dh1rnE4=
github.com/alexaandru/go-sitter-forest/dataweave v1.9.0 h1:VzTFI753EM9ixKi93bFShetE2//Yn8SrJCoAh+l8MzY=
github.com/alexaandru/go-sitter-forest/dataweave v1.9.0/go.mod h1:K/t9UdBFxbbnAwXH+dyqV9CbrxT2cfRGs9gEx/CPXpc=
github.com/alexaandru/go-sitter-forest/dbml v1.9.0 h1:duKl06ON4sgvXKT+X4uj8d8DXgGuh+lalc7G5Zco22w=
github.com/alexaandru/go-sitter-forest/dbml v1.9.0/go.mod h1:wqA3Mkp0zUM7YNAEAzniwCOB5GYJ2Gl8+uZjdGfCkNw=
github.com/alexaandru/go-sitter-forest/desktop v1.9.4 h1:zDeqezju9o9d3RZbzv91ueeKZuZH3tEF+PSulgDmwHA=
github.com/alexaandru/go-sitter-forest/desktop v1.9.4/go.mod h1:KQvw5eAiffoNWTr8QJy+5GZOIRUNyTjG6HSbeRmOWKw=
github.com/alexaandru/go-sitter-forest/devicetree v1.9.2 h1:Y0LjDosmN5xzaNNqAtNyUTRJIleS+ysp3PCYS2wEoaw=
github.com/alexaandru/go-sitter-forest/devicetree v1.9.2/go.mod h1:RlsPO2Ps7vSFjLYPrHVaHX+oa4+/U2TWXA83x93LuuI=
github.com/alexaandru/go-sitter-forest/dezyne v1.9.2 h1:YG/HdLn37RQxvb1s7M0As+4Amvu96o2r1Cf2j1TAV5U=
github.com/alexaandru/go-sitter-forest/dezyne v1.9.2/go.mod h1:DzFrHUKI8cRZnh6zwhnDy8J1d3q9DjuImU0yl0Zj76w=
github.com/alexaandru/go-sitter-forest/dhall v1.9.2 h1:b1RFxyJPewLLeldXxrW17lJOm5s7mtQW1F6OFQ41iHE=
github.com/alexaandru/go-sitter-forest/dhall v1.9.2/go.mod h1:7WtGMK/mRSvKj/Zc2ZbzC4QQL6zwPRtWCIfcJqoD8Aw=
github.com/alexaandru/go-sitter-forest/diff v1.9.2 h1:yNTAXaxDojKKusdKCEVGouX5pH2+wRxjHHD6fhToFI8=
github.com/alexaandru/go-sitter-forest/diff v1.9.2/go.mod h1:9kLxaC/B47UDxhY+pXOHHJB7yBCDZKyfquzQeKxjzYE=
github.com/alexaandru/go-sitter-forest/disassembly v1.9.0 h1:SfvuTj+ClvmNII7OIx9jqgSk0lcvG8OjLhBY5MoLK4E=
github.com/alexaandru/go-sitter-forest/disassembly v1.9.0/go.mod h1:/xH7qezgEJVNnvl0Sxt+rAvY6myuRFl5FcY3cGe0vwI=
github.com/alexaandru/go-sitter-forest/djot v1.9.7 h1:Pe/F/NMiy4csj6oH5Eb2Q9XmFwTNjrZEdIRtgxj/cPs=
github.com/alexaandru/go-sitter-forest/djot v1.9.7/go.mod h1:iSh+pMfK9hU7pj7+q8eYQWuna9MYkf16x5WykccN1mw=
github.com/alexaandru/go-sitter-forest/djot_inline v1.9.4 h1:1cZdm85hSpWQKfPzkv7Yw8K1+ZaP8nWOQy9Kj73adCI=
github.com/alexaandru/go-sitter-forest/djot_inline v1.9.4/go.mod h1:VfoFdExSZYac3HnQDZMKKKRWIe9WWXuIvKVMC+DcAgQ=
github.com/alexaandru/go-sitter-forest/dockerfile v1.9.1 h1:J874Qr7NNIjYe0lk1Ia6XcNskv6hgzd0JKBhik6E94c=
github.com/alexaandru/go-sitter-forest/dockerfile v1.9.1/go.mod h1:LSPviwKzlksGPTMe2C5Kaz+hHIYX9x/frFYJWJTjSQg=
github.com/alexaandru/go-sitter-forest/dot v1.9.0 h1:RqJ87HaacqBPRFvy4X4LGHN2eiwrHiAN9T0c+qEFjmU=
github.com/alexaandru/go-sitter-forest/dot v1.9.0/go.mod h1:2dqAREkfXYUSQW2ZPoPHMiSPXZLH/Fa/WVNtTiYjJhI=
github.com/alexaandru/go-sitter-forest/dotenv v1.9.0 h1:Kmu84zlxJbSgtD5ix5c3W30sVGJAdRmBQezfn+nu6I4=
github.com/alexaandru/go-sitter-forest/dotenv v1.9.0/go.mod h1:m7YHaDV2FUrFRVDi9QD1sTC9uvm7K4aSqwpVydkAPEw=
github.com/alexaandru/go-sitter-forest/doxygen v1.9.0 h1:N4kuPNhLaYyz20KYcW61UxRvKH+qgJbOVEJsH0SKlDQ=
github.com/alexaandru/go-sitter-forest/doxygen v1.9.0/go.mod h1:Ay/EgWS/7z6hlcgXBWZ4ctDyHpAQcVfOHq14yXQTT44=
github.com/alexaandru/go-sitter-forest/dtd v1.9.4 h1:F0G7oxfaxB5IZauNZj4sZNjOzdBqH52Q2gvx4d+3i5g=
github.com/alexaandru/go-sitter-forest/dtd v1.9.4/go.mod h1:2i5GTd7bQUceiQEkHcAT+igDWJ/T+Hwea9PkkSoxI9s=
github.com/alexaandru/go-sitter-forest/dune v1.9.0 h1:S9DncHaOOo45XKyRQYVb47snT9wQAwOQZgF6B/qef6A=
github.com/alexaandru/go-sitter-forest/dune v1.9.0/go.mod h1:i7jBmkDgFdGsz8byTp7XCFu7L1UvqXb9lDw4x+qbkIA=
github.com/alexaandru/go-sitter-forest/earthfile v1.9.3 h1:yEhw3LzQ63frU52uwdxEqQE9XONvrAoQGt8UJwRLq3U=
github.com/alexaandru/go-sitter-forest/earthfile v1.9.3/go.mod h1:uGJid0pp0lu9iXMTPXpQ+q3AA44FWvgORSI5b6x+fe4=
github.com/alexaandru/go-sitter-forest/ebnf v1.9.0 h1:tYAxHBpy6yvjLlO5Bfo/Dh2AdO5PJ0c3SBlpoml7LIw=
github.com/alexaandru/go-sitter-forest/ebnf v1.9.0/go.mod h1:GXDX3o+t0yzb3rPEexshA9V77TQyZ6FUlfMzWl1X3bw=
github.com/alexaandru/go-sitter-forest/editorconfig v1.9.2 h1:MjGJn7G5dD9FMewqKbhT0sfMLkjAp99dWd8LNnexEGI=
github.com/alexaandru/go-sitter-forest/editorconfig v1.9.2/go.mod h1:TC5kENGg6Zi1cI3bm0Pj17Z5VqO4F34REFlIJttxRNQ=
github.com/alexaandru/go-sitter-forest/eds v1.9.0 h1:8YhKFx6gp8JiPHwXtxqnixKXeHYoreIRdTPDeTxj0hI=
github.com/alexaandru/go-sitter-forest/eds v1.9.0/go.mod h1:LQuFXf05vjtU2lH+KOLKhEzT9InHvh2cyQwBv+TDX3E=
github.com/alexaandru/go-sitter-forest/eex v1.9.0 h1:ceHDtyYoJgP4uIJCc7A903KjlZk9eW52ueEpuV+y5ig=
github.com/alexaandru/go-sitter-forest/eex v1.9.0/go.mod h1:aXyp0pz/Jfwkl6M/wUvgu1rzvuUeTW6iSlG7xCk7AKk=
github.com/alexaandru/go-sitter-forest/effekt v1.9.0 h1:va6KQjNGhq/DYrxOzbwX8SV6B5fW50dgQlzc4xS2y78=
github.com/alexaandru/go-sitter-forest/effekt v1.9.0/go.mod h1:in1yNgHcH3zEOHs3QfEyx8PFliQgZRBcrj+bytUX49Y=
github.com/alexaandru/go-sitter-forest/eiffel v1.9.4 h1:XKbhJTWFFXNnblTLIeRvjy7cjEYqlXxRWRzYUT1s5o4=
github.com/alexaandru/go-sitter-forest/eiffel v1.9.4/go.mod h1:DPnMeR2+eiMsW2N/MAnM4zWnpEFyvccJaKnfijAgJz8=
github.com/alexaandru/go-sitter-forest/elisp v1.9.0 h1:Psd0LlxKGZ/H865NLa3+S5vx9nPOimogq1BU/4eFGyo=
github.com/alexaandru/go-sitter-forest/elisp v1.9.0/go.mod h1:4/M5zPdEcI2H1pebc/ApIyyAmlL50B01Bh9+2lUkPrM=
github.com/alexaandru/go-sitter-forest/elixir v1.9.5 h1:VMJ20lWgzn1vtILWOfyVXyiT9cxoovykcSrK/skX7aM=
github.com/alexaandru/go-sitter-forest/elixir v1.9.5/go.mod h1:yJjH5M1RZ3UcsrZ2CPLluSdVcCT3xA7sD/RxVej1YvE=
github.com/alexaandru/go-sitter-forest/elm v1.9.1 h1:2JNTMY4VwoudSqhGDVGSjnZgwPGMmzrHYTvD4W1FA48=
github.com/alexaandru/go-sitter-forest/elm v1.9.1/go.mod h1:nqEGl7ZrlC6McSs5p6N/1IPEKhetnIoZtiYgvs4DRN4=
github.com/alexaandru/go-sitter-forest/elsa v1.9.0 h1:S8C0CfvC1l32B7r59dWtEonbIXGXDKHEjtAL9P8meJI=
github.com/alexaandru/go-sitter-forest/elsa v1.9.0/go.mod h1:7T5KWWNIxDuxK5bjE1yPj3O2rCbg6xPUOUivUr7z0g0=
github.com/alexaandru/go-sitter-forest/elvish v1.9.0 h1:RMki3Izb+v5JHzOSPVz6IhNljWiFtjWtR7oXqxnz8NY=
github.com/alexaandru/go-sitter-forest/elvish v1.9.0/go.mod h1:K72ZbOVfMmdUu/Qo84Xi+8hQiKZlA88m72BNTXgGDN8=
github.com/alexaandru/go-sitter-forest/embedded_template v1.9.1 h1:dIsWbODaPiE9v1aJDevFJwiCs5VBbo4HzAv2fhukG1g=
github.com/alexaandru/go-sitter-forest/embedded_template v1.9.1/go.mod h1:Q3s1ialGSyZU1QS8ksrNdePzIyPTm6a53MCf+37ixMs=
github.com/alexaandru/go-sitter-forest/epics_cmd v1.9.1 h1:M5AsrjNPayPmSe+si4qUkD2JMEX2phBIhzgwWLMmknU=
github.com/alexaandru/go-sitter-forest/epics_cmd v1.9.1/go.mod h1:gapNbjbKWVwquhot/5gGZJzf+21Gqk521oKiA+n7N40=
github.com/alexaandru/go-sitter-forest/epics_db v1.9.1 h1:9ADeBZeYk8ob4HSSGTNVusUuWcp1Hp9Ql7gUtk2NDwg=
github.com/alexaandru/go-sitter-forest/epics_db v1.9.1/go.mod h1:vzd0DIjloj6pxF5gXuEqFPfJAMARiTdw616Exa7ZrsE=
github.com/alexaandru/go-sitter-forest/epics_msi_substitution v1.9.1 h1:7pJwyLvtKa/H8Iui7hvNR/2xEC+Ojy3zoTqXlSjLliY=
github.com/alexaandru/go-sitter-forest/epics_msi_substitution v1.9.1/go.mod h1:3pC5uPeoopO9Ph3rCsue/V8pJPcuAY+AKToryFzgmqg=
github.com/alexaandru/go-sitter-forest/epics_msi_template v1.9.1 h1:COY1dc0ZZrV37llUPNYhwPk6Tnqx2aMRKaaTtggaHLo=
github.com/alexaandru/go-sitter-forest/epics_msi_template v1.9.1/go.mod h1:d66HUQeIDEuZ+WlGAAVK6QBZEaItol8lFwkq3E5AlU0=
github.com/alexaandru/go-sitter-forest/erlang v1.9.7 h1:NwCErr9f/X9OW1HXYQzi/83fGKyPmz+ow9NXneUr94A=
github.com/alexaandru/go-sitter-forest/erlang v1.9.7/go.mod h1:w44gyZikbQBpzX7/RJqNxsLzMrLqn4Tvh9r649ml9xI=
github.com/alexaandru/go-sitter-forest/facility v1.9.1 h1:/yEs2haTBYebICisMNFlKiYZqqds/tG/i7QPm9ZpzS0=
github.com/alexaandru/go-sitter-forest/facility v1.9.1/go.mod h1:lZO0YOyZpTw5e6XLsc/ebEZIwfLDBe8pHzgG6hGkrEY=
github.com/alexaandru/go-sitter-forest/factor v1.9.3 h1:LtisxzejW1Q+JI81EepHent/6SDa9lyYSLvJat3JdHo=
github.com/alexaandru/go-sitter-forest/factor v1.9.3/go.mod h1:3m93/0exSRloEpEIihWlT8R4inEt+B87NBMe/RASBCs=
github.com/alexaandru/go-sitter-forest/familymarkup v1.9.7 h1:ET6nVdJV4i7fic5rj1RCJyDty33S0nRh6cqhgP4e4XE=
github.com/alexaandru/go-sitter-forest/familymarkup v1.9.7/go.mod h1:JPbYWpJRZUQL776pO3bof1/lsQJarkkyCwT0pF5JcZQ=
github.com/alexaandru/go-sitter-forest/fastbuild v1.9.2 h1:DJdZXlO/+KABj1bT2xNwgrnovHD0iBarg+auaZU9PSA=
github.com/alexaandru/go-sitter-forest/fastbuild v1.9.2/go.mod h1:Zonxo3eN+Mv9uchDFcY14xJgf1/Z+X3UOdZIGrX1QkM=
github.com/alexaandru/go-sitter-forest/faust v1.9.1 h1:6t/oBqyqrKpgmA6jdVkVPTARTO2rPD5cEQU5RRmY/c8=
github.com/alexaandru/go-sitter-forest/faust v1.9.1/go.mod h1:v51B96eaED1LhLquCUH9AFXBgQQLkP+kKgeAFH9QHoQ=
github.com/alexaandru/go-sitter-forest/fe v1.9.0 h1:oAmH7KkYIR2AM82P7C3puRUwSUhpx+pxHwMl6BLnYCw=
github.com/alexaandru/go-sitter-forest/fe v1.9.0/go.mod h1:Pot7PUp5uN9W024giL0Z16S1IJZOfFoXzZJEayUVij8=
github.com/alexaandru/go-sitter-forest/fennel v1.9.1 h1:s6byegNp6Tk6q2SlVoqwysoscBv92r90Q8hudnJsosI=
github.com/alexaandru/go-sitter-forest/fennel v1.9.1/go.mod h1:2FolQK6HEjzSzK7Mj2n2U6tVg7g52BpAltDf+vUkEOE=
github.com/alexaandru/go-sitter-forest/fidl v1.9.0 h1:4FENay5FIzIDBDECO7Mbnq2ADGfuaK8D5VDVUIEG/gI=
github.com/alexaandru/go-sitter-forest/fidl v1.9.0/go.mod h1:6e4rTYj5sEFc5NNqdzzT0h6anf76x05+GCEScgsaaeI=
github.com/alexaandru/go-sitter-forest/fin v1.9.0 h1:PVhuQkNbAzI7e1znP8Q6SvqTCAfudsMoOEf4Z4P//Cg=
github.com/alexaandru/go-sitter-forest/fin v1.9.0/go.mod h1:TdiOqKWEAj0wfm5a+SIBUpemOh9NWbwkYsxIE6Bs4nA=
github.com/alexaandru/go-sitter-forest/firrtl v1.9.0 h1:fcMgVIOLJbuNDXED6JGhOtkYh81m4su8XFyDV5ti4hY=
github.com/alexaandru/go-sitter-forest/firrtl v1.9.0/go.mod h1:Xh4HFnYUBWZBPfoy8WMhyMquQS84hfJx/P+LxEOSW88=
github.com/alexaandru/go-sitter-forest/fish v1.9.2 h1:TmlzrIQgtJh0mLDviGYFB/namZOofm/cPkftQoMOh9A=
github.com/alexaandru/go-sitter-forest/fish v1.9.2/go.mod h1:GPTSS+k7af3yOKfo7WH6ubXkqc4/spBs8xl4/2ojqq0=
github.com/alexaandru/go-sitter-forest/flamingo v1.9.4 h1:JLCTPlgVvu4FTs8AXJMfCEj5UJH0XFxj0djfzg101II=
github.com/alexaandru/go-sitter-forest/flamingo v1.9.4/go.mod h1:qJWMTxtyzA4Nb/IGhjZcakUHL4jssyhFVZtJgDaLzYg=
github.com/alexaandru/go-sitter-forest/fluentbit v1.9.1 h1:a/zmdIxQuQ/8a9dz1nyDKb5cwNOzGP8QfyyyAF/BndM=
github.com/alexaandru/go-sitter-forest/fluentbit v1.9.1/go.mod h1:Fu0bzDVoRnawiKQJWKf3gGuRi+IVUeSluU9n0uNWUOU=
github.com/alexaandru/go-sitter-forest/foam v1.9.0 h1:2dfa8qq1UC0j/+jE8lke+eJuUYIBWAqUuqxnqd9OwHY=
github.com/alexaandru/go-sitter-forest/foam v1.9.0/go.mod h1:PvHTTqocSo5p7PzkIOeY6DEw/a77SzXQ2cO6YoHBE+g=
github.com/alexaandru/go-sitter-forest/forth v1.9.0 h1:9yk/TS65+IscFLOLudD7covmRJD48hV3itpclZa/p7s=
github.com/alexaandru/go-sitter-forest/forth v1.9.0/go.mod h1:8I5kGLwKBv426qk/zcsAConSHUTG6HDYl53tXBX7JfY=
github.com/alexaandru/go-sitter-forest/fortran v1.9.13 h1:dJ5UWK+BEymcc5UtB+KMNeOUtwyaAXJQz1e2Bn44nhE=
github.com/alexaandru/go-sitter-forest/fortran v1.9.13/go.mod h1:mUhIgJpGZGWUVeoTWDbmdB3J1qLS07k+D7E7TRMDpfE=
github.com/alexaandru/go-sitter-forest/frostlang v1.9.0 h1:iE3RGioDnfgdJeTkQHqjAiLeXEV4xEWyjXvcP7LX/wE=
github.com/alexaandru/go-sitter-forest/frostlang v1.9.0/go.mod h1:wTgyOCIHYgxoiDlRaWYMS5LC3x4ypEZlgATfvpjE5a8=
github.com/alexaandru/go-sitter-forest/fsh v1.9.0 h1:BqZkrmGWZPAotZz3ANlf8k7NUBd+Aq/vubBGffTvq+w=
github.com/alexaandru/go-sitter-forest/fsh v1.9.0/go.mod h1:BM3HluQ/YNa9/A4/bxnYLpEr8rF++B8Tt9g0OC8bsbY=
github.com/alexaandru/go-sitter-forest/fsharp v1.9.3 h1:B1XtGYCKzUfNUgyS1ZTHcRRf/areLueybgVtBPdODOE=
github.com/alexaandru/go-sitter-forest/fsharp v1.9.3/go.mod h1:dTsmrcn90hIRYZC4YobTtaIf+YYKVM1mhGqgIqLei0Y=
github.com/alexaandru/go-sitter-forest/fsharp_signature v1.9.3 h1:DkB+aKNLvq9q/LrVKsqLYAzC//50RDO98QZVyz7xsBw=
github.com/alexaandru/go-sitter-forest/fsharp_signature v1.9.3/go.mod h1:rOFqWpr0fral8NBmGsbmwZRrtXxFJK9fF+CIre1GL7o=
github.com/alexaandru/go-sitter-forest/func v1.9.0 h1:P/fLMmOXB9AkWKqMkfcsHfPDfafRc3LZwa10al1KHRQ=
github.com/alexaandru/go-sitter-forest/func v1.9.0/go.mod h1:tLBrW8ek3fJhbb2REvcy/R0IxIVBAgso50UUaHsGQOY=
github.com/alexaandru/go-sitter-forest/fusion v1.9.0 h1:kJwyQzK/OILKivx/HZV3QRo6ExknZ/99hs51uk8B7zM=
github.com/alexaandru/go-sitter-forest/fusion v1.9.0/go.mod h1:NPUf3/1bDFrWhLzhlvOr95onrAPADS3dYAXye1Pa9jA=
github.com/alexaandru/go-sitter-forest/gab v1.9.4 h1:3ASmpZlnG5W284Xtb6AM/b5cf/Cq70QvdGPeK8fpLKk=
github.com/alexaandru/go-sitter-forest/gab v1.9.4/go.mod h1:eUoJkNQD3o6rSTkMbhPStwix8rs0LgnpJiGrCBc/yCI=
github.com/alexaandru/go-sitter-forest/galvan v1.9.1 h1:u8ceGyNOV+knC12PwBIwJTiux6KeMWy7mFWXgARU5MM=
github.com/alexaandru/go-sitter-forest/galvan v1.9.1/go.mod h1:TxgAlFo7hnTO6F8xexR9VdDBDicl44PmNEcTAV5Y/Vg=
github.com/alexaandru/go-sitter-forest/gap v1.9.2 h1:oo6TN/gkjd71viFvAy8Y0NQpIK1JxD/mH+bju05ypng=
github.com/alexaandru/go-sitter-forest/gap v1.9.2/go.mod h1:QukPIXAFOv7GHLfSLoxeUBHXxNwa4glpHBQapcDfvXI=
github.com/alexaandru/go-sitter-forest/gaptst v1.9.1 h1:UubGHZAVu0kq29/O/Fx9xnBj1QlS0vJQ3DRAJ62SVxw=
github.com/alexaandru/go-sitter-forest/gaptst v1.9.1/go.mod h1:KOaCgu9DCpBgM/xD3iWZaJVYWKT9a5lF3q6lQL6JaR4=
github.com/alexaandru/go-sitter-forest/gdscript v1.9.6 h1:9TOQ7lvbv/Y/R40gQisUfIN455PR+zLWuy1evsTo7q0=
github.com/alexaandru/go-sitter-forest/gdscript v1.9.6/go.mod h1:bePnpjBZbV3SRQOIZDuMAtDOuv7jj4zAOBQoQNddjmw=
github.com/alexaandru/go-sitter-forest/gdshader v1.9.0 h1:PFk/W+IfB6524gZSR/IlmZ6BJYAuDcVltdUWmGLH9Oc=
github.com/alexaandru/go-sitter-forest/gdshader v1.9.0/go.mod h1:+0vQAtNErhbGz7b2DUc9Hbv4yK0iLY7F8jeUbi+0WTk=
github.com/alexaandru/go-sitter-forest/gemfilelock v1.9.0 h1:zZ3vUpVIn8eow3jxjEjnVhzX6IAsaUL1K18DbN4txR0=
github.com/alexaandru/go-sitter-forest/gemfilelock v1.9.0/go.mod h1:78E+RTJeL9m5/rNR6za/CfFo3p+HEXej1stYthQgVuI=
github.com/alexaandru/go-sitter-forest/gherkin v1.9.0 h1:YXKuaipwHqDPLhKezVbGfztJA6DpYhc4G6CQQUWaCys=
github.com/alexaandru/go-sitter-forest/gherkin v1.9.0/go.mod h1:9uOwqXbNxJbs7OqI4zYqHocGjSOPjCGJuaVInAEEiqo=
github.com/alexaandru/go-sitter-forest/ghostty v1.9.0 h1:N6MhBadQnB9trhnjpqwNqwn0lUfzL740cGS3iSUdrls=
github.com/alexaandru/go-sitter-forest/ghostty v1.9.0/go.mod h1:CvQl7Hbdk+L5jPat1wE1ig9qx1c0zaW8Qlt0QSusAkQ=
github.com/alexaandru/go-sitter-forest/git_config v1.9.3 h1:yNH81rIOONxcVO5YDjJK4q/9Eztc+kaB1+FC4cDPq9E=
github.com/alexaandru/go-sitter-forest/git_config v1.9.3/go.mod h1:4ET0bF4oAbYoQxuSzI54Nko0BPXmIZdkk2BEajeAQ/o=
github.com/alexaandru/go-sitter-forest/git_rebase v1.9.0 h1:ec3kzqic/WeNkih5LgOHRvooUrKkuK60Ch2cyOWGtVE=
github.com/alexaandru/go-sitter-forest/git_rebase v1.9.0/go.mod h1:HMpbaub7A/HQS5u17LH0QYbwG3p8kZrdQcDN0/dnCXw=
github.com/alexaandru/go-sitter-forest/gitattributes v1.9.1 h1:vskKooWKO0CNaWuV975QWE64pbB2zS4g9/LeUtBVQaw=
github.com/alexaandru/go-sitter-forest/gitattributes v1.9.1/go.mod h1:vBsS4MEVKrE18Xeo6vELPDbN6XU+3KA4Rj2yPmwhsKE=
github.com/alexaandru/go-sitter-forest/gitcommit v1.9.4 h1:h4C8PRGxa2OfauFJZ7Ou4k7QFqxBJk0IfNBgMoVVJXk=
github.com/alexaandru/go-sitter-forest/gitcommit v1.9.4/go.mod h1:dzywHlkljvhbO6STRGNnn1OGNkku9AehNCkEGPtYIL0=
github.com/alexaandru/go-sitter-forest/gitignore v1.9.0 h1:rLlUgfuV3DGJ7ut32GI3qAU8rh6375d6GA2dEvVdMGU=
github.com/alexaandru/go-sitter-forest/gitignore v1.9.0/go.mod h1:CyIeJ4Z8IM0ZFaddgumQRKP7/XHW4lKX/5bHEMy5hLM=
github.com/alexaandru/go-sitter-forest/gleam v1.9.9 h1:6104gWAx0Obl9tvbzzcDq3ntyj7slB2FjoiD9AzwHHI=
github.com/alexaandru/go-sitter-forest/gleam v1.9.9/go.mod h1:JPvlemzwt8XlnKRoQ9X8H3JvVjzYfxf7LfuzXv4Y8Pw=
github.com/alexaandru/go-sitter-forest/glimmer v1.9.0 h1:UNhnncX491BkRQjYgTqB+PN++4FUdZqU2IkYpOFbVMU=
github.com/alexaandru/go-sitter-forest/glimmer v1.9.0/go.mod h1:y8/aDZDJdDr7giOh7IPizVNm5TeRgTbHDTDwjniYHLI=
github.com/alexaandru/go-sitter-forest/glimmer_javascript v1.9.3 h1:RCwuR4T01yLHGpR89goODUVfEKKpnnGldCLZ35bmK00=
github.com/alexaandru/go-sitter-forest/glimmer_javascript v1.9.3/go.mod h1:uVsna51qcB00Niwh9dtX7NPzAVcc1x0/NiUXs3zUVoA=
github.com/alexaandru/go-sitter-forest/glimmer_typescript v1.9.4 h1:RuNUlJUyQrDA0yE2SRIslSz8zBqqfHotLm8LGPetnaI=
github.com/alexaandru/go-sitter-forest/glimmer_typescript v1.9.4/go.mod h1:2l97VuGFOKUfF/HTTUlH3kGiK4uAU5psOSjLKX+S9Us=
github.com/alexaandru/go-sitter-forest/glint v1.9.0 h1:ZiqnuLLvTZxMbkTtB2mbWGIaqCkNQqpyibjUXfuOV2E=
github.com/alexaandru/go-sitter-forest/glint v1.9.0/go.mod h1:JBNLwNvJnq9S95dcayXIqkYQvnc1hu2+cXCLt0FsyZU=
github.com/alexaandru/go-sitter-forest/glsl v1.9.1 h1:mab4vGtVxJUcJYbpC/d0xY7KF9wFxkml1m0UONDfipQ=
github.com/alexaandru/go-sitter-forest/glsl v1.9.1/go.mod h1:JHZI9VJGkYZsaDEwjdwaIE0Nf6GPTbQHgqh53e5HEaA=
github.com/alexaandru/go-sitter-forest/gn v1.9.0 h1:s7FQLwWK9ZNJsCTfEm1HEUwLs0KyMLnRf+s/9VvJXBg=
github.com/alexaandru/go-sitter-forest/gn v1.9.0/go.mod h1:aDimUSHo3kUfM7M9qQ6zUX5hfmcqcwD6mahbC/Kr9Dw=
github.com/alexaandru/go-sitter-forest/gnuplot v1.9.2 h1:2sAiDRasfEn9kUEsRumzZD6PDdT/u6VyBc00ggqbg0A=
github.com/alexaandru/go-sitter-forest/gnuplot v1.9.2/go.mod h1:QQMWfo/kxX3G3nTJVVKqbbMg3D6dB0u3aKeuGdoJi4U=
github.com/alexaandru/go-sitter-forest/go v1.9.4 h1:Xpq8HijvTp2+AHL4UplLLiCOdIAA20u0JyM8NGBIBWs=
github.com/alexaandru/go-sitter-forest/go v1.9.4/go.mod h1:jCpJr1AOFPGq1DrAJevuurB04NJVk8jw3hYW3Mxc7G8=
github.com/alexaandru/go-sitter-forest/gobra v1.9.2 h1:o8DVcIdP55O02ICCh9a9dZrLJ1cIgwvstJyNfIO2wIM=
github.com/alexaandru/go-sitter-forest/gobra v1.9.2/go.mod h1:32sTDSsUbIWG7ECDO825OitSa3vv4jA6Hv1Z+XVWbxg=
github.com/alexaandru/go-sitter-forest/goctl v1.9.0 h1:NSStUnZuHq+5H6WDa6PQMzcXRrMwudIPePSD7GhJ+uo=
github.com/alexaandru/go-sitter-forest/goctl v1.9.0/go.mod h1:Zx+bTnRl3vlqIndv5C3IRUyR4JV+SeTkPPThcj3drk0=
github.com/alexaandru/go-sitter-forest/godot_resource v1.9.4 h1:Z+D9MvAFh9dr+MxuBZkwEubVo9pRdWXwN8AQCZkyY38=
github.com/alexaandru/go-sitter-forest/godot_resource v1.9.4/go.mod h1:zhTm9qmO1v5paUJqbHttnEmeg6UOu6oAnM/Gj1dkiFs=
github.com/alexaandru/go-sitter-forest/gomod v1.9.4 h1:yBTA1barIEL7ttCQz3fp6bbrVjQG7lwNCCWdowXHkf0=
github.com/alexaandru/go-sitter-forest/gomod v1.9.4/go.mod h1:z9q2oQeKuqXvbKNfRH02mvfR8e284eTgBDncHFAv8GE=
github.com/alexaandru/go-sitter-forest/gooscript v1.9.1 h1:RLJ3u0+WrTVS/6gsw3V/PJJS5Rup5M8e62zTm82O8Zs=
github.com/alexaandru/go-sitter-forest/gooscript v1.9.1/go.mod h1:mk+CiREX80XJ54SOa39sei9ZuuwRnt7wyLfbyNgIYag=
github.com/alexaandru/go-sitter-forest/gosum v1.9.0 h1:1t8iYkyt30Ak6XXDd/B4bMgLAgnplIS5yJI8R5d/fRo=
github.com/alexaandru/go-sitter-forest/gosum v1.9.0/go.mod h1:CLfMYZYlGxyHR4yK95y9nGj625Tny7ZoHhocqlfSbOQ=
github.com/alexaandru/go-sitter-forest/gotmpl v1.9.3 h1:R2CntRS73UGyoma0YJLbJrbRD3J7BzlY0HirtYTj0dk=
github.com/alexaandru/go-sitter-forest/gotmpl v1.9.3/go.mod h1:Mji/VkaDDUsjytN1/wu7YdB72JW2E//aAaLr/2+u6H0=
github.com/alexaandru/go-sitter-forest/gowork v1.9.0 h1:XLQ3YPdASqxN8fB5iqVRdjBK7Th74kxmcnBRsJVZ3OM=
github.com/alexaandru/go-sitter-forest/gowork v1.9.0/go.mod h1:4AA0OH8rGaOkTTxJ5Oy63Qa68PgZID/ounrxzqTvl9E=
github.com/alexaandru/go-sitter-forest/gpg v1.9.0 h1:GlGAgD5dd8DdlIL4hSRqm361x5wWuhN1gQbalnMK7do=
github.com/alexaandru/go-sitter-forest/gpg v1.9.0/go.mod h1:EyIAxE5QmjR9fqI2GQD7ejrm/+EZufRXzbjUZskUAmY=
github.com/alexaandru/go-sitter-forest/gram v1.9.3 h1:1nQWf8+PC6Q7BCaa/r5viFumcY+n+e9WRMjeAt1Q+A4=
github.com/alexaandru/go-sitter-forest/gram v1.9.3/go.mod h1:iVZLg6Sq9uRB+9i9ut61FnUX3SkEJLdyjULXrT9a+mc=
github.com/alexaandru/go-sitter-forest/graphql v1.9.0 h1:zOJL0rx2TueJPCVqHd8lOAGi+/BglDpL/GlxlO+vV7k=
github.com/alexaandru/go-sitter-forest/graphql v1.9.0/go.mod h1:yPu0xV9ZWSNudRLoZQfXI3yLV6UFSjXUSDLtdISyIdQ=
github.com/alexaandru/go-sitter-forest/gren v1.9.3 h1:Ksfbfl6sGfYN5OsAmw741BuwJq/S1lyAqhmOi0XorUc=
github.com/alexaandru/go-sitter-forest/gren v1.9.3/go.mod h1:yYyu/gVqujPVcXgm+q3VpcJLCERPOGAVzo1zIReHNwU=
github.com/alexaandru/go-sitter-forest/gritql v1.9.1 h1:lcBhuynrCRFJ06mRm5kXWBB5iKs5PTpwWLd+CYhJ71M=
github.com/alexaandru/go-sitter-forest/gritql v1.9.1/go.mod h1:1aFp267zJrmuxUCQyRRS+K7Mu63QUNHmepWT5A+cqlc=
github.com/alexaandru/go-sitter-forest/groovy v1.9.4 h1:6QJP/QrtivUtwo73ZJQTjCruzYW+cVww0ryEsXBuENM=
github.com/alexaandru/go-sitter-forest/groovy v1.9.4/go.mod h1:6iFTwag6Wd4QJLJzZnvos8cowjZ9SwgIh3H/HWiLL6E=
github.com/alexaandru/go-sitter-forest/gstlaunch v1.9.0 h1:Yt+RmZzfOWO7Z2gEN6ve2mAi7YcaMB8H667TjCS55fg=
github.com/alexaandru/go-sitter-forest/gstlaunch v1.9.0/go.mod h1:pxHf3fxNwSm4NS9J7SSI/gX7Q/JriZQ4rOJbWVJLW8o=
github.com/alexaandru/go-sitter-forest/hack v1.9.1 h1:0BI+P25fzOTlasvegHQBLktYBc3kPn0oGblaCioFCi8=
github.com/alexaandru/go-sitter-forest/hack v1.9.1/go.mod h1:8nkqvjDI/XmXykPGfiu8lv9u/17EkAcyiVMdP4zQzdI=
github.com/alexaandru/go-sitter-forest/haml v1.9.9 h1:5d7/YYaD6frVKzHlPXczSMcO4ion1POtWSvVO+hDz/U=
github.com/alexaandru/go-sitter-forest/haml v1.9.9/go.mod h1:pmAQmfiCR2ZahYKOBAl5uvlndgiXh542iVO8gVVa+hc=
github.com/alexaandru/go-sitter-forest/hare v1.9.0 h1:mV6ql60miKmRCQYxOHE023fTIEtPtnn4nntLo5QPwz8=
github.com/alexaandru/go-sitter-forest/hare v1.9.0/go.mod h1:V+xcfRLu3whXWlhO1bRwtHQ9uN0MJQtxroFogGaUoNc=
github.com/alexaandru/go-sitter-forest/haskell v1.9.2 h1:biKJLWPzjOl+JjaWVAMmw/wV+k8MQswMG/msCxZcUIs=
github.com/alexaandru/go-sitter-forest/haskell v1.9.2/go.mod h1:bDVOESO7xhG0l8Fni1GAcBjQSQl2m/IluoJPddMvd6U=
github.com/alexaandru/go-sitter-forest/haskell_persistent v1.9.0 h1:0ODquHrVBNKPs1ULdsO4PgYwxdsrcAohmFPaSUX9jn4=
github.com/alexaandru/go-sitter-forest/haskell_persistent v1.9.0/go.mod h1:ODw/+ah6B7PfDrDA9Ccfeu/s8EYpjzlh1QMNXl2XkD0=
github.com/alexaandru/go-sitter-forest/haxe v1.9.0 h1:dGvAVZLn8L/tEDALKwwlOxjjFVV9qY2NgRkjiQyBgcc=
github.com/alexaandru/go-sitter-forest/haxe v1.9.0/go.mod h1:gwYuXAln5LI1NvaBpERXVm/w9PSAIxdKMSKd8y0LV8Q=
github.com/alexaandru/go-sitter-forest/hcl v1.9.3 h1:itfD3a+p/0YAGtJ47TqNdTPaCZxHFdcK0TZm0thq+tM=
github.com/alexaandru/go-sitter-forest/hcl v1.9.3/go.mod h1:EnB50IZP4KBR0V/Z0q9WUn/DmpIagAepBSoaLQfz6T8=
github.com/alexaandru/go-sitter-forest/heex v1.9.3 h1:WWKKCYA5aNIWfvv8MdRCGUp+Xz0eGUR6qOssd5uloT0=
github.com/alexaandru/go-sitter-forest/heex v1.9.3/go.mod h1:fLXj9qev2m5/VN33Ti6gyTAHPLEzMBLXODpx7IwYzsI=
github.com/alexaandru/go-sitter-forest/helm v1.9.4 h1:UEsaP1mtfbxYU/TD5CpsjOvt2O7pBwjHkPkQ4vfxTlg=
github.com/alexaandru/go-sitter-forest/helm v1.9.4/go.mod h1:UKo6G0lrsROydmUXiLbA9OtBwxNFQKbYEXIzhSmuudU=
github.com/alexaandru/go-sitter-forest/hjson v1.9.0 h1:mBelWurvg1or3E4sljADIcY0G21ij+H77SMva42VOVY=
github.com/alexaandru/go-sitter-forest/hjson v1.9.0/go.mod h1:m9VybX99dZoXoCxzS+Rh1HN9O+uGCL9abfI3NTJyLlE=
github.com/alexaandru/go-sitter-forest/hl7 v1.9.0 h1:4Gv7xxJrG8tXRR3k6PboQAcyCDJThoeFJj1P3+832ac=
github.com/alexaandru/go-sitter-forest/hl7 v1.9.0/go.mod h1:oO7emRydHJ3Yjwk577EQ5Fwdztykz5r53CseXUyBmvM=
github.com/alexaandru/go-sitter-forest/hlsl v1.9.1 h1:lnTrQgqM2W0HCdqvLFp3PqZGUCJr23cpvEqUmbJiwxQ=
github.com/alexaandru/go-sitter-forest/hlsl v1.9.1/go.mod h1:2wfGZwLQGOtUZfxt+T9cfdRGbn3KvYUWja2LKmfxFLk=
github.com/alexaandru/go-sitter-forest/hlsplaylist v1.9.0 h1:9cGCPjGW/tSGAjzZiv95wUcZQk1kop4hULyaxKatVxI=
github.com/alexaandru/go-sitter-forest/hlsplaylist v1.9.0/go.mod h1:6pi9/NuxMKEzsWgkc+j/tgi4bqmeUd5OV+hptljtc8w=
github.com/alexaandru/go-sitter-forest/hocon v1.9.0 h1:L66YNRmz93O2Yq9TJtitSrm+PUENpXKw+/9FOTPjomA=
github.com/alexaandru/go-sitter-forest/hocon v1.9.0/go.mod h1:zL7JZ7mpPo74JMcm5IbCDSZVPJYNW3WhmNEUnWfX0Ps=
github.com/alexaandru/go-sitter-forest/hoon v1.9.3 h1:xvY2BFDjZAkbyGJrCQFY2AUD351Avuopnpl3Sdzes8c=
github.com/alexaandru/go-sitter-forest/hoon v1.9.3/go.mod h1:0vibcSi/S9Hc4bHw5RgT50oNWOV63DJXUBd4KYY/C0o=
github.com/alexaandru/go-sitter-forest/html v1.9.1 h1:uOQAEra9XOb0QnubcZ6BjwSw6cKc2yb/EBYUPtI7bbs=
github.com/alexaandru/go-sitter-forest/html v1.9.1/go.mod h1:UKvmNmUNtFrMtJMhnt1nroQ/JnC3LsCqykZ0xWjticQ=
github.com/alexaandru/go-sitter-forest/htmlaskama v1.9.0 h1:qsCe6GhSAP53JffZJ2deKejj3IAICdLs3Lq7WsVEs+8=
github.com/alexaandru/go-sitter-forest/htmlaskama v1.9.0/go.mod h1:hs0PaL0Ik7iDnaiBCP6A657u97XLaDv73+islIgn+bY=
github.com/alexaandru/go-sitter-forest/htmldjango v1.9.1 h1:EkQKTnkZmd3qhUiD3K5d2nciDsccOmgrGxxEZN8d8Rc=
github.com/alexaandru/go-sitter-forest/htmldjango v1.9.1/go.mod h1:tmD3vdGB1zDmp/fKv+Aibf7W/hkbwATGxcuKF0XyORw=
github.com/alexaandru/go-sitter-forest/http v1.9.4 h1:nHT/dScag8uZu2/LyGchRSv5OVpQeoyM1LH4/3u/kKY=
github.com/alexaandru/go-sitter-forest/http v1.9.4/go.mod h1:WhBatulcuQDVI13U5MN9Z/DQC11rwNxXxQ5ir2L0E4A=
github.com/alexaandru/go-sitter-forest/http2 v1.9.6 h1:0aqjwPrruVxOy41Z3/q0NER2gME2G33nnEqhFrvqPuY=
github.com/alexaandru/go-sitter-forest/http2 v1.9.6/go.mod h1:+EKnEpQJFq2P6zw0aIDzZ7GXWT8VsEsDwYQDqHPkgsU=
github.com/alexaandru/go-sitter-forest/hungarian v1.9.2 h1:UuPuYy0hc+LMNUCUVQtXc8wUajgSRTK/6O3rWbiSk+A=
github.com/alexaandru/go-sitter-forest/hungarian v1.9.2/go.mod h1:37wMfyjjmWO+xtcdcFo7mzWEeXjMUAj+s/ZJtEVJtYI=
github.com/alexaandru/go-sitter-forest/hurl v1.9.0 h1:KEJA8M00GjfMaoYBYRdIYE3PEPbo70YeD/uJFecAc/M=
github.com/alexaandru/go-sitter-forest/hurl v1.9.0/go.mod h1:5Scj5yQ/XR39px4eOlZ9gshvDBHD7RknIJST4oeI0zo=
github.com/alexaandru/go-sitter-forest/hy v1.9.1 h1:HlU5PpKjtHRRYsQ1QD6H7M+V+NaIWRtXp3ehuNLi5No=
github.com/alexaandru/go-sitter-forest/hy v1.9.1/go.mod h1:rP0eu6cef85cKf7J3rDWSsZ8Kx4BkNZlyp00Dj8vKrQ=
github.com/alexaandru/go-sitter-forest/hygen_template v1.9.1 h1:K2Re/cHLdgS0/qWP81RPtm/nN5feQQbyW4XJxTEPXgg=
github.com/alexaandru/go-sitter-forest/hygen_template v1.9.1/go.mod h1:Wk+y3QWoYnD3vxr2Db6ThOkYkqmO/DpBScqUDelMscM=
github.com/alexaandru/go-sitter-forest/hylo v1.9.0 h1:K4j/Le54gDQSqg7X8gj4tOVForL58VRAZkNkh3evlaw=
github.com/alexaandru/go-sitter-forest/hylo v1.9.0/go.mod h1:sgvdGcbHy0X8TcNy5SA35cF5PIDGpZaOfoT1oi5tXJU=
github.com/alexaandru/go-sitter-forest/hyprlang v1.9.4 h1:l4/bc9oIyZxTB8xYSzbuRqiDJgxiaBd8DZfEvmD4bqU=
github.com/alexaandru/go-sitter-forest/hyprlang v1.9.4/go.mod h1:qcaksoN4pW/mnTxel57rzhMD9b4wA1gb1L1vTpTzgy8=
github.com/alexaandru/go-sitter-forest/i3config v1.9.0 h1:x1bLXtPKevaL9YvROQXXJygoP2ZffJsMbrnCr98jBD8=
github.com/alexaandru/go-sitter-forest/i3config v1.9.0/go.mod h1:vPy2DCUYYNBABIa7rXexk9aZ4tRpGfbmho64O8rxa/k=
github.com/alexaandru/go-sitter-forest/idl v1.9.3 h1:p2bOWZDfi6sxI7XeKtdT+fVodE6D3itFAP/OlDIIBJM=
github.com/alexaandru/go-sitter-forest/idl v1.9.3/go.mod h1:7Xiwf60HCtET0g+WtRFCn92EAc9CzuyX6u1z4Qfl6lw=
github.com/alexaandru/go-sitter-forest/idris v1.9.5 h1:GDvmmZOy99GI7tBETSBNjc2z7M4OLqhqYs2hhTWztaA=
github.com/alexaandru/go-sitter-forest/idris v1.9.5/go.mod h1:EaPZ03ydMxv3344/YAbZTsn1jmkJmbyWubMpqpyQ+4M=
github.com/alexaandru/go-sitter-forest/ignis v1.9.7 h1:ATpY9JhfXEstvOwUFKytALaj/bM3MWjh9Q5IMQKeqIc=
github.com/alexaandru/go-sitter-forest/ignis v1.9.7/go.mod h1:Pe8uChYU6wHso5lttqGOex6v9VvHNiZY/fGnvT56cTc=
github.com/alexaandru/go-sitter-forest/ini v1.9.1 h1:Lz+N6ea6/maKhXZpU/hzRXskB5Sn1sd0aANJ+etgi/w=
github.com/alexaandru/go-sitter-forest/ini v1.9.1/go.mod h1:qMK0DjEEMSa3945DUsx3m2TdG24wBBYDInUpm3r7UjU=
github.com/alexaandru/go-sitter-forest/ink v1.9.2 h1:YTgeLXhMhjBa2OnjCpNrlU5JHV8pw8Z4jFAtdHf4o50=
github.com/alexaandru/go-sitter-forest/ink v1.9.2/go.mod h1:EoOHYnTSnacck9VJAJGWdZnZGhAkg9nuBX0+bxMacjU=
github.com/alexaandru/go-sitter-forest/inko v1.9.7 h1:G5HF8f5hlVgIVOUyYzKLSRLE8yEt20ZZUQ+IGOY8Gbk=
github.com/alexaandru/go-sitter-forest/inko v1.9.7/go.mod h1:gn+rvJBTwjfGfYVcaCMJcNM9e+mMds7p3hz2AatZGgM=
github.com/alexaandru/go-sitter-forest/integerbasic v1.9.0 h1:7lumY+10WuTR3eo196WuIlSQd32vfwrzllPwQsMPYUA=
github.com/alexaandru/go-sitter-forest/integerbasic v1.9.0/go.mod h1:lhp2oUYnRk8kUFHooBrt/6ng1bQ2JswAUgNdCu+co6M=
github.com/alexaandru/go-sitter-forest/ipkg v1.9.1 h1:FYZJCrA9B04/YE1KKPY+qhXnbnQ6uIxSGgOlUTEhJrY=
github.com/alexaandru/go-sitter-forest/ipkg v1.9.1/go.mod h1:/s5LSR19N8cQGvYMRCWo7eym7q9nVTiSf4H7RmyWaxI=
github.com/alexaandru/go-sitter-forest/ispc v1.9.1 h1:oIoqIhG2Tqg/Wwsencc9vpdzPQ+nrVglzu3Pbd//jKI=
github.com/alexaandru/go-sitter-forest/ispc v1.9.1/go.mod h1:Z4DMyFrwIWx7n2ssNhMJu9q8sZyMAMWYmizk0fMv0Fc=
github.com/alexaandru/go-sitter-forest/jai v1.9.27 h1:5CjI76g2dXznZY/aaDWq+jSlCAwLKX6bjqi5q50YLJ0=
github.com/alexaandru/go-sitter-forest/jai v1.9.27/go.mod h1:ef43YnPhWhAInuKSXFZ8M1mytYBO5avfrPxZQ3Qlkag=
github.com/alexaandru/go-sitter-forest/janet v1.9.2 h1:mhGJE/66MxvpQxSoTxBK+u51TKMx/L3X2BT2MSAIchg=
github.com/alexaandru/go-sitter-forest/janet v1.9.2/go.mod h1:SSthIyOljaVpS2bzN30n8v+fYIUjq/ZsZHUpWgkAZVc=
github.com/alexaandru/go-sitter-forest/jasmin v1.9.0 h1:4mRi5uWQr2i39ou4Ezof58W8Ev4P2TI46/5F5LZnEFc=
github.com/alexaandru/go-sitter-forest/jasmin v1.9.0/go.mod h1:935NAHFiQqQXfC3+TOsRxYWmQAav2UqnyJROH/vwAwo=
github.com/alexaandru/go-sitter-forest/java v1.9.5 h1:ibPa56LZBAwQ9McU2CVEAwkaB3ManNfaGUDFcSOq6qs=
github.com/alexaandru/go-sitter-forest/java v1.9.5/go.mod h1:aWD8ZAZ6IbhsCnF7Jog1GWtx3ow//PiWkkAvVfnB8/I=
github.com/alexaandru/go-sitter-forest/javadoc v1.9.1 h1:vm340TAY5HYzdjmjshczYp+gSmsljwiwRy/pYz7i7ys=
github.com/alexaandru/go-sitter-forest/javadoc v1.9.1/go.mod h1:ql0HP+5EIag3Vd4NQngzvXWv9NTxcneUTqb8DIuXj3k=
github.com/alexaandru/go-sitter-forest/javascript v1.9.2 h1:b8ZWUk/1bXLmGXN/tL26PQf0EQ6vSM7J6pnNjN8by2Q=
github.com/alexaandru/go-sitter-forest/javascript v1.9.2/go.mod h1:cWOFBHR7EffqM4sdVQ70WtTnFKPZxt5sAm1zS1tWaL8=
github.com/alexaandru/go-sitter-forest/jinja v1.9.6 h1:ok4UpIDpCLIh6LU0vHycssXGd9HltZu/A9l5MSQTzhw=
github.com/alexaandru/go-sitter-forest/jinja v1.9.6/go.mod h1:y7i9OVQydHqCpIrd08v5gICYNRioikOpqrcj7aHGx58=
github.com/alexaandru/go-sitter-forest/jinja_inline v1.9.6 h1:kYsQkWPg7zVw31zNuXRKU9ACJ2wYce+HQr2PKYSuxTE=
github.com/alexaandru/go-sitter-forest/jinja_inline v1.9.6/go.mod h1:ZRYgqMABhMSTAuLDtUm0iKOM6mlXuxOl/+TN10tqE1c=
github.com/alexaandru/go-sitter-forest/jq v1.9.1 h1:VTm+HpscAm8VDEiSZjE2NLBSO/mPNp0K446F3BIwfkU=
github.com/alexaandru/go-sitter-forest/jq v1.9.1/go.mod h1:s+K4zavA+7PHdOqTiCcWmMVygewZhqOoGTxkXoWhN7E=
github.com/alexaandru/go-sitter-forest/jsdoc v1.9.2 h1:Iy4kIAASHrY1rErqCUTHyYGr4f1KLjA6DE4NA/Z6nN0=
github.com/alexaandru/go-sitter-forest/jsdoc v1.9.2/go.mod h1:wbP5P02AlyyVXmQR01qfeTwbVJUh1SvrUVyHM2jI04o=
github.com/alexaandru/go-sitter-forest/json v1.9.1 h1:MVV+keFXs6jHuu7rM1O1AzTUIA/W253J4aI8j61S8aI=
github.com/alexaandru/go-sitter-forest/json v1.9.1/go.mod h1:w47YGXJx8OuLuU5qE2NpyFsTF1dlJgILXD1A01OeXno=
github.com/alexaandru/go-sitter-forest/json5 v1.9.0 h1:nW5wUefAeREbotr36wIoTwJ6TV8H66sq8JOBsCqYsIc=
github.com/alexaandru/go-sitter-forest/json5 v1.9.0/go.mod h1:nDUlmie0mWf0pos4Bnkh3YZdPaiafbYKpmAuHU05rlQ=
github.com/alexaandru/go-sitter-forest/jsonc v1.9.0 h1:Bcei3x9DMHvJdLMRNv3SVa5ng6cg0TLXf3mUVxSSGDc=
github.com/alexaandru/go-sitter-forest/jsonc v1.9.0/go.mod h1:UfOg5kfoLJVASkORJnzPW9QddL4ADtMXyYo64ZBiNBo=
github.com/alexaandru/go-sitter-forest/jsonnet v1.9.1 h1:8982/45nzq89LFKTe4eLA1vXBPwymiJw8FkxwYOcQY4=
github.com/alexaandru/go-sitter-forest/jsonnet v1.9.1/go.mod h1:TPEAbHi44oxIV1LbMHpwmqfLSr7ze32jAFPimh1h6ck=
github.com/alexaandru/go-sitter-forest/jule v1.9.4 h1:JRM+YQ2vUWSvtVwW8M3ph4VwMf2QDodpdcxXWyoBakA=
github.com/alexaandru/go-sitter-forest/jule v1.9.4/go.mod h1:mgm6eij9T5mgF5LX7I/kHU6CjDRd5K1yLdUkXaruwWE=
github.com/alexaandru/go-sitter-forest/julia v1.9.10 h1:DNFappV9V2gLjeX5Snl3zhsEJgVKrO2N5jl0sV0sb64=
github.com/alexaandru/go-sitter-forest/julia v1.9.10/go.mod h1:VMWcpM3Ka8qVhQVQzK0h54qgsNWRJPxiO0A0D7J3STg=
github.com/alexaandru/go-sitter-forest/just v1.9.6 h1:kqRKOHBa0QkMnJBSteh8pdqeNZOsbuP8B9S0hwX5+M4=
github.com/alexaandru/go-sitter-forest/just v1.9.6/go.mod h1:cnSsa2tjY2sue2G9lDOUNs5SEH8jT28Qog7MNq0hxOE=
github.com/alexaandru/go-sitter-forest/kamailio_cfg v1.9.5 h1:SyWxx9x0WOsNxz97dEm4kUFskA9GO5iKPnZO0/zP34c=
github.com/alexaandru/go-sitter-forest/kamailio_cfg v1.9.5/go.mod h1:f6v1n2+DyV4cq85BQ/vbYR+6BLpi/M7oLZVFRbZfP0Y=
github.com/alexaandru/go-sitter-forest/kanshi v1.9.0 h1:5iVYxwc11KmxUGiINdiq+1kRXrQsIwm8G2KD/VLtzc4=
github.com/alexaandru/go-sitter-forest/kanshi v1.9.0/go.mod h1:VbOBcE82MM0t1TS3TEQw0zod8sFKbSge2a9HSLu+o6k=
github.com/alexaandru/go-sitter-forest/kappa v1.9.0 h1:RqnvUnxGOvnxm+F37cnugG2NJXuiLOyodR+WT+GWp1Y=
github.com/alexaandru/go-sitter-forest/kappa v1.9.0/go.mod h1:F6gFtfLo6qqV/yYeBq76ctGoL0b5sPnhDt79VxySb/g=
github.com/alexaandru/go-sitter-forest/kcl v1.9.3 h1:F1RaLz2/HPP/Cicre+mPbjaqEM7hHVU+aopV4E/fmFw=
github.com/alexaandru/go-sitter-forest/kcl v1.9.3/go.mod h1:CyrshWirDrpOxASlKNFSq2ZN7YWNPYKr653rTpSNFuk=
github.com/alexaandru/go-sitter-forest/kconfig v1.9.2 h1:UEvGRyBadsNE5GpqQj7WEkboqYf/N2XJT301o6zr7y8=
github.com/alexaandru/go-sitter-forest/kconfig v1.9.2/go.mod h1:IW0K1DrJWDDDiAGnCcalrO1Ftao6gemMSCkQ9hYs/Qo=
github.com/alexaandru/go-sitter-forest/kdl v1.9.1 h1:lLWVrJWc7NnGn/MjciPwXYN4DcVofoYp/rGPh/oac5w=
github.com/alexaandru/go-sitter-forest/kdl v1.9.1/go.mod h1:3F1u5nY2p+uYBxqEhv8X4PSnE2x42/24gGBAY/ZkcyM=
github.com/alexaandru/go-sitter-forest/koan v1.9.0 h1:w1XX22NZ/CIkK4VpXZLcUvqDdslg1iZ+CSU4OGIgAXE=
github.com/alexaandru/go-sitter-forest/koan v1.9.0/go.mod h1:oG00YDe8BHIELr2Ggb5Y8lJ5G775+wL3vU4X79A70mE=
github.com/alexaandru/go-sitter-forest/koka v1.9.1 h1:paF5G8RNO8gfmP7V9G27vvPOACELdmJcR5/BbcmXT4s=
github.com/alexaandru/go-sitter-forest/koka v1.9.1/go.mod h1:/aiQOCV4Pq4PP+rrjMdBmRf/uCKsFkTMvnniQrJJIGE=
github.com/alexaandru/go-sitter-forest/kon v1.9.16 h1:It+D71W4KgKBbOwgVWDe12nVse8AagPqNBtC98nknlc=
github.com/alexaandru/go-sitter-forest/kon v1.9.16/go.mod h1:UURKnTh4vfPbK+cED3y42u42nzysk4hYk6A29ABMjrM=
github.com/alexaandru/go-sitter-forest/kos v1.9.2 h1:h+cn364Tlhxe6aoRykhq8Jgx29jMjvM1jAGfMpn/ocY=
github.com/alexaandru/go-sitter-forest/kos v1.9.2/go.mod h1:f27CSiEVcEmz/VAVh5P9qABYJ1ySAvLzaxxCymG7RQ4=
github.com/alexaandru/go-sitter-forest/kotlin v1.9.4 h1:H2cRqquwV3rbNsUGUvyRZKWwC4TMLEDjXs0jzbIZASE=
github.com/alexaandru/go-sitter-forest/kotlin v1.9.4/go.mod h1:QCAC6OJsnUIRMx1akoZNzKRe+slaQq4sGSLAVwMFTuQ=
github.com/alexaandru/go-sitter-forest/koto v1.9.9 h1:ycUUcHnH6VGXKNyxPR97NgHjFS4KFnVY2c/TuMqg1WU=
github.com/alexaandru/go-sitter-forest/koto v1.9.9/go.mod h1:KyLO1Zw20Xo775PBGuDjWz2QbiLx3xq3b3QOdiShPDE=
github.com/alexaandru/go-sitter-forest/kusto v1.9.0 h1:Ru7ulyXBcrNWaBeUo/eojwVF5RwW66ECE6tQOdarbfI=
github.com/alexaandru/go-sitter-forest/kusto v1.9.0/go.mod h1:1QFOcdygoI0GHrnHxIbwjkkICoNOkRki1AaqCzk3wKE=
github.com/alexaandru/go-sitter-forest/lalrpop v1.9.1 h1:mAf/yvp4Ix6vyATOTOVrrCOuqcKsskxbN0H3j259VrY=
github.com/alexaandru/go-sitter-forest/lalrpop v1.9.1/go.mod h1:wbcTAKGR88XgWdxUHkPAxGcXN9v4hOJbMWKRqs5G4Gc=
github.com/alexaandru/go-sitter-forest/lart v1.9.1 h1:umDKA5YZFLTLnZLq45LpJ8UEKVCvgnExQFI9rxOQSHY=
github.com/alexaandru/go-sitter-forest/lart v1.9.1/go.mod h1:qb2khfwmKhrHlfxFE05mhwfey9e69uB6b0/8URWV76c=
github.com/alexaandru/go-sitter-forest/lat v1.9.1 h1:2ITq8UEpTNBaPng1wvWcWS101g265WEXDwSc7aD6/9E=
github.com/alexaandru/go-sitter-forest/lat v1.9.1/go.mod h1:bI3/nC2QiXtYgm5wGEJ/r188sDbzPpcjzypYj/rKZP4=
github.com/alexaandru/go-sitter-forest/latex v1.9.2 h1:M/eUBYHEppdLWTC7yy2LtzrgZVqPHRtJtm2MEj1yj9M=
github.com/alexaandru/go-sitter-forest/latex v1.9.2/go.mod h1:66tEkbBh3grpfSW0KD5TFko0yZ9DYmCjXaUgSniltjk=
github.com/alexaandru/go-sitter-forest/latte v1.9.0 h1:qzbHbs4tB2fFISvmjYI2GD6ZN3XrC46hVZbdJCclJh0=
github.com/alexaandru/go-sitter-forest/latte v1.9.0/go.mod h1:ZvyJjE9VB/gqodYZECVIy7PqlaEPNljDDbN4cX6pW/c=
github.com/alexaandru/go-sitter-forest/ldg v1.9.0 h1:Bz22JGn+tLDN1TvHT8Z+QmgRJvygrl9PmAosdH+dKss=
github.com/alexaandru/go-sitter-forest/ldg v1.9.0/go.mod h1:PrDPHWSZRcti7zETYIHLjKzUMKZIsUrDguBTqgMYLwk=
github.com/alexaandru/go-sitter-forest/ledger v1.9.5 h1:WlbpkNJvogo+7xHdqz862i5KUyNo1N2wlZo4BWvxBxM=
github.com/alexaandru/go-sitter-forest/ledger v1.9.5/go.mod h1:VFcYd4CSnWI4365VprEOtIwTlwYBOcMWVvegkGw5HxQ=
github.com/alexaandru/go-sitter-forest/leo v1.9.3 h1:49E14QRzCBivBG1ier8ewV87i4LkXDtkfJxx9LY1O4k=
github.com/alexaandru/go-sitter-forest/leo v1.9.3/go.mod h1:W55wN52Ud9/rWO+wBiAxdcpqrTBnQ9/VUVLOhrnu6M0=
github.com/alexaandru/go-sitter-forest/lexc v1.9.2 h1:jyseig2F2/zUFNFFxMUK8DMEGbCoH9JkhBOchdZjTfM=
github.com/alexaandru/go-sitter-forest/lexc v1.9.2/go.mod h1:yK4B8NYLk2p7AQPsIKDvIkmBa4yjNv02/GcdwfzIwPU=
github.com/alexaandru/go-sitter-forest/lexd v1.9.1 h1:Tt0qhpJ6dX5i5SdXJ4WAndGeH3zU42GYggNHWuLZgVM=
github.com/alexaandru/go-sitter-forest/lexd v1.9.1/go.mod h1:DrDYsvXYViywonvrNHVX5ouHj9Uczh2x7NUpidLeKeA=
github.com/alexaandru/go-sitter-forest/lilypond v1.9.2 h1:iwVMXqd5wMJNVTOCOQjav/bCZgcdyIufDVM+yGgBVro=
github.com/alexaandru/go-sitter-forest/lilypond v1.9.2/go.mod h1:oc/YsGCc+dEvD8raoyy+NeLI4caLkWmd0S80hW38Hi0=
github.com/alexaandru/go-sitter-forest/lilypond_scheme v1.9.2 h1:+lSPa9lKd6RckG9gnjyyzXToyPKwmqW3oR9dWb6t9oA=
github.com/alexaandru/go-sitter-forest/lilypond_scheme v1.9.2/go.mod h1:2x/Jp6WKnq9/bpr2yDLl0Gl758MlchlHFPlb5RP46XE=
github.com/alexaandru/go-sitter-forest/linkerscript v1.9.0 h1:dOPGXBcf2i+fl0G/ppHTjMGmPpq1schS/TWkCO2JR+k=
github.com/alexaandru/go-sitter-forest/linkerscript v1.9.0/go.mod h1:3C7ccKznTj7fTQStGH1Pted4qZvC13Swl6BnjSkk+p4=
github.com/alexaandru/go-sitter-forest/liquid v1.9.3 h1:Il587Oo7P8//456jiFtoemT8mOuJcgHeqjVtYSZmeq4=
github.com/alexaandru/go-sitter-forest/liquid v1.9.3/go.mod h1:XBFjcZSkBiBfj1e2U+g1t1GXRdypcxWBYNctztb6tuQ=
github.com/alexaandru/go-sitter-forest/liquidsoap v1.9.2 h1:zFjLRQKWfeNYSVS5Dw1qfEeevavQF3Ep40JEA0hZues=
github.com/alexaandru/go-sitter-forest/liquidsoap v1.9.2/go.mod h1:bN4Hibj1eNedzP3TdlKzUlB9PQiLWPE4t+tqNrX1+Kg=
github.com/alexaandru/go-sitter-forest/lithia v1.9.0 h1:ALRpXfsw1e7mhje+PH2e4+A4z6a1GeK9LwkOLjPMk8I=
github.com/alexaandru/go-sitter-forest/lithia v1.9.0/go.mod h1:2PraWXnXm/h9hP8I5sLGFUuQMUrhGgtisXVhI4EBdXI=
github.com/alexaandru/go-sitter-forest/llvm v1.9.2 h1:F0dHKx0/DxOFe+lQweljDsaE9TShQir5smGNHmyBhSM=
github.com/alexaandru/go-sitter-forest/llvm v1.9.2/go.mod h1:UpP/GxPrwc07++DzGYuGNvdPre7cAOFAzPOU3IhHjPw=
github.com/alexaandru/go-sitter-forest/lookml v1.9.0 h1:MFEspIrOSrQMcsYDfItuaQsRYrWseo0w+KTMImDjvgc=
github.com/alexaandru/go-sitter-forest/lookml v1.9.0/go.mod h1:gyjiqh2QmZyWFO9R6qLZ0WqLqf5SS6/uZrYoks5+/mk=
github.com/alexaandru/go-sitter-forest/lox v1.9.2 h1:A+xc2Y79hztoeMWGHhlGJnnhjQeGjUJ/MwT0lFVu8hg=
github.com/alexaandru/go-sitter-forest/lox v1.9.2/go.mod h1:5cU2jZBIEw8YfQ8pmsxUkQX4sTtRlY69ByitEuWp9Vk=
github.com/alexaandru/go-sitter-forest/lua v1.9.3 h1:A3Tas9sLRVc1kgD4Q477xhW+BfZzm2bnX4xO4bTSUNY=
github.com/alexaandru/go-sitter-forest/lua v1.9.3/go.mod h1:7MFGPolXojnCrVMHI9TIpB1OCLY8n18Cb4XyKr+hmfE=
github.com/alexaandru/go-sitter-forest/luadoc v1.9.0 h1:AD3nZftCeQMfDbyRj+sR0LXCUv/9BT0BnsjGlF+CWTI=
github.com/alexaandru/go-sitter-forest/luadoc v1.9.0/go.mod h1:PZoRJxFxIWR5cDOnC0ljLDeSTpDutaQOobjCdDfXoZE=
github.com/alexaandru/go-sitter-forest/luap v1.9.0 h1:oPcEZDTFpn0G78mGeMKRUW0+SAal3eo2T7K3o/qCC6k=
github.com/alexaandru/go-sitter-forest/luap v1.9.0/go.mod h1:VSk88dfBEya8XZq+fm6DizaAfyyAJY6lZSp1qwGTek0=
github.com/alexaandru/go-sitter-forest/luau v1.9.1 h1:TvHIp3EAKX17gN8qMLRLSQKQosmJKNyKQSwLOR3kkcc=
github.com/alexaandru/go-sitter-forest/luau v1.9.1/go.mod h1:0mEgZMb3CISEKcWnjA4yJcx5xccsJQhuDz311/jeUgM=
github.com/alexaandru/go-sitter-forest/m68k v1.9.0 h1:UyzD2VQlB4sWOvAu72KLZHz+MlwEi4qFxQEDREnYLXA=
github.com/alexaandru/go-sitter-forest/m68k v1.9.0/go.mod h1:nLMQbGTKcYeHN1jdPBtd8+JBVYkBa9ozzLdCsaHIfCc=
github.com/alexaandru/go-sitter-forest/magik v1.9.2 h1:wUY/VdW5uZVO80cI5QQOgFoL1KNzkgS14Uar+iXfJUg=
github.com/alexaandru/go-sitter-forest/magik v1.9.2/go.mod h1:ZySTF53OXKW5gdJbJ1UcJk9laKXC0aMduiVzXy7ycO0=
github.com/alexaandru/go-sitter-forest/make v1.9.1 h1:RthLvGEwRi7bufPhFqlg1azcVu0hd1OWRWdcAI56LtE=
github.com/alexaandru/go-sitter-forest/make v1.9.1/go.mod h1:2zuovDw+jvgWnWU/WMRDxtjHOo4ttuNJX+tIq3egxoM=
github.com/alexaandru/go-sitter-forest/mandbconfig v1.9.0 h1:dZD3rkw2zlWisLI5QIFNwBc5ZdHyGgs2qU3kDca5X+0=
github.com/alexaandru/go-sitter-forest/mandbconfig v1.9.0/go.mod h1:JfO0sK6ZoU/X6KRhIJKLy2flWEVhXkLRNyfMoZ1Jdr4=
github.com/alexaandru/go-sitter-forest/markdown v1.9.5 h1:59eqvaWljYcTZcbSFhx6RcYy9scZxHBuq0+vHhgcXpY=
github.com/alexaandru/go-sitter-forest/markdown v1.9.5/go.mod h1:qoQhsERwq18jIqWiSgiP6LuCvFK4VqA5lBkCFKaZL44=
github.com/alexaandru/go-sitter-forest/markdown_inline v1.9.3 h1:iBIQaM7jus0lINLJwOIHTQGt9JYR0/TWx3T60LUWIeg=
github.com/alexaandru/go-sitter-forest/markdown_inline v1.9.3/go.mod h1:H6lsu3iiG9FRghlpQo2uaMbttw4/3PTPeUKvaZnVbdY=
github.com/alexaandru/go-sitter-forest/marte v1.9.0 h1:wBojxbOIBue7iLObj7d+9vc72n8Bd9oMUiDedX3IFWw=
github.com/alexaandru/go-sitter-forest/marte v1.9.0/go.mod h1:Klphy9q+LX5y4Bu6vauIkax1w1z0A7kh0AQXyHJgdzk=
github.com/alexaandru/go-sitter-forest/matlab v1.9.4 h1:UQv7rF59vVywSN5z9pmqheNvXjl472Xsr+iyrMB3dsE=
github.com/alexaandru/go-sitter-forest/matlab v1.9.4/go.mod h1:lvLM2cLQqT/gu9dp6K7/jUtMiTqOQnvqHnGmxmL9aXA=
github.com/alexaandru/go-sitter-forest/mcfuncx v1.9.1 h1:kugmKoFx9ACNHVFU606d0ggRsIbibTyOTUbd+FyiwiI=
github.com/alexaandru/go-sitter-forest/mcfuncx v1.9.1/go.mod h1:r/PNaHQjHYQxasSCBad/wRp9dCZ5HT5oqO6EcXmCyCU=
github.com/alexaandru/go-sitter-forest/menhir v1.9.0 h1:xaunEwbewbCGiQDLip486roYPXNrpJOM/uY7r4cYuSI=
github.com/alexaandru/go-sitter-forest/menhir v1.9.0/go.mod h1:np1aJkrQBl9uNhX7QL8F4HLgSH/W0io+XD/S3EGrV7E=
github.com/alexaandru/go-sitter-forest/merlin6502 v1.9.0 h1:ItlVJfr/p4ppJcVn1R9MYOOdYDKYax1tJvIgutPUsko=
github.com/alexaandru/go-sitter-forest/merlin6502 v1.9.0/go.mod h1:u2OOiqtFdCmFpRT/H89udf3yhW3ZcHIZ/ieUTzdI+yE=
github.com/alexaandru/go-sitter-forest/mermaid v1.9.0 h1:HZ7cLgyy+c2Kx+NKn34VH0kOdDSmPPf6MQx1lZ0Th/8=
github.com/alexaandru/go-sitter-forest/mermaid v1.9.0/go.mod h1:hP6HRaxnhqcST/eV+x2+DAzg+ahoiHDX3q9/+JQj53A=
github.com/alexaandru/go-sitter-forest/meson v1.9.1 h1:/UYNn/l83cf2FKMcsbfLsWjjg8+wzYpcNymHdZdC7Yc=
github.com/alexaandru/go-sitter-forest/meson v1.9.1/go.mod h1:whm8BjPiIDzLM3Ps967UGXnJITHjlJT6jd8hzlc/OPU=
github.com/alexaandru/go-sitter-forest/mips v1.9.2 h1:pdkeYIAoEzGdOYwyCEVOOyz1tQWfZPENWfIXtfQ0tvA=
github.com/alexaandru/go-sitter-forest/mips v1.9.2/go.mod h1:H5O01dQntV7g1macPq7gOfRdlh1OiWgpWlPdSxgKSz0=
github.com/alexaandru/go-sitter-forest/mlir v1.9.1 h1:GRy+DUDVMx2mElsAKXr4DV29rwlDh/SKuDiyNvqV8j4=
github.com/alexaandru/go-sitter-forest/mlir v1.9.1/go.mod h1:wicbV41mdEW6d3oXgXgy3sK32qAFpA/D/6UO+T9gwDM=
github.com/alexaandru/go-sitter-forest/modelica v1.9.0 h1:cdwNEe8ku1KdX0nfiMnyBWtdKcpLiAyws+XG8e7MKc0=
github.com/alexaandru/go-sitter-forest/modelica v1.9.0/go.mod h1:sPe2Ktn8G40so7BqGTicojmO0Ajife2wrlsJJYDGlXM=
github.com/alexaandru/go-sitter-forest/moonbit v1.9.26 h1:ZBCs7Bo0nVj5Mm2NRQNffmkF+8uWVGFabbQUe8XVLKc=
github.com/alexaandru/go-sitter-forest/moonbit v1.9.26/go.mod h1:NY9mmVqKeSA/2OwHpXxjikMOQBtS+tVkQcsjHwRapDE=
github.com/alexaandru/go-sitter-forest/moonscript v1.9.1 h1:Klgbq3LClcRiPhJadaEuZP7Gap1DBHSQiF8HBRdXQXY=
github.com/alexaandru/go-sitter-forest/moonscript v1.9.1/go.mod h1:MAf6yW5fsSliBvjnPjQTIke0xceQnWu1d5fVgdUGHDU=
github.com/alexaandru/go-sitter-forest/motoko v1.9.0 h1:CbDcKHnsNTZq3GRrPLvnrTX+3I0wd3kBoqfjkFEGDlo=
github.com/alexaandru/go-sitter-forest/motoko v1.9.0/go.mod h1:ikRuk15HaVQuv//StEQpVcu6wKUJ/fZGReYbUzrjXVw=
github.com/alexaandru/go-sitter-forest/move v1.9.3 h1:gwhB4bDM5sPfcOGZoGhVOyc1+bu7ZIKEBRHrgf7m+Ys=
github.com/alexaandru/go-sitter-forest/move v1.9.3/go.mod h1:y4XIpfIlcUIPjQT/hFZmhWKYLGmVhr6ADJiM4JIlVK8=
github.com/alexaandru/go-sitter-forest/move_on_aptos v1.9.1 h1:fuaY6OC8F3gwHzzWkzCXe9HjgvzFf2Y+ugsBkUQ4hAc=
github.com/alexaandru/go-sitter-forest/move_on_aptos v1.9.1/go.mod h1:bs0KXFhL/W8heCcFsHO0DoVKM9fVx/4cBy1/IL1myd4=
github.com/alexaandru/go-sitter-forest/mustache v1.9.0 h1:oLdW/N5/JB/1U6XDsHG+MAjS7npJjmAkSKGFiypuJVM=
github.com/alexaandru/go-sitter-forest/mustache v1.9.0/go.mod h1:spMzRh2bEgCL1QrrQVBAcszZpyqZOyK0wbGQbGzxfQA=
github.com/alexaandru/go-sitter-forest/muttrc v1.9.0 h1:n/mCzItSnxxWNNufKqH4WVyPtsvXRJ4w2ijEjWeKvmA=
github.com/alexaandru/go-sitter-forest/muttrc v1.9.0/go.mod h1:BPKN8te/8OqHsQANwO44e1URIZcwbZDdDAEkSCtPL4Q=
github.com/alexaandru/go-sitter-forest/mxml v1.9.0 h1:IwYRP6SS3Rw18LMFfh3pnAhlLRm37Qv3kG3fI/TON/w=
github.com/alexaandru/go-sitter-forest/mxml v1.9.0/go.mod h1:86kqPUcACjsvarcnsRaxJKvvSuV+WfGkAcGETYQslM8=
github.com/alexaandru/go-sitter-forest/mylang v1.9.2 h1:WPH/eFp0Fx4VbS7I5TO4STkum8OvVPs4u/jRo7Ge5Sw=
github.com/alexaandru/go-sitter-forest/mylang v1.9.2/go.mod h1:/8ZNepke76gbuPZRPRExWZbAVOSb3y5rMiETcgN9b7k=
github.com/alexaandru/go-sitter-forest/nasm v1.9.1 h1:5RJmKMo1irQLd6m6Wd2AIMp4lbMNr9OGI6Wv0X9tqSw=
github.com/alexaandru/go-sitter-forest/nasm v1.9.1/go.mod h1:0l2XNoqQ6LBUlXmG2DgvNMKaMFA3q5Y+ZClPV6NGgg4=
github.com/alexaandru/go-sitter-forest/nelua v1.9.14 h1:Q0Gz23/Xv93llzMVlR320iLhluJKE7W/bScdr0PzrxM=
github.com/alexaandru/go-sitter-forest/nelua v1.9.14/go.mod h1:2Yh2chMxs08al5L+wrBa+4Xlg5q0GU3sQNaEDtPaN5M=
github.com/alexaandru/go-sitter-forest/nesfab v1.9.0 h1:lpdA1To2AzkYF4Tqo3OF5Gf1ysxjOiRkzPQiYUSPM5c=
github.com/alexaandru/go-sitter-forest/nesfab v1.9.0/go.mod h1:L3Y6dWX28Hm1lT/msR/mJGfasI/pd0KLRBPwrTztLus=
github.com/alexaandru/go-sitter-forest/nftables v1.9.0 h1:XOQWTEaD5yXMwl23ZwsmCIP2K7LJx9vuXhZOx7iN2CA=
github.com/alexaandru/go-sitter-forest/nftables v1.9.0/go.mod h1:yDs1ffJ3u7bfJ6QX/MMB6pfFOEJtB1mCnS2nAmsZ1z8=
github.com/alexaandru/go-sitter-forest/nginx v1.9.1 h1:MfXziVm18Qz8jxHMCziUXKniYeJPHvbT2RwLsw3BwPI=
github.com/alexaandru/go-sitter-forest/nginx v1.9.1/go.mod h1:A7tczBGiRgoxSisKqJNIgq7MWzWZIFa7vB84PipW4is=
github.com/alexaandru/go-sitter-forest/nickel v1.9.2 h1:Q7hf0vN5eRsxpn16lXGCTWlL2X4L1Q2WgGWKXs4CzZg=
github.com/alexaandru/go-sitter-forest/nickel v1.9.2/go.mod h1:DjFNIeIeYAyr/oTj31ijmiGVis2vCvf9Ucb/h3n1x/0=
github.com/alexaandru/go-sitter-forest/nim v1.9.1 h1:fYw3LVUSwNZ5dca19S46RyajOZFvOhw6VEqYV1UdHc4=
github.com/alexaandru/go-sitter-forest/nim v1.9.1/go.mod h1:wwXTqjMCju7uMJFVHVtWbOI58BGX1fn2+sNi1plho28=
github.com/alexaandru/go-sitter-forest/nim_format_string v1.9.0 h1:09QmOu8YqmgrGMZkKJhAb9u0YGoM+ey5Ak2flggPzhk=
github.com/alexaandru/go-sitter-forest/nim_format_string v1.9.0/go.mod h1:SfdodXhmZEuxhE67YBH+s9cQneQjd879iBWOTgB0+XE=
github.com/alexaandru/go-sitter-forest/ninja v1.9.0 h1:7rKwdn8HYtgeySYv/JiBkmr0Odm1OW6SgCIimcEbFA8=
github.com/alexaandru/go-sitter-forest/ninja v1.9.0/go.mod h1:OMAp5rtJSGRN+cAW28UzLoDIi1xAmuMffNzpN8OPv80=
github.com/alexaandru/go-sitter-forest/nix v1.9.4 h1:1eUmXiGM01OpfVDMxSu5aN50q3zCb0ArycoSDcx1BXg=
github.com/alexaandru/go-sitter-forest/nix v1.9.4/go.mod h1:nbtvKRD56GICG+j92DNSOEXwIp8gD4dh/3kXz3kd+5o=
github.com/alexaandru/go-sitter-forest/norg v1.9.0 h1:L/s8J2UuoqtOcUpO/RpIUbt8cbW2qGzmg7MjB9HsUts=
github.com/alexaandru/go-sitter-forest/norg v1.9.0/go.mod h1:w3FTP9ahc3WD4ku53qaOFydv3JvE/fuhSoXLufsrzDs=
github.com/alexaandru/go-sitter-forest/note v1.9.1 h1:HJYK0bw2V3DuemXm2i/VoFFf3a1wsZ6TCTzf6t7X2/4=
github.com/alexaandru/go-sitter-forest/note v1.9.1/go.mod h1:8m+I+/VVHPD9+58PE6XePsXdkT2xG6HS7JQ0xAA3Tho=
github.com/alexaandru/go-sitter-forest/nqc v1.9.1 h1:3yUTt+Ci6wyNufrR6tJM+1vxjxvBMHNZ03q//r1SdB0=
github.com/alexaandru/go-sitter-forest/nqc v1.9.1/go.mod h1:CdHu01fwIFd1t3nmRfu6AnzMpfNePmzlbKvPrOPAyU0=
github.com/alexaandru/go-sitter-forest/nu v1.9.34 h1:tO3Fd7xW3CgdnoChnFVlzHIiipEw50CSFy/Tvt+EmIs=
github.com/alexaandru/go-sitter-forest/nu v1.9.34/go.mod h1:seeSYVgj5mUOebuNyre0dPDB8sdTVpxE3KsFg3jfNt8=
github.com/alexaandru/go-sitter-forest/objc v1.9.1 h1:2ih+uo4eFm241b1mqKmeTFPUxS5q589tK0BhMMBN6b4=
github.com/alexaandru/go-sitter-forest/objc v1.9.1/go.mod h1:woUVStfCKzO3ERNz1GfekW4nnZDVjCFiDeDFecfnBMY=
github.com/alexaandru/go-sitter-forest/objdump v1.9.0 h1:GtI2p0FoyYI7BbVb8wMgp9jxpdXz0pPseRQYHTIkBeg=
github.com/alexaandru/go-sitter-forest/objdump v1.9.0/go.mod h1:jz/6yMV+h2mfo5NGCQ5K2LvpTnLUPmU3+2wouoBYwMM=
github.com/alexaandru/go-sitter-forest/ocaml v1.9.6 h1:mN7v3irDwWO/KrFw6RCX9WBKCZzeCQvRNRc8fyu12wM=
github.com/alexaandru/go-sitter-forest/ocaml v1.9.6/go.mod h1:xPI6i1J71VDFB1mIll4Imge2G45UjDnkGiOzWc+xvX4=
github.com/alexaandru/go-sitter-forest/ocaml_interface v1.9.7 h1:z+8E6o3efffrQ/vpEW1O2XB+bcU4XbE6clY4Nryfnzo=
github.com/alexaandru/go-sitter-forest/ocaml_interface v1.9.7/go.mod h1:nKw9OE+Afb5WJ5lLksV9ave+z0JALIbYsiYpGPORwXU=
github.com/alexaandru/go-sitter-forest/ocamllex v1.9.2 h1:thL257IdcCQPD5e3qMGgbxI0weppj6mLBJlVYuoKyOk=
github.com/alexaandru/go-sitter-forest/ocamllex v1.9.2/go.mod h1:3XDWd8GlhIC/DY5jhZ8yy5V2WwRjaDrKZzyeRtiOKSw=
github.com/alexaandru/go-sitter-forest/odin v1.9.2 h1:puu+Je0cijl1j4/CxEWSSzDqr43O+V5FRamB2cvNYE8=
github.com/alexaandru/go-sitter-forest/odin v1.9.2/go.mod h1:bKmdw5P9aF8PLJ3fFQ+OlwyXCL1t8ihzEQygcwtiCuU=
github.com/alexaandru/go-sitter-forest/org v1.9.0 h1:MbeHsn0LyCx994A5Cn5nidSLUejHUwmeV44GsnzlQbk=
github.com/alexaandru/go-sitter-forest/org v1.9.0/go.mod h1:BaxcD5RhXsVZ4Pe/jsiLohoXbRn7foryJng0c1sX084=
github.com/alexaandru/go-sitter-forest/ott v1.9.0 h1:p7bfVFmBrumaaumlhFE1DWDzaW1cdUXf51uJMtDUNfE=
github.com/alexaandru/go-sitter-forest/ott v1.9.0/go.mod h1:ZjcIcVORN5r6YHJA4BO4Og9f1ycVewTDdjZK2eSLbmc=
github.com/alexaandru/go-sitter-forest/pact v1.9.2 h1:90lYRCVFVIIlQUFRBGL8J+d68w4JK/Tcr5dKHX5wNSE=
github.com/alexaandru/go-sitter-forest/pact v1.9.2/go.mod h1:7hVm1v45ZhnNWZUeW11D95YrsJkl04PWsug7gMJPQmc=
github.com/alexaandru/go-sitter-forest/pascal v1.9.2 h1:nd/sAFLXXPbq/lmM/QkNu5Vx3yZ4SvF2cuOGsmZPijQ=
github.com/alexaandru/go-sitter-forest/pascal v1.9.2/go.mod h1:geJUcQfYNXV8R6lr060dUWHwqBZmksLmqRWK18UQuPk=
github.com/alexaandru/go-sitter-forest/passwd v1.9.0 h1:jx/T7iyMZ0ebK+Vs4WSCvVRdSfCwCH6U0GZqsqKeAS0=
github.com/alexaandru/go-sitter-forest/passwd v1.9.0/go.mod h1:MXT2+oFXQ8yUWFf4HZL8GUkCyA7EC+1x83Y1fen4x2I=
github.com/alexaandru/go-sitter-forest/pdxinfo v1.9.0 h1:txKeHY8gzVfs1okAVbs1HaKdSJL8GJ4IH8DCDpoY4tw=
github.com/alexaandru/go-sitter-forest/pdxinfo v1.9.0/go.mod h1:AQucUDl8qQLTsCTg5sS62yOIhtNdw6HfmbSgp2iz10k=
github.com/alexaandru/go-sitter-forest/pem v1.9.0 h1:pwWzY+R8IIC939veGkcWkmbu9lA1VwUY2N3jvoKjQyE=
github.com/alexaandru/go-sitter-forest/pem v1.9.0/go.mod h1:7ZwK0QHPePImfB0/hImHX/nWP5SiCi0A4TIJftFpKZU=
github.com/alexaandru/go-sitter-forest/perl v1.9.9 h1:iJREJrZQqGLK7Y40NQe66vs1BI1LytdzKsMtZ257KWw=
github.com/alexaandru/go-sitter-forest/perl v1.9.9/go.mod h1:5BjILwbrPZeAEtvuypMPdGqqENP2Hw58ZkBFllHuqTE=
github.com/alexaandru/go-sitter-forest/perm v1.9.0 h1:hPXFS6XLzMZoDh9sVTcnj/aB0K00dIoVAJQwlgBuwV8=
github.com/alexaandru/go-sitter-forest/perm v1.9.0/go.mod h1:HFELHl5I1jQ2ZK3JW0V04jDMAoRYW1hTtQQhVBx9t9M=
github.com/alexaandru/go-sitter-forest/pgn v1.9.0 h1:EA5kWWWmvaBlptvuPpwK8bkafge/8diHC3CKIygMslI=
github.com/alexaandru/go-sitter-forest/pgn v1.9.0/go.mod h1:eJ6h6HodH2iR8YcbyQWl2HZX+xX7dAUxeCz06UbWe4I=
github.com/alexaandru/go-sitter-forest/php v1.9.5 h1:t8FV0CrjobKKk941AJ5EZrLOeY6am25x/NR6iZx8emk=
github.com/alexaandru/go-sitter-forest/php v1.9.5/go.mod h1:LY33+NVll5+uKJ9YQiAFy/QcX02EHWlDlL/PPqAAjzg=
github.com/alexaandru/go-sitter-forest/php_only v1.9.6 h1:hBkaZaAuVrHE30Uy/PKPFTbwYZAfprbkcwuGkKlgbhw=
github.com/alexaandru/go-sitter-forest/php_only v1.9.6/go.mod h1:TdevMeB5MMydFYoC1uVZ+UdXK341aUxUQIUOLmtQ1WE=
github.com/alexaandru/go-sitter-forest/phpdoc v1.9.2 h1:efais+E3C1SY7ZUIO/X/OiM9xsII6XFpupYTMK58hgs=
github.com/alexaandru/go-sitter-forest/phpdoc v1.9.2/go.mod h1:ruZYnyIDSOASpH48MWmF4VKGAcBUar3Sqmp/5VrdVEc=
github.com/alexaandru/go-sitter-forest/pic v1.9.9 h1:s29FIi0EZIrkLRtkBluHehJR/De1M5CXnzcv8180UR4=
github.com/alexaandru/go-sitter-forest/pic v1.9.9/go.mod h1:QruM0I6twd6CD6Rm5yxTGHpxUL29hM4HyRs73MGrlgw=
github.com/alexaandru/go-sitter-forest/pint v1.9.1 h1:iUnlym933bLc3hrEScvNfal43RfMEdyV5uwDpSBHQ04=
github.com/alexaandru/go-sitter-forest/pint v1.9.1/go.mod h1:RQahvzr2OiGoWTIce/4SlSnXBFEXEtdFWwoBy6L0yvY=
github.com/alexaandru/go-sitter-forest/pioasm v1.9.1 h1:NDA15vpMR7RbaOG4XeEm77wULRSX75tALqNiMo60tuw=
github.com/alexaandru/go-sitter-forest/pioasm v1.9.1/go.mod h1:QRHwzJ4hrUKvZHtflE7fL0IzRqEJXz+b9so4uHkp3B4=
github.com/alexaandru/go-sitter-forest/pkl v1.9.6 h1:FPOUpZXRvbNq4A4VuDvjxgp8vG8UdzfCeCtftxRzt38=
github.com/alexaandru/go-sitter-forest/pkl v1.9.6/go.mod h1:AGbNJYL3TGXiQ3Fu7ipWD3mYm3fJvlsoW0jQIfsndZ4=
github.com/alexaandru/go-sitter-forest/plantuml v1.9.0 h1:cz8GisDWDdjJ4FpkxOj9mzC0zwNqtjqFWxla/3Q4cS0=
github.com/alexaandru/go-sitter-forest/plantuml v1.9.0/go.mod h1:IfmhpR823jsoh6cgKs0cFY2pjYSGcj8lgeB8Jt6SGa0=
github.com/alexaandru/go-sitter-forest/po v1.9.0 h1:GzOecQPsNnlRhtOEgtWZIo/FugUBsLMerFLNdb7x9zk=
github.com/alexaandru/go-sitter-forest/po v1.9.0/go.mod h1:iApRGLd82xQM+rXM24M3UC5vaSu6qUtTXoeMGwJ/arA=
github.com/alexaandru/go-sitter-forest/pod v1.9.0 h1:+w3pja+IEp4AUvdNKO6dPFgrCnsJa8yZM6AAw+jZyG4=
github.com/alexaandru/go-sitter-forest/pod v1.9.0/go.mod h1:llcl6EJe43YFxJbuJK8eiVsUcU17jAbfUL52wjX1/Mg=
github.com/alexaandru/go-sitter-forest/poe_filter v1.9.2 h1:FbaYcpPg+q2kERZXkDZIq3e9smYcdJ7xQ1TaiD3q5cc=
github.com/alexaandru/go-sitter-forest/poe_filter v1.9.2/go.mod h1:kXhdsjqDlGkqyfORORUL6HAPbLhiJNFEUInh6JPnPR4=
github.com/alexaandru/go-sitter-forest/pony v1.9.0 h1:jr7zcEnbf4AXMIb2uLD3hbNRWQ5KdmOd+UqsfvaeDvc=
github.com/alexaandru/go-sitter-forest/pony v1.9.0/go.mod h1:X0CSA4ZbRcBe0uZjqXmS8VXNSzBlWc0oTaykMlxUgPo=
github.com/alexaandru/go-sitter-forest/postscript v1.9.1 h1:A3PJmqqQvqQ3vYdUSd46kiu4PpkWGzv9VFEqKXPd7nY=
github.com/alexaandru/go-sitter-forest/postscript v1.9.1/go.mod h1:Gp/1mECuFNCuCjj/Gd4k9HvJELFyoNvCT+v7/tkM6fw=
github.com/alexaandru/go-sitter-forest/poweron v1.9.0 h1:gr6kL+ycqjmEndjMnhbIBfchUf1aB7qD+u11QnVCcEM=
github.com/alexaandru/go-sitter-forest/poweron v1.9.0/go.mod h1:mnwe6RcbV4NpJB/HhdNkHTdoaDH9fBErrMmTlZ/ldUw=
github.com/alexaandru/go-sitter-forest/powershell v1.9.5 h1:Xx1HU3ENj7KUE39P7AaTT23HaS57G+8ialpjFfSzKm4=
github.com/alexaandru/go-sitter-forest/powershell v1.9.5/go.mod h1:o3EOy3gi6LPlqqzCG6D9iQvb0daGjBfXgIardfQMy78=
github.com/alexaandru/go-sitter-forest/printf v1.9.1 h1:jzyslKXsg29h1cOcpJ0Djvyl9/kOYnbR5CbLCrBa1Mg=
github.com/alexaandru/go-sitter-forest/printf v1.9.1/go.mod h1:cMz8+BD2+yiqQlEiseYniIEL6sJ2mFKn6vZ+60zE+vo=
github.com/alexaandru/go-sitter-forest/prisma v1.9.2 h1:X/XwhYR1m+WNWg7t7Rlem65+jsNX53F1lu4FFdcczQI=
github.com/alexaandru/go-sitter-forest/prisma v1.9.2/go.mod h1:K4qXZO22f5pKVPEAE71ByLuy4NIef+NFLuHRoSKk1cU=
github.com/alexaandru/go-sitter-forest/problog v1.9.1 h1:qFNe0EifzBTjtSuz1DGKGWWMnVXrzCQirK9QQgrA9uM=
github.com/alexaandru/go-sitter-forest/problog v1.9.1/go.mod h1:Xm3nTQ7kLaz4srZ2ZQ6eTF6xesaGPxNQ6llb/fQfIvw=
github.com/alexaandru/go-sitter-forest/prolog v1.9.1 h1:vTBrP/hii5e5zSfXfjClHN6BwH6zQcW06tvWj/O40G4=
github.com/alexaandru/go-sitter-forest/prolog v1.9.1/go.mod h1:yLw65hd7wocjD2e60pZfwKtYn0YT9O7xKMf6LSMkj3M=
github.com/alexaandru/go-sitter-forest/promql v1.9.1 h1:6m15a8jG0j9ouL0tjB0PurPYuhqbFKuxOZdJePyTDw4=
github.com/alexaandru/go-sitter-forest/promql v1.9.1/go.mod h1:XwDsfCafgbKZOvm+XPyGP/aRazI0/+piXn0/NeTEKgk=
github.com/alexaandru/go-sitter-forest/properties v1.9.2 h1:1HBjZTKIkRoesBZALgX2XYkmIXmc6ABWOlfHeYqatZs=
github.com/alexaandru/go-sitter-forest/properties v1.9.2/go.mod h1:7XbTuTFy7dORp18TvcPvShpZtQV90qfSNAUQMhAo2EY=
github.com/alexaandru/go-sitter-forest/proto v1.9.1 h1:pm+LHbSnXDEaqtnE71Z8ceeloZiMiFSVuUgRX/xt6ds=
github.com/alexaandru/go-sitter-forest/proto v1.9.1/go.mod h1:C6tl7dyP8u94B8iKSdUcFip+Wk0ZoifcPl9zfwKLNXk=
github.com/alexaandru/go-sitter-forest/proxima v1.9.2 h1:OItLmaPAE6kPzgHvCzP0s7GihwPSQNRtjwz2noyr13s=
github.com/alexaandru/go-sitter-forest/proxima v1.9.2/go.mod h1:b4pdIFg8wKekr+yBsLBoAQn3ffiZmQxV5EJtD8J02bc=
github.com/alexaandru/go-sitter-forest/prql v1.9.1 h1:zC5TkFL7qpJ6Vx2azyY1ciPLuIH0qCotMwoWMRBuh8s=
github.com/alexaandru/go-sitter-forest/prql v1.9.1/go.mod h1:LoO+z5vM7VC5H1Z9gTmBlpP4+m4CCWr+kkjtciSwUII=
github.com/alexaandru/go-sitter-forest/psv v1.9.0 h1:H5nToIAnOzaaVvkoyxrkrvWph+TqgcAayWBFo/LIuIE=
github.com/alexaandru/go-sitter-forest/psv v1.9.0/go.mod h1:j1GAy08YA0n9ADSpT+D/R2/FDNnsySi0lmTt7AD64cI=
github.com/alexaandru/go-sitter-forest/pug v1.9.1 h1:XpxIIsbkfsXY2WHyhtIcKLl1eSeu4EdqFzQPyLyZGUY=
github.com/alexaandru/go-sitter-forest/pug v1.9.1/go.mod h1:yKR+QiHqNUDHz1IgKpXDUusWSW0VcPG+s5VAuyTvLP0=
github.com/alexaandru/go-sitter-forest/puppet v1.9.1 h1:kO3GzVb9sFW6/JJM2gQRMkWo7mx8vZZHvATzxrXZBnA=
github.com/alexaandru/go-sitter-forest/puppet v1.9.1/go.mod h1:R+jh029JgTyw4BJL4OT9QKsDJXElDJL4ZQanYTch8Pk=
github.com/alexaandru/go-sitter-forest/purescript v1.9.0 h1:9zx2XE5kqj0swsl0zzcniZ+bv5Cua+q7zxo3zm3crFk=
github.com/alexaandru/go-sitter-forest/purescript v1.9.0/go.mod h1:Y5UGGUg1/IMcWymzcs4HKjVb9Q0mXVPJksXBuMOfyXU=
github.com/alexaandru/go-sitter-forest/pymanifest v1.9.0 h1:zFEvqPIxhagTDnOc9kRdI0nDwLd7jAeXJaGXOKsNReI=
github.com/alexaandru/go-sitter-forest/pymanifest v1.9.0/go.mod h1:w260Ni51RuXW3TV32iegWqzx95y4CzX13DGVh3+TRzs=
github.com/alexaandru/go-sitter-forest/pyrope v1.9.2 h1:y8O7AoF+UTFJqn0sZ2ML845GkSPce3p0jxDwAr+1Coc=
github.com/alexaandru/go-sitter-forest/pyrope v1.9.2/go.mod h1:b38SIBCvhdn22Wni0ExuAph8yYFelJ82Ji+f4OPwSyY=
github.com/alexaandru/go-sitter-forest/python v1.9.10 h1:qKbso5wI4vlkQ0EjZBO5hRrxwqf0tmGLVdbzasZCcrg=
github.com/alexaandru/go-sitter-forest/python v1.9.10/go.mod h1:CXs3nuPcj4p3FqY8BnvJqsJ0vbsrda6Oj3sQDyRumNY=
github.com/alexaandru/go-sitter-forest/qbe v1.9.0 h1:gXm6DCluQJKfISVrvOFQr5k9F32bmSajicd1zBtwOQQ=
github.com/alexaandru/go-sitter-forest/qbe v1.9.0/go.mod h1:Vd3gkUOIjHE4PXYrlhS3o4Jw/UKSrp5yDvT+ojgNxWs=
github.com/alexaandru/go-sitter-forest/ql v1.9.0 h1:t/himrj1ov7gdcS5FBwgkJwqhpMc+FhRzqtjEhyg29w=
github.com/alexaandru/go-sitter-forest/ql v1.9.0/go.mod h1:jNkSD6xIdx+ef7sn3/CmMOJAcLVfPMR8NGQ/HzrYJZg=
github.com/alexaandru/go-sitter-forest/qmldir v1.9.0 h1:rSWLfRuBNlbAC+8UXOXWx4d9S791NUhryNSx/Lg7bas=
github.com/alexaandru/go-sitter-forest/qmldir v1.9.0/go.mod h1:kMEngfXpIA4et6Lg4GvQPGJsn6hIk/TMvjlPrAPM4eA=
github.com/alexaandru/go-sitter-forest/qmljs v1.9.3 h1:7OOSJvHggtXh8DEHJx1vimGRvuufBXSTo/P61iI4ip0=
github.com/alexaandru/go-sitter-forest/qmljs v1.9.3/go.mod h1:223A7TGlMLa3N7ecpatvH7BCXY0I9sP2J4ZIeOM88lU=
github.com/alexaandru/go-sitter-forest/quakec v1.9.0 h1:+w8S3Ub2jDAFoGfVdRRH5FZ5LOq9HFD7CtSHEuYpLno=
github.com/alexaandru/go-sitter-forest/quakec v1.9.0/go.mod h1:a9nSMurXWvr3HHwUd5CGvd2PWVC3yluB1Fpy5i7BpIA=
github.com/alexaandru/go-sitter-forest/query v1.9.9 h1:kdzY+ql0XCxQYBD2dTaRX4eFEEW6noEF3mpARdhyzT4=
github.com/alexaandru/go-sitter-forest/query v1.9.9/go.mod h1:ldwUpfWB+603KQW37PYURz8Lm3GUmSqru/SmJuwIkYU=
github.com/alexaandru/go-sitter-forest/quint v1.9.1 h1:MKadmzwgA+EIvF7Mr6zEM1kXzLRWx0Z8uPYIYR6xvec=
github.com/alexaandru/go-sitter-forest/quint v1.9.1/go.mod h1:0FpsPwNf0NsnzkplioFTqQamLv6k8jp8qL5sz6dV7fs=
github.com/alexaandru/go-sitter-forest/r v1.9.6 h1:rjcDudNKSrGAdUmLR6JxgGXb/4Q2flPXLQSgTpQbdL0=
github.com/alexaandru/go-sitter-forest/r v1.9.6/go.mod h1:W8wHEOhkTUoUCiHa7raV2kg1IsW7M4NKNOzvZwbAaBQ=
github.com/alexaandru/go-sitter-forest/racket v1.9.1 h1:MdM0wfGO5BCqK+E/5uJJLBLLqXz0HTVPoOa0qhdLx+I=
github.com/alexaandru/go-sitter-forest/racket v1.9.1/go.mod h1:cF1YtRlykz5s+pndBYZkEsq3X3TLm02cMqDNQL0TXj0=
github.com/alexaandru/go-sitter-forest/ralph v1.9.0 h1:vcqKbzIpCL4H4/7lnPXlblFewLR5WQ1Z8Poo/kLWYiI=
github.com/alexaandru/go-sitter-forest/ralph v1.9.0/go.mod h1:piu5rh04pzzXhLQ84FeBgy2PR1yFNBwmsDxfSsx9wtQ=
github.com/alexaandru/go-sitter-forest/rasi v1.9.1 h1:DR0HlgigXhMUS01A16aJibDdLTf5oQMhh5uuwcNYP+8=
github.com/alexaandru/go-sitter-forest/rasi v1.9.1/go.mod h1:QARpMlGrUkXo4CxsHUTToRXe22Xj7gzClpC+jtV6s+o=
github.com/alexaandru/go-sitter-forest/razor v1.9.3 h1:Hw9KxZeY0KyYCo3sKft+feC8kL0ynu+//gCtT1Zn4+w=
github.com/alexaandru/go-sitter-forest/razor v1.9.3/go.mod h1:3vD6U7xhDexaYrYuIut3JdFMVcof1Dem0rvALfhDqoE=
github.com/alexaandru/go-sitter-forest/rbs v1.9.1 h1:yum6ZGGu8WTFAw892edaRIVa0F1rdzmpPIylRv95ra0=
github.com/alexaandru/go-sitter-forest/rbs v1.9.1/go.mod h1:uLvPXTez0qmlZISsmwqvEcnRc1ZRlyoTlYDPxts1nJU=
github.com/alexaandru/go-sitter-forest/rcl v1.9.1 h1:umI4GNLHmG37OWULel8LRpMKccIg3HymdQtuJg+HIKg=
github.com/alexaandru/go-sitter-forest/rcl v1.9.1/go.mod h1:pJikJwqp8kaCPqfo3FuT+n53+Tni/5AZpz8OfVzt3w0=
github.com/alexaandru/go-sitter-forest/re2c v1.9.1 h1:GhPoSO4qEyyLwfkIuFhDzd1L6twjtt2a6CFlR4KY9W8=
github.com/alexaandru/go-sitter-forest/re2c v1.9.1/go.mod h1:flhpqRBEfRh1ntOgECSrf7zkprmq05fVcwxBIJHkW7o=
github.com/alexaandru/go-sitter-forest/readline v1.9.0 h1:D86WPdVrzBsKbfbWak4cGldbYWcddtzfZyOPO3T+Ys8=
github.com/alexaandru/go-sitter-forest/readline v1.9.0/go.mod h1:BJduDE8/zCj12nfyMGAOyulJDT3DXwrESc6wWUV47MY=
github.com/alexaandru/go-sitter-forest/regex v1.9.6 h1:sbIBvSlNQ2RTKBIdSsl2X2QZXa8qqlAAyHStcLEKt0o=
github.com/alexaandru/go-sitter-forest/regex v1.9.6/go.mod h1:Qt2S2FiTP1ThgfEFuDJEw4ZG0ajtJZ8/rn/awHHgRNk=
github.com/alexaandru/go-sitter-forest/rego v1.9.0 h1:v635o0H5JhKuqWW4CtPhI/EfC1rjRLqTi2wIBq2HaCw=
github.com/alexaandru/go-sitter-forest/rego v1.9.0/go.mod h1:gC9ZTOwVFhZh3lo0QRjXMvLEX/njmE2S0+AE2FE5EiQ=
github.com/alexaandru/go-sitter-forest/requirements v1.9.1 h1:zL/0aefWb4OprzXzqT9x+/HAAxi1A8LN3wBqRSTHWZU=
github.com/alexaandru/go-sitter-forest/requirements v1.9.1/go.mod h1:qtiiF0CzJVb+5lSkU/n87lyfJrvl6Ag9ApSO1NnrPoQ=
github.com/alexaandru/go-sitter-forest/rescript v1.9.1 h1:CSQxOKVuAKmKnjev0hkz0tqV6X5E2GDxZtC2i3d2JHI=
github.com/alexaandru/go-sitter-forest/rescript v1.9.1/go.mod h1:vX3Zlf4vVE3/Yk2gvAl3TYAFEu97WzPX7BtCb5SUWnM=
github.com/alexaandru/go-sitter-forest/risor v1.9.0 h1:/8B+TclGCPKnGd4Op2ATqIt8AvJzK1+Ku0FFSBOt3EM=
github.com/alexaandru/go-sitter-forest/risor v1.9.0/go.mod h1:nBjT/vKGKovzrqtlqhKaMzqhY4w8m35AUO0Z57l/ld4=
github.com/alexaandru/go-sitter-forest/rnoweb v1.9.0 h1:dsFfP5GVtjNxw/l16MTNoO4IlxzfNaHmw+G+Ic2cc5o=
github.com/alexaandru/go-sitter-forest/rnoweb v1.9.0/go.mod h1:Cp7ZOVurZjknS1RAW86QIA39/4amjn5gg+trJAX08NA=
github.com/alexaandru/go-sitter-forest/robot v1.9.4 h1:fVYDvYn7AeMONcxnv1LrtlAbKyvELIGECRMkTXPCnnI=
github.com/alexaandru/go-sitter-forest/robot v1.9.4/go.mod h1:uHKDqWm3I50SVfJgGRjx68jZJA258Pxz7/1FBRxySyQ=
github.com/alexaandru/go-sitter-forest/robots v1.9.0 h1:k9Gvgdayl/JaKqXOMW1BD/ou0XTP2PTxLpFmzWg2bQ4=
github.com/alexaandru/go-sitter-forest/robots v1.9.0/go.mod h1:Uegspw8rwpOi5YU7/APndbFUe50NE5Pl1TIAaFORTRQ=
github.com/alexaandru/go-sitter-forest/roc v1.9.6 h1:N/KkqVjvwF1e6gj5Nz5AfM7KzFVksH8Z3F9Ab9s8yy4=
github.com/alexaandru/go-sitter-forest/roc v1.9.6/go.mod h1:8R+tDdGgMvAIy1NvMPMWBkTrBmrGIsftO6hmspSAmXA=
github.com/alexaandru/go-sitter-forest/ron v1.9.0 h1:+nycWvoM/c1HeLjt1x4hb3cgAx0d1UHC0rVKcJEjm+A=
github.com/alexaandru/go-sitter-forest/ron v1.9.0/go.mod h1:QKUaYAN+h556H7kC7VA9n4tDOMDPZYeIkfVoVobFZwg=
github.com/alexaandru/go-sitter-forest/rstml v1.9.1 h1:QVcLNHhU4ack40qwsEJJSEnA8UoqX48GDeYh3YtxRgI=
github.com/alexaandru/go-sitter-forest/rstml v1.9.1/go.mod h1:ub4a3eN8zAxNiVgVt2gHKV6tORI9h3pV3hNXPNc2P8A=
github.com/alexaandru/go-sitter-forest/rsx v1.9.0 h1:tjheu5ts1eBGt0Rl0rO3Ue+zpev4hT3ZUUQa/P3MWZA=
github.com/alexaandru/go-sitter-forest/rsx v1.9.0/go.mod h1:y+6LdEpnvXjugzAk6+fXXqC0s0B/rZzDPrus1EdMjTU=
github.com/alexaandru/go-sitter-forest/rtx v1.9.1 h1:jcSiOZHhCgX1Lpybw+kWxBRqeC4Nkq0z9h/C5MjdiU4=
github.com/alexaandru/go-sitter-forest/rtx v1.9.1/go.mod h1:VVP9rlrOhrKce0zgtFDY8r1u3z8N5Y6Kk6CrnL6qcY8=
github.com/alexaandru/go-sitter-forest/ruby v1.9.3 h1:3GdkatWtd0jXvhnxdqJCdM+9JwAQeTwtWStiDAjAgr0=
github.com/alexaandru/go-sitter-forest/ruby v1.9.3/go.mod h1:h+TaY3e2ayXHy1jgwLZ+Jnho97roJzmaefSZjFvUM9k=
github.com/alexaandru/go-sitter-forest/runescript v1.9.1 h1:EAg7ZeyBiRCQq1V8SKqbM6bzjUO1+pNg4BIN+9AdBRs=
github.com/alexaandru/go-sitter-forest/runescript v1.9.1/go.mod h1:UcnMgTo//Zy2Zw/Bs8+AzW4oqez8jyrAv+XDU4SQaq0=
github.com/alexaandru/go-sitter-forest/rust v1.9.13 h1:orVZVXQ+IkXkIvzeyO6YvHBwujEvbYFvpMRNAGulHmw=
github.com/alexaandru/go-sitter-forest/rust v1.9.13/go.mod h1:ZKZRL1Yfy6siuWMvv2h/F9lt/8kMKn6VHnGj00PPNmM=
github.com/alexaandru/go-sitter-forest/rust_with_rstml v1.9.1 h1:tHxUGOulr952Ctb8F5mRe/JwV6gBHIkQTXqb0vgn2I8=
github.com/alexaandru/go-sitter-forest/rust_with_rstml v1.9.1/go.mod h1:YYWTic0sk6110kU6WF7r1Wbu7a933qGxqseIMJQc7LU=
github.com/alexaandru/go-sitter-forest/sage v1.9.0 h1:2OLYMFoUiPcbPcsSfy6B+4UjZg4PaqktonvCS+qPrkQ=
github.com/alexaandru/go-sitter-forest/sage v1.9.0/go.mod h1:53OdfQh9OxCqCWZPvLkGQ/OFxS0RBRyQQqnNTKDFn0Q=
github.com/alexaandru/go-sitter-forest/scala v1.9.8 h1:w3HtQ4aij4PnRTBsIHITHtym8WiPGBGNL5KIJ6qIofw=
github.com/alexaandru/go-sitter-forest/scala v1.9.8/go.mod h1:+CuFWqcheV8rHtOWWDADtP7az6uSZKQ6zE0DLhg+LeY=
github.com/alexaandru/go-sitter-forest/scfg v1.9.1 h1:xNJsLi2LzFO2CR6iZcwA01secNMOhF3jZqa4zI/7/DQ=
github.com/alexaandru/go-sitter-forest/scfg v1.9.1/go.mod h1:+9RmztC0KRZPuDDOzoAorlWr7amRyHQK2pVsH1CMsKU=
github.com/alexaandru/go-sitter-forest/scheme v1.9.1 h1:Lnb19ZhnF7Rg/x7gaCMuVGSeLA/ccgUJLM+aNmJn0EE=
github.com/alexaandru/go-sitter-forest/scheme v1.9.1/go.mod h1:8zy0tUb/cBDDwletw0f+BNOTUbkSzxw/tXWCG8On+/o=
github.com/alexaandru/go-sitter-forest/scss v1.9.0 h1:pneGwflZc4D1bNCOAGxegtK1X43zHX6/GPqG/BwWc+U=
github.com/alexaandru/go-sitter-forest/scss v1.9.0/go.mod h1:W7eHAtq2sswPKPOnCSPcsd3ceXEw9UwdTDe92Hlh9o0=
github.com/alexaandru/go-sitter-forest/sdml v1.9.9 h1:e8VkjHWd+1b6Mlw/zC/5Ufh/+m9zDJ4rPDjkasSImNg=
github.com/alexaandru/go-sitter-forest/sdml v1.9.9/go.mod h1:aoaAJGd8Khe9Hb0PQQt5Hy8wn42thQQArgyFEVyIx6c=
github.com/alexaandru/go-sitter-forest/sflog v1.9.1 h1:QFphUY8epU4shulcnVToiraRFvdrExDDJnXSDUelcjQ=
github.com/alexaandru/go-sitter-forest/sflog v1.9.1/go.mod h1:oVHn37gCXm+1XikREpUTtBBjBteUV0YzWQkoGD1Cx0M=
github.com/alexaandru/go-sitter-forest/shosts v1.9.1 h1:KuBtcqqH8SoUoWpYESaFo5bUypP2WINYbS5cbS5pOWU=
github.com/alexaandru/go-sitter-forest/shosts v1.9.1/go.mod h1:lr73ofRxENvs/jxFcXosrkYB3mWUYJIV46yJ95oMYsw=
github.com/alexaandru/go-sitter-forest/simula v1.9.0 h1:8H5FVE/F98Qh7cEe6c25TqnbMVW8Y9b8VZAzHj5IZek=
github.com/alexaandru/go-sitter-forest/simula v1.9.0/go.mod h1:BmaYUsziKK3IB7Clh/QwsjRhrrCWwWPdfc2HHVcxFk0=
github.com/alexaandru/go-sitter-forest/sincere v1.9.0 h1:yjarJCkxJAdR83eKclYZDT7UHgzCaTVyhJ8jgIZFpRY=
github.com/alexaandru/go-sitter-forest/sincere v1.9.0/go.mod h1:l4O1601YV2AG563/O3mRTZcr5BvxlD1/IvmbdrsgeVk=
github.com/alexaandru/go-sitter-forest/slang v1.9.1 h1:OpNVj5U3P7lEWM9FA1eeJp/IQN1w/AeizNgNlYTeTGc=
github.com/alexaandru/go-sitter-forest/slang v1.9.1/go.mod h1:r5sABgTR+1LrKSUpBnRsHkBzZhp3tPz0klSm1dkSMpM=
github.com/alexaandru/go-sitter-forest/slim v1.9.2 h1:WPsUPNC/A+X/gPbHBqyARY5etxmr7ndjRQQp5A6r1KE=
github.com/alexaandru/go-sitter-forest/slim v1.9.2/go.mod h1:dCtQAzryNVesIfO8NodDX7GQxJJRsqBzoUEYx6h9XU8=
github.com/alexaandru/go-sitter-forest/slint v1.9.2 h1:fnW3uBcDoKMuI4MK47zASuA6sKEjkT2BZ8Nj61edMCI=
github.com/alexaandru/go-sitter-forest/slint v1.9.2/go.mod h1:7yBxk3s2Q1NF8qXfZodWEA3t76G4qDMHpZMK6kb/LHs=
github.com/alexaandru/go-sitter-forest/smali v1.9.1 h1:7YeFdbciSVxWaPzhGmuUBDsM5AMawUYC2EETbUZ7u30=
github.com/alexaandru/go-sitter-forest/smali v1.9.1/go.mod h1:AT/sFM6G1JHR8qVohi19bCCad6l8WFGX7SBXDEVWJ6k=
github.com/alexaandru/go-sitter-forest/smith v1.9.0 h1:MH6U0sCXS68bzqti7jQA7O0wnYgg98HMe6k03Lbs4Nk=
github.com/alexaandru/go-sitter-forest/smith v1.9.0/go.mod h1:mbgYYR2RIVe8r91Km1TsScj1FUv2IytuXmZC4G7DWOA=
github.com/alexaandru/go-sitter-forest/smithy v1.9.2 h1:DjolFD6Dy5DLR1v+9G9YiE0X6QjsRUt29UNBYYIFE/0=
github.com/alexaandru/go-sitter-forest/smithy v1.9.2/go.mod h1:LL66DDoowCKhHRLGjVqY5skFG5yc0fR0IBqzUS4lXek=
github.com/alexaandru/go-sitter-forest/sml v1.9.1 h1:AfFMEUzJ4H8GMbrhbjq+If3N2rB5ZRzwbLAxcepgmgY=
github.com/alexaandru/go-sitter-forest/sml v1.9.1/go.mod h1:YkgxDxmD0mWdYNS1+vlxrKysWu0jfdKu6VoIRnnfics=
github.com/alexaandru/go-sitter-forest/snakemake v1.9.2 h1:UN3h/cvtcDxqCOEUfoNR3AolmQECqXZwsGfLMpQ9on4=
github.com/alexaandru/go-sitter-forest/snakemake v1.9.2/go.mod h1:HtisJkKUhv5nxIrPy3b4gCtmcAM/Qdw4jD7cZQ5G+Xg=
github.com/alexaandru/go-sitter-forest/snl v1.9.1 h1:2boHXNhEv2FXrFjqromJShJ6K2T9IRxRRSHtLNUW+u0=
github.com/alexaandru/go-sitter-forest/snl v1.9.1/go.mod h1:DyuH2g5z2/YoaUIu4dosN1jM1ELQaHoXCQ6fH1LFf/w=
github.com/alexaandru/go-sitter-forest/sol v1.9.0 h1:S6c2scBJ4zt+CqZKcbYJfk6QYCNjRY/K6F6VMJpW8fU=
github.com/alexaandru/go-sitter-forest/sol v1.9.0/go.mod h1:rLzJeFrkzFLX/ShCeupd6Mu96EVSBC3MGkDcoeDtvwg=
github.com/alexaandru/go-sitter-forest/solidity v1.9.3 h1:fCFT0kdUD3lBftoMc5DcSQ3izC9sopQMBNZ8XIx0JtU=
github.com/alexaandru/go-sitter-forest/solidity v1.9.3/go.mod h1:xgtvbHqDS1hOYGes7viEAfi2pphvkimG6xgPFekTz0g=
github.com/alexaandru/go-sitter-forest/sop v1.9.0 h1:r92HSfcpvfODG7tdoIvkK528UMzWCZ/Jvr9ePlUPOOw=
github.com/alexaandru/go-sitter-forest/sop v1.9.0/go.mod h1:sDf2c1WjLcF7koysQZUIAfpTbU82AFrQ7gOinnWxrrQ=
github.com/alexaandru/go-sitter-forest/soql v1.9.6 h1:uuKIxJgPQeWEKk1rX8powkUjD5B7TiRpO3lyXQ8n3tA=
github.com/alexaandru/go-sitter-forest/soql v1.9.6/go.mod h1:0n7ShNbHtP65c7z+xz9aq4qMJ4TeM0f4ZA6S15t/LLI=
github.com/alexaandru/go-sitter-forest/sosl v1.9.4 h1:e/nQjZPxD4pDHraFFKQLqniATLLqH1LiFAgTv1Ixu5o=
github.com/alexaandru/go-sitter-forest/sosl v1.9.4/go.mod h1:QCwcZ0u7e8IyfQ2uIeRaGLYzUQKG+7AUwUixPXrxJTA=
github.com/alexaandru/go-sitter-forest/sourcepawn v1.9.2 h1:qfm11eaHW6zzRKZkZzyHEeUW4infON2VOSHHpzgoddE=
github.com/alexaandru/go-sitter-forest/sourcepawn v1.9.2/go.mod h1:s328AAhUWEYuQcf+taMXIcITNUDqcQZCjsjnTmxVIg4=
github.com/alexaandru/go-sitter-forest/sparql v1.9.3 h1:kArLb7mfdubQwVTdwxOiIizncTWzLWuSWdhzXzOGzC4=
github.com/alexaandru/go-sitter-forest/sparql v1.9.3/go.mod h1:C9o37n+IqwPWnyKm8gzeX31HLTBfg7CX3QwjUmsyXA0=
github.com/alexaandru/go-sitter-forest/spicy v1.9.6 h1:/tW+qZrilUcrbGpkiCrpoSLqZYpVtfRueUOhG/Pn49w=
github.com/alexaandru/go-sitter-forest/spicy v1.9.6/go.mod h1:cQeRqCvG7nqtqRm5PxX9AXqUNLeikfiAsEGirpxNLnw=
github.com/alexaandru/go-sitter-forest/sql v1.9.13 h1:uRH9eo+EztMohyVX5E+t06q/EoLsMWBVX/Qr2Nb823w=
github.com/alexaandru/go-sitter-forest/sql v1.9.13/go.mod h1:9RRdyTJk7bEGQsBhhqm/ElCh/DyqLgcglMXf/NOMbpM=
github.com/alexaandru/go-sitter-forest/sql_bigquery v1.9.1 h1:T1FTHx8kF8/UC0pb/9V+jOD3zvDEILBedkeOFiPkUzU=
github.com/alexaandru/go-sitter-forest/sql_bigquery v1.9.1/go.mod h1:GrFHfyanm9RpfrguJouyVMX2tuVBqtPblSIeYPv13Q8=
github.com/alexaandru/go-sitter-forest/sqlite v1.9.0 h1:b3VBdpmiQkBDt57VTWnl8j5p2q55HsDPn50kckLO31w=
github.com/alexaandru/go-sitter-forest/sqlite v1.9.0/go.mod h1:87CNxsnGlPJO7mGpIAXY78xR9w00MbF9aIyO3hq8RPo=
github.com/alexaandru/go-sitter-forest/squirrel v1.9.0 h1:Ydhy27E+pjr3iDUUAoRX7ek8FysNj4RyZ6Sv19WmXg0=
github.com/alexaandru/go-sitter-forest/squirrel v1.9.0/go.mod h1:iUONpQn33W8CE5KEAHyS88u9L0ePXOU29e2CokZr8R4=
github.com/alexaandru/go-sitter-forest/ssh_client_config v1.9.2 h1:LrLyjRtL/8GeNCQbcdiZh66raiTmBzc6V3+3Qm92Nkc=
github.com/alexaandru/go-sitter-forest/ssh_client_config v1.9.2/go.mod h1:mCZzU1L9cDKMh/W3l392x7n4hOHS4zPSDm0MR9yl0ts=
github.com/alexaandru/go-sitter-forest/ssh_config v1.9.2 h1:ILRKimSYlzsV8vMzxjrsIrClodmgXkxCkKGPHSHPuzU=
github.com/alexaandru/go-sitter-forest/ssh_config v1.9.2/go.mod h1:xNzp+siLoBJdYTU1wpRndcnA5RQ6BceSeRarz9wslIU=
github.com/alexaandru/go-sitter-forest/starlark v1.9.2 h1:MDKmymxCmv/DpCoWkyYhSIZGvmB39yFEhmG14FNJcvk=
github.com/alexaandru/go-sitter-forest/starlark v1.9.2/go.mod h1:IuG2s9Ol6KGOMPDeB9o2NCmQXdigM7ubyfteh2ohwkg=
github.com/alexaandru/go-sitter-forest/strace v1.9.0 h1:VUFtV/ceXxJmOiHZ3d+1spcll9RHz5lGmmmI9KpTUBw=
github.com/alexaandru/go-sitter-forest/strace v1.9.0/go.mod h1:favDlRr9lSHIiVRaYUxjcBvzsZNhSGsjCEb0c6GhkA4=
github.com/alexaandru/go-sitter-forest/streamdevice_proto v1.9.1 h1:9MGwYuQb1kNnVypj0n20xMTOG7w1Y4B+w9BQKUUpWI4=
github.com/alexaandru/go-sitter-forest/streamdevice_proto v1.9.1/go.mod h1:M5Wy1rrjJc/lUKIpPYJTSN6eCX95gT3e8qGBkR0ARNM=
github.com/alexaandru/go-sitter-forest/structurizr v1.9.2 h1:+JG/Aw9r0TNbUF8CvYlWr44LFnc2lK0iowgKopk1IjU=
github.com/alexaandru/go-sitter-forest/structurizr v1.9.2/go.mod h1:+eB4ISTUOj2f0ZLXSC8xOZeyuasbRotCFj0dMt5mbaQ=
github.com/alexaandru/go-sitter-forest/styled v1.9.1 h1:OckizH6jHLHIa+nRpNdrQ7u6OmKDyL/vUpsJxZKGsVk=
github.com/alexaandru/go-sitter-forest/styled v1.9.1/go.mod h1:6kBVr1Ii/hPiWjof6p5clfnfCo1uS3lF79AmKatM4+o=
github.com/alexaandru/go-sitter-forest/supercollider v1.9.0 h1:LZAYxPGldmLPF5IrG/Prpawmr0bdbMhaCCd0ivp3Qd0=
github.com/alexaandru/go-sitter-forest/supercollider v1.9.0/go.mod h1:oSrSo3L1WlzpN9ldVzf6GdukfzaZYOgsJRP+kX7q4Uw=
github.com/alexaandru/go-sitter-forest/superhtml v1.9.1 h1:YTnrp+RxJv2/S4R5reWGeR+fPXRLKIISEGh2zQUL+WA=
github.com/alexaandru/go-sitter-forest/superhtml v1.9.1/go.mod h1:DagPmTMm3BspppWUh3sdRevlWBmRaf3xsf/RuwNWMuw=
github.com/alexaandru/go-sitter-forest/surface v1.9.0 h1:ZUR1enD6kpjhJFIzsEY/bPLVzPWmNbagxGpEGvcGgd0=
github.com/alexaandru/go-sitter-forest/surface v1.9.0/go.mod h1:MmntvM5fu7n0NE5Z+AehCEONrRrNH0o0NNB0xUf8Zv0=
github.com/alexaandru/go-sitter-forest/surrealql v1.9.10 h1:BOJKXf6gHUSLuSP6s1VUihBUlDjeLyVio+IVG6uG3hY=
github.com/alexaandru/go-sitter-forest/surrealql v1.9.10/go.mod h1:mNGn4F1dWHleZbFOQmdndx6xOnW91YH9iCEmgSd5GvI=
github.com/alexaandru/go-sitter-forest/sus v1.9.3 h1:AB+Cf14I9pLoR5B2YLfHPiBAHsBsBiFoJ/gzTBA28s0=
github.com/alexaandru/go-sitter-forest/sus v1.9.3/go.mod h1:2PMZ+0S9Y81nBSSiN6SKTwEdjY43upVHJWDVTb6poVQ=
github.com/alexaandru/go-sitter-forest/svelte v1.9.2 h1:ixFAFy5oaPU3QU5XeR9tomoRfqxhk5XisTeBS8/0sOI=
github.com/alexaandru/go-sitter-forest/svelte v1.9.2/go.mod h1:Mfat0bA+ML4NR4cTz7eTz6ziL4KPSQSo2dX80U7GXpM=
github.com/alexaandru/go-sitter-forest/sway v1.9.1 h1:+LVFoPryZ5g7ArEMSdtRWnDZ7pikTHBz2H2v2KpD61c=
github.com/alexaandru/go-sitter-forest/sway v1.9.1/go.mod h1:IWM3dlPBFGOYRn4WD67gT3Y4X+CAHO/o8kRgEgPj8Zc=
github.com/alexaandru/go-sitter-forest/swift v1.9.5 h1:CCfvj4BRjvN7HtznqDbgU7ylHHO9ML34ezsJFbErjV0=
github.com/alexaandru/go-sitter-forest/swift v1.9.5/go.mod h1:EzSPcZpETNyJIoAyPdbQgFUxWM+vcO3y5eYh8kmNvNc=
github.com/alexaandru/go-sitter-forest/sxhkdrc v1.9.1 h1:qxO1gXY5hU3CAdOuAACaBKkWZvIEDbQJpmYJJT5kkZQ=
github.com/alexaandru/go-sitter-forest/sxhkdrc v1.9.1/go.mod h1:Fzm2EW5Uyd6lmZPnTXHgU3f8cGEm8wRMcm7go/LVFCI=
github.com/alexaandru/go-sitter-forest/syphon v1.9.1 h1:3Bn/TQBhRILSC3M2k/cfWokJeoz32M8ZxOMnYWcQF5s=
github.com/alexaandru/go-sitter-forest/syphon v1.9.1/go.mod h1:G3bS4bp8QjJMF0N4SYaTeBBLXn1BQcVLqm3ZqNFhARM=
github.com/alexaandru/go-sitter-forest/systemtap v1.9.0 h1:wZ7G7XNhCghxnKIzxExA+kKQKIFe+XRHG++F5iOzkt4=
github.com/alexaandru/go-sitter-forest/systemtap v1.9.0/go.mod h1:uBa9xxMcHV5NRP2TBpEYgqxUn3/cDuOsusThiS0eMuY=
github.com/alexaandru/go-sitter-forest/systemverilog v1.9.6 h1:Wkk5MlmgVkIZNMq7FPTarImF01SXwoWik5HgxnOGQ74=
github.com/alexaandru/go-sitter-forest/systemverilog v1.9.6/go.mod h1:G26dEGCboAdg/sHXGWES6AsF1GQ/GzbobiAp6DtXR7g=
github.com/alexaandru/go-sitter-forest/t32 v1.9.9 h1:jUcqyL615p0Vk0SW9yURGwAYlVzTSGe6LNLSGTXE9VA=
github.com/alexaandru/go-sitter-forest/t32 v1.9.9/go.mod h1:+JhRR/0bUbItVySqnjreXwRCEssXzDmFfz0rEVCBoho=
github.com/alexaandru/go-sitter-forest/tablegen v1.9.1 h1:dK7ReRCGtClEYv/FI3cSNbiw8OjdAj7MA2qrKuKzLaw=
github.com/alexaandru/go-sitter-forest/tablegen v1.9.1/go.mod h1:uJu01DiTbe2g8DPuZrSJIvcavYSA7TwuqYRSnic3XtE=
github.com/alexaandru/go-sitter-forest/tact v1.9.5 h1:azDaAlMj0mKsDYL+OJ0lZGf6T/KKirFG00mBuzhARn4=
github.com/alexaandru/go-sitter-forest/tact v1.9.5/go.mod h1:PuY+YIFr5iOPHaKORybHj8GFXvRDPbGuykvnMKkjlUY=
github.com/alexaandru/go-sitter-forest/talon v1.9.1 h1:E2DNEylFwaktZYyNFYM+vgkZavEJexx+OnKzZGxUl/o=
github.com/alexaandru/go-sitter-forest/talon v1.9.1/go.mod h1:yQnY5sFB42G5z1W30HkiQxH6eLloEpJ4tljWREJAQ6w=
github.com/alexaandru/go-sitter-forest/tcl v1.9.4 h1:y9lyhvQfM0A3oiqL5m32QEyto5vPR8PvZ85gIFuhpgA=
github.com/alexaandru/go-sitter-forest/tcl v1.9.4/go.mod h1:D5tiSBTdLDm2dEr+fzE39HgQeq9Le1+oBj3CHJraTL4=
github.com/alexaandru/go-sitter-forest/teal v1.9.3 h1:LDKxSe7R/6Enok02QDqJjdKAMHqyTUP478lISkl3HnY=
github.com/alexaandru/go-sitter-forest/teal v1.9.3/go.mod h1:eGABY7BB+O80b02usJhXLvr8Cbg/TLvFqw9/Mb9wE7A=
github.com/alexaandru/go-sitter-forest/templ v1.9.6 h1:XquTrvrdHbtLWiUe02n5KBGHC+YfvyPXOhqaWunZM2A=
github.com/alexaandru/go-sitter-forest/templ v1.9.6/go.mod h1:j316st7iQfpCwikv6oU5NPWOn1Bv30S8Pz9DsFoBnmo=
github.com/alexaandru/go-sitter-forest/tera v1.9.3 h1:9Kb/jbMYPjGHa70FRAsY/1hCMAFwup9YjzkEh1Avrd8=
github.com/alexaandru/go-sitter-forest/tera v1.9.3/go.mod h1:o7xhCq0aL3A3FVnKeJckQBYEzmz36TapFiehhYtr7i8=
github.com/alexaandru/go-sitter-forest/terra v1.9.5 h1:aSySRfu++zJUGNLsLpyMgIvH94hgVRh6hi2K/G7td9A=
github.com/alexaandru/go-sitter-forest/terra v1.9.5/go.mod h1:1at3PGC+54Cmb2V9ue0P1LVA26LaytuyhtIW/eMNr2Y=
github.com/alexaandru/go-sitter-forest/test v1.9.0 h1:Eddas0SC/xMCixI+LF8wGfg3j0vlY9KWck+tOwcFWNc=
github.com/alexaandru/go-sitter-forest/test v1.9.0/go.mod h1:B64+sqbl1NUC4EY+zSWyBZgLcFzxJskwaeYLob/V29E=
github.com/alexaandru/go-sitter-forest/textproto v1.9.0 h1:MXO5yvO3aoUpHGszcP0YPHliZqzDH324oThIQ+92yCI=
github.com/alexaandru/go-sitter-forest/textproto v1.9.0/go.mod h1:7F97yYXVQJadjfaKeE43znGxqfiF2o7V36Z5fg2FOCM=
github.com/alexaandru/go-sitter-forest/thrift v1.9.1 h1:cgEt0lDcn0jY953cXQeAQdCJlS9on10EWGbVNn5nqbg=
github.com/alexaandru/go-sitter-forest/thrift v1.9.1/go.mod h1:NSctFk+LSD8ZS+fbbQc4AbJr4WOw6W9ZgYSEQ1tlOr4=
github.com/alexaandru/go-sitter-forest/tiger v1.9.1 h1:I6zyaq2+KOT+jg8XffKyzHYWa/ch9rD7Mpbsu80LTwQ=
github.com/alexaandru/go-sitter-forest/tiger v1.9.1/go.mod h1:J9i5RejO/WT7I2OR1mdPjWb74yigv3iTEd6Bu+XBnCM=
github.com/alexaandru/go-sitter-forest/tlaplus v1.9.3 h1:A446lkn5ue2Arfl1ElYz/1L/kMTFmGmupZHbv6DazKc=
github.com/alexaandru/go-sitter-forest/tlaplus v1.9.3/go.mod h1:7gkGpWPDO60tifwQPQL5EKXVyQa+zPcw/+jgFDbNQMc=
github.com/alexaandru/go-sitter-forest/tmux v1.9.0 h1:cBoNbOKAxl1zchT3aQtWEmhBnAyr2Ni7S3x8FB6N+2M=
github.com/alexaandru/go-sitter-forest/tmux v1.9.0/go.mod h1:CIuW/UlQwxGy3t6QWQrE1y5fQlm17u4o9111+kCCEj4=
github.com/alexaandru/go-sitter-forest/tnsl v1.9.0 h1:6LNtMOHfihUN4asczKVRT/t9iOZKoF7YX8vgotgGFrI=
github.com/alexaandru/go-sitter-forest/tnsl v1.9.0/go.mod h1:CBDP5kHZ2st5r9fkVpgiCYivp8L9IwX/0hBp9EfmtuQ=
github.com/alexaandru/go-sitter-forest/todolang v1.9.0 h1:fsuZrLhg3+3r/GRubihORDSqN/p5yrk57rJRK0JfP0o=
github.com/alexaandru/go-sitter-forest/todolang v1.9.0/go.mod h1:ozDDEFMq7TN2armvKvIuWB74lLD0Z8HDv8T1nCsNqNQ=
github.com/alexaandru/go-sitter-forest/todotxt v1.9.0 h1:qKyjc97KpxeI1JBCaVm9vGvG0icFlOkl/izCNO0xcPE=
github.com/alexaandru/go-sitter-forest/todotxt v1.9.0/go.mod h1:aGGvs1VVltvx2pcKvw/PtI/dQQSraZQ46a3gopXyDds=
github.com/alexaandru/go-sitter-forest/toml v1.9.2 h1:L+v4HZwovnP1w0qQZYrzl7gK6lKAWaaqfRkN3cdg7rw=
github.com/alexaandru/go-sitter-forest/toml v1.9.2/go.mod h1:aSXzrMFEjrdby4bvRiUq6OmaD6FeEtLX+b5Y4C/vK+I=
github.com/alexaandru/go-sitter-forest/tort v1.9.0 h1:wHSls7J6EGonS46uFupTzBig+u59xpqG8cbdeEJhJFE=
github.com/alexaandru/go-sitter-forest/tort v1.9.0/go.mod h1:DohMduP+2lAE+Zal5OW/GrFN5BtWjojOP6CKh5Y30og=
github.com/alexaandru/go-sitter-forest/tsv v1.9.0 h1:A/7IGKQ/uZa6oqK6b3rPCTt8PsMOcK8xyfvmaZ7aaWE=
github.com/alexaandru/go-sitter-forest/tsv v1.9.0/go.mod h1:KLMW+IVWlrl/qazou8UUcjmI+6JTY39OHn9DHXntEYY=
github.com/alexaandru/go-sitter-forest/tsx v1.9.2 h1:R6CIvxcs6zGF/nwI7YbHzRM1HuRjL1g7nKYfDMR7ANE=
github.com/alexaandru/go-sitter-forest/tsx v1.9.2/go.mod h1:JIGhuMRPOeeUQbqrNiDh3YZV9iMtWTHUmTgSH8WMTIk=
github.com/alexaandru/go-sitter-forest/tup v1.9.1 h1:4nBPr3rhXRxznWuphvz62poEu/1tZtBwc58QNppL0L0=
github.com/alexaandru/go-sitter-forest/tup v1.9.1/go.mod h1:4VKst71bmqxYfyjisAFS5K+kZQYyWDjMf8R/3r+8bkM=
github.com/alexaandru/go-sitter-forest/turtle v1.9.0 h1:eWGhoh7bfFGAkxduJK2VRGDmGcq0CU3xe3PnpCi0JQ4=
github.com/alexaandru/go-sitter-forest/turtle v1.9.0/go.mod h1:LZp/neJX07SNfI9boHlSoYY+49auNdgTKW3hVOnjXic=
github.com/alexaandru/go-sitter-forest/twig v1.9.0 h1:bpe93PWhhKY2mFAWc1AdXWNwpjsQQwSg3JnFZCJ41Pc=
github.com/alexaandru/go-sitter-forest/twig v1.9.0/go.mod h1:areyx7A8qrc8FKLT5Bhvi2C/QvXax2iOO08WD857tU4=
github.com/alexaandru/go-sitter-forest/twolc v1.9.1 h1:TX1gscJyoff+z57wEkyZx1ks6/ugdVkvgH2yT696YXs=
github.com/alexaandru/go-sitter-forest/twolc v1.9.1/go.mod h1:LAX8Kb02W2F1F6ax/iGt9sUGWnb4HGX5uCdF9YtJa84=
github.com/alexaandru/go-sitter-forest/typescript v1.9.4 h1:k+zE1JbmcDjgqPxO0fVnCnsCFj0yWmRaLpp2sbC4MoA=
github.com/alexaandru/go-sitter-forest/typescript v1.9.4/go.mod h1:fzlkFeml5odd1gUkYOgiNXK4bF2M6hBcfTitiJPlso8=
github.com/alexaandru/go-sitter-forest/typespec v1.9.6 h1:WT/KTky/q4VbY8wzsDlUG2ax9cBR29joDxhPBNh19nM=
github.com/alexaandru/go-sitter-forest/typespec v1.9.6/go.mod h1:GNYFwkYBKWtvmTSrdh0G1H+gBS5SOVe/ttZPKWTjmT4=
github.com/alexaandru/go-sitter-forest/typoscript v1.9.1 h1:Ymxunn7kVbLpheHrjhtXWq6EnE7AjI4OHUuP0Jo3EAQ=
github.com/alexaandru/go-sitter-forest/typoscript v1.9.1/go.mod h1:NWWCP2GVRrKYDfljSFHAP03UvwwHpnk/MzrTkrSLeow=
github.com/alexaandru/go-sitter-forest/typst v1.9.7 h1:EeH+ForfzsSkMKWLgU9ZJV86PxxggpR3g+4qv7HAZzs=
github.com/alexaandru/go-sitter-forest/typst v1.9.7/go.mod h1:1I119aKYzWqMrN1flF/TxIyHHn5zlXM++JRDtKDdL+g=
github.com/alexaandru/go-sitter-forest/udev v1.9.1 h1:wzauoKPCGFcJQN4ig4cZZZpUqLKKI0lVmMDBkeAjT1Q=
github.com/alexaandru/go-sitter-forest/udev v1.9.1/go.mod h1:eByrVxT98qLpMJFdwAh2tl1A1wRKI/hE/mmkyZ94BAg=
github.com/alexaandru/go-sitter-forest/uiua v1.9.5 h1:jw6YK8CGB15YW6CCSCvtBPfGdCLx9upNA9DVHkjrDVg=
github.com/alexaandru/go-sitter-forest/uiua v1.9.5/go.mod h1:53LsmWBunICKvxNgtvEouEMox9DKQz6Ae+Gmcp1eyjo=
github.com/alexaandru/go-sitter-forest/ungrammar v1.9.0 h1:nXm4tYKiFXuqVpYXxXH8NJWawDGqZYZ/444C83S5rJQ=
github.com/alexaandru/go-sitter-forest/ungrammar v1.9.0/go.mod h1:ytWytwEu/UNweFlcVBMHiUiODKU6Yh2vDisQyex3OdM=
github.com/alexaandru/go-sitter-forest/unison v1.9.4 h1:GXVCS5gNeM3R4/h7nKmZfZu81YQ8xkqxUAGW8Mw6Zsg=
github.com/alexaandru/go-sitter-forest/unison v1.9.4/go.mod h1:r0gdXAgmRpr6QalmXfNoUzbmSuogTt8RUnjaUQnI/KQ=
github.com/alexaandru/go-sitter-forest/ursa v1.9.0 h1:0KCQlnwaSrDEm9dZ6Is5c+tKXzbUaUdoupohNpXQTV0=
github.com/alexaandru/go-sitter-forest/ursa v1.9.0/go.mod h1:F19kiEtVwk67P7UZAAAmeTZ5hQ22n8R4OO5h8KuYwSs=
github.com/alexaandru/go-sitter-forest/usd v1.9.0 h1:Yb7skvHXmkCo+oryciQ7L4/htCYyPpRIJIHaSDa48oM=
github.com/alexaandru/go-sitter-forest/usd v1.9.0/go.mod h1:7CPPAXirs7jmyhz+WlgRnWXptPjSKK1ywofIIaIrl7c=
github.com/alexaandru/go-sitter-forest/uxntal v1.9.0 h1:wNge30KgaNDvXHXbaf6CgbeaLY/Srk12VetPuOIgPPw=
github.com/alexaandru/go-sitter-forest/uxntal v1.9.0/go.mod h1:lNFW3iewjguGDRe0IGOQDhY1GzYqHbFDgUdBg4q8n6Y=
github.com/alexaandru/go-sitter-forest/v v1.9.2 h1:HAHOZeNUEax+/PO39gVW7yOvljNj1upJUG2GIZMVUM8=
github.com/alexaandru/go-sitter-forest/v v1.9.2/go.mod h1:pRLJni09v5Y+m1BrTNppvC2hFWBa/TvOgxGfOQqfIVk=
github.com/alexaandru/go-sitter-forest/vala v1.9.0 h1:Uewtd18VAh97+CuaiaTetSTzwC6ASxCHuimdolF96TY=
github.com/alexaandru/go-sitter-forest/vala v1.9.0/go.mod h1:EI/NoiKqbWjcMSNgJwzbEQGRLvwOIcTrrpKJCIAIYb8=
github.com/alexaandru/go-sitter-forest/vento v1.9.1 h1:JGs6DExAZyVvuuZAbewLtXNZkrnVfnW4ZZOsl6MaQFI=
github.com/alexaandru/go-sitter-forest/vento v1.9.1/go.mod h1:44l2Xibo4h+iIuQrFqfYxNJPnIoZ8auUUMaLSFvbXA8=
github.com/alexaandru/go-sitter-forest/verilog v1.9.5 h1:LtTtRBc4qwHvdF0rONsKtf1z+glnJxhSIaidL6+xVvM=
github.com/alexaandru/go-sitter-forest/verilog v1.9.5/go.mod h1:mh86eQsXVsMrg+NBMqs12OuqbTR9Jcv+MrcSGQjiM7Y=
github.com/alexaandru/go-sitter-forest/vhdl v1.9.5 h1:jNuyQu3jMXYipTelL2nisEo/QQFC3oGJmgmlAF9i5kg=
github.com/alexaandru/go-sitter-forest/vhdl v1.9.5/go.mod h1:Ema4ALWWoAm0lhcAwEaEJcCExtZlZrB48uIdNBkEbkg=
github.com/alexaandru/go-sitter-forest/vhs v1.9.3 h1:pIIrglyLFEhbn9VmBnHnW9tJ5818R6lY8PkC3aYVMds=
github.com/alexaandru/go-sitter-forest/vhs v1.9.3/go.mod h1:I4xKTEV7L3Yz+ElBoOm3G0aYglmrDH/fJh5g542hUH4=
github.com/alexaandru/go-sitter-forest/vim v1.9.4 h1:yo4rvvfqT2FuJGoFUnjm1cdDg/kE3uWWARZvU5d/A/s=
github.com/alexaandru/go-sitter-forest/vim v1.9.4/go.mod h1:CtwFGF5sDo2VFJHVfx4RUc/X0eMSOOYCt830BFxlebs=
github.com/alexaandru/go-sitter-forest/vimdoc v1.9.2 h1:0/06jNLrGZTbj7IR7WoyoxxZR/pZ6rwuvzcJpsWHJyE=
github.com/alexaandru/go-sitter-forest/vimdoc v1.9.2/go.mod h1:HKbQYGQ3kHncNbOh3rLhRSBqVEps9fh8muhF0Avcp7c=
github.com/alexaandru/go-sitter-forest/virdant v1.9.0 h1:EMHM3wHKalXPblICar2vYbYuXTaUsTnJ/OGbd721IHI=
github.com/alexaandru/go-sitter-forest/virdant v1.9.0/go.mod h1:frtC8ubmPVaLcxUjLf777l8o1qJQF1zy+bk3G8rQFQs=
github.com/alexaandru/go-sitter-forest/virgil v1.9.0 h1:KrbYWyEiUAwQSWaJIoBspvPK8lH90LUSFMQEGBAhY6k=
github.com/alexaandru/go-sitter-forest/virgil v1.9.0/go.mod h1:zkveT5jCx+b5TMiqZpond4NYdodSWPaQz+fvIZ+8KIA=
github.com/alexaandru/go-sitter-forest/vrl v1.9.0 h1:XnC60L557Wh2W6yHrR7KXo7cXzxWtaYMpVMg5tpijeE=
github.com/alexaandru/go-sitter-forest/vrl v1.9.0/go.mod h1:ha7QOKXiFytAvkCDo1NJeR7Q2u00HxdFgx51FILB2Vo=
github.com/alexaandru/go-sitter-forest/vue v1.9.0 h1:BPoawE95QEfIqnPlGzYdShq65MHgCgmL8an41pGrkPE=
github.com/alexaandru/go-sitter-forest/vue v1.9.0/go.mod h1:xSLP7im6TAV8+4jpgnIczNmmC5RzvI0EG9l5Scl4qsQ=
github.com/alexaandru/go-sitter-forest/walnut v1.9.0 h1:VcItpWQ3fBIFfENEBiCv9A0Gokfjqjgn2xLwzZG2i2A=
github.com/alexaandru/go-sitter-forest/walnut v1.9.0/go.mod h1:v339f79MVCui7jlm+jxK5+RTa4RKOB6ZpBB3xrWI8ro=
github.com/alexaandru/go-sitter-forest/wbproto v1.9.0 h1:D3MiePfI5FvZTOjB2+yfvhVcPPjJk4V6MvXP5FOFH1g=
github.com/alexaandru/go-sitter-forest/wbproto v1.9.0/go.mod h1:+Lgs01SgeNh2NrN56UG5/T84u5A2irchlvt3sRYcMcQ=
github.com/alexaandru/go-sitter-forest/wgsl v1.9.1 h1:CggXTfHW3VCg/PdTgopnCJhkjoIQ/99cS3rsSRoomc0=
github.com/alexaandru/go-sitter-forest/wgsl v1.9.1/go.mod h1:9xhfVAtRp9UlDfRKTQUQt3H1qHTebIuzRJ3K9ZCij3A=
github.com/alexaandru/go-sitter-forest/wgsl_bevy v1.9.0 h1:JMeQjDgiDPE+E3KoYfDM1hs0WrG2nBHh4lFqguQZteM=
github.com/alexaandru/go-sitter-forest/wgsl_bevy v1.9.0/go.mod h1:zM3nhujHxxdlfQEiem7Qvg4ze+o1C1jw6h22nxI9zDE=
github.com/alexaandru/go-sitter-forest/wing v1.9.1 h1:L++xTKC50G+rvI+Yuu+XeuMJ7UqXgW/H2/X34WMC2xM=
github.com/alexaandru/go-sitter-forest/wing v1.9.1/go.mod h1:/cYfhLvuxiccG4aVu8Vr3h/NNXhcOSmSp/C5F0YN6S4=
github.com/alexaandru/go-sitter-forest/wit v1.9.4 h1:bnPMXiMNb7fapDb3OOGWlObXyX5G++iGMgzSfyDksw0=
github.com/alexaandru/go-sitter-forest/wit v1.9.4/go.mod h1:hawfo/L9n7qdFvL5TEpS3yQm9ToDsqvhunUzPPSjZdk=
github.com/alexaandru/go-sitter-forest/woml v1.9.0 h1:g4EoPidpyOT+rjlTknRFJEBl/80775xYT+xmdn832i0=
github.com/alexaandru/go-sitter-forest/woml v1.9.0/go.mod h1:2Fn/lK3Zb066UA/K2p8TBjPbHUqK+aeswNIU0+4jFYE=
github.com/alexaandru/go-sitter-forest/wtf v1.9.3 h1:GeUQViIjwPXgev8Xz+ZPB/MptV+ZE+RWsAnTW7+5b6A=
github.com/alexaandru/go-sitter-forest/wtf v1.9.3/go.mod h1:9quVp8UPfKVpTW/Je9neRMWFEyp7Fo9xUtpDADajWYI=