~remexre/#1306952

failed

63531dfNathan Ringo

Move exn handler outwards.

Owner
~remexre
Created
a month ago
Updated
a month ago
Build manifest
view manifest »

Tasks

view log »
cachix-setup view log »
build-website view log »
deploy-website view log »
bootstrap view log »
go to bottom »
go to top »
setup


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
This is a big file! Only the last 128KiB is shown. Click here to download the full log.

  /nix/store/yagr2c5z16n1lk4js4ccmnmj29hrrq09-bitvec-1.1.5.0-doc
  /nix/store/s0h500n6qwngdbcrykzrmrsyk906vsjv-blaze-builder-0.4.2.3
  /nix/store/4alld5lkiaa5n766603g31qn8wilmx3v-blaze-builder-0.4.2.3-doc
  /nix/store/fw82dchpabz04nia3g9an2ad3ns1p6wj-blaze-html-0.9.2.0
  /nix/store/rmk9rnrr3gkmj64f0q7j6k1ci4yx0s9r-blaze-html-0.9.2.0-doc
  /nix/store/q7xcnly25dhsbqgvqhbf35b4bzk7d93q-blaze-markup-0.8.3.0
  /nix/store/dmk2h1jvrjd7kgc8ivplbvdhkw6lvfyl-blaze-markup-0.8.3.0-doc
  /nix/store/jbyxjhh89vfr2s405iw1rd6bm3cxlg41-boehm-gc-8.2.6-dev
  /nix/store/njw3ph2amcyf5xnwsn4q4n6fcvanl4r1-boost-1.81.0
  /nix/store/b3a0wh9v9md9kc4qdixsbwjy3799077r-boost-1.81.0-dev
  /nix/store/k0sh958yvyq3c6lzp739q5m4wvfr875s-boring-0.2.2
  /nix/store/vq43g5n01n7xxvpvgc1yfm395rbll26y-boring-0.2.2-doc
  /nix/store/b6cqv0sqbdbrhgnbaanakjlsw093hp2d-brotli-1.1.0
  /nix/store/dvq6bap6fi85whpsx363kcwr7p70q94r-brotli-1.1.0-dev
  /nix/store/x3bxg3kb7w4c6k7gmy2zbhh0jhsx5l9w-byteorder-1.0.4
  /nix/store/fpkcazlv4fj2fifmfq2sm6xwgd3kd1k7-byteorder-1.0.4-doc
  /nix/store/wqqy88q5b0a7dz84nqikjaj04iyrhwz1-bytestring-builder-0.10.8.2.0
  /nix/store/3kq4gkvj3kd07k3dsz5kcxfnfbgz3k9a-bzip2-1.0.8-dev
  /nix/store/zgslkx3q1idv8n2bnzzz5fsfnlwsrbaw-c-ares-1.27.0
  /nix/store/ylfm9z3khylwp7xrgpk3132sp3ldrjai-c-ares-1.27.0-dev
  /nix/store/zp04ghlpq4qnndqy1y1yrp6gmz9s5vm8-cachix-1.7.4
  /nix/store/d1xx41xdph2jhwj8wlwqdxzc8xzchf63-cachix-1.7.4-bin
  /nix/store/ccig54kd0p8fl8lxpydwks7675i941lf-cachix-1.7.4-doc
  /nix/store/cmbq8md70f37wxnkl6kwyxxw196m5nmn-cachix-api-1.7.4
  /nix/store/a7ixa5rask7mwcp37cqbmazjvrd0zf18-cachix-api-1.7.4-doc
  /nix/store/2daixynd2d4qsi87l1z16jkq88l74nbl-call-stack-0.4.0
  /nix/store/y8xys8vr5lj4ric7y80088j0f34yzzf8-call-stack-0.4.0-doc
  /nix/store/rckv90mifqgpdzk36hvxzhk4kkn4wh94-case-insensitive-1.2.1.0
  /nix/store/4ky8kz1nkpv1hjn916bg40lvc7iy3zs9-case-insensitive-1.2.1.0-doc
  /nix/store/mylp5qsy2vb509ny1gq9ncqrg743c99m-cborg-0.2.10.0
  /nix/store/rv0i9jbik8qc6ybf6f1cspvlba53c7xf-cborg-0.2.10.0-doc
  /nix/store/kxh1pfw45a5wrby6xbifbfr4kijw2jhc-cborg-json-0.2.6.0
  /nix/store/faa609gdxfg0qi7l932p837wnv8ccr5l-cborg-json-0.2.6.0-doc
  /nix/store/67w9k2i9yidxgs83s924qf17bmhcv1xa-cereal-0.5.8.3
  /nix/store/dqy9pn62xl6x0cgvkxiljp07rhz9g93f-cereal-0.5.8.3-doc
  /nix/store/sz5ixq6x26v8850k9sra7vv2jrwp09z8-cereal-conduit-0.8.0
  /nix/store/6hfwp9bb1cip6d5q9kw00v4wmg70asw8-cereal-conduit-0.8.0-doc
  /nix/store/bl0vqpi7yx301nyzriqbvr4k3bsvq3b0-charset-0.3.10
  /nix/store/kqf1n5g3i9vp5r56pr0vfihmvcmkd9xq-charset-0.3.10-doc
  /nix/store/hpnyd4c8zba6j6inbbcpgin5n5d9m77x-clock-0.8.4
  /nix/store/sb7xim0malp9pq9kb8zxjq8p5mgz3xa4-clock-0.8.4-doc
  /nix/store/vbpm0kwczvj3p26zpzwmlxl6w4192dki-cmdargs-0.10.22
  /nix/store/j1d3nlrq5kzh5lddzfgln9f6gkyk9h1b-cmdargs-0.10.22-doc
  /nix/store/w0fqq5ghcazflb0vy1pj4cdh8p9v9c5l-colour-2.3.6
  /nix/store/1hqp9v0mc8wlzw3b69a4c62v7vsk3dzk-colour-2.3.6-data
  /nix/store/55f5yqk9i87s1xhi9icin4p0awj6bqbr-colour-2.3.6-doc
  /nix/store/djz58765fhayvbyascmbs6if91kk27n4-comonad-5.0.8
  /nix/store/yd20fxabca3kg322k108zy824xl461bi-comonad-5.0.8-doc
  /nix/store/lpjpk60dknjw5d061jpr09nixmgh393d-concise-0.1.0.1
  /nix/store/c4s56bayrbfn66kiyzbq5z2a3nnji21p-concise-0.1.0.1-doc
  /nix/store/hg1aisn2gzgr4ladyb541anl5nb14fmc-concurrent-extra-0.7.0.12
  /nix/store/3210m5m3n9praizhraqa9brcap142dhm-concurrent-extra-0.7.0.12-doc
  /nix/store/lqycf03kgi1614fmi1ygwwczgwxvnk8j-concurrent-output-1.10.21
  /nix/store/5mcnzvb64bxxrl28gifw52y36gcykz5h-concurrent-output-1.10.21-doc
  /nix/store/gmk65gvg514ay0jxa5nxkwracmxg65c2-conduit-1.3.5
  /nix/store/1gfiygx9p2wyl34aajcc141895xha653-conduit-1.3.5-doc
  /nix/store/vbx3ixb4q8xh1nbvh0ky773q21wg4hwn-conduit-concurrent-map-0.1.3
  /nix/store/fznhgvqjinn4d72y945qf41ynsn6nbaz-conduit-concurrent-map-0.1.3-doc
  /nix/store/qbmy8xmg31h7a6yzpp43gc269c6p4vs1-conduit-extra-1.3.6
  /nix/store/g1dgzxd6yfjxbfmn04crmwivhi7s2gw5-conduit-extra-1.3.6-doc
  /nix/store/ipq42i75v0r0ix35r52phb2qcc3sdmdq-conduit-zstd-0.0.2.0
  /nix/store/i6431rldsxlz612i6fp99927j5ysjkph-conduit-zstd-0.0.2.0-doc
  /nix/store/bzlywx40d1dpjn28bgw0s0v19vy5i7j5-constraints-0.14.2
  /nix/store/9w0ds2shn4h89bijgd93lsi7drnq13fb-constraints-0.14.2-doc
  /nix/store/9m1w0bgbn2521vpzwdj2zdzllzb7dcqf-contravariant-1.5.5
  /nix/store/s44l4xm3a0kah0vrbx256jg5iglq1z2h-contravariant-1.5.5-doc
  /nix/store/86drmrffzvk7qhi1vgkvx7sbdrjra7s2-cookie-0.4.6
  /nix/store/mnkx194v95by1bwkmsb26vylv50zv0xn-cookie-0.4.6-doc
  /nix/store/b7l7flsc8kamavqnfg9ya2fhjv85z7w3-cryptohash-md5-0.11.101.0
  /nix/store/6mgalrh68gcd1w1s527j2zxzqkqblpav-cryptohash-md5-0.11.101.0-doc
  /nix/store/wv3jfbwalrx7am8bv3d69fdg7542bfqx-cryptohash-sha1-0.11.101.0
  /nix/store/g3krqw166c6inb8yrbnfmly4ps6gax6c-cryptohash-sha1-0.11.101.0-doc
  /nix/store/cn9cp5mbqssg15qz6zq89dk1wkdwr33q-cryptohash-sha256-0.11.102.1
  /nix/store/jiciklmj0znjfhidz1q4dqcxxrdpcg4n-cryptohash-sha256-0.11.102.1-doc
  /nix/store/924q43nz386nynvvv5nj6x88nl8h7iwn-crypton-0.34
  /nix/store/gklffgrsglzz4afkmdzv44slvfkivvs6-crypton-0.34-doc
  /nix/store/3ap76sfhsgr6sk710l15pjsyvyfvfgbw-crypton-connection-0.3.2
  /nix/store/4lvxl8anjclcwvxyj5g9k8pp46rdry7i-crypton-connection-0.3.2-doc
  /nix/store/hp6paxp8kp8mnjyicxa87m722012faxb-crypton-x509-1.7.7
  /nix/store/1iv2jaqghhmzpdfm0l256zr1fwgz4nvj-crypton-x509-1.7.7-doc
  /nix/store/5avhlk880jk0qmqp0bsbyxqvdir8x23q-crypton-x509-store-1.6.9
  /nix/store/8xv837y3sw8y6y3m4z3asvhgxxg0j7c4-crypton-x509-store-1.6.9-doc
  /nix/store/hajbpmwvvysw4gkpwyn57yw0fy0a2hh3-crypton-x509-system-1.6.7
  /nix/store/8wa0qcmjbv8sinyqsl07543kwfd0343z-crypton-x509-system-1.6.7-doc
  /nix/store/wm1nz4aabz6ir51nl66sl8p3mwgnvzpj-crypton-x509-validation-1.6.12
  /nix/store/i9dhzxcqy23m8xz7rg84w04f412lb39b-crypton-x509-validation-1.6.12-doc
  /nix/store/c412d59kjpnn22184kp1x39saxcjy1mk-cryptonite-0.30
  /nix/store/9mf18vwj4fx53y4bc7f6m64akw6rb4n6-cryptonite-0.30-doc
  /nix/store/wsv4nk804b2gwglgzvgwp8h4xqjk23xh-curl-8.9.0-dev
  /nix/store/g4q7pqk4kxasz8xg1xn2yhq3r6ii1ybl-data-default-0.7.1.1
  /nix/store/1ml2525z5dwvbyjfg2zz4l2x1sii8xvz-data-default-0.7.1.1-doc
  /nix/store/y2ma6a8v41zfyx8j2am88xdfn616wacy-data-default-class-0.1.2.0
  /nix/store/1zn0n0c1ji3iiwchsyff2h7jqjnjcqa8-data-default-class-0.1.2.0-doc
  /nix/store/jbajcpxzcf78fn8c829hsypsrvpzj914-data-default-instances-containers-0.0.1
  /nix/store/0i9kfffx87vm4155lvih8az964zhlk87-data-default-instances-containers-0.0.1-doc
  /nix/store/hn8ph116b10rn0vx08zjdhplhanyzqhb-data-default-instances-dlist-0.0.1
  /nix/store/8g62mdh53df96df8z7f3qz98v2bxi548-data-default-instances-dlist-0.0.1-doc
  /nix/store/wfb40mr61wy9s41sl0h5vagz1ydc6n65-data-default-instances-old-locale-0.0.1
  /nix/store/xvx96jkdbhc7vm8aa69ki2j88fpqg2yf-data-default-instances-old-locale-0.0.1-doc
  /nix/store/1bpannvrb091b7736s6kmnfkvx957rx3-data-fix-0.3.4
  /nix/store/acy58myv2xd50icw3bacjbqmhwfz9vh0-data-fix-0.3.4-doc
  /nix/store/6qv2iklni3nh1p1c1vk4c43m477lrimy-db-4.8.30-bin
  /nix/store/vffvixv63zplxxb2ghxbp1xw54ipkxr6-db-4.8.30-dev
  /nix/store/4q7y97244d84s79x131j541zij8ag95k-db-5.3.28-bin
  /nix/store/hvkwilwmlz7gckmvwd0j1g0yhywj0gik-db-5.3.28-dev
  /nix/store/nb5x8g9mrn64xbb9qh78kf146469xpyw-dec-0.0.6
  /nix/store/1rbfk69h04lzgaj3gr1a82ndkp0y17xp-dec-0.0.6-doc
  /nix/store/w39ypzmf63yx4ldkzq5fad3g494x1rqx-deriving-aeson-0.2.9
  /nix/store/6ab5r14d46rw6pz1myn2b5a4blmh5v79-deriving-aeson-0.2.9-doc
  /nix/store/dvb4q9p26dcw6rp5hd2bj9mrx3gnyvbm-dhall-1.42.1
  /nix/store/bjm4klxddclh317nnhs6rryli4wh70ab-dhall-1.42.1-data
  /nix/store/5gqhw7wqahfblrdhpz14nrbhznm2f0kw-dhall-1.42.1-doc
  /nix/store/yk9bpr9pvsnb21bn87ddcvdsvrfsxim6-distributive-0.6.2.1
  /nix/store/8bz5pfnv891h2dd65vknndy1z2ak5xm4-distributive-0.6.2.1-doc
  /nix/store/26jbsj0x211dq010ifx905s02vj8hy85-dlist-1.0
  /nix/store/xihpv6h79c7i4j7b710yx6k08wac6v2a-dlist-1.0-doc
  /nix/store/a9lkjzcka3kmjnfnv0vr0p0xwanxaj7m-dotgen-0.4.3
  /nix/store/mv6pms04zzb08gyzw2g108fkv6ax48v7-dotgen-0.4.3-doc
  /nix/store/s32xdpcnsis18n3ym03v3mvml74m3z4c-e2fsprogs-1.47.1-dev
  /nix/store/avikdvwkfaxb3qxhyrs1wb3j05bhzl5i-ed25519-0.0.5.0
  /nix/store/8pz0kj7gvzmpsx8ymwx719khana0k853-ed25519-0.0.5.0-doc
  /nix/store/pckn554zikxp3qmn12w5a9yzwnqa6806-editline-1.17.1-dev
  /nix/store/0ki5hga7r8ya998vzgnzjr852gvy82g0-either-5.0.2
  /nix/store/29ffwzmi83vn2a6n5mxs509x89svfz0h-either-5.0.2-doc
  /nix/store/vifks3qy9vgvx3kpnz10xbskz31k41vv-elfutils-0.191-bin
  /nix/store/zgcijq4lhbxwrf583qq0yjy5kb0b7kh4-elfutils-0.191-dev
  /nix/store/dg5nkwl5lbbf3sw5ms078arid787cv26-entropy-0.4.1.10
  /nix/store/jckpd9qnj6jm3p44ll9kzakpipr0halq-entropy-0.4.1.10-doc
  /nix/store/3g8lcpg34g09ir7w14q4yny8kda9f80x-execline-2.9.6.0
  /nix/store/6ggphp98nxmkjwh7m7rqf5qjv88rqph4-execline-2.9.6.0-bin
  /nix/store/zxabn81fw36a0vszfgara9zcxp070cz3-execline-2.9.6.0-dev
  /nix/store/6r0lmmn2j4yd6sl3sphmnyndvzjry7mi-execline-2.9.6.0-doc
  /nix/store/cnwjpvh6x2l5w1nm93b2msjbh181mmir-execline-2.9.6.0-lib
  /nix/store/pk3kwnl3rynrfh91g2bxsz976k1qzpqm-execline-2.9.6.0-man
  /nix/store/li578wlcf3lsb64cn05jqbk8k50qv1lg-expand-response-params
  /nix/store/ixmq7vqi2x6ik25wgpf1bsw8xa4cy40s-expat-2.6.2-dev
  /nix/store/957gp70lqw707q5ygw9s0i4f5rbrm2ph-extra-1.7.16
  /nix/store/c9lhhsmbpmyqjfbwandxbjqhbrih0fhj-extra-1.7.16-doc
  /nix/store/lgf1mgb98032c5j8989f0sjnq271r0bl-find-xml-catalogs-hook
  /nix/store/aa4spahd0c3fgh7hpna7qxkmjc9f95jf-free-5.2
  /nix/store/ciwrybn2j97ffqvflqbyxwr27lgx5w89-free-5.2-doc
  /nix/store/nzcjdsakkmczp80xn882zhdmfpi8hlsw-fsnotify-0.4.1.0
  /nix/store/aa73hqwbry1jy2igvmlkbmnnyy4g25qg-fsnotify-0.4.1.0-doc
  /nix/store/wl7xs26116sswgw18pnc3yw9r5gxr6hx-gcc-13.3.0
  /nix/store/lbk30k56awz9vz9qpid93fkjns0xwlhd-gcc-wrapper-13.3.0
  /nix/store/98bnrzi673c7f73xxgwcyg0c02lsns4m-gdbm-1.24
  /nix/store/hfy9kslwyasc5ddmbg95g80pkp38bpwc-gdbm-1.24-dev
  /nix/store/hpwk6mfmi6jj03nach48b1rvvnmzi1dz-generic-lens-2.2.2.0
  /nix/store/m11x1sfmlzcmrxc2albiwc0jvvsqh0d2-generic-lens-2.2.2.0-doc
  /nix/store/gqpaqs5cr0gmai006lz77626dlzlgynl-generic-lens-core-2.2.1.0
  /nix/store/fkldb1k001x6rif87893fnpg538v93g8-generic-lens-core-2.2.1.0-doc
  /nix/store/rxc2apjnyz6hv449a235gci73bd93svs-generically-0.1.1
  /nix/store/35068x4x43mbv07lifm8mc2rccf7wv17-generically-0.1.1-doc
  /nix/store/sjff5sr3hk3383dpwji3r84vb58gljwr-generics-sop-0.5.1.3
  /nix/store/maqgbd3xlh74mq6a7xa48fqn998gqrlw-generics-sop-0.5.1.3-doc
  /nix/store/ml4f5hpdg09gflry8icryqcb0v99y9d2-ghc-9.6.6
  /nix/store/cvrnxqcpq6fs4kja0qjh1av96bkny66m-ghc-9.6.6-doc
  /nix/store/nv84272fps7vc62w42c55hw6cyy9qh3h-glibc-2.39-52-dev
  /nix/store/nzjb1h7bn9nyzrvlha39pi3nm4ki0sa2-glibc-iconv-2.39
  /nix/store/i9hpg4ipbwcw2dpiy0wp3r271bjzc3sx-gmp-6.3.0
  /nix/store/sbnl7czw26wh9i602mydakyy5ng5x3mr-gmp-with-cxx-6.3.0-dev
  /nix/store/vvr8a35swqsj51ja840df17g0kg4r2aj-gmp-with-cxx-6.3.0-dev
  /nix/store/f490b8k0p3lbg4y1wbv09455gbi7nils-gtest-1.14.0-dev
  /nix/store/zxvxjzbv84g3wjjyvcrf8cgny76qdvyl-half-0.3.1
  /nix/store/llys7fw8blg8psfwmd44h9s7dwha3q69-half-0.3.1-doc
  /nix/store/jvhhpbbwq5fxgkzzidx9nd9p7mvwkbsv-hashable-1.4.4.0
  /nix/store/538dd7xk2nw3kqpg2cyn6zbzz11gb9xy-hashable-1.4.4.0-doc
  /nix/store/xr5dhzgcc5q7qrvs1gjaq4syg4rmpnsi-haskell-lexer-1.1.1
  /nix/store/7ayq0g2mbh9s5ma616bic0c288dvfy5a-haskell-lexer-1.1.1-doc
  /nix/store/6a4c8lfy26hy6lzrvr6j0ly8x81s2l0n-haskell-src-exts-1.23.1
  /nix/store/r9qy0hrs87xfhzyjj9g002y1dar2nqy5-haskell-src-exts-1.23.1-doc
  /nix/store/znslia8wd2h8623sm622alxix85x5j69-haskell-src-meta-0.8.14
  /nix/store/h9dr88hhw9ljc2xqqv54j097lpmffrp7-haskell-src-meta-0.8.14-doc
  /nix/store/7m4hfxa5kmjp5l8phznc1xmdbscrm3lm-hercules-ci-cnix-store-0.3.6.0
  /nix/store/zm3zqp41rjwi8kdh086dv8bckyjhr3k6-hercules-ci-cnix-store-0.3.6.0-doc
  /nix/store/splhaa3q9bikpxhw8sjfz380raszy52f-here-1.2.14
  /nix/store/bi88pvgv017cf4jn88bgdbivgyvh6h9m-here-1.2.14-doc
  /nix/store/zrhagw56asxvmzg8x3agwz108i5mg2yq-hinotify-0.4.1
  /nix/store/c83qjvdics78isy7nffi1p889jci47yc-hinotify-0.4.1-doc
  /nix/store/y4bf2h01nd4j4qq9hnqjlhbmwz3dzks6-hnix-store-core-0.7.0.0
  /nix/store/j3pijq95sf0g3yb9sarppr5x81kwsvyl-hnix-store-core-0.7.0.0-doc
  /nix/store/wxn72ifdmrgmisg6crbqrg2vxzlqjr6f-hostname-1.0
  /nix/store/725k7rmj1b8zpsml0q9w0nw9mccp4z9w-hostname-1.0-doc
  /nix/store/7h6dni7y6vwf480gb7lhs7f2zyykk0ll-hourglass-0.2.12
  /nix/store/wkfd6ny5n684r2xhzcj6pk6afvh08alv-hourglass-0.2.12-doc
  /nix/store/nbirdlzpp6xv4sin3s36401h4ngqv76k-http-api-data-0.5.1
  /nix/store/jj13n6j2ahh012rrxvxhz4f5lyn0bzhf-http-api-data-0.5.1-doc
  /nix/store/39k5wmi5gm23fki98jnci3gk5w723sin-http-client-0.7.17
  /nix/store/qncvdiy5ms8kxy0f3isrgi61ff079rs7-http-client-0.7.17-doc
  /nix/store/vnzy5a0xvymjhlbl8ff68gh5xz9gah2v-http-client-tls-0.3.6.3
  /nix/store/9gz574j6gn8ypnmdaidi08g1pk071dc6-http-client-tls-0.3.6.3-doc
  /nix/store/kjvkswmmacx634n88p1ypsn5miic3y54-http-conduit-2.3.8.3
  /nix/store/n48s0mlk0gas0128v2g1shfqak966ac1-http-conduit-2.3.8.3-doc
  /nix/store/nlfm31gg06qmb65ifq43z37691r6pmdv-http-media-0.8.1.1
  /nix/store/i4cfbq973188ad7y4ykymfia8q0lbc7f-http-media-0.8.1.1-doc
  /nix/store/l6cnkymplxirhsi6vaw6w2kjwr07131s-http-types-0.12.4
  /nix/store/xz7a5576yswqfky171r3fx546wpmfir2-http-types-0.12.4-doc
  /nix/store/1cjcm771jda3h0naghgcwlj5gsfk4l2q-hut-0.6.0
  /nix/store/9qc1sww6rqnhayy2cvns61b90271z4fn-icu4c-74.2-dev
  /nix/store/9iv9c45fk8f0fc0ck63f5q0xxi26ljlw-immortal-0.3
  /nix/store/wr01iqnydfy5ahgh67815rqwrjanr078-immortal-0.3-doc
  /nix/store/dh5gxyin3s1hrlh44gi33zqh7gz4mdm8-indexed-profunctors-0.1.1.1
  /nix/store/6q33zch2ip3iaskkdvcpmwp27si9gjwg-indexed-profunctors-0.1.1.1-doc
  /nix/store/l89srhkqp5aqhq0x5ffphcpy0h00gzsx-indexed-traversable-0.1.4
  /nix/store/s407z95rfbmmw05q621zlncygq962lwa-indexed-traversable-0.1.4-doc
  /nix/store/j5yz25yc3qvfcfgnh4q10pg8r1nn3602-indexed-traversable-instances-0.1.2
  /nix/store/sgslhmg72a8bbxk2zhab7hgkkzkf9ypn-indexed-traversable-instances-0.1.2-doc
  /nix/store/qm06fc44r0wr9mw2gcwg87dzbgbqxr8f-ini-0.4.2
  /nix/store/92n07j9c3jc2w9v81hjmjapm5rdgx2fi-ini-0.4.2-doc
  /nix/store/742kzkskal9lf5a2p2ny1g0ldfki9rrg-inline-c-0.9.1.10
  /nix/store/25hmv86msrmzbxzkc336b828sv5cynqi-inline-c-0.9.1.10-doc
  /nix/store/m4zjrqjznm2lvwz10b4x48q3153sxg0k-inline-c-cpp-0.5.0.2
  /nix/store/fnhb57c6xacw3bjhgl3m4qkv8xax5avh-inline-c-cpp-0.5.0.2-doc
  /nix/store/k3b62kcn8kw5j6np4r2fqd8h1rj5a8pi-insert-ordered-containers-0.2.5.3
  /nix/store/dyaha1a361ljc7byi01ca9wr53qz8qi5-insert-ordered-containers-0.2.5.3-doc
  /nix/store/nzki8y9ikkmkl68jdglprpgd73jxjmzw-integer-conversion-0.1.0.1
  /nix/store/h15f1ykr6mq2a6263ayy708967ydx375-integer-conversion-0.1.0.1-doc
  /nix/store/y2qvs8nazmnklxqhax1yda6s031r147b-integer-logarithms-1.0.3.1
  /nix/store/fb373cqv639h266b0jmfpai5nz4sv2dy-integer-logarithms-1.0.3.1-doc
  /nix/store/4v347dckki2w8ynrfb8f0lq0d96gwdz2-invariant-0.6.3
  /nix/store/q7h4wzf9cyhppx0gkl9zzhqqn8gc73l9-invariant-0.6.3-doc
  /nix/store/2dkh25pmhs7awgbpfhrx4whnzg5fxx8v-iproute-1.7.14
  /nix/store/rrhdzazz2dmvbqviaidzw4ckd17wg1ng-iproute-1.7.14-doc
  /nix/store/fkcr71z42fb0rg1a5a7czkrn3aibc147-isl-0.20
  /nix/store/zh81lh4csvfqcxzahxmy4iif5iipa3wp-jose-0.11
  /nix/store/sb8zxwjs9dnmvcxblm00bx875yrrv1by-jose-0.11-doc
  /nix/store/nkmk1iif0jq1j75chh5mjbz0cqxfibmd-kan-extensions-5.2.6
  /nix/store/zv2bwxircg1vi33awwv7x1bmqfzdkglq-kan-extensions-5.2.6-doc
  /nix/store/kyrp6j98ydl968i83l6nxszwrl0qlg25-katip-0.8.8.0
  /nix/store/p7sy9hs8vj6dr7y90dwhbfc4dykbji6i-katip-0.8.8.0-doc
  /nix/store/p4rhd0qvbk35f46w0jlb35zhgqhy0bqq-keyutils-1.6.3
  /nix/store/cmsmg995lra5l4zp5m5j0vzbji4l493p-keyutils-1.6.3-dev
  /nix/store/wg11wzrkv98hf75yl3y7ffiaw077h923-lens-5.2.3
  /nix/store/ali2q63zqrlr3g88c0988hjlvcdaqr1c-lens-5.2.3-doc
  /nix/store/3v08728xqwqizhij3kn17sbmbkd06ps6-lens-family-core-2.1.3
  /nix/store/df9sgwrbpqqwa34sj9dfa8v07rzxzb5r-lens-family-core-2.1.3-doc
  /nix/store/db38k6fh21i1z5wcmlvnlkmkwqpw39px-libarchive-3.7.4-dev
  /nix/store/vbdfx0xh9p60gzmsh8lg41cci2mddz03-libcap-ng-0.8.5-dev
  /nix/store/hnr6j7z0dfx9dcp9la2faahlll0lz3r4-libev-4.33
  /nix/store/niabvl1jq1hl7s3n1yx5zxa27l9mipkm-libffi-3.4.6-dev
  /nix/store/mfdv4kpxs9h34kgms7bx73w0nhf9l8n8-libidn2-2.3.7-bin
  /nix/store/1lhdfnq0lk84ccby3ll01snxqgfxsw36-libidn2-2.3.7-dev
  /nix/store/wnjrsgfv3jncmf2yx0kb84fn05zppp34-libkrb5-1.21.3-dev
  /nix/store/0wrhwwgmycg4mz2vvn5blb3r51jd5xgx-libmpc-1.3.1
  /nix/store/f725qmhmwrpifwsij4597hrqj5a4qy21-libpsl-0.21.5-bin
  /nix/store/zp3acgr7k0kfip6l04vz50hfyj5hnnw4-libpsl-0.21.5-dev
  /nix/store/nmj7zzqnsk8pfkyfg5f30q57rf75ywi5-libseccomp-2.5.5
  /nix/store/g5yaicwhshc1lf4rfx1lllg8drvdmjsm-libseccomp-2.5.5-dev
  /nix/store/65ds2ahg5jji4znrsy6r2q4k5rbymlqh-libsodium-1.0.20-dev
  /nix/store/1lrkymch3y0adliv36ikdddfsvif277q-libssh2-1.11.0-dev
  /nix/store/baampnjaxh3ikr4w47n4xdpdgn8rj9kq-libunistring-1.2-dev
  /nix/store/ijadl6nsmfnlv3dybjw478whdixgpz2k-libxml2-2.13.3-bin
  /nix/store/v5iqpidgngl4wrm2j0a198803qg2y247-libxml2-2.13.3-dev
  /nix/store/sqzvlh7iwvqjs1lvgdqhhyx3gn65yqa2-libxml2-2.13.3-py
  /nix/store/skrm7ll5z7p68qir3afc854k95brnj6g-libxslt-1.1.42
  /nix/store/1ld80ych0xs15rpbcvfs7ffwd3najssm-libxslt-1.1.42-bin
  /nix/store/i529cslk0s650sbbbdf54bqjfjdbjw5l-libxslt-1.1.42-dev
  /nix/store/9plsl4xmxdam8i1bcx2vmyy7n1n2n3n1-lifted-base-0.2.3.12
  /nix/store/326wwxy8gs9kwlj0hxpvfirpb4604b70-lifted-base-0.2.3.12-doc
  /nix/store/ni1v3hzl57hdynfy8a77d2y4hpwmicaf-linux-headers-6.9
  /nix/store/66q0z3m4fmfz4lz3k6qlpl98j57wal3a-lowdown-1.1.0
  /nix/store/7v3zzl46dh743p4r5plqgvpqqdwnkrrb-lowdown-1.1.0-dev
  /nix/store/sw6h5vyy8abv7ggyaz75pspv6jgls3dw-lukko-0.1.1.3
  /nix/store/hrydzprzg2jbgpi71mjxfdb9vkj2wl8h-lukko-0.1.1.3-doc
  /nix/store/vnqf61n1j3q5jpkqkagplj7p3cswcsp3-lzma-0.0.1.1
  /nix/store/ha3iydijjlz7zk5h0xsvmyligr0wkf7x-lzma-0.0.1.1-doc
  /nix/store/3jhx8rqyfz5b7a1sczy67ly2dl43ygrs-lzma-conduit-1.2.3
  /nix/store/3s7fwj9zg9pirk5sgknd0g5jfynprrv9-lzma-conduit-1.2.3-doc
  /nix/store/7dz9izfby2f4syrjxdr7l7jz4y95pb3c-megaparsec-9.5.0
  /nix/store/cy4br4m9h0k4i22p6phgdmyggcvynknk-megaparsec-9.5.0-doc
  /nix/store/vpmy8xc8g0a0krk4wyidfnww4f8j1dws-memory-0.18.0
  /nix/store/xkdz0knnpj90cnpyr88gpdzd959i042a-memory-0.18.0-doc
  /nix/store/3avv4gcwz7zb3gmlqmn2lnqhfyr41wxp-microlens-0.4.13.1
  /nix/store/lwp73gddhpbiss3d0bgkyhsc78qfyl31-microlens-0.4.13.1-doc
  /nix/store/i8ks7bg4d268zmixd5633wpjmkdl70f7-microlens-th-0.4.3.15
  /nix/store/1sdmm2w1yrk7qwl9h7ih27a365x64b8h-microlens-th-0.4.3.15-doc
  /nix/store/8aisgi0j4ra7phb7rp9pf2d60wjzcy9s-mime-types-0.1.2.0
  /nix/store/3479hmack2xi3pha6l0csvpf0lxyq52k-mime-types-0.1.2.0-doc
  /nix/store/4b671hb0vm40nxxima8ygkkiahl7s9g7-mmorph-1.2.0
  /nix/store/p7zdxf3ac29im60z59kq0fni11dn366p-mmorph-1.2.0-doc
  /nix/store/rlxcxajlmjmmdja4v9xfdpdcfz7g259j-monad-control-1.0.3.1
  /nix/store/zns0p611c8nqz0h4x6rmps2sbigq84wv-monad-control-1.0.3.1-doc
  /nix/store/bck3y9a34v0vjx669qja59xjzkiz0lfz-monad-loops-0.4.3
  /nix/store/ciswlcy4zmmjv7kvkjs6wpnn6bw1vgz5-monad-loops-0.4.3-doc
  /nix/store/faqjrlhb9l61ca6jp1zjh4dys7kfq8ck-monad-time-0.4.0.0
  /nix/store/sydxx3s81z3gfxa4dxw4c8zz19c47g49-monad-time-0.4.0.0-doc
  /nix/store/ypvnc8w5pd0jxs67a5ylryz6mjfricm0-mono-traversable-1.0.17.0
  /nix/store/8d81a5nj8c96249fqwbfk9zgs66v1zh0-mono-traversable-1.0.17.0-doc
  /nix/store/mxlvf1lcnjiq97vn90vf6qlx17dbhzag-moreutils-0.69
  /nix/store/nbxb76ldb3kcq54a75bx48c9562dpfn5-mpdecimal-4.0.0-cxx
  /nix/store/w39a5cna8li5yx5gf9dc15p3whbhyx2p-mpdecimal-4.0.0-dev
  /nix/store/qkm1i4hpfwrx0995bmi7gv8ph35idvzm-mpfr-4.2.1
  /nix/store/bhcbzjp5mghjmsaphqiy99s9fbgvbwqa-mtl-compat-0.2.2
  /nix/store/7cbbqq3q5a4p6bg51pq8ynjqnhhxqjgl-ncurses-6.4.20221231-dev
  /nix/store/662rv4p5892372dy10ayqbhm2h4v5hnp-netrc-0.2.0.1
  /nix/store/1n94chbbs0i5k2d87nfbkvj8dr2y5ivm-netrc-0.2.0.1-doc
  /nix/store/i16dqzq0br9qs8y0ndkdvg4agh5bfxbx-network-3.1.4.0
  /nix/store/12f9h7m7vrv9wwjbg9ln9j4j1ww7w9zk-network-3.1.4.0-doc
  /nix/store/lq0rab0921lyjd3lh8afbnsgq7fnj4m6-network-info-0.2.1
  /nix/store/fk2rd4sd294jn25sx684xbx960w0hvh9-network-info-0.2.1-doc
  /nix/store/7mb1520bxvfqmayw49afvmzhsqyknl7s-network-uri-2.6.4.2
  /nix/store/xid3ny0kwl7iqpgisih0d45iam5pdjm6-network-uri-2.6.4.2-doc
  /nix/store/lc2xg4r9yiywk6wllzwdqn81scypqgs5-nghttp2-1.62.1
  /nix/store/ax7aw1gacjs7l8cqq7yj8w6bn864qd1q-nghttp2-1.62.1-dev
  /nix/store/jhd6r4gqm6yaixnh04d2yjag9rq5b8df-nix-2.19.6
  /nix/store/l7md7d3nfc122daf09ysrh7lb8wh6448-nix-2.19.6-dev
  /nix/store/fx5hajnd2pm6n22m4dwl4m7ymr2586lf-nix-2.19.6-man
  /nix/store/73kz631gkklaal4salsm9rninid15f6v-nix-derivation-1.1.3
  /nix/store/fzckjnmawr4y0wh8zj2kq62ff5yf5ans-nix-derivation-1.1.3-doc
  /nix/store/wpjkm8c08mrpbdb91ihmjsm1d534piyq-nix-narinfo-0.1.1.1
  /nix/store/087pch1q00cc4c7w8g91b3dglqffkvvp-nix-narinfo-0.1.1.1-doc
  /nix/store/g2cb1l52svcgf2fyqsx5ay8wa6dy42qp-nlohmann_json-3.11.3
  /nix/store/znrkxypcb3qjfab8gyiaabmhamswkcmn-old-locale-1.0.0.7
  /nix/store/j63vqw67j2f347hqjcd8gypi4zjn4gf5-old-locale-1.0.0.7-doc
  /nix/store/b7das4zbw5ckqql313fp06rd8c7x7fiz-old-time-1.1.0.4
  /nix/store/l17i1pfj2i4f7l32zdhz05wdxb63a9jx-old-time-1.1.0.4-doc
  /nix/store/bcrjs0s0xp92hwmscwxlw7bksifbd6qz-openssl-3.0.14-bin
  /nix/store/xznbpwh1sxaamd2srd1i80il422k6kfc-openssl-3.0.14-dev
  /nix/store/yx17g15249yg6w06nf6vy2cbha5m5kcc-optics-core-0.4.1.1
  /nix/store/rnxcjskr8226ys62zl9p6zbl5bghk1b9-optics-core-0.4.1.1-doc
  /nix/store/dh5iglgc1jvgg3zpsnzq34s3c07b9j95-optics-extra-0.4.2.1
  /nix/store/hmsyy38000qzzxbvwffid692s0q9vfxa-optics-extra-0.4.2.1-doc
  /nix/store/2jgnz9p88500a637a78zyf0ydrgswv0r-optics-th-0.4.1
  /nix/store/7cagsv38lz4fl9vc2k3kzkppq5d619m5-optics-th-0.4.1-doc
  /nix/store/4r5gqn6fwv6s6llcj2j9vc94ygb758jr-optparse-applicative-0.18.1.0
  /nix/store/qk94abgnhivm3jim9yhcaw6vcrgnj44g-optparse-applicative-0.18.1.0-doc
  /nix/store/v2h9ibapcmqg7j3bik9bv2yca7yv0d85-os-string-2.0.6
  /nix/store/mn4df4n9ajg7lxgsgp5qbq4z6nf39qf6-os-string-2.0.6-doc
  /nix/store/hhcjbc0yn5aq3i4ynyzz23darcbza4f9-parallel-3.2.2.0
  /nix/store/d35346bla7haa7amnnhpvn621mfj0v1x-parallel-3.2.2.0-doc
  /nix/store/4hm7008g64x37zpnf53dsxxf7gmbgy68-parser-combinators-1.3.0
  /nix/store/mg9niyk2lz5q1aqs9rnki9ybl38lsbim-parser-combinators-1.3.0-doc
  /nix/store/frmfav7q50yv7m40hxq1wdg2qlqyrgfz-parsers-0.12.11
  /nix/store/wpbw63nfqxl2xkmnrbmyvg0jkrkrrxxd-parsers-0.12.11-doc
  /nix/store/ajgsllzcr4yl8j168kvhabqf71wr4jwx-pem-0.2.4
  /nix/store/5irvvf8v8kympgx7fdv5nr3y9712vx3w-pem-0.2.4-doc
  /nix/store/26b3bkw0kn5k2339fxgmk0k15hcxkv4l-perl-5.38.2-env
  /nix/store/af0wz96fliayspcisr5hpw87d7d291fv-perl5.38.2-IO-Tty-1.17
  /nix/store/20wcpb3ww4snhhr38cs2wwc4kawiq0kk-perl5.38.2-IPC-Run-20231003.0
  /nix/store/6dp0hin6q34fis6imkwy9x4lgkyfsl86-perl5.38.2-Time-Duration-1.21
  /nix/store/spzfcsns7dyk268n75yzsl6z0ax45lhx-perl5.38.2-TimeDate-2.33
  /nix/store/8kvkdcsrrpgdq03xn3x6b9mw42idyyg9-pretty-show-1.10
  /nix/store/y3c7asc5qgs5r2a9sfkrs2rii6iaajsy-pretty-show-1.10-data
  /nix/store/8gs51419snw4hkgw0jppy9578bi0ndsb-pretty-show-1.10-doc
  /nix/store/p6pb7nv0h8para16095y7g4nzwfk48r2-pretty-simple-4.1.2.0
  /nix/store/x33prxgnr8yqwxj013bfxnyzwxwa5v0g-pretty-simple-4.1.2.0-doc
  /nix/store/j7ysb70a5qccr1gprb3zx8qzwridywf0-pretty-terminal-0.1.0.0
  /nix/store/9df74m26n0ig76x7d4flzmzfkin1aksr-pretty-terminal-0.1.0.0-doc
  /nix/store/8bb7mlsk8nxcz8n5zzlbhqkd7ks74hbh-prettyprinter-1.7.1
  /nix/store/x4b3ylgkla42ikxs02hhdzg2v69w6ph9-prettyprinter-1.7.1-doc
  /nix/store/gj7ksb3ld4fn957w3drxass03pangn8n-prettyprinter-ansi-terminal-1.1.3
  /nix/store/yqpxvw370bvya696fl25ppjwm0hlwi5a-prettyprinter-ansi-terminal-1.1.3-doc
  /nix/store/y24p16hl7ir4y9brzrl9l88dkbsb69ml-primitive-0.8.0.0
  /nix/store/s3qk4yfhqrfmpd36j686mzcra53zjk2w-primitive-0.8.0.0-doc
  /nix/store/4f0yqdyx8rk7lsq5p1jhc74b3vcja4dv-profunctors-5.6.2
  /nix/store/lswgszawb7ipgvhjxcrrgl24hnl7dqk5-profunctors-5.6.2-doc
  /nix/store/rvqqf6cmdxp6ridqns319xp8m35ffffw-protolude-0.3.4
  /nix/store/cw6rwn93nilw68r8sa6vdvizs9p8dhl0-protolude-0.3.4-doc
  /nix/store/63szyd0cgc2p4klfnd8a9y9084131zk7-random-1.2.1.2
  /nix/store/5znamxiw7inz4l2fd760386jxpf96i8x-random-1.2.1.2-doc
  /nix/store/99dylc3vflz8sim5jirvhlm7g4w5rz0g-rapidcheck-0-unstable-2023-12-14
  /nix/store/741gc5nrw8y60gchwhjj2f3h7dvfiwyd-rapidcheck-0-unstable-2023-12-14-dev
  /nix/store/asivmfyl461yf6k0zdwsmngn6ifflli8-readline-8.2p10-dev
  /nix/store/49gd0i9x2781wsqi89rlx0wzandb80kw-reflection-2.1.8
  /nix/store/nzc2v36jcq1z44mjqg0x39i57sflj4jf-reflection-2.1.8-doc
  /nix/store/hn6m5p7fqyxryhx6b9w2drlksns94x2i-regex-base-0.94.0.2
  /nix/store/pb5qkg559k94ybyj25cgqc4s570yvxan-regex-base-0.94.0.2-doc
  /nix/store/mdgaz90hxlhbhw6m41y61yw5qdwij73d-regex-posix-0.96.0.1
  /nix/store/2sw5xqz6b0b2s8g279sq59acph0fgrs5-regex-posix-0.96.0.1-doc
  /nix/store/bil37zv2j8bqa6l4ylvh0ppglifcppkh-relude-1.2.1.0
  /nix/store/c66k3p0ivg7n1sllb8nvxkfvi3ppb4w8-relude-1.2.1.0-doc
  /nix/store/2dla9pnf4r8wnc6kvaz13cvcl09hmjbb-repline-0.4.2.0
  /nix/store/j862j85gpjgqraxjy9ndx4d5v4cv38i6-repline-0.4.2.0-doc
  /nix/store/pcwkdzvkj7pn6wc1q6l5whfx3dx6bfy4-resourcet-1.3.0
  /nix/store/a3lhj6mpf3q08dixp3yilp4d7giqb045-resourcet-1.3.0-doc
  /nix/store/m2v1avh2ff866r0sclnibmvzzmik2nmv-retry-0.9.3.1
  /nix/store/hpnb21xk4vsqf8g1a237jsi0qf6kaabr-retry-0.9.3.1-doc
  /nix/store/9qpsqkk50as5vb4rgq6qvpkavc3hl12m-s2n-tls-1.4.17-dev
  /nix/store/pq5vribylc0fpzjkz0i7h8n12c6lvygm-safe-0.3.21
  /nix/store/76jk10ps8rgrgxi3fqgy8phgcbld5hjq-safe-0.3.21-doc
  /nix/store/23cqj1lqd4y40pb1kkkw5kb7a6kaq70i-safe-exceptions-0.1.7.4
  /nix/store/fny184bhghhbmi11z1g86mmhnl99kf6k-safe-exceptions-0.1.7.4-doc
  /nix/store/iddglxxji16amhdjr33fvd4560ijlina-saltine-0.2.1.0
  /nix/store/p6j9lv6w54r0kd7vnlx70j9qds2jdlq7-saltine-0.2.1.0-doc
  /nix/store/36wjid7vbn4d2zcqnvd0z6yx0q5333fa-scientific-0.3.7.0
  /nix/store/3wkw2ycaxfmhxwizcjlqj1zx8paa7qb5-scientific-0.3.7.0-doc
  /nix/store/x0p5d3wggpxriqsp8a833nqldf8fn5b7-semialign-1.3.1
  /nix/store/zpn61v62bmbd4v8bymz4ijjfz6i0jx6m-semialign-1.3.1-doc
  /nix/store/0k65vcz7fxqcjg7j0krm1q5crhbgfhi9-semigroupoids-6.0.1
  /nix/store/5yq2p1ckjypp2pvfzg0kd11yvy6hkzlj-semigroupoids-6.0.1-doc
  /nix/store/kqm1wbpnc25gpskbs0qgjiv5r392p1qb-semigroups-0.20
  /nix/store/j06bbkaxssdr8bxsgi0i2kv7v9dc80nb-semigroups-0.20-doc
  /nix/store/176pbmjxz3fy9s79fghfbnxz3qbp6svn-serialise-0.2.6.1
  /nix/store/jgsdqhdz671vvz2ivv504yiripkydr3g-serialise-0.2.6.1-doc
  /nix/store/nfq7g87qm4zslgczxzksj5dl7pmdjwyr-servant-0.20.1
  /nix/store/x48wn4a44hgjbwj1q6jr5ay19bj67ny3-servant-0.20.1-doc
  /nix/store/lz2sy52ilwk8rh1ib52p3pawdbmamm18-servant-auth-0.4.1.0
  /nix/store/xqw8324dyvqjy2pw1zqyhizcvhl1q4lw-servant-auth-0.4.1.0-doc
  /nix/store/x10n9vcbivm0wyl4p6ld5k1iylgcsp2j-servant-auth-client-0.4.1.1
  /nix/store/mr7vpy7yf24ycmi72xh66s6dhaxay1xw-servant-auth-client-0.4.1.1-doc
  /nix/store/39v6xjjymc5518n7mybbgfpsrc6knbh0-servant-client-0.20
  /nix/store/0zfrldyd0hsxi5vlp77dvl4rw64azmbc-servant-client-0.20-doc
  /nix/store/02bzh6xm56j8y1v95yjrmdd043bip9dj-servant-client-core-0.20
  /nix/store/3cmfp44qgmbv214vbaavkl7kmy95i7m2-servant-client-core-0.20-doc
  /nix/store/y461vpir2flahc3x94lskk66qhhpv7a4-servant-conduit-0.16
  /nix/store/5w3jlfj60b9198n1x7dd0wkn34ksk8hg-servant-conduit-0.16-doc
  /nix/store/k7bxr5yawad780mgwmx9iis3m5qidlm1-setup-debug-info-dirs-hook
  /nix/store/yn3av22v5724djpyknnc0ln93il97alh-singleton-bool-0.1.8
  /nix/store/3vfkal4l0hgcbzl58b0wdjwynyrjmiy1-singleton-bool-0.1.8-doc
  /nix/store/bx2h891xh2zcvr09z850nzvz3m53ajjm-skalibs-2.14.2.0
  /nix/store/cw24dbliwngzndshxsh3ixsfn9ssy57f-skalibs-2.14.2.0-dev
  /nix/store/q40bqp02fmf636yhiq65rzrf5lw7zynb-skalibs-2.14.2.0-doc
  /nix/store/p7sw0nwgf25wbjmq83jzi13r7yi2l7kk-skalibs-2.14.2.0-lib
  /nix/store/6lwvnn90jn5gcqnjgq2d571sf9198wbh-socks-0.6.1
  /nix/store/c4kz41vnfrf3yxxsnmfsw4wka9l8ghqx-socks-0.6.1-doc
  /nix/store/anm1nszf2qxkgvjvsa2hs5k32f2iaj2w-some-1.0.6
  /nix/store/67ak8d289a14kgaclgn5ic5mxkpjdq0h-some-1.0.6-doc
  /nix/store/h9nsqajg2axhy8ncqvvnaggnb3a4yplc-sop-core-0.5.0.2
  /nix/store/90cbjx2yvgdvx2c0b7sjd5ngqi833i1a-sop-core-0.5.0.2-doc
  /nix/store/0rim4vlz901v8yv187wi0rqppqaz6576-split-0.2.5
  /nix/store/iy5bbrlm4vbx2lglh4gv6w38rxgbn7sb-split-0.2.5-doc
  /nix/store/0ky5jwzbhfija8b07g6asf5hxhh2s1sx-splitmix-0.1.0.5
  /nix/store/ic4y65305ba8jyz1i49snm6v5cjs08is-splitmix-0.1.0.5-doc
  /nix/store/jmd9xi0qy1jdcllbcjq3cdi0rqnp2v7c-sqlite-3.46.0-bin
  /nix/store/pmbv63crfrpqawazlw5q2mgbz9v4kn86-sqlite-3.46.0-dev
  /nix/store/ij22nldf49vqi562a2l2l9ic4bwfj3ha-stm-chans-3.0.0.9
  /nix/store/ryv6m31nil14v2lvj4i04aaawdnri2pk-stm-chans-3.0.0.9-doc
  /nix/store/2xmf9xgzqmpm9df7sm1p7d01r12fz44l-stm-conduit-4.0.1
  /nix/store/iq4r1m0z55lngvfa2a2dnk9slnvwjxmj-stm-conduit-4.0.1-doc
  /nix/store/vp8hirsm3mzcbbhw67xsadvvy2nsv95w-streaming-commons-0.2.2.6
  /nix/store/h54vz0rg4g5nv4hi0k8vi0jpwnjq8q96-streaming-commons-0.2.2.6-doc
  /nix/store/6ivhdb4ivrf7v9pn2hjxlcjj7avpx6ic-strict-0.5
  /nix/store/23ax23d47bn14673v9s5qx0kq368i1zf-strict-0.5-doc
  /nix/store/8jlj8lbzn4rv1p48j7nqz4skif6x38ga-string-conv-0.2.0
  /nix/store/1ppdi65slvqkbr6w19hzk1qjf1rvpxck-string-conv-0.2.0-doc
  /nix/store/nyvj100202y3vsrbj16mwrfapwmc2vys-string-conversions-0.4.0.1
  /nix/store/pmgaqbqw0npiy3cfls1mh229a7b5qzmx-string-conversions-0.4.0.1-doc
  /nix/store/3snpjjja4pg9bg38lnpvdy1jmxdjp1pd-swagger2-2.8.8
  /nix/store/5m4bj8vm3khh412894b5jm3c27xxs2pa-swagger2-2.8.8-doc
  /nix/store/ibdrz4fmyn1xq87jbca8afjwcyf7qlkm-syb-0.7.2.4
  /nix/store/47iw34xw38mp57qkr2nnv7izh7kiz4cw-syb-0.7.2.4-doc
  /nix/store/hni3f68hv23szy4j9qyvdhjw080p3n0v-systemd-2.3.0
  /nix/store/lhi6rh4gfpqwgy8q8ix10dwcmn5d8xjb-systemd-2.3.0-doc
  /nix/store/gj9cy5n68lmdldkwyvngqb5rz9x5997x-tagged-0.8.8
  /nix/store/yr4k3pcw1ax8pjrnx4iby1w54xivjf4n-tagged-0.8.8-doc
  /nix/store/jpwgx1m3sy4c1xm6pyr3dcsq6p82x9sc-temporary-1.3
  /nix/store/siv7mg07izs31k3yyqipsj1xapy228s7-temporary-1.3-doc
  /nix/store/hdpz08rn21pyqn6h5mi9s3vvnqvqays6-terminal-size-0.3.4
  /nix/store/k8w5bjgrygqgrirh8rhdf2b30lxlyqf9-terminal-size-0.3.4-doc
  /nix/store/nzgp31chf9fsjbdbhrarar6h71r0dzid-text-manipulate-0.3.1.0
  /nix/store/d2dap7y09rnmsjpy3b3yhsmba6djx77c-text-manipulate-0.3.1.0-doc
  /nix/store/4akb8krf3658bhz2l1z0504llmz67fs3-text-short-0.1.6
  /nix/store/q9v1yf67ghapbkzgxrvapg5qspgccims-text-short-0.1.6-doc
  /nix/store/6wlgl3rc8ibzwlrj3f0mpwgvgqb99l3j-th-abstraction-0.5.0.0
  /nix/store/92d0llx58jaz55rbfp7qln14v5ar6pxx-th-abstraction-0.5.0.0-doc
  /nix/store/fnb0cq87kapir8la0lpp20wphxzc21hj-th-compat-0.1.5
  /nix/store/3krzf7gbpjgf95cmg6fkm4q90clipwr7-th-compat-0.1.5-doc
  /nix/store/xb1z9p2492qayhsnps6wv7nd7aiv25r2-th-expand-syns-0.4.11.0
  /nix/store/jjmji1jxw8mnc45wkq6w88g18dw1yb0j-th-expand-syns-0.4.11.0-doc
  /nix/store/fss720xwj60bs2q64915dh45852gk6aq-th-lift-0.8.4
  /nix/store/xkvp4234n1jr3hiy2pl2d6cpwwkj7c1y-th-lift-0.8.4-doc
  /nix/store/hrywsvridz0c92fz7fz7zqnzxy57il9i-th-lift-instances-0.1.20
  /nix/store/vaw3d564g92k7q05njw86jqsb94wgwfk-th-lift-instances-0.1.20-doc
  /nix/store/nz6m9nl2xc4x5n9m5d32qlpq1zavkdqf-th-orphans-0.13.14
  /nix/store/6n2v9zq34yli4d0vs8c1z84swmmwjbii-th-orphans-0.13.14-doc
  /nix/store/n4hf74sagycl8cjic6c0wrpspqzs235l-th-reify-many-0.1.10
  /nix/store/a373w7csx8mj6v5i5dd3rgjsaay7a5dq-th-reify-many-0.1.10-doc
  /nix/store/50r5h3wmfahva3wa0wgipg65xsf490yi-these-1.2.1
  /nix/store/52qfc1zh791d33bsjscr3riys8ij8m87-these-1.2.1-doc
  /nix/store/4742zxxl2nxjwayra6pg18hfd7cfa8a4-time-compat-1.9.6.1
  /nix/store/vbjcclk93nqv4yxd9al0mlcxydzcs71d-time-compat-1.9.6.1-doc
  /nix/store/znn9j3r2nxf1zyfk8da6kdfkfmh57wjy-tls-1.8.0
  /nix/store/a37dsqkwlhhh8ghgwfkyjzc0mig27j4f-tls-1.8.0-doc
  /nix/store/wxjly9gy5hlimg5cx4k4f1847r9bnmjl-toml11-3.7.1
  /nix/store/m5a0g3kqv79f7vmq8mdwp34p13axf52i-transformers-base-0.4.6
  /nix/store/za87sdiy0p15szmivggnms98xbcb4d71-transformers-base-0.4.6-doc
  /nix/store/sxlgpgwk841s2rw94zl6bkzvggszvlw6-transformers-compat-0.7.2
  /nix/store/rf7b5ia9pzqypcxq9xgy6c90lqad9ln8-transformers-compat-0.7.2-doc
  /nix/store/izdqpp2cc1jkrhrf7yrslqz9qn9l6s0p-typed-process-0.2.11.1
  /nix/store/i057by27xmrfd8v6cnmm742wf1mm3brn-typed-process-0.2.11.1-doc
  /nix/store/3lrdajx1i8564ai2aid1f1wfrarrf3ph-tzdata-2024a-dev
  /nix/store/wjq7ixfm0w6iq339i1848wj7y38ln1da-unbounded-delays-0.1.1.1
  /nix/store/pwqvgc77dw8a49b0f5cbawlnyswwck9m-unbounded-delays-0.1.1.1-doc
  /nix/store/4d1587pzvi4sfvn6dj6vpariqmp967d2-unix-compat-0.7.2
  /nix/store/iqga4xxzwgfh6ykcdh9qw8i7vsrk5scp-unix-compat-0.7.2-doc
  /nix/store/9zpgp1liicxb036vip4f5fk5f3xk5727-unix-time-0.4.15
  /nix/store/gn9b6647a5xxwrnrak75m7bj6frwxff2-unix-time-0.4.15-doc
  /nix/store/5nw5sc95ayvv3hb6w5qnp3jay7vmbszg-unliftio-0.2.25.0
  /nix/store/kx4l8bg7wsxqscy7s9pjr7j3qrnqdpfn-unliftio-0.2.25.0-doc
  /nix/store/p0mlwz6h1rg18csvdwai22s0xkchhvg7-unliftio-core-0.2.1.0
  /nix/store/gcs4bj8ndsldswr911whwxhkl95488h0-unliftio-core-0.2.1.0-doc
  /nix/store/px52bxnaw7w7g6n66sg08bz5mqp5inlw-unordered-containers-0.2.20
  /nix/store/nkmphlrr49l2spv90mh093l523icl8z2-unordered-containers-0.2.20-doc
  /nix/store/knb4qs1zs53d67pszcpxhgjzy8186gqs-uri-bytestring-0.3.3.1
  /nix/store/76c6vrmi83d6k2kivxwq71c66m03dgzn-uri-bytestring-0.3.3.1-doc
  /nix/store/bmy7k8h0dqfmk3i99wzz15fz8879g4bz-utf8-string-1.0.2
  /nix/store/3r2z2z2ah44z9621mw0rgryj9wg7icn8-utf8-string-1.0.2-doc
  /nix/store/fkpbyjrdh81iyvm6d6i21y04jyal0f8n-util-linux-minimal-2.39.4
  /nix/store/b9609cffnpms4vqsyxa0f1ixc7prffdp-util-linux-minimal-2.39.4-dev
  /nix/store/6rirzhsscdyil3gd3b8pcxj1ijrfwwxm-uuid-1.3.15
  /nix/store/67gskdm4spp4dlcp00d2ai7rhqj32hxh-uuid-1.3.15-doc
  /nix/store/pbfzxxwxb8f9mdnvhqmfxc2rvzw2k64z-uuid-types-1.0.5.1
  /nix/store/rb77mrkw8i34fjqacnfdwrc5dx5kb0z4-uuid-types-1.0.5.1-doc
  /nix/store/2kn7663dv497y0gphfwnkahg148kg4g6-vault-0.3.1.5
  /nix/store/lv1pci15b4j62rbwhbn8zrrlxjk1jphc-vault-0.3.1.5-doc
  /nix/store/8rdnq2g5ns6j5cps43qng8c33lxnmfgz-vector-0.13.1.0
  /nix/store/nxvka78ksf9fyc3jgdc6qz34aa2qghz7-vector-0.13.1.0-doc
  /nix/store/px4yam8kd9naaycgpns97lmnpr76xbd2-vector-algorithms-0.9.0.2
  /nix/store/k2sy9120sam9f15315jrgp9smvvmhplp-vector-algorithms-0.9.0.2-doc
  /nix/store/k1wg3xyfzy3bn29qk7pik7468qrp6z61-vector-stream-0.1.0.1
  /nix/store/bzlwnqxchf576alagx4w1w4gksm5y3cr-vector-stream-0.1.0.1-doc
  /nix/store/xx49vz73i7f2gczw5x61jm4wm2rh8ysf-versions-6.0.7
  /nix/store/vmmzf0gr20yyy24xnkmh3vpqlm52dlna-versions-6.0.7-doc
  /nix/store/1xv96zc8axzjbvdkdn0lz6fsgjlslfqj-void-0.7.3
  /nix/store/bky1n5vm7cn9ajv8m6669n6n8csg63yq-void-0.7.3-doc
  /nix/store/hcvwjjnl9941zlfljnw2bs6ycyg0lk0q-websockets-0.12.7.3
  /nix/store/l8k4zz237nwrqpi1yl7zxnzkj0cwnsd3-websockets-0.12.7.3-doc
  /nix/store/w4xhzsv20p7ysdkm90zg75iqwq19k7w5-witherable-0.4.2
  /nix/store/m8wma8xj3riqbzar7vr9qywm916vihxv-witherable-0.4.2-doc
  /nix/store/fhnfamsvrhq07crhkpr299m90acy67sa-wuss-2.0.1.9
  /nix/store/jfrijqkakh7qhh7rg7y6nrvrskq7qkd7-wuss-2.0.1.9-doc
  /nix/store/vd6w76q6jliphj4d839a3fqvbqqlrmal-xml-conduit-1.9.1.3
  /nix/store/yjwgj8shw7nnmlwfhdpjgzfcf0cj57fw-xml-conduit-1.9.1.3-doc
  /nix/store/qa76k4mhbf0a4ypfhbwh5h5ggm2xff70-xml-types-0.3.8
  /nix/store/3p1ripq7d68wp5p2q12zmz116ynnmpw6-xml-types-0.3.8-doc
  /nix/store/cihr7fgsz2inmkng85bz6l8z7r6s54fh-xz-5.6.2-dev
  /nix/store/psp7fa9lf28jghvg03qxrfn8vz9m0yw2-zlib-0.6.3.0
  /nix/store/xf0cqziy42m3gnv5nxgq7wx8j97k6sl6-zlib-0.6.3.0-doc
  /nix/store/vsygj2vzwqr9x7rzq4v3prcv2blkggmx-zlib-1.3.1-dev
  /nix/store/5w1q5xhd1kvzsrmlhrw04yc6862q6dis-zstd-0.1.3.0
  /nix/store/j49iwqpr0hhgnb350z6g8awq9qw7adyl-zstd-0.1.3.0-doc
  /nix/store/5pka8lh8h9myxkxpw23cm3bvlqawb6zd-zstd-1.5.6-dev
copying path '/nix/store/3g8lcpg34g09ir7w14q4yny8kda9f80x-execline-2.9.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/6r0lmmn2j4yd6sl3sphmnyndvzjry7mi-execline-2.9.6.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pk3kwnl3rynrfh91g2bxsz976k1qzpqm-execline-2.9.6.0-man' from 'https://cache.nixos.org'...
copying path '/nix/store/g2cb1l52svcgf2fyqsx5ay8wa6dy42qp-nlohmann_json-3.11.3' from 'https://cache.nixos.org'...
copying path '/nix/store/wxjly9gy5hlimg5cx4k4f1847r9bnmjl-toml11-3.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zgslkx3q1idv8n2bnzzz5fsfnlwsrbaw-c-ares-1.27.0' from 'https://cache.nixos.org'...
copying path '/nix/store/1hqp9v0mc8wlzw3b69a4c62v7vsk3dzk-colour-2.3.6-data' from 'https://cache.nixos.org'...
copying path '/nix/store/bjm4klxddclh317nnhs6rryli4wh70ab-dhall-1.42.1-data' from 'https://cache.nixos.org'...
copying path '/nix/store/njw3ph2amcyf5xnwsn4q4n6fcvanl4r1-boost-1.81.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lgf1mgb98032c5j8989f0sjnq271r0bl-find-xml-catalogs-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/1cjcm771jda3h0naghgcwlj5gsfk4l2q-hut-0.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ni1v3hzl57hdynfy8a77d2y4hpwmicaf-linux-headers-6.9' from 'https://cache.nixos.org'...
copying path '/nix/store/fx5hajnd2pm6n22m4dwl4m7ymr2586lf-nix-2.19.6-man' from 'https://cache.nixos.org'...
copying path '/nix/store/6dp0hin6q34fis6imkwy9x4lgkyfsl86-perl5.38.2-Time-Duration-1.21' from 'https://cache.nixos.org'...
copying path '/nix/store/spzfcsns7dyk268n75yzsl6z0ax45lhx-perl5.38.2-TimeDate-2.33' from 'https://cache.nixos.org'...
copying path '/nix/store/bx2h891xh2zcvr09z850nzvz3m53ajjm-skalibs-2.14.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/rnw02bn0s37mh5ylzh0gkswagri5v1ai-acl-2.3.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vnbl6alz2aah1a2d584ijia1apc5w039-attr-2.5.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/r4p8qxcll91is2x0f9nl53z5z4sl4spp-audit-4.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/pz8mq2lgw0lg2n9dwjiiryi7bmcmz0k2-bash-5.2p32-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/b6cqv0sqbdbrhgnbaanakjlsw093hp2d-brotli-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/jbyxjhh89vfr2s405iw1rd6bm3cxlg41-boehm-gc-8.2.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/wqqy88q5b0a7dz84nqikjaj04iyrhwz1-bytestring-builder-0.10.8.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/3kq4gkvj3kd07k3dsz5kcxfnfbgz3k9a-bzip2-1.0.8-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/ylfm9z3khylwp7xrgpk3132sp3ldrjai-c-ares-1.27.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/6qv2iklni3nh1p1c1vk4c43m477lrimy-db-4.8.30-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/4q7y97244d84s79x131j541zij8ag95k-db-5.3.28-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/s32xdpcnsis18n3ym03v3mvml74m3z4c-e2fsprogs-1.47.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vifks3qy9vgvx3kpnz10xbskz31k41vv-elfutils-0.191-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/pckn554zikxp3qmn12w5a9yzwnqa6806-editline-1.17.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/li578wlcf3lsb64cn05jqbk8k50qv1lg-expand-response-params' from 'https://cache.nixos.org'...
copying path '/nix/store/ixmq7vqi2x6ik25wgpf1bsw8xa4cy40s-expat-2.6.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/98bnrzi673c7f73xxgwcyg0c02lsns4m-gdbm-1.24' from 'https://cache.nixos.org'...
copying path '/nix/store/cvrnxqcpq6fs4kja0qjh1av96bkny66m-ghc-9.6.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dvq6bap6fi85whpsx363kcwr7p70q94r-brotli-1.1.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/i9hpg4ipbwcw2dpiy0wp3r271bjzc3sx-gmp-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/sbnl7czw26wh9i602mydakyy5ng5x3mr-gmp-with-cxx-6.3.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vvr8a35swqsj51ja840df17g0kg4r2aj-gmp-with-cxx-6.3.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/f490b8k0p3lbg4y1wbv09455gbi7nils-gtest-1.14.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/9qc1sww6rqnhayy2cvns61b90271z4fn-icu4c-74.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/p4rhd0qvbk35f46w0jlb35zhgqhy0bqq-keyutils-1.6.3' from 'https://cache.nixos.org'...
copying path '/nix/store/db38k6fh21i1z5wcmlvnlkmkwqpw39px-libarchive-3.7.4-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hvkwilwmlz7gckmvwd0j1g0yhywj0gik-db-5.3.28-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vbdfx0xh9p60gzmsh8lg41cci2mddz03-libcap-ng-0.8.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hfy9kslwyasc5ddmbg95g80pkp38bpwc-gdbm-1.24-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vffvixv63zplxxb2ghxbp1xw54ipkxr6-db-4.8.30-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hnr6j7z0dfx9dcp9la2faahlll0lz3r4-libev-4.33' from 'https://cache.nixos.org'...
copying path '/nix/store/niabvl1jq1hl7s3n1yx5zxa27l9mipkm-libffi-3.4.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/mfdv4kpxs9h34kgms7bx73w0nhf9l8n8-libidn2-2.3.7-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/fkcr71z42fb0rg1a5a7czkrn3aibc147-isl-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/nv84272fps7vc62w42c55hw6cyy9qh3h-glibc-2.39-52-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/wnjrsgfv3jncmf2yx0kb84fn05zppp34-libkrb5-1.21.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/nmj7zzqnsk8pfkyfg5f30q57rf75ywi5-libseccomp-2.5.5' from 'https://cache.nixos.org'...
copying path '/nix/store/cmsmg995lra5l4zp5m5j0vzbji4l493p-keyutils-1.6.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/f725qmhmwrpifwsij4597hrqj5a4qy21-libpsl-0.21.5-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/65ds2ahg5jji4znrsy6r2q4k5rbymlqh-libsodium-1.0.20-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/ijadl6nsmfnlv3dybjw478whdixgpz2k-libxml2-2.13.3-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/b3a0wh9v9md9kc4qdixsbwjy3799077r-boost-1.81.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/baampnjaxh3ikr4w47n4xdpdgn8rj9kq-libunistring-1.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/skrm7ll5z7p68qir3afc854k95brnj6g-libxslt-1.1.42' from 'https://cache.nixos.org'...
copying path '/nix/store/66q0z3m4fmfz4lz3k6qlpl98j57wal3a-lowdown-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/nbxb76ldb3kcq54a75bx48c9562dpfn5-mpdecimal-4.0.0-cxx' from 'https://cache.nixos.org'...
copying path '/nix/store/1lhdfnq0lk84ccby3ll01snxqgfxsw36-libidn2-2.3.7-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/qkm1i4hpfwrx0995bmi7gv8ph35idvzm-mpfr-4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/7cbbqq3q5a4p6bg51pq8ynjqnhhxqjgl-ncurses-6.4.20221231-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/g5yaicwhshc1lf4rfx1lllg8drvdmjsm-libseccomp-2.5.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/bhcbzjp5mghjmsaphqiy99s9fbgvbwqa-mtl-compat-0.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/lc2xg4r9yiywk6wllzwdqn81scypqgs5-nghttp2-1.62.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zp3acgr7k0kfip6l04vz50hfyj5hnnw4-libpsl-0.21.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/v5iqpidgngl4wrm2j0a198803qg2y247-libxml2-2.13.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/jhd6r4gqm6yaixnh04d2yjag9rq5b8df-nix-2.19.6' from 'https://cache.nixos.org'...
copying path '/nix/store/bcrjs0s0xp92hwmscwxlw7bksifbd6qz-openssl-3.0.14-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/nzjb1h7bn9nyzrvlha39pi3nm4ki0sa2-glibc-iconv-2.39' from 'https://cache.nixos.org'...
copying path '/nix/store/qrw9mznq4p1135k53aa5g9saz229srf4-binutils-wrapper-2.42' from 'https://cache.nixos.org'...
copying path '/nix/store/w39a5cna8li5yx5gf9dc15p3whbhyx2p-mpdecimal-4.0.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/af0wz96fliayspcisr5hpw87d7d291fv-perl5.38.2-IO-Tty-1.17' from 'https://cache.nixos.org'...
copying path '/nix/store/1ld80ych0xs15rpbcvfs7ffwd3najssm-libxslt-1.1.42-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/7v3zzl46dh743p4r5plqgvpqqdwnkrrb-lowdown-1.1.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/y3c7asc5qgs5r2a9sfkrs2rii6iaajsy-pretty-show-1.10-data' from 'https://cache.nixos.org'...
copying path '/nix/store/99dylc3vflz8sim5jirvhlm7g4w5rz0g-rapidcheck-0-unstable-2023-12-14' from 'https://cache.nixos.org'...
copying path '/nix/store/k7bxr5yawad780mgwmx9iis3m5qidlm1-setup-debug-info-dirs-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/asivmfyl461yf6k0zdwsmngn6ifflli8-readline-8.2p10-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/q40bqp02fmf636yhiq65rzrf5lw7zynb-skalibs-2.14.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0wrhwwgmycg4mz2vvn5blb3r51jd5xgx-libmpc-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/sqzvlh7iwvqjs1lvgdqhhyx3gn65yqa2-libxml2-2.13.3-py' from 'https://cache.nixos.org'...
copying path '/nix/store/d1xx41xdph2jhwj8wlwqdxzc8xzchf63-cachix-1.7.4-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/ax7aw1gacjs7l8cqq7yj8w6bn864qd1q-nghttp2-1.62.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/l7md7d3nfc122daf09ysrh7lb8wh6448-nix-2.19.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/20wcpb3ww4snhhr38cs2wwc4kawiq0kk-perl5.38.2-IPC-Run-20231003.0' from 'https://cache.nixos.org'...
copying path '/nix/store/i529cslk0s650sbbbdf54bqjfjdbjw5l-libxslt-1.1.42-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/p7sw0nwgf25wbjmq83jzi13r7yi2l7kk-skalibs-2.14.2.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/xznbpwh1sxaamd2srd1i80il422k6kfc-openssl-3.0.14-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/jmd9xi0qy1jdcllbcjq3cdi0rqnp2v7c-sqlite-3.46.0-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/3lrdajx1i8564ai2aid1f1wfrarrf3ph-tzdata-2024a-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/fkpbyjrdh81iyvm6d6i21y04jyal0f8n-util-linux-minimal-2.39.4' from 'https://cache.nixos.org'...
copying path '/nix/store/zgcijq4lhbxwrf583qq0yjy5kb0b7kh4-elfutils-0.191-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/cihr7fgsz2inmkng85bz6l8z7r6s54fh-xz-5.6.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/741gc5nrw8y60gchwhjj2f3h7dvfiwyd-rapidcheck-0-unstable-2023-12-14-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/wl7xs26116sswgw18pnc3yw9r5gxr6hx-gcc-13.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vsygj2vzwqr9x7rzq4v3prcv2blkggmx-zlib-1.3.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/26b3bkw0kn5k2339fxgmk0k15hcxkv4l-perl-5.38.2-env' from 'https://cache.nixos.org'...
copying path '/nix/store/5pka8lh8h9myxkxpw23cm3bvlqawb6zd-zstd-1.5.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/6ggphp98nxmkjwh7m7rqf5qjv88rqph4-execline-2.9.6.0-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/cw24dbliwngzndshxsh3ixsfn9ssy57f-skalibs-2.14.2.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/1lrkymch3y0adliv36ikdddfsvif277q-libssh2-1.11.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/9qpsqkk50as5vb4rgq6qvpkavc3hl12m-s2n-tls-1.4.17-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/pmbv63crfrpqawazlw5q2mgbz9v4kn86-sqlite-3.46.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/b9609cffnpms4vqsyxa0f1ixc7prffdp-util-linux-minimal-2.39.4-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/mxlvf1lcnjiq97vn90vf6qlx17dbhzag-moreutils-0.69' from 'https://cache.nixos.org'...
copying path '/nix/store/cnwjpvh6x2l5w1nm93b2msjbh181mmir-execline-2.9.6.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/mwm49gd90gnfaxj48sih34dblmrlm6w8-aws-crt-cpp-0.26.12-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/wsv4nk804b2gwglgzvgwp8h4xqjk23xh-curl-8.9.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/zxabn81fw36a0vszfgara9zcxp070cz3-execline-2.9.6.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/lvv6xvmz7nf81b8w2131qps81r3r3qc9-Diff-0.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yavqfw2pcqwg8b5l90yvakbawcpskmm8-OneTuple-0.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fnzjmqqi1xc275507h3lmxjn2a0za33s-SHA-1.6.4.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v43fpk4c6kkifdrvkir47pjsinc5z97r-StateVar-1.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zpsbwiw9j4xssvck6hss4fbxqg5x4a5l-algebraic-graphs-0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5lpw1y3ailr9v8r2riqpqngr96jzknf2-assoc-1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vs0fkpaqiaarbx2qr1jsq5bmg4dyg1f3-auto-update-0.1.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/25vvmi4y1dadc9vbwskf5sqh9kgacmws-appar-0.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z2rzjg78zblsn147rm29nmd8r11naffv-base-compat-0.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q22a0f93v934hhafyzaachwcc346lpjm-base-orphans-0.9.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mqjnglv1gmmx44avsw7csjnfbclrs7qa-base16-bytestring-1.0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2pdml89n8r9di6x1972h40gw6imwnlm5-base64-bytestring-1.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2xxgdghinn2hgp7lyvz3kxhswwjcvwfq-basement-0.0.16-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8bw186lsckrx0rb41agvrvpyl168qs3k-aws-sdk-cpp-1.11.336-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/4alld5lkiaa5n766603g31qn8wilmx3v-blaze-builder-0.4.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/y8xys8vr5lj4ric7y80088j0f34yzzf8-call-stack-0.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fpkcazlv4fj2fifmfq2sm6xwgd3kd1k7-byteorder-1.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dqy9pn62xl6x0cgvkxiljp07rhz9g93f-cereal-0.5.8.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/sb7xim0malp9pq9kb8zxjq8p5mgz3xa4-clock-0.8.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j1d3nlrq5kzh5lddzfgln9f6gkyk9h1b-cmdargs-0.10.22-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/55f5yqk9i87s1xhi9icin4p0awj6bqbr-colour-2.3.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6mgalrh68gcd1w1s527j2zxzqkqblpav-cryptohash-md5-0.11.101.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/g3krqw166c6inb8yrbnfmly4ps6gax6c-cryptohash-sha1-0.11.101.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/s44l4xm3a0kah0vrbx256jg5iglq1z2h-contravariant-1.5.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jiciklmj0znjfhidz1q4dqcxxrdpcg4n-cryptohash-sha256-0.11.102.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1zn0n0c1ji3iiwchsyff2h7jqjnjcqa8-data-default-class-0.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xihpv6h79c7i4j7b710yx6k08wac6v2a-dlist-1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0vsmlp093a1nqsjfvxz02vsadfk3s6n4-base-compat-batteries-0.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mv6pms04zzb08gyzw2g108fkv6ax48v7-dotgen-0.4.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8pz0kj7gvzmpsx8ymwx719khana0k853-ed25519-0.0.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dmk2h1jvrjd7kgc8ivplbvdhkw6lvfyl-blaze-markup-0.8.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jckpd9qnj6jm3p44ll9kzakpipr0halq-entropy-0.4.1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/35068x4x43mbv07lifm8mc2rccf7wv17-generically-0.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/llys7fw8blg8psfwmd44h9s7dwha3q69-half-0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7ayq0g2mbh9s5ma616bic0c288dvfy5a-haskell-lexer-1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/r9qy0hrs87xfhzyjj9g002y1dar2nqy5-haskell-src-exts-1.23.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mnkx194v95by1bwkmsb26vylv50zv0xn-cookie-0.4.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8g62mdh53df96df8z7f3qz98v2bxi548-data-default-instances-dlist-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c9lhhsmbpmyqjfbwandxbjqhbrih0fhj-extra-1.7.16-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0i9kfffx87vm4155lvih8az964zhlk87-data-default-instances-containers-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/725k7rmj1b8zpsml0q9w0nw9mccp4z9w-hostname-1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jb05lpqhpdy1zx51hn0y8arrk2xs6i4n-ansi-terminal-types-0.11.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wkfd6ny5n684r2xhzcj6pk6afvh08alv-hourglass-0.2.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6q33zch2ip3iaskkdvcpmwp27si9gjwg-indexed-profunctors-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/s407z95rfbmmw05q621zlncygq962lwa-indexed-traversable-0.1.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fb373cqv639h266b0jmfpai5nz4sv2dy-integer-logarithms-1.0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/df9sgwrbpqqwa34sj9dfa8v07rzxzb5r-lens-family-core-2.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hrydzprzg2jbgpi71mjxfdb9vkj2wl8h-lukko-0.1.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rmk9rnrr3gkmj64f0q7j6k1ci4yx0s9r-blaze-html-0.9.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xkdz0knnpj90cnpyr88gpdzd959i042a-memory-0.18.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ha3iydijjlz7zk5h0xsvmyligr0wkf7x-lzma-0.0.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lwp73gddhpbiss3d0bgkyhsc78qfyl31-microlens-0.4.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3479hmack2xi3pha6l0csvpf0lxyq52k-mime-types-0.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p7zdxf3ac29im60z59kq0fni11dn366p-mmorph-1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/329c5nv3sd354yrvgcnvqc0rzrqp2spn-ansi-terminal-1.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ciswlcy4zmmjv7kvkjs6wpnn6bw1vgz5-monad-loops-0.4.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/sydxx3s81z3gfxa4dxw4c8zz19c47g49-monad-time-0.4.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1n94chbbs0i5k2d87nfbkvj8dr2y5ivm-netrc-0.2.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/12f9h7m7vrv9wwjbg9ln9j4j1ww7w9zk-network-3.1.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fk2rd4sd294jn25sx684xbx960w0hvh9-network-info-0.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/087pch1q00cc4c7w8g91b3dglqffkvvp-nix-narinfo-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j63vqw67j2f347hqjcd8gypi4zjn4gf5-old-locale-1.0.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mn4df4n9ajg7lxgsgp5qbq4z6nf39qf6-os-string-2.0.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/d35346bla7haa7amnnhpvn621mfj0v1x-parallel-3.2.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9df74m26n0ig76x7d4flzmzfkin1aksr-pretty-terminal-0.1.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mg9niyk2lz5q1aqs9rnki9ybl38lsbim-parser-combinators-1.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8gs51419snw4hkgw0jppy9578bi0ndsb-pretty-show-1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gklffgrsglzz4afkmdzv44slvfkivvs6-crypton-0.34-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9mf18vwj4fx53y4bc7f6m64akw6rb4n6-cryptonite-0.30-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fkldb1k001x6rif87893fnpg538v93g8-generic-lens-core-2.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5irvvf8v8kympgx7fdv5nr3y9712vx3w-pem-0.2.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xvx96jkdbhc7vm8aa69ki2j88fpqg2yf-data-default-instances-old-locale-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/l17i1pfj2i4f7l32zdhz05wdxb63a9jx-old-time-1.1.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/x4b3ylgkla42ikxs02hhdzg2v69w6ph9-prettyprinter-1.7.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/snnil8gcp2vjda3fmji8c73m3f5l4dpf-asn1-types-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rnxcjskr8226ys62zl9p6zbl5bghk1b9-optics-core-0.4.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/s3qk4yfhqrfmpd36j686mzcra53zjk2w-primitive-0.8.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nzc2v36jcq1z44mjqg0x39i57sflj4jf-reflection-2.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pb5qkg559k94ybyj25cgqc4s570yvxan-regex-base-0.94.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j862j85gpjgqraxjy9ndx4d5v4cv38i6-repline-0.4.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1ml2525z5dwvbyjfg2zz4l2x1sii8xvz-data-default-0.7.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fny184bhghhbmi11z1g86mmhnl99kf6k-safe-exceptions-0.1.7.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/76jk10ps8rgrgxi3fqgy8phgcbld5hjq-safe-0.3.21-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/n480d4sx5d7gffr9ng5giicx3qg4xxkl-asn1-encoding-0.9.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j06bbkaxssdr8bxsgi0i2kv7v9dc80nb-semigroups-0.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/538dd7xk2nw3kqpg2cyn6zbzz11gb9xy-hashable-1.4.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/67ak8d289a14kgaclgn5ic5mxkpjdq0h-some-1.0.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2sw5xqz6b0b2s8g279sq59acph0fgrs5-regex-posix-0.96.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/90cbjx2yvgdvx2c0b7sjd5ngqi833i1a-sop-core-0.5.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iy5bbrlm4vbx2lglh4gv6w38rxgbn7sb-split-0.2.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rrhdzazz2dmvbqviaidzw4ckd17wg1ng-iproute-1.7.14-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c4kz41vnfrf3yxxsnmfsw4wka9l8ghqx-socks-0.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ic4y65305ba8jyz1i49snm6v5cjs08is-splitmix-0.1.0.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ryv6m31nil14v2lvj4i04aaawdnri2pk-stm-chans-3.0.0.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cv4n3br72i1c9m1pd1i8lywi05jaw8nm-async-2.2.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4ky8kz1nkpv1hjn916bg40lvc7iy3zs9-case-insensitive-1.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rv0i9jbik8qc6ybf6f1cspvlba53c7xf-cborg-0.2.10.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/acy58myv2xd50icw3bacjbqmhwfz9vh0-data-fix-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/l8926dlmyjq0a2hl8c5qrgji3jq67c5z-asn1-parse-0.9.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/h15f1ykr6mq2a6263ayy708967ydx375-integer-conversion-0.1.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yqpxvw370bvya696fl25ppjwm0hlwi5a-prettyprinter-ansi-terminal-1.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5znamxiw7inz4l2fd760386jxpf96i8x-random-1.2.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3wkw2ycaxfmhxwizcjlqj1zx8paa7qb5-scientific-0.3.7.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c83qjvdics78isy7nffi1p889jci47yc-hinotify-0.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/47iw34xw38mp57qkr2nnv7izh7kiz4cw-syb-0.7.2.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1ppdi65slvqkbr6w19hzk1qjf1rvpxck-string-conv-0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xz7a5576yswqfky171r3fx546wpmfir2-http-types-0.12.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cw6rwn93nilw68r8sa6vdvizs9p8dhl0-protolude-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lhi6rh4gfpqwgy8q8ix10dwcmn5d8xjb-systemd-2.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yr4k3pcw1ax8pjrnx4iby1w54xivjf4n-tagged-0.8.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k8w5bjgrygqgrirh8rhdf2b30lxlyqf9-terminal-size-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/d2dap7y09rnmsjpy3b3yhsmba6djx77c-text-manipulate-0.3.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q9v1yf67ghapbkzgxrvapg5qspgccims-text-short-0.1.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cy4br4m9h0k4i22p6phgdmyggcvynknk-megaparsec-9.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qk94abgnhivm3jim9yhcaw6vcrgnj44g-optparse-applicative-0.18.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3krzf7gbpjgf95cmg6fkm4q90clipwr7-th-compat-0.1.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/92d0llx58jaz55rbfp7qln14v5ar6pxx-th-abstraction-0.5.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/x33prxgnr8yqwxj013bfxnyzwxwa5v0g-pretty-simple-4.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vq43g5n01n7xxvpvgc1yfm395rbll26y-boring-0.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5mcnzvb64bxxrl28gifw52y36gcykz5h-concurrent-output-1.10.21-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8bz5pfnv891h2dd65vknndy1z2ak5xm4-distributive-0.6.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/npfhlansdfcrm13qr71lzcr4ndqgx1zx-QuickCheck-2.14.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/siv7mg07izs31k3yyqipsj1xapy228s7-temporary-1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xid3ny0kwl7iqpgisih0d45iam5pdjm6-network-uri-2.6.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/52qfc1zh791d33bsjscr3riys8ij8m87-these-1.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lbk30k56awz9vz9qpid93fkjns0xwlhd-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/9w0ds2shn4h89bijgd93lsi7drnq13fb-constraints-0.14.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1rbfk69h04lzgaj3gr1a82ndkp0y17xp-dec-0.0.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yd20fxabca3kg322k108zy824xl461bi-comonad-5.0.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vbjcclk93nqv4yxd9al0mlcxydzcs71d-time-compat-1.9.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c3rxwlxn4ds1fafmkj43ql4206b94qhh-ascii-progress-0.3.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/za87sdiy0p15szmivggnms98xbcb4d71-transformers-base-0.4.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ml4f5hpdg09gflry8icryqcb0v99y9d2-ghc-9.6.6' from 'https://cache.nixos.org'...
copying path '/nix/store/rf7b5ia9pzqypcxq9xgy6c90lqad9ln8-transformers-compat-0.7.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pwqvgc77dw8a49b0f5cbawlnyswwck9m-unbounded-delays-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3vfkal4l0hgcbzl58b0wdjwynyrjmiy1-singleton-bool-0.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/23ax23d47bn14673v9s5qx0kq368i1zf-strict-0.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iqga4xxzwgfh6ykcdh9qw8i7vsrk5scp-unix-compat-0.7.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/maqgbd3xlh74mq6a7xa48fqn998gqrlw-generics-sop-0.5.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7cagsv38lz4fl9vc2k3kzkppq5d619m5-optics-th-0.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jjmji1jxw8mnc45wkq6w88g18dw1yb0j-th-expand-syns-0.4.11.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1sdmm2w1yrk7qwl9h7ih27a365x64b8h-microlens-th-0.4.3.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1iv2jaqghhmzpdfm0l256zr1fwgz4nvj-crypton-x509-1.7.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7ny3a9kkmd8rnli46l90hg7al50nxq96-bifunctors-5.6.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zns0p611c8nqz0h4x6rmps2sbigq84wv-monad-control-1.0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xkvp4234n1jr3hiy2pl2d6cpwwkj7c1y-th-lift-0.8.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5nbz171hr1mrlg2gpq2v5hrvhv6jn3js-attoparsec-iso8601-1.1.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gn9b6647a5xxwrnrak75m7bj6frwxff2-unix-time-0.4.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nkmphlrr49l2spv90mh093l523icl8z2-unordered-containers-0.2.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gcs4bj8ndsldswr911whwxhkl95488h0-unliftio-core-0.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3210m5m3n9praizhraqa9brcap142dhm-concurrent-extra-0.7.0.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3r2z2z2ah44z9621mw0rgryj9wg7icn8-utf8-string-1.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rb77mrkw8i34fjqacnfdwrc5dx5kb0z4-uuid-types-1.0.5.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/b57f1s34s4lbv3q3h8206y3qklz7y84l-atomic-write-0.2.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/aa73hqwbry1jy2igvmlkbmnnyy4g25qg-fsnotify-0.4.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lv1pci15b4j62rbwhbn8zrrlxjk1jphc-vault-0.3.1.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a373w7csx8mj6v5i5dd3rgjsaay7a5dq-th-reify-many-0.1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/326wwxy8gs9kwlj0hxpvfirpb4604b70-lifted-base-0.2.3.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bzlwnqxchf576alagx4w1w4gksm5y3cr-vector-stream-0.1.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vmmzf0gr20yyy24xnkmh3vpqlm52dlna-versions-6.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bky1n5vm7cn9ajv8m6669n6n8csg63yq-void-0.7.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wr01iqnydfy5ahgh67815rqwrjanr078-immortal-0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8xv837y3sw8y6y3m4z3asvhgxxg0j7c4-crypton-x509-store-1.6.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a3lhj6mpf3q08dixp3yilp4d7giqb045-resourcet-1.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hpnb21xk4vsqf8g1a237jsi0qf6kaabr-retry-0.9.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lswgszawb7ipgvhjxcrrgl24hnl7dqk5-profunctors-5.6.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kqf1n5g3i9vp5r56pr0vfihmvcmkd9xq-charset-0.3.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/i4cfbq973188ad7y4ykymfia8q0lbc7f-http-media-0.8.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/92n07j9c3jc2w9v81hjmjapm5rdgx2fi-ini-0.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jj13n6j2ahh012rrxvxhz4f5lyn0bzhf-http-api-data-0.5.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c66k3p0ivg7n1sllb8nvxkfvi3ppb4w8-relude-1.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5yq2p1ckjypp2pvfzg0kd11yvy6hkzlj-semigroupoids-6.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pmgaqbqw0npiy3cfls1mh229a7b5qzmx-string-conversions-0.4.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6n2v9zq34yli4d0vs8c1z84swmmwjbii-th-orphans-0.13.14-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/i057by27xmrfd8v6cnmm742wf1mm3brn-typed-process-0.2.11.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kx4l8bg7wsxqscy7s9pjr7j3qrnqdpfn-unliftio-0.2.25.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8wa0qcmjbv8sinyqsl07543kwfd0343z-crypton-x509-system-1.6.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/i9dhzxcqy23m8xz7rg84w04f412lb39b-crypton-x509-validation-1.6.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/67gskdm4spp4dlcp00d2ai7rhqj32hxh-uuid-1.3.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nxvka78ksf9fyc3jgdc6qz34aa2qghz7-vector-0.13.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3p1ripq7d68wp5p2q12zmz116ynnmpw6-xml-types-0.3.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wpbw63nfqxl2xkmnrbmyvg0jkrkrrxxd-parsers-0.12.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/m11x1sfmlzcmrxc2albiwc0jvvsqh0d2-generic-lens-2.2.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q7h4wzf9cyhppx0gkl9zzhqqn8gc73l9-invariant-0.6.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p6j9lv6w54r0kd7vnlx70j9qds2jdlq7-saltine-0.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xf0cqziy42m3gnv5nxgq7wx8j97k6sl6-zlib-0.6.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/29ffwzmi83vn2a6n5mxs509x89svfz0h-either-5.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ciwrybn2j97ffqvflqbyxwr27lgx5w89-free-5.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j49iwqpr0hhgnb350z6g8awq9qw7adyl-zstd-0.1.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/h9dr88hhw9ljc2xqqv54j097lpmffrp7-haskell-src-meta-0.8.14-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a37dsqkwlhhh8ghgwfkyjzc0mig27j4f-tls-1.8.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/sgslhmg72a8bbxk2zhab7hgkkzkf9ypn-indexed-traversable-instances-0.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yagr2c5z16n1lk4js4ccmnmj29hrrq09-bitvec-1.1.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fzckjnmawr4y0wh8zj2kq62ff5yf5ans-nix-derivation-1.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/25hmv86msrmzbxzkc336b828sv5cynqi-inline-c-0.9.1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jgsdqhdz671vvz2ivv504yiripkydr3g-serialise-0.2.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vaw3d564g92k7q05njw86jqsb94wgwfk-th-lift-instances-0.1.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/h54vz0rg4g5nv4hi0k8vi0jpwnjq8q96-streaming-commons-0.2.2.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hmsyy38000qzzxbvwffid692s0q9vfxa-optics-extra-0.4.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zpn61v62bmbd4v8bymz4ijjfz6i0jx6m-semialign-1.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/76c6vrmi83d6k2kivxwq71c66m03dgzn-uri-bytestring-0.3.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/m8wma8xj3riqbzar7vr9qywm916vihxv-witherable-0.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j3pijq95sf0g3yb9sarppr5x81kwsvyl-hnix-store-core-0.7.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bi88pvgv017cf4jn88bgdbivgyvh6h9m-here-1.2.14-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k2sy9120sam9f15315jrgp9smvvmhplp-vector-algorithms-0.9.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fnhb57c6xacw3bjhgl3m4qkv8xax5avh-inline-c-cpp-0.5.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rpswmkhg39mx7jc4z14z5znppl2lg459-adjunctions-4.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4lvxl8anjclcwvxyj5g9k8pp46rdry7i-crypton-connection-0.3.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qncvdiy5ms8kxy0f3isrgi61ff079rs7-http-client-0.7.17-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/l8k4zz237nwrqpi1yl7zxnzkj0cwnsd3-websockets-0.12.7.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8d81a5nj8c96249fqwbfk9zgs66v1zh0-mono-traversable-1.0.17.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wycqyqd4mrr08bf91j0d1rxgfghl561z-aeson-2.1.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zv2bwxircg1vi33awwv7x1bmqfzdkglq-kan-extensions-5.2.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jfrijqkakh7qhh7rg7y6nrvrskq7qkd7-wuss-2.0.1.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9gz574j6gn8ypnmdaidi08g1pk071dc6-http-client-tls-0.3.6.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ali2q63zqrlr3g88c0988hjlvcdaqr1c-lens-5.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1gfiygx9p2wyl34aajcc141895xha653-conduit-1.3.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/faa609gdxfg0qi7l932p837wnv8ccr5l-cborg-json-0.2.6.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6ab5r14d46rw6pz1myn2b5a4blmh5v79-deriving-aeson-0.2.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p7sy9hs8vj6dr7y90dwhbfc4dykbji6i-katip-0.8.8.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/x48wn4a44hgjbwj1q6jr5ay19bj67ny3-servant-0.20.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wagr7x227nvr3lpvjzwq2znjh2fqbyv7-aeson-pretty-0.8.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5gqhw7wqahfblrdhpz14nrbhznm2f0kw-dhall-1.42.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3cmfp44qgmbv214vbaavkl7kmy95i7m2-servant-client-core-0.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/g1dgzxd6yfjxbfmn04crmwivhi7s2gw5-conduit-extra-1.3.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/i6431rldsxlz612i6fp99927j5ysjkph-conduit-zstd-0.0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zm3zqp41rjwi8kdh086dv8bckyjhr3k6-hercules-ci-cnix-store-0.3.6.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6hfwp9bb1cip6d5q9kw00v4wmg70asw8-cereal-conduit-0.8.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5w3jlfj60b9198n1x7dd0wkn34ksk8hg-servant-conduit-0.16-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3s7fwj9zg9pirk5sgknd0g5jfynprrv9-lzma-conduit-1.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fznhgvqjinn4d72y945qf41ynsn6nbaz-conduit-concurrent-map-0.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dyaha1a361ljc7byi01ca9wr53qz8qi5-insert-ordered-containers-0.2.5.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c4s56bayrbfn66kiyzbq5z2a3nnji21p-concise-0.1.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/sb8zxwjs9dnmvcxblm00bx875yrrv1by-jose-0.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5m4bj8vm3khh412894b5jm3c27xxs2pa-swagger2-2.8.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/n48s0mlk0gas0128v2g1shfqak966ac1-http-conduit-2.3.8.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yjwgj8shw7nnmlwfhdpjgzfcf0cj57fw-xml-conduit-1.9.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iq4r1m0z55lngvfa2a2dnk9slnvwjxmj-stm-conduit-4.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0zfrldyd0hsxi5vlp77dvl4rw64azmbc-servant-client-0.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3ij194q59gv2q0rc82x773xri26divjy-amazonka-core-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xqw8324dyvqjy2pw1zqyhizcvhl1q4lw-servant-auth-0.4.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a7ixa5rask7mwcp37cqbmazjvrd0zf18-cachix-api-1.7.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mr7vpy7yf24ycmi72xh66s6dhaxay1xw-servant-auth-client-0.4.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ajhsh5m1w1p4cbjbp8dyygha1n952dla-amazonka-sso-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fplf0x87w1cfb1j11i7fb1xrwh9v3fcl-amazonka-s3-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6axidp6k71mcwsqzrlg553gy9lmfyc7a-amazonka-sts-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5ihqmk4i8aqyp814pbrlg2936qsd7h50-amazonka-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ccig54kd0p8fl8lxpydwks7675i941lf-cachix-1.7.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nimkyp09nwm3n0ykikzvd38q5sbmba21-Diff-0.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/kcmdvsfy540i3k5nd7drpvyzn7aam1fk-SHA-1.6.4.4' from 'https://cache.nixos.org'...
copying path '/nix/store/wbp9szyffmwnxhyalsc3ffpr6glrqlrx-StateVar-1.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/zz890hp91ylawxk0xzqg5bpzxzs02khb-OneTuple-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/1i1dn1kj70bfgph7w6cq72k8yd8mbr41-algebraic-graphs-0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/qwk6nycjlay72y4gf3wq8h2yifrhr049-appar-0.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/a76q74rr4mdz6k7s7za194bhqsjc4qia-assoc-1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/cfxgnaypm6wcmwyjja5shvm8mlry4rjg-auto-update-0.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/irmgais49npnpidv6f4z48ai83wggpnz-base64-bytestring-1.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/s0h500n6qwngdbcrykzrmrsyk906vsjv-blaze-builder-0.4.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/si3f47ygwlv2b9ha6m91bkg210rdi1ng-basement-0.0.16' from 'https://cache.nixos.org'...
copying path '/nix/store/x0818dqplyy9jji5l5ywhmvikpr3lv5d-base16-bytestring-1.0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/x3bxg3kb7w4c6k7gmy2zbhh0jhsx5l9w-byteorder-1.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/ndb6fcz7ci7p0gkjhiz3yjx0mjd1a818-base-orphans-0.9.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2daixynd2d4qsi87l1z16jkq88l74nbl-call-stack-0.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/xwzp499iljg94gizsww8c6dnsdbhfill-base-compat-0.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/67w9k2i9yidxgs83s924qf17bmhcv1xa-cereal-0.5.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/hpnyd4c8zba6j6inbbcpgin5n5d9m77x-clock-0.8.4' from 'https://cache.nixos.org'...
copying path '/nix/store/vbpm0kwczvj3p26zpzwmlxl6w4192dki-cmdargs-0.10.22' from 'https://cache.nixos.org'...
copying path '/nix/store/w0fqq5ghcazflb0vy1pj4cdh8p9v9c5l-colour-2.3.6' from 'https://cache.nixos.org'...
copying path '/nix/store/9m1w0bgbn2521vpzwdj2zdzllzb7dcqf-contravariant-1.5.5' from 'https://cache.nixos.org'...
copying path '/nix/store/q7xcnly25dhsbqgvqhbf35b4bzk7d93q-blaze-markup-0.8.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/b7l7flsc8kamavqnfg9ya2fhjv85z7w3-cryptohash-md5-0.11.101.0' from 'https://cache.nixos.org'...
copying path '/nix/store/wv3jfbwalrx7am8bv3d69fdg7542bfqx-cryptohash-sha1-0.11.101.0' from 'https://cache.nixos.org'...
copying path '/nix/store/cn9cp5mbqssg15qz6zq89dk1wkdwr33q-cryptohash-sha256-0.11.102.1' from 'https://cache.nixos.org'...
copying path '/nix/store/y2ma6a8v41zfyx8j2am88xdfn616wacy-data-default-class-0.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/26jbsj0x211dq010ifx905s02vj8hy85-dlist-1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/a9lkjzcka3kmjnfnv0vr0p0xwanxaj7m-dotgen-0.4.3' from 'https://cache.nixos.org'...
copying path '/nix/store/avikdvwkfaxb3qxhyrs1wb3j05bhzl5i-ed25519-0.0.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/dg5nkwl5lbbf3sw5ms078arid787cv26-entropy-0.4.1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/80yxa01cfk7bxfnwdlri7313a8xfcmv7-base-compat-batteries-0.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/957gp70lqw707q5ygw9s0i4f5rbrm2ph-extra-1.7.16' from 'https://cache.nixos.org'...
copying path '/nix/store/rxc2apjnyz6hv449a235gci73bd93svs-generically-0.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zxvxjzbv84g3wjjyvcrf8cgny76qdvyl-half-0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/xr5dhzgcc5q7qrvs1gjaq4syg4rmpnsi-haskell-lexer-1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wxn72ifdmrgmisg6crbqrg2vxzlqjr6f-hostname-1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/6a4c8lfy26hy6lzrvr6j0ly8x81s2l0n-haskell-src-exts-1.23.1' from 'https://cache.nixos.org'...
copying path '/nix/store/86drmrffzvk7qhi1vgkvx7sbdrjra7s2-cookie-0.4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/jbajcpxzcf78fn8c829hsypsrvpzj914-data-default-instances-containers-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/7h6dni7y6vwf480gb7lhs7f2zyykk0ll-hourglass-0.2.12' from 'https://cache.nixos.org'...
copying path '/nix/store/l89srhkqp5aqhq0x5ffphcpy0h00gzsx-indexed-traversable-0.1.4' from 'https://cache.nixos.org'...
copying path '/nix/store/dh5gxyin3s1hrlh44gi33zqh7gz4mdm8-indexed-profunctors-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/hn8ph116b10rn0vx08zjdhplhanyzqhb-data-default-instances-dlist-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/y2qvs8nazmnklxqhax1yda6s031r147b-integer-logarithms-1.0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/3v08728xqwqizhij3kn17sbmbkd06ps6-lens-family-core-2.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/sw6h5vyy8abv7ggyaz75pspv6jgls3dw-lukko-0.1.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/vnqf61n1j3q5jpkqkagplj7p3cswcsp3-lzma-0.0.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/fw82dchpabz04nia3g9an2ad3ns1p6wj-blaze-html-0.9.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5rp3jbvmywi4iqf7jyi5f34n7lr9hf4r-ansi-terminal-types-0.11.5' from 'https://cache.nixos.org'...
copying path '/nix/store/3avv4gcwz7zb3gmlqmn2lnqhfyr41wxp-microlens-0.4.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8aisgi0j4ra7phb7rp9pf2d60wjzcy9s-mime-types-0.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/bck3y9a34v0vjx669qja59xjzkiz0lfz-monad-loops-0.4.3' from 'https://cache.nixos.org'...
copying path '/nix/store/faqjrlhb9l61ca6jp1zjh4dys7kfq8ck-monad-time-0.4.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/662rv4p5892372dy10ayqbhm2h4v5hnp-netrc-0.2.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/i16dqzq0br9qs8y0ndkdvg4agh5bfxbx-network-3.1.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vpmy8xc8g0a0krk4wyidfnww4f8j1dws-memory-0.18.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lq0rab0921lyjd3lh8afbnsgq7fnj4m6-network-info-0.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/gqpaqs5cr0gmai006lz77626dlzlgynl-generic-lens-core-2.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/znrkxypcb3qjfab8gyiaabmhamswkcmn-old-locale-1.0.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/yx17g15249yg6w06nf6vy2cbha5m5kcc-optics-core-0.4.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/v2h9ibapcmqg7j3bik9bv2yca7yv0d85-os-string-2.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/hhcjbc0yn5aq3i4ynyzz23darcbza4f9-parallel-3.2.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8kvkdcsrrpgdq03xn3x6b9mw42idyyg9-pretty-show-1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/9cdq7ffsqlgwzn7afp112k2w6wcq2zml-ansi-terminal-1.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/4hm7008g64x37zpnf53dsxxf7gmbgy68-parser-combinators-1.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/y24p16hl7ir4y9brzrl9l88dkbsb69ml-primitive-0.8.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/j7ysb70a5qccr1gprb3zx8qzwridywf0-pretty-terminal-0.1.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8bb7mlsk8nxcz8n5zzlbhqkd7ks74hbh-prettyprinter-1.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wfb40mr61wy9s41sl0h5vagz1ydc6n65-data-default-instances-old-locale-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/b7das4zbw5ckqql313fp06rd8c7x7fiz-old-time-1.1.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/49gd0i9x2781wsqi89rlx0wzandb80kw-reflection-2.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/g4q7pqk4kxasz8xg1xn2yhq3r6ii1ybl-data-default-0.7.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/hn6m5p7fqyxryhx6b9w2drlksns94x2i-regex-base-0.94.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2dla9pnf4r8wnc6kvaz13cvcl09hmjbb-repline-0.4.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pq5vribylc0fpzjkz0i7h8n12c6lvygm-safe-0.3.21' from 'https://cache.nixos.org'...
copying path '/nix/store/23cqj1lqd4y40pb1kkkw5kb7a6kaq70i-safe-exceptions-0.1.7.4' from 'https://cache.nixos.org'...
copying path '/nix/store/kqm1wbpnc25gpskbs0qgjiv5r392p1qb-semigroups-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/dcwjcji6fwym0cl7wpqn78w5czf5c2ls-asn1-types-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/924q43nz386nynvvv5nj6x88nl8h7iwn-crypton-0.34' from 'https://cache.nixos.org'...
copying path '/nix/store/c412d59kjpnn22184kp1x39saxcjy1mk-cryptonite-0.30' from 'https://cache.nixos.org'...
copying path '/nix/store/ajgsllzcr4yl8j168kvhabqf71wr4jwx-pem-0.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/jvhhpbbwq5fxgkzzidx9nd9p7mvwkbsv-hashable-1.4.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/mdgaz90hxlhbhw6m41y61yw5qdwij73d-regex-posix-0.96.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/anm1nszf2qxkgvjvsa2hs5k32f2iaj2w-some-1.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/h9nsqajg2axhy8ncqvvnaggnb3a4yplc-sop-core-0.5.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/0rim4vlz901v8yv187wi0rqppqaz6576-split-0.2.5' from 'https://cache.nixos.org'...
copying path '/nix/store/7vchl2wd7hybrgpwpmn8vx5f18zdq072-asn1-encoding-0.9.6' from 'https://cache.nixos.org'...
copying path '/nix/store/0ky5jwzbhfija8b07g6asf5hxhh2s1sx-splitmix-0.1.0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/gj7ksb3ld4fn957w3drxass03pangn8n-prettyprinter-ansi-terminal-1.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/2dkh25pmhs7awgbpfhrx4whnzg5fxx8v-iproute-1.7.14' from 'https://cache.nixos.org'...
copying path '/nix/store/6lwvnn90jn5gcqnjgq2d571sf9198wbh-socks-0.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/ij22nldf49vqi562a2l2l9ic4bwfj3ha-stm-chans-3.0.0.9' from 'https://cache.nixos.org'...
copying path '/nix/store/mylp5qsy2vb509ny1gq9ncqrg743c99m-cborg-0.2.10.0' from 'https://cache.nixos.org'...
copying path '/nix/store/nzki8y9ikkmkl68jdglprpgd73jxjmzw-integer-conversion-0.1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8jlj8lbzn4rv1p48j7nqz4skif6x38ga-string-conv-0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ibdrz4fmyn1xq87jbca8afjwcyf7qlkm-syb-0.7.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/hni3f68hv23szy4j9qyvdhjw080p3n0v-systemd-2.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/gj9cy5n68lmdldkwyvngqb5rz9x5997x-tagged-0.8.8' from 'https://cache.nixos.org'...
copying path '/nix/store/hdpz08rn21pyqn6h5mi9s3vvnqvqays6-terminal-size-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/nzgp31chf9fsjbdbhrarar6h71r0dzid-text-manipulate-0.3.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/63szyd0cgc2p4klfnd8a9y9084131zk7-random-1.2.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/6wlgl3rc8ibzwlrj3f0mpwgvgqb99l3j-th-abstraction-0.5.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fnb0cq87kapir8la0lpp20wphxzc21hj-th-compat-0.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/sxlgpgwk841s2rw94zl6bkzvggszvlw6-transformers-compat-0.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2nbda356w1h0bs06qs1s0m40cmvb49zf-async-2.2.5' from 'https://cache.nixos.org'...
copying path '/nix/store/rckv90mifqgpdzk36hvxzhk4kkn4wh94-case-insensitive-1.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/k0sh958yvyq3c6lzp739q5m4wvfr875s-boring-0.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/1bpannvrb091b7736s6kmnfkvx957rx3-data-fix-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/yk9bpr9pvsnb21bn87ddcvdsvrfsxim6-distributive-0.6.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/36wjid7vbn4d2zcqnvd0z6yx0q5333fa-scientific-0.3.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/7mb1520bxvfqmayw49afvmzhsqyknl7s-network-uri-2.6.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/4akb8krf3658bhz2l1z0504llmz67fs3-text-short-0.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/50r5h3wmfahva3wa0wgipg65xsf490yi-these-1.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bzlywx40d1dpjn28bgw0s0v19vy5i7j5-constraints-0.14.2' from 'https://cache.nixos.org'...
copying path '/nix/store/nb5x8g9mrn64xbb9qh78kf146469xpyw-dec-0.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/2p7vj17qfkl3iq59n6cfjrbhpywy5jxf-asn1-parse-0.9.5' from 'https://cache.nixos.org'...
copying path '/nix/store/l6cnkymplxirhsi6vaw6w2kjwr07131s-http-types-0.12.4' from 'https://cache.nixos.org'...
copying path '/nix/store/4742zxxl2nxjwayra6pg18hfd7cfa8a4-time-compat-1.9.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wjq7ixfm0w6iq339i1848wj7y38ln1da-unbounded-delays-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zrhagw56asxvmzg8x3agwz108i5mg2yq-hinotify-0.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/lqycf03kgi1614fmi1ygwwczgwxvnk8j-concurrent-output-1.10.21' from 'https://cache.nixos.org'...
copying path '/nix/store/yn3av22v5724djpyknnc0ln93il97alh-singleton-bool-0.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/sjff5sr3hk3383dpwji3r84vb58gljwr-generics-sop-0.5.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/hg1aisn2gzgr4ladyb541anl5nb14fmc-concurrent-extra-0.7.0.12' from 'https://cache.nixos.org'...
copying path '/nix/store/hp6paxp8kp8mnjyicxa87m722012faxb-crypton-x509-1.7.7' from 'https://cache.nixos.org'...
copying path '/nix/store/i8ks7bg4d268zmixd5633wpjmkdl70f7-microlens-th-0.4.3.15' from 'https://cache.nixos.org'...
copying path '/nix/store/djz58765fhayvbyascmbs6if91kk27n4-comonad-5.0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/7f0chi8acn9xzpb5wdwxrhb1jyhilmh5-attoparsec-0.14.4' from 'https://cache.nixos.org'...
copying path '/nix/store/4b671hb0vm40nxxima8ygkkiahl7s9g7-mmorph-1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/7dz9izfby2f4syrjxdr7l7jz4y95pb3c-megaparsec-9.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2jgnz9p88500a637a78zyf0ydrgswv0r-optics-th-0.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4r5gqn6fwv6s6llcj2j9vc94ygb758jr-optparse-applicative-0.18.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pl1ir7hf2x5yhgqcalczfplsi1ann0y5-ascii-progress-0.3.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/rvqqf6cmdxp6ridqns319xp8m35ffffw-protolude-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/xb1z9p2492qayhsnps6wv7nd7aiv25r2-th-expand-syns-0.4.11.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fss720xwj60bs2q64915dh45852gk6aq-th-lift-0.8.4' from 'https://cache.nixos.org'...
copying path '/nix/store/m01zhd23wy87sywzfmrsskggd2vpsvi2-QuickCheck-2.14.3' from 'https://cache.nixos.org'...
copying path '/nix/store/6ivhdb4ivrf7v9pn2hjxlcjj7avpx6ic-strict-0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/7k3z60zqahyxmbjcf5nllk2w51780is0-bifunctors-5.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/jpwgx1m3sy4c1xm6pyr3dcsq6p82x9sc-temporary-1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/m5a0g3kqv79f7vmq8mdwp34p13axf52i-transformers-base-0.4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/4d1587pzvi4sfvn6dj6vpariqmp967d2-unix-compat-0.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/9zpgp1liicxb036vip4f5fk5f3xk5727-unix-time-0.4.15' from 'https://cache.nixos.org'...
copying path '/nix/store/p0mlwz6h1rg18csvdwai22s0xkchhvg7-unliftio-core-0.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/n4hf74sagycl8cjic6c0wrpspqzs235l-th-reify-many-0.1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/px52bxnaw7w7g6n66sg08bz5mqp5inlw-unordered-containers-0.2.20' from 'https://cache.nixos.org'...
copying path '/nix/store/pbfzxxwxb8f9mdnvhqmfxc2rvzw2k64z-uuid-types-1.0.5.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bmy7k8h0dqfmk3i99wzz15fz8879g4bz-utf8-string-1.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/5avhlk880jk0qmqp0bsbyxqvdir8x23q-crypton-x509-store-1.6.9' from 'https://cache.nixos.org'...
copying path '/nix/store/k1wg3xyfzy3bn29qk7pik7468qrp6z61-vector-stream-0.1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/9iv9c45fk8f0fc0ck63f5q0xxi26ljlw-immortal-0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/rlxcxajlmjmmdja4v9xfdpdcfz7g259j-monad-control-1.0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/pcwkdzvkj7pn6wc1q6l5whfx3dx6bfy4-resourcet-1.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/m2v1avh2ff866r0sclnibmvzzmik2nmv-retry-0.9.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/xxh602l1bcbxpas1g2zws7xicid61m2c-atomic-write-0.2.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/p6pb7nv0h8para16095y7g4nzwfk48r2-pretty-simple-4.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/hajbpmwvvysw4gkpwyn57yw0fy0a2hh3-crypton-x509-system-1.6.7' from 'https://cache.nixos.org'...
copying path '/nix/store/nz6m9nl2xc4x5n9m5d32qlpq1zavkdqf-th-orphans-0.13.14' from 'https://cache.nixos.org'...
copying path '/nix/store/wm1nz4aabz6ir51nl66sl8p3mwgnvzpj-crypton-x509-validation-1.6.12' from 'https://cache.nixos.org'...
copying path '/nix/store/nzcjdsakkmczp80xn882zhdmfpi8hlsw-fsnotify-0.4.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/nlfm31gg06qmb65ifq43z37691r6pmdv-http-media-0.8.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/9plsl4xmxdam8i1bcx2vmyy7n1n2n3n1-lifted-base-0.2.3.12' from 'https://cache.nixos.org'...
copying path '/nix/store/nyvj100202y3vsrbj16mwrfapwmc2vys-string-conversions-0.4.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/izdqpp2cc1jkrhrf7yrslqz9qn9l6s0p-typed-process-0.2.11.1' from 'https://cache.nixos.org'...
copying path '/nix/store/5nw5sc95ayvv3hb6w5qnp3jay7vmbszg-unliftio-0.2.25.0' from 'https://cache.nixos.org'...
copying path '/nix/store/xx49vz73i7f2gczw5x61jm4wm2rh8ysf-versions-6.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/6rirzhsscdyil3gd3b8pcxj1ijrfwwxm-uuid-1.3.15' from 'https://cache.nixos.org'...
copying path '/nix/store/1xv96zc8axzjbvdkdn0lz6fsgjlslfqj-void-0.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/znn9j3r2nxf1zyfk8da6kdfkfmh57wjy-tls-1.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8rdnq2g5ns6j5cps43qng8c33lxnmfgz-vector-0.13.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/qa76k4mhbf0a4ypfhbwh5h5ggm2xff70-xml-types-0.3.8' from 'https://cache.nixos.org'...
copying path '/nix/store/psp7fa9lf28jghvg03qxrfn8vz9m0yw2-zlib-0.6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5w1q5xhd1kvzsrmlhrw04yc6862q6dis-zstd-0.1.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lnkqchyxp2n8f3lz34jxhwka65n2za1d-attoparsec-iso8601-1.1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/wpjkm8c08mrpbdb91ihmjsm1d534piyq-nix-narinfo-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bl0vqpi7yx301nyzriqbvr4k3bsvq3b0-charset-0.3.10' from 'https://cache.nixos.org'...
copying path '/nix/store/qm06fc44r0wr9mw2gcwg87dzbgbqxr8f-ini-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/znslia8wd2h8623sm622alxix85x5j69-haskell-src-meta-0.8.14' from 'https://cache.nixos.org'...
copying path '/nix/store/bil37zv2j8bqa6l4ylvh0ppglifcppkh-relude-1.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2kn7663dv497y0gphfwnkahg148kg4g6-vault-0.3.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/4f0yqdyx8rk7lsq5p1jhc74b3vcja4dv-profunctors-5.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/0k65vcz7fxqcjg7j0krm1q5crhbgfhi9-semigroupoids-6.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/nbirdlzpp6xv4sin3s36401h4ngqv76k-http-api-data-0.5.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vp8hirsm3mzcbbhw67xsadvvy2nsv95w-streaming-commons-0.2.2.6' from 'https://cache.nixos.org'...
copying path '/nix/store/splhaa3q9bikpxhw8sjfz380raszy52f-here-1.2.14' from 'https://cache.nixos.org'...
copying path '/nix/store/frmfav7q50yv7m40hxq1wdg2qlqyrgfz-parsers-0.12.11' from 'https://cache.nixos.org'...
copying path '/nix/store/39k5wmi5gm23fki98jnci3gk5w723sin-http-client-0.7.17' from 'https://cache.nixos.org'...
copying path '/nix/store/hcvwjjnl9941zlfljnw2bs6ycyg0lk0q-websockets-0.12.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/4v347dckki2w8ynrfb8f0lq0d96gwdz2-invariant-0.6.3' from 'https://cache.nixos.org'...
copying path '/nix/store/hpwk6mfmi6jj03nach48b1rvvnmzi1dz-generic-lens-2.2.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/iddglxxji16amhdjr33fvd4560ijlina-saltine-0.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/0ki5hga7r8ya998vzgnzjr852gvy82g0-either-5.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/aa4spahd0c3fgh7hpna7qxkmjc9f95jf-free-5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/3ap76sfhsgr6sk710l15pjsyvyfvfgbw-crypton-connection-0.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/vnzy5a0xvymjhlbl8ff68gh5xz9gah2v-http-client-tls-0.3.6.3' from 'https://cache.nixos.org'...
copying path '/nix/store/fhnfamsvrhq07crhkpr299m90acy67sa-wuss-2.0.1.9' from 'https://cache.nixos.org'...
copying path '/nix/store/008abv9w1vr1p9fmy66iliry5c43y44l-bitvec-1.1.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/j5yz25yc3qvfcfgnh4q10pg8r1nn3602-indexed-traversable-instances-0.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/73kz631gkklaal4salsm9rninid15f6v-nix-derivation-1.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/176pbmjxz3fy9s79fghfbnxz3qbp6svn-serialise-0.2.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/742kzkskal9lf5a2p2ny1g0ldfki9rrg-inline-c-0.9.1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/hrywsvridz0c92fz7fz7zqnzxy57il9i-th-lift-instances-0.1.20' from 'https://cache.nixos.org'...
copying path '/nix/store/dh5iglgc1jvgg3zpsnzq34s3c07b9j95-optics-extra-0.4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/w4xhzsv20p7ysdkm90zg75iqwq19k7w5-witherable-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/x0p5d3wggpxriqsp8a833nqldf8fn5b7-semialign-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/knb4qs1zs53d67pszcpxhgjzy8186gqs-uri-bytestring-0.3.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/y4bf2h01nd4j4qq9hnqjlhbmwz3dzks6-hnix-store-core-0.7.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/xaxvvswm612vhzrwnn7d2lbfa2pidfb5-adjunctions-4.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/k32n8jmf5g4n0dhq01i67604y70bj1si-aeson-2.1.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/px4yam8kd9naaycgpns97lmnpr76xbd2-vector-algorithms-0.9.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/nkmk1iif0jq1j75chh5mjbz0cqxfibmd-kan-extensions-5.2.6' from 'https://cache.nixos.org'...
copying path '/nix/store/m4zjrqjznm2lvwz10b4x48q3153sxg0k-inline-c-cpp-0.5.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/wg11wzrkv98hf75yl3y7ffiaw077h923-lens-5.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/r70bhjklq05pbrfmh2jk3qi740bfjyzj-attoparsec-aeson-2.1.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/kyrp6j98ydl968i83l6nxszwrl0qlg25-katip-0.8.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/nfq7g87qm4zslgczxzksj5dl7pmdjwyr-servant-0.20.1' from 'https://cache.nixos.org'...
copying path '/nix/store/w39ypzmf63yx4ldkzq5fad3g494x1rqx-deriving-aeson-0.2.9' from 'https://cache.nixos.org'...
copying path '/nix/store/ypvnc8w5pd0jxs67a5ylryz6mjfricm0-mono-traversable-1.0.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ib1rj0jbym1hw57asgd7cpmiqfmqp5q8-aeson-pretty-0.8.10' from 'https://cache.nixos.org'...
copying path '/nix/store/02bzh6xm56j8y1v95yjrmdd043bip9dj-servant-client-core-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/kxh1pfw45a5wrby6xbifbfr4kijw2jhc-cborg-json-0.2.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/dvb4q9p26dcw6rp5hd2bj9mrx3gnyvbm-dhall-1.42.1' from 'https://cache.nixos.org'...
copying path '/nix/store/39v6xjjymc5518n7mybbgfpsrc6knbh0-servant-client-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/k3b62kcn8kw5j6np4r2fqd8h1rj5a8pi-insert-ordered-containers-0.2.5.3' from 'https://cache.nixos.org'...
copying path '/nix/store/lpjpk60dknjw5d061jpr09nixmgh393d-concise-0.1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/gmk65gvg514ay0jxa5nxkwracmxg65c2-conduit-1.3.5' from 'https://cache.nixos.org'...
copying path '/nix/store/zh81lh4csvfqcxzahxmy4iif5iipa3wp-jose-0.11' from 'https://cache.nixos.org'...
copying path '/nix/store/3snpjjja4pg9bg38lnpvdy1jmxdjp1pd-swagger2-2.8.8' from 'https://cache.nixos.org'...
copying path '/nix/store/sz5ixq6x26v8850k9sra7vv2jrwp09z8-cereal-conduit-0.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vbx3ixb4q8xh1nbvh0ky773q21wg4hwn-conduit-concurrent-map-0.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/qbmy8xmg31h7a6yzpp43gc269c6p4vs1-conduit-extra-1.3.6' from 'https://cache.nixos.org'...
copying path '/nix/store/ipq42i75v0r0ix35r52phb2qcc3sdmdq-conduit-zstd-0.0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/y461vpir2flahc3x94lskk66qhhpv7a4-servant-conduit-0.16' from 'https://cache.nixos.org'...
copying path '/nix/store/7m4hfxa5kmjp5l8phznc1xmdbscrm3lm-hercules-ci-cnix-store-0.3.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/3jhx8rqyfz5b7a1sczy67ly2dl43ygrs-lzma-conduit-1.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/lz2sy52ilwk8rh1ib52p3pawdbmamm18-servant-auth-0.4.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/x10n9vcbivm0wyl4p6ld5k1iylgcsp2j-servant-auth-client-0.4.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/kjvkswmmacx634n88p1ypsn5miic3y54-http-conduit-2.3.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/2xmf9xgzqmpm9df7sm1p7d01r12fz44l-stm-conduit-4.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vd6w76q6jliphj4d839a3fqvbqqlrmal-xml-conduit-1.9.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/cmbq8md70f37wxnkl6kwyxxw196m5nmn-cachix-api-1.7.4' from 'https://cache.nixos.org'...
copying path '/nix/store/251i6gvypynzi9yz5mq58kcwvv8mgvb1-amazonka-core-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/7ci47gy3jhj68p7msj1m5v24hcv5w490-amazonka-s3-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/q85gijyfypqw157xkg098c0r1q1446mm-amazonka-sso-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fbh1kmaj35m2zncifq63lx6syarrifqv-amazonka-sts-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/n0xkr41ym9ajkkg4hg94zq27h6hpvnhp-amazonka-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zp04ghlpq4qnndqy1y1yrp6gmz9s5vm8-cachix-1.7.4' from 'https://cache.nixos.org'...
building '/nix/store/fxm539bk9vfmvghkwcqvqq7l78xgki55-user-environment.drv'...
[#1306952] 2024/08/19 09:45:14 Cloning repositories
Cloning into 'sylvan'...
+ cd sylvan
+ git checkout -q 63531dfe6d4704202b1d579ca5047d66561ecbf8
+ cd sylvan
+ git submodule update --init --recursive
[#1306952] 2024/08/19 09:45:15 Running task cachix-setup
[#1306952] 2024/08/19 09:45:16 Running task build-website
[#1306952] 2024/08/19 09:46:11 Running task deploy-website
[#1306952] 2024/08/19 09:46:12 Running task bootstrap
[#1306952] 2024/08/19 09:46:29 Build failed.
[#1306952] 2024/08/19 09:46:29 The build environment will be kept alive for 10 minutes.
[#1306952] 2024/08/19 09:46:29 To log in with SSH and examine it, use the following command:
[#1306952] 2024/08/19 09:46:29 
[#1306952] 2024/08/19 09:46:29 	ssh -t builds@fra01.builds.sr.ht connect 1306952
[#1306952] 2024/08/19 09:46:29 
[#1306952] 2024/08/19 09:46:29 After logging in, the deadline is increased to your remaining build time.
[#1306952] 2024/08/19 09:56:29 Deadline elapsed. Terminating build environment.
[#1306952] 2024/08/19 09:56:29 Error: Running task on guest: exit status 1
cachix-setup
1
2
3
4
+ cachix authtoken eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiI4Yjk5M2Q4Mi1hOTdiLTQyNTktYTI3ZC00ZWY1N2UzZGMxOWEiLCJzY29wZXMiOiJjYWNoZSJ9.p1SiM4icUKszx8KWxm5KRbDqkAFaycwPuBLF4ZkBphk
Written to /home/build/.config/cachix/cachix.dhall
+ cachix use sylvan
Configured https://sylvan.cachix.org binary cache in /home/build/.config/nix/nix.conf
build-website
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
+ pipeline -w ' ts' ' -s' '' fdmove -c 2 1 cachix watch-exec sylvan -- nix -L build ./sylvan#doc
00:00:01 

copying path '/nix/store/8xghs76gsk1s4p9izzwdhggsa5f29jks-source' from 'https://sylvan.cachix.org'...
00:00:01 copying path '/nix/store/yj1wxm9hh8610iyzqnz75kvs6xl8j3my-source' from 'https://sylvan.cachix.org'...
00:00:01 copying path '/nix/store/i1aw9jjgxcvyd642s12kw3iasmarwd42-source' from 'https://cache.nixos.org'...
00:00:07 copying path '/nix/store/s35zw2imni955152gibnkr74cp6vh5zi-source' from 'https://sylvan.cachix.org'...
00:00:08 copying path '/nix/store/24rxbd48973yil9kngv0q1ni815azbp5-source' from 'https://cache.nixos.org'...
00:00:09 copying path '/nix/store/a5spqvgdp4qxhz4arxxn2374jv0r7acv-source' from 'https://sylvan.cachix.org'...
00:00:09 copying path '/nix/store/r88zkfh22shcgj0c4zh9jj2q5r1z9wjn-source' from 'https://cache.nixos.org'...
00:00:15 copying path '/nix/store/pjbynv4ywjvl8qqv1j04d8cwk0lxcrhr-source' from 'https://sylvan.cachix.org'...
00:00:15 copying path '/nix/store/35dcag44a0ymww0vy0s4jjgxwpv9g62d-source' from 'https://cache.nixos.org'...
00:00:54 























this path will be fetched (1.59 MiB download, 1.59 MiB unpacked):
00:00:54   /nix/store/slw25byf89iszppq4g6w0191jjhbgc00-sylvan-lang.org.tgz
00:00:54 copying path '/nix/store/slw25byf89iszppq4g6w0191jjhbgc00-sylvan-lang.org.tgz' from 'https://sylvan.cachix.org'...

real	0m54.910s
user	0m4.642s
sys	0m1.954s
deploy-website
1
2
+ hut pages publish -d sylvan-lang.org result
Published site at sylvan-lang.org
bootstrap


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
This is a big file! Only the last 128KiB is shown. Click here to download the full log.

00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::uint32
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:64.12-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  64 │     uint32::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │             ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::uint16
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:63.12-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  63 │     uint16::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │             ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::uint8
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:62.11-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  62 │     uint8::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │            ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::intn
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:61.10-11
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  61 │     intn::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │           ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::int64
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:60.11-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  60 │     int64::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │            ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::int32
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:59.11-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  59 │     int32::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │            ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::int16
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:58.11-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  58 │     int16::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │            ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::int8
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:57.10-11
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  57 │     int8::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │           ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::int
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:56.9-10
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  56 │     int::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::float64
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:55.13-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  55 │     float64::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │              ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::float32
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:54.13-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  54 │     float32::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │              ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::bfloat16
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:53.14-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  53 │     bfloat16::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │               ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::string
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:51.12-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  51 │     string::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │             ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::bytes
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:50.11-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  50 │     bytes::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │            ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::rune
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:48.10-11
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  48 │     rune::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │           ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "types" exported from scope "::std::prelude" while searching for std::prelude::types::bool
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:47.10-11
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  47 │     bool::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │           ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "classes" exported from scope "::std::prelude" while searching for std::prelude::classes::ord
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:43.9-10
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  43 │     ord::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "classes" exported from scope "::std::prelude" while searching for std::prelude::classes::foldable
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:42.14-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  42 │     foldable::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │               ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "classes" exported from scope "::std::prelude" while searching for std::prelude::classes::eq
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:41.8-9
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  41 │     eq::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "mutable" exported from scope "::std::prelude" while searching for std::prelude::mutable
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:38.11-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  38 │   mutable::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │            ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0009]: could not find namespace or type "effect" exported from scope "::std::prelude" while searching for std::prelude::effect
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mod.syl:37.10-11
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  37 │   effect::*,
00:00:13 ocaml5.1.1-sylvan_stage0> +     │           ^
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Resolve_names.resolve_import.resolve_leaf.(fun) in file "lib/resolve_names.ml", line 948, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0_parser__Nonfatal.nonfatalize in file "parser/nonfatal.ml", line 21, characters 36-40
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(43581389, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(959246196, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "forceThunk"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/thunk.syl:12.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  12 │ def forceThunk[contents](thunk: Thunk[contents]) -> contents := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "makeThunk"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/prelude/types/thunk.syl:7.4-13
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  7 │ def makeThunk[contents](body: fn() -> contents) -> Thunk[contents] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │     ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Thunk"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/prelude/types/thunk.syl:3.9-14
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  3 │ pub type Thunk: forall[contents: type] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uintNToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uintn.syl:29.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def uintNToInt(n: ScalarN) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uintNFromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uintn.syl:26.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def uintNFromInt(n: Int) -> ScalarN := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint64ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint64.syl:29.4-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def uint64ToInt(n: Scalar64) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint64FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint64.syl:26.4-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def uint64FromInt(n: Int) -> Scalar64 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint32ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint32.syl:29.4-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def uint32ToInt(n: Scalar32) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint32FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint32.syl:26.4-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def uint32FromInt(n: Int) -> Scalar32 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint16ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint16.syl:29.4-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def uint16ToInt(n: Scalar16) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint16FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint16.syl:26.4-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def uint16FromInt(n: Int) -> Scalar16 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint8ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint8.syl:29.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def uint8ToInt(n: Scalar8) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "uint8FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/uint8.syl:26.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def uint8FromInt(n: Int) -> Scalar8 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intNToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/intn.syl:29.4-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def intNToInt(n: ScalarN) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intNFromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/intn.syl:26.4-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def intNFromInt(n: Int) -> ScalarN := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int64ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int64.syl:29.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def int64ToInt(n: Scalar64) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int64FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int64.syl:26.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def int64FromInt(n: Int) -> Scalar64 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int32ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int32.syl:29.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def int32ToInt(n: Scalar32) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int32FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int32.syl:26.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def int32FromInt(n: Int) -> Scalar32 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int16ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int16.syl:29.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def int16ToInt(n: Scalar16) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int16FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int16.syl:26.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def int16FromInt(n: Int) -> Scalar16 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int8ToInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int8.syl:29.4-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ def int8ToInt(n: Scalar8) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "int8FromInt"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int8.syl:26.4-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  26 │ def int8FromInt(n: Int) -> Scalar8 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intLte"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:81.4-10
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  81 │ def intLte(l: Int, r: Int) -> Bool := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intEq"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:77.4-9
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  77 │ def intEq(l: Int, r: Int) -> Bool := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intDivModE"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:73.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  73 │ def intDivModE(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intDivModC"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:69.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  69 │ def intDivModC(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intDivModR"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:65.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  65 │ def intDivModR(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intDivModF"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:61.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  61 │ def intDivModF(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intDivModT"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:57.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  57 │ def intDivModT(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intMul"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:53.4-10
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  53 │ def intMul(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intSub"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:49.4-10
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  49 │ def intSub(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "intAdd"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/int.syl:45.4-10
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  45 │ def intAdd(l: Int, r: Int) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Int"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/prelude/types/int.syl:9.9-12
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  9 │ pub type Int: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │          ^~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "stringSlice"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:84.8-19
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  84 │ pub def stringSlice(
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "stringLength"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:78.8-20
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  78 │ pub def stringLength(s: String) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "stringLte"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:74.4-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  74 │ def stringLte(l: String, r: String) -> Bool := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "stringEq"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:69.4-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  69 │ def stringEq(l: String, r: String) -> Bool := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "stringDecode"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:65.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  65 │ def stringDecode(s: String) -> Scalar32 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "stringAppend"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:61.4-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  61 │ def stringAppend(l: String, r: String) -> String := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "String"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/string.syl:10.9-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  10 │ pub type String: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "bytesRead"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/bytes.syl:76.4-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  76 │ def bytesRead(bs: Bytes, index: Int) -> UInt8 := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "bytesLength"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/bytes.syl:70.8-19
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  70 │ pub def bytesLength(bs: Bytes) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "bytesLte"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/bytes.syl:66.4-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  66 │ def bytesLte(l: Bytes, r: Bytes) -> Bool := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "bytesEq"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/bytes.syl:61.4-11
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  61 │ def bytesEq(l: Bytes, r: Bytes) -> Bool := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "bytesAppend"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/types/bytes.syl:57.4-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  57 │ def bytesAppend(l: Bytes, r: Bytes) -> Bytes := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Bytes"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/prelude/types/bytes.syl:8.9-14
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  8 │ pub type Bytes: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(737456202, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "writeRef"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:50.8-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  50 │ pub def writeRef[scope: MutableScope, a](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "readRef"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:44.8-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  44 │ pub def readRef[scope: MutableScope, a](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "newRef"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:38.8-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  38 │ pub def newRef[scope: MutableScope, a](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Ref"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:34.9-12
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  34 │ pub type Ref: forall[_: MutableScope, _: type] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "withLocalMutable"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:28.8-24
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  28 │ pub def withLocalMutable[e: Effects, a](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Global"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:19.9-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  19 │ pub type Global: MutableScope := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "MutableScope"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:15.9-21
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  15 │ pub type MutableScope: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "LocalMutable"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/mutable.syl:11.9-21
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  11 │ pub type LocalMutable: forall[scope: MutableScope] -> Effect := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "handle"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/effect.syl:25.8-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  25 │ pub def handle[eff: Effect, effs: Effects, ret](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "perform"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/effect.syl:18.8-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  18 │ pub def perform[eff: Effect, req, res](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "EffectsCons"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/effect.syl:14.5-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  14 │ type EffectsCons: forall[_: Effect, _: Effects] -> Effects := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │      ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "EffectsNil"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/prelude/effect.syl:10.5-15
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  10 │ type EffectsNil: Effects := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │      ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Effects"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/prelude/effect.syl:6.9-16
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  6 │ pub type Effects: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "InLang"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:350.9-15
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  350 │ pub type InLang: forall[_: Lang, _: NT] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │          ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "NT"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:345.9-11
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  345 │ pub type NT: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │          ^~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Lang"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:341.9-13
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  341 │ pub type Lang: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │          ^~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "throwPureException"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:337.8-26
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  337 │ pub def throwPureException[repr, a: Type[repr]]() -> a := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(470548852, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "withTypeRepEq"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:315.8-21
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  315 │ pub def withTypeRepEq[k, a, b, r](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "TypeRep"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:310.9-16
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  310 │ pub type TypeRep: forall[k, a: k] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │          ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Eq"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:306.9-11
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  306 │ pub type Eq: forall[k1, k2, a: k1, b: k2] -> Constraint := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │          ^~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "coerce"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:300.8-14
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  300 │ pub def coerce[repr: RuntimeRepr, from: Type[repr], to: Type[repr]](from: from) -> to
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Coercible"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/intrinsics/mod.syl:290.9-18
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  290 │ pub type Coercible: forall[kind, from: kind, to: kind] -> Constraint := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +      │          ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-132670365, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-619869170, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(751923311, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-610671957, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-496065265, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-519238966, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-425878752, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-394675752, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(974938212, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(103446644, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(80272943, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Constraint"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:65.9-19
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  65 │ pub type Constraint: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "ScalarN"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:61.9-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  61 │ pub type ScalarN: Type[RuntimeReprScalarN] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Scalar64"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:57.9-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  57 │ pub type Scalar64: Type[RuntimeReprScalar64] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Scalar32"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:53.9-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  53 │ pub type Scalar32: Type[RuntimeReprScalar32] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Scalar16"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:49.9-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  49 │ pub type Scalar16: Type[RuntimeReprScalar16] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Scalar8"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:45.9-16
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  45 │ pub type Scalar8: Type[RuntimeReprScalar8] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeReprScalarN"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:41.9-27
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  41 │ pub type RuntimeReprScalarN: RuntimeRepr := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeReprScalar64"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:37.9-28
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  37 │ pub type RuntimeReprScalar64: RuntimeRepr := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeReprScalar32"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:33.9-28
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  33 │ pub type RuntimeReprScalar32: RuntimeRepr := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeReprScalar16"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:29.9-28
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  29 │ pub type RuntimeReprScalar16: RuntimeRepr := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeReprScalar8"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:25.9-27
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  25 │ pub type RuntimeReprScalar8: RuntimeRepr := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeReprBoxed"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:21.9-25
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  21 │ pub type RuntimeReprBoxed: RuntimeRepr := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "RuntimeRepr"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:16.9-20
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  16 │ pub type RuntimeRepr: type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Type"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/intrinsics/mod.syl:12.9-13
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  12 │ pub type Type: forall[_: RuntimeRepr] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-353712355, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(97932243, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(184635306, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(1038688992, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-637947725, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(925157155, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(832687277, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(-558450785, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(916960169, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(74037110, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E9999]: INTERNAL ERROR: Sylvan_stage0.Resolve_names.DuplicateLangItem(928090796, _)
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "foldMapTypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/type_map.syl:44.8-22
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  44 │ pub def foldMapTypeMap[
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "mapTypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/type_map.syl:33.8-18
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  33 │ pub def mapTypeMap[
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "mergeTypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/type_map.syl:25.8-20
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  25 │ pub def mergeTypeMap[keyKind, valueType: forall[_: keyKind] -> type](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "putTypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/type_map.syl:17.8-18
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  17 │ pub def putTypeMap[keyKind, valueType: forall[_: keyKind] -> type, key: keyKind](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "getTypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/type_map.syl:11.8-18
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  11 │ pub def getTypeMap[keyKind, valueType: forall[_: keyKind] -> type, key: keyKind](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "emptyTypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/data/type_map.syl:7.8-20
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  7 │ pub def emptyTypeMap[keyKind, valueType: forall[_: keyKind] -> type]() -> TypeMap[keyKind, valueType] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │         ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "TypeMap"
00:00:13 ocaml5.1.1-sylvan_stage0> +   --> ./sylvan/data/type_map.syl:3.9-16
00:00:13 ocaml5.1.1-sylvan_stage0> +    │
00:00:13 ocaml5.1.1-sylvan_stage0> +  3 │ pub type TypeMap: forall[keyKind, valueType: forall[_: keyKind] -> type] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "thawMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:169.8-24
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  169 │ pub def thawMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "freezeMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:163.8-26
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  163 │ pub def freezeMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "copyMutableArrayToMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:153.8-38
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  153 │ pub def copyMutableArrayToMutableArray[srcScope, dstScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "copyArrayToMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:141.8-31
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  141 │ pub def copyArrayToMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "writeMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:131.8-25
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  131 │ pub def writeMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "readMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:122.8-24
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  122 │ pub def readMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "sliceMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:112.8-25
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  112 │ pub def sliceMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "cloneMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +     --> ./sylvan/data/array.syl:104.8-25
00:00:13 ocaml5.1.1-sylvan_stage0> +      │
00:00:13 ocaml5.1.1-sylvan_stage0> +  104 │ pub def cloneMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +      │         ^~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "lengthMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:98.8-26
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  98 │ pub def lengthMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "newMutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:91.8-23
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  91 │ pub def newMutableArray[scope: MutableScope, elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "MutableArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:87.9-21
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  87 │ pub type MutableArray: forall[scope: MutableScope, elem: type] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "readArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:83.8-17
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  83 │ pub def readArray[elem](array: Array[elem], index: Int) -> elem := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "sliceArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:73.8-18
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  73 │ pub def sliceArray[elem](
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "cloneArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:67.8-18
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  67 │ pub def cloneArray[elem](array: Array[elem]) -> Array[elem] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "lengthArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:63.8-19
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  63 │ pub def lengthArray[elem](array: Array[elem]) -> Int := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │         ^~~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "emptyArray"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:59.4-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  59 │ def emptyArray[elem]() -> Array[elem] := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │     ^~~~~~~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  error[E0006]: duplicate definition of builtin "Array"
00:00:13 ocaml5.1.1-sylvan_stage0> +    --> ./sylvan/data/array.syl:12.9-14
00:00:13 ocaml5.1.1-sylvan_stage0> +     │
00:00:13 ocaml5.1.1-sylvan_stage0> +  12 │ pub type Array: forall[elem: type] -> type := _;
00:00:13 ocaml5.1.1-sylvan_stage0> +     │          ^~~~~
00:00:13 ocaml5.1.1-sylvan_stage0> +  Raised at Sedlexing.Chan.ensure_bytes_available in file "src/lib/sedlexing.ml", line 334, characters 23-42
00:00:13 ocaml5.1.1-sylvan_stage0> +  Called from Sedlexing.make_from_channel.refill.loop in file "src/lib/sedlexing.ml", line 367, characters 10-71
00:00:13 ocaml5.1.1-sylvan_stage0> +  Encountered 158 errors and 1 warning.
00:00:13 ocaml5.1.1-sylvan_stage0> +  [1]
00:00:14 ocaml5.1.1-sylvan_stage0> File "lib/tyck_solve.ml", line 1, characters 0-0:
00:00:14 ocaml5.1.1-sylvan_stage0> --- lib/tyck_solve.ml 2024-08-19 09:46:21.933113363 +0000
00:00:14 ocaml5.1.1-sylvan_stage0> +++ lib/tyck_solve.ml.corrected       2024-08-19 09:46:26.505132918 +0000
00:00:14 ocaml5.1.1-sylvan_stage0> @@ -2082,15 +2082,20 @@
00:00:14 ocaml5.1.1-sylvan_stage0>    Format.printf "%a@." Substitution.pp subst;
00:00:14 ocaml5.1.1-sylvan_stage0> -  [%expect
00:00:14 ocaml5.1.1-sylvan_stage0> -    {|
00:00:14 ocaml5.1.1-sylvan_stage0> -      Had 0 residuals.
00:00:14 ocaml5.1.1-sylvan_stage0> -      {⟨1 "x"⟩ ↦ `App ((`Builtin (Type), [|`Builtin (RuntimeReprBoxed)|], 0));
00:00:14 ocaml5.1.1-sylvan_stage0> -       ⟨2 "y"⟩ ↦
00:00:14 ocaml5.1.1-sylvan_stage0> -         `Forall (([|(_$0, `Lexical (_$39)); (_$1, `Lexical (_$39))|],
00:00:14 ocaml5.1.1-sylvan_stage0> -                   `App ((`Builtin (Type), [|`Builtin (RuntimeReprBoxed)|], 0))));
00:00:14 ocaml5.1.1-sylvan_stage0> -       ⟨3 "z"⟩ ↦ `Constraint}
00:00:14 ocaml5.1.1-sylvan_stage0> -    |}]
00:00:14 ocaml5.1.1-sylvan_stage0> +  [%expect.unreachable]
00:00:14 ocaml5.1.1-sylvan_stage0> +[@@expect.uncaught_exn {|
00:00:14 ocaml5.1.1-sylvan_stage0> +  (* CR expect_test_collector: This test expectation appears to contain a backtrace.
00:00:14 ocaml5.1.1-sylvan_stage0> +     This is strongly discouraged as backtraces are fragile.
00:00:14 ocaml5.1.1-sylvan_stage0> +     Please change this test to not include a backtrace. *)
00:00:14 ocaml5.1.1-sylvan_stage0> +
00:00:14 ocaml5.1.1-sylvan_stage0> +  Not_found
00:00:14 ocaml5.1.1-sylvan_stage0> +  Raised at Stdlib__Hashtbl.find in file "hashtbl.ml", line 542, characters 13-28
00:00:14 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_solve.canonicalize in file "lib/tyck_solve.ml", line 1708, characters 29-74
00:00:14 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_solve.simplify in file "lib/tyck_solve.ml", line 1981, characters 4-92
00:00:14 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_solve.solver.solve_simple in file "lib/tyck_solve.ml", line 2016, characters 6-57
00:00:14 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_solve.solver in file "lib/tyck_solve.ml", line 2033, characters 16-59
00:00:14 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_solve.(fun) in file "lib/tyck_solve.ml", line 2068, characters 6-225
00:00:14 ocaml5.1.1-sylvan_stage0> +  Called from Expect_test_collector.Make.Instance_io.exec in file "collector/expect_test_collector.ml", line 234, characters 12-19 |}]
00:00:14 ocaml5.1.1-sylvan_stage0>  (** The set of constraints accumulated during type-checking or kind-checking. *)
00:00:14 ocaml5.1.1-sylvan_stage0>  let accumulated_constraints : C.constraints ref =
00:00:14 ocaml5.1.1-sylvan_stage0> File "lib/ast.ml", line 1, characters 0-0:
00:00:14 ocaml5.1.1-sylvan_stage0> --- lib/ast.ml        2024-08-19 09:46:21.927113336 +0000
00:00:14 ocaml5.1.1-sylvan_stage0> +++ lib/ast.ml.corrected      2024-08-19 09:46:26.505132918 +0000
00:00:14 ocaml5.1.1-sylvan_stage0> @@ -326,8 +326,7 @@
00:00:14 ocaml5.1.1-sylvan_stage0>    Format.printf "%a@." pp_ty (type_subst1 "x" (NamedTy "y") ty);
00:00:14 ocaml5.1.1-sylvan_stage0>    [%expect
00:00:14 ocaml5.1.1-sylvan_stage0>      {|
00:00:14 ocaml5.1.1-sylvan_stage0> -    ForallTy {vars = [|("x", (NamedTy "y")); ("x", (LexicalTy "x"))|];
00:00:14 ocaml5.1.1-sylvan_stage0> -      body = (LexicalTy "x")}
00:00:14 ocaml5.1.1-sylvan_stage0> +    forall[x: y, x: x] -> x
00:00:14 ocaml5.1.1-sylvan_stage0>      |}]
00:00:14 ocaml5.1.1-sylvan_stage0>  let type_boxed = type_with_repr (BuiltinTy RuntimeReprBoxed)
00:00:17 ocaml5.1.1-sylvan_stage0> File "tests/all_errors.t/run.t", line 1, characters 0-0:
00:00:17 ocaml5.1.1-sylvan_stage0> --- tests/all_errors.t/run.t  2024-08-19 09:46:29.182143493 +0000
00:00:17 ocaml5.1.1-sylvan_stage0> +++ tests/all_errors.t/run.t.corrected        2024-08-19 09:46:29.182143493 +0000
00:00:17 ocaml5.1.1-sylvan_stage0> @@ -13,94 +13,154 @@
00:00:17 ocaml5.1.1-sylvan_stage0>  Lexer and parser errors.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0001
00:00:17 ocaml5.1.1-sylvan_stage0> -  error[E0001]: unexpected character \u'`'
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  error[E0001]: unexpected character '`'
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0001.syl:1.0
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | `
00:00:17 ocaml5.1.1-sylvan_stage0> -    | ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ `
00:00:17 ocaml5.1.1-sylvan_stage0> +    │ ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0002
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0002]: invalid escape; U+d800 is not a Unicode scalar value
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0002.syl:1.17-25
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | def x: String := "\ud800";
00:00:17 ocaml5.1.1-sylvan_stage0> -    |                  ^~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ def x: String := "\ud800";
00:00:17 ocaml5.1.1-sylvan_stage0> +    │                  ^~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0003
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0003]: byte literal had an unexpected length; found 2 bytes
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0003.syl:1.16-21
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | def x: UInt8 := b'xy';
00:00:17 ocaml5.1.1-sylvan_stage0> -    |                 ^~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ def x: UInt8 := b'xy';
00:00:17 ocaml5.1.1-sylvan_stage0> +    │                 ^~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0004
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0004]: rune literal had an unexpected length; found 2 Unicode scalar values
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0004.syl:1.15-19
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | def x: Rune := 'xy';
00:00:17 ocaml5.1.1-sylvan_stage0> -    |                ^~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ def x: Rune := 'xy';
00:00:17 ocaml5.1.1-sylvan_stage0> +    │                ^~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0005
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0005]: syntax error; found ")", expected "]" or "("
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0005.syl:1.3-4
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | #[f)]
00:00:17 ocaml5.1.1-sylvan_stage0> -    |    ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ #[f)]
00:00:17 ocaml5.1.1-sylvan_stage0> +    │    ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>  Name resolution errors.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0006
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0006]: duplicate definition of builtin "Int"
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0006.syl:2.9-17
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 | pub type OtherInt := _;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |          ^~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │ pub type OtherInt := _;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0007
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0007]: duplicate definition of x
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0007.syl:2.4-5
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 | def x: String := "zero";
00:00:17 ocaml5.1.1-sylvan_stage0> -    |     ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │ def x: String := "zero";
00:00:17 ocaml5.1.1-sylvan_stage0> +    │     ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0008
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0008]: invalid import
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0008.syl:1.7-8
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | import *;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |        ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ import *;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │        ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0009
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0009]: could not find value "y" in scope "::err_0009::<unnamed>"
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0009.syl:1.14-15
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | def x: Int := y;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |               ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ def x: Int := y;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │               ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0010
00:00:17 ocaml5.1.1-sylvan_stage0> -  error[E0010]: declaration declares more than one builtin ("bar", "foo")
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  error[E0019]: unrecogized builtin "bar"
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0010.syl:3.9-21
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  3 | pub type MultiBuiltin := _;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |          ^~~~~~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  3 │ pub type MultiBuiltin := _;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  error[E0019]: unrecogized builtin "foo"
00:00:17 ocaml5.1.1-sylvan_stage0> +   --> ./err_0010.syl:3.9-21
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  3 │ pub type MultiBuiltin := _;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │          ^~~~~~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 2 errors and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0011
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0011]: the definition ::err_0011::x is not an importable scope
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0011.syl:1.17-21
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | import err_0011::x::y;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |                  ^~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ import err_0011::x::y;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │                  ^~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>  (Shared) unity errors.
00:00:17 ocaml5.1.1-sylvan_stage0> @@ -110,73 +170,118 @@
00:00:17 ocaml5.1.1-sylvan_stage0>  Type check errors.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0014
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0014]: the arity of an associated type must match the class
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0014.syl:2.7-10
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 |   type Bar[Int];
00:00:17 ocaml5.1.1-sylvan_stage0> -    |        ^~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │   type Bar[Int];
00:00:17 ocaml5.1.1-sylvan_stage0> +    │        ^~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0015
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0015]: incorrect argument to type ::err_0015::MismatchType; expected a
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0015.syl:2.20-23
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 |   type MismatchType[Int];
00:00:17 ocaml5.1.1-sylvan_stage0> -    |                     ^~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │   type MismatchType[Int];
00:00:17 ocaml5.1.1-sylvan_stage0> +    │                     ^~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0016
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0016]: cannot use curried application with a type family
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0016.syl:2.10-22
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 | type U := T[String, _];
00:00:17 ocaml5.1.1-sylvan_stage0> -    |           ^~~~~~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │ type U := T[String, _];
00:00:17 ocaml5.1.1-sylvan_stage0> +    │           ^~~~~~~~~~~~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0017
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0017]: the typedef ::err_0017::X cannot depend on itself
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0017.syl:1.5-6
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | type X := fn() -> X;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |      ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ type X := fn() -> X;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │      ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0018
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0018]: a placeholder cannot appear in this position
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0018.syl:1.10-11
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | type T := _;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |           ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ type T := _;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │           ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0019
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0019]: unrecogized builtin "nonexistentType"
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0019.syl:2.5-6
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 | type T := _;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |      ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │ type T := _;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │      ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0020
00:00:17 ocaml5.1.1-sylvan_stage0> -  error[E0020]: could not solve for the variable ⟨"elab of ty ./err_0020.syl:1.10-11"⟩
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  error[E0020]: could not solve for the variable ⟨"elab of ty" ./err_0020.syl:1.10-11⟩
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0020.syl:1.10-11
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | type T := ?;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |           ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ type T := ?;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │           ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0021
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0021]: cannot have multiple effect tails
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0021.syl:1.53-55
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  1 | type T[e1: Effects, e2: Effects] := fn() -{...e1, ...e2}> Int;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |                                                      ^~
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  1 │ type T[e1: Effects, e2: Effects] := fn() -{...e1, ...e2}> Int;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │                                                      ^~
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 ocaml5.1.1-sylvan_stage0>    $ compile err_0022
00:00:17 ocaml5.1.1-sylvan_stage0> +  warn[W0000]: fn[scope: MutableScope]() -{LocalMutable[scope]}> Array[elem]
00:00:17 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:31.25-26
00:00:17 ocaml5.1.1-sylvan_stage0> +     │
00:00:17 ocaml5.1.1-sylvan_stage0> +  31 │         withLocalMutable(?)
00:00:17 ocaml5.1.1-sylvan_stage0> +     │                          ^
00:00:17 ocaml5.1.1-sylvan_stage0>    error[E0022]: must apply arguments to type family ::err_0022::T
00:00:17 ocaml5.1.1-sylvan_stage0>     --> ./err_0022.syl:2.10-11
00:00:17 ocaml5.1.1-sylvan_stage0> -    |
00:00:17 ocaml5.1.1-sylvan_stage0> -  2 | type U := T;
00:00:17 ocaml5.1.1-sylvan_stage0> -    |           ^
00:00:17 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:00:17 ocaml5.1.1-sylvan_stage0> +    │
00:00:17 ocaml5.1.1-sylvan_stage0> +  2 │ type U := T;
00:00:17 ocaml5.1.1-sylvan_stage0> +    │           ^
00:00:17 ocaml5.1.1-sylvan_stage0> +  Encountered 1 error and 1 warning.
00:00:17 error: builder for '/nix/store/0ch62dnkmmjnk3v9n1m8vp0v7hqz8v6c-ocaml5.1.1-sylvan_stage0-0.1.0.drv' failed with exit code 1;
00:00:17        last 10 log lines:
00:00:17        >     --> ./err_0022.syl:2.10-11
00:00:17        > -    |
00:00:17        > -  2 | type U := T;
00:00:17        > -    |           ^
00:00:17        > -  Encountered 1 error.
00:00:17        > +    │
00:00:17        > +  2 │ type U := T;
00:00:17        > +    │           ^
00:00:17        > +  Encountered 1 error and 1 warning.
00:00:17        >
00:00:17        For full logs, run 'nix-store -l /nix/store/0ch62dnkmmjnk3v9n1m8vp0v7hqz8v6c-ocaml5.1.1-sylvan_stage0-0.1.0.drv'.

real	0m16.671s
user	0m0.680s
sys	0m0.692s
Build complete: failed a month ago (took a minute)