~remexre/#1429863

failed

3295c5dNathan Ringo

Watch the bin and parser directories.

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

Tasks

view log »
cachix-setup view log »
build-websites view log »
deploy-websites 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
This is a big file! Only the last 128KiB is shown. Click here to download the full log.

  /nix/store/mhrgj3xg215gvpk83nzmsknj9avqj1gb-cborg-0.2.10.0
  /nix/store/i7rp6nn0ahwf8xzc6dy64pfh2rzjbnv1-cborg-0.2.10.0-doc
  /nix/store/fb3bqscan8y3cgy5gvhpv8dpsbxl2dwh-cborg-json-0.2.6.0
  /nix/store/mkni2parqjza8ihn5p1w2j82g46d2xj7-cborg-json-0.2.6.0-doc
  /nix/store/8awvm1qlbfwkdlfjw279fkdk9gmab01i-cereal-0.5.8.3
  /nix/store/rkl262zy0abb9hq9c48mi5fiwyv8h39s-cereal-0.5.8.3-doc
  /nix/store/f8sl3wvryllf3snvr1z9cxf3k37nrydm-cereal-conduit-0.8.0
  /nix/store/7kqc77k4ck83rk0rx4xmpbi5h3krlv4d-cereal-conduit-0.8.0-doc
  /nix/store/b2pcjsm9p8dqqx2i6rlin1y403981lwk-charset-0.3.10
  /nix/store/g9mgf5ffha51fx7khwils5xy4zkhp2ww-charset-0.3.10-doc
  /nix/store/3ymxyjd8zhzfscxgpxl4hwnam3y9n6xw-clock-0.8.4
  /nix/store/84p36mv2wx2naps36h5i1xa0kyd55z11-clock-0.8.4-doc
  /nix/store/rr9y95n36rw5hks5ch3r31fgjb6iv1f0-cmdargs-0.10.22
  /nix/store/w7cxg478s39h70vvmzniqhdrzvnsvx99-cmdargs-0.10.22-doc
  /nix/store/8c06fy4z45l4xzjwarj6v3nj3zxmkj7n-colour-2.3.6
  /nix/store/b8n78kwvs3k8mag5fmhi96in5n6xv9ab-colour-2.3.6-data
  /nix/store/alnafi65zhqsw97xlzfqx37r5y27hsx8-colour-2.3.6-doc
  /nix/store/8wmq1p7242zbll7chdxkg9yd2q6pa2yb-comonad-5.0.8
  /nix/store/k6khprgq4qpa346dnfibpanxjg8i76ld-comonad-5.0.8-doc
  /nix/store/8ll0mdjk3zgp4i17q7fksqrwwl7zi25n-concise-0.1.0.1
  /nix/store/gvsmrz485lxdw6rf0p0qmfvx29rzhij3-concise-0.1.0.1-doc
  /nix/store/f4fqa78x9ssvag40m8jvna2nxazwl9qh-concurrent-extra-0.7.0.12
  /nix/store/bz6fzrf73lfvk0xpg1h8dnh464diylqy-concurrent-extra-0.7.0.12-doc
  /nix/store/l1y5j5sxpc4v0icrmbicm28n6bfxyjhk-concurrent-output-1.10.21
  /nix/store/l3zlpgb9hjafzmgcg84yiq65c4gsczym-concurrent-output-1.10.21-doc
  /nix/store/yrjli6hx2sb3xa29s6v3yd51sxs0ib0n-conduit-1.3.6
  /nix/store/5b2jgfx7484ppnx3n6zrvp6flmjx0jf0-conduit-1.3.6-doc
  /nix/store/vlai21svg23hzj2knq8warap3ggcn3dl-conduit-concurrent-map-0.1.3
  /nix/store/bac7ikpslc8wni686ck177ac9yy606xl-conduit-concurrent-map-0.1.3-doc
  /nix/store/2cyfaziwm3cfirbhp1pbg82c7walfa6c-conduit-extra-1.3.6
  /nix/store/glpns6f7xhib6fpzd523aa3qwb4gk5xq-conduit-extra-1.3.6-doc
  /nix/store/mpmk7nij74dv71lnmk0gvqrbkhd7j0lw-conduit-zstd-0.0.2.0
  /nix/store/vkd454k8rqkg91b4d85nz640qqgfdc0w-conduit-zstd-0.0.2.0-doc
  /nix/store/bkazzl86rbgfykgfnadga6r327rx5hdd-constraints-0.14.2
  /nix/store/96y56s1pifwnha7a6y3cfrd69kd1aidb-constraints-0.14.2-doc
  /nix/store/nqcsirq3swwl44x8bkhqvl2yg2jxpjl2-constraints-extras-0.4.0.1
  /nix/store/spq4jkqbda5vfp88c2sd068g92qxv40l-constraints-extras-0.4.0.1-doc
  /nix/store/wj39swgqjh9x508jc51l1vrccsi0y4f3-contravariant-1.5.5
  /nix/store/x99rhy6f0vlw7120ay8icr8x7iv3mb7m-contravariant-1.5.5-doc
  /nix/store/rg8kz1ayp0qrzdvzlqarm5flga59ji1s-cookie-0.4.6
  /nix/store/v4f0bwminvwnbylq9wyqysd5457i73p7-cookie-0.4.6-doc
  /nix/store/g30k0srqjkqkviv1my87qdvq2gny01ci-cryptohash-md5-0.11.101.0
  /nix/store/wgk82ziyfjg7cwl8jhj7n743582z7n5m-cryptohash-md5-0.11.101.0-doc
  /nix/store/cjjkvk033bkvygbjxm0n5bf30n6qwnyg-cryptohash-sha1-0.11.101.0
  /nix/store/z20p1zm3y6kq7s6gixhvk7jizlbbj92l-cryptohash-sha1-0.11.101.0-doc
  /nix/store/wvl3nfflnrjx7014rr8il9z77lvfv42n-cryptohash-sha256-0.11.102.1
  /nix/store/k4l7z556f8g7v575fpcsh6xnkp1mydq1-cryptohash-sha256-0.11.102.1-doc
  /nix/store/zsxh5vnmr4w6zink3bgjbgsmaakgrirn-crypton-0.34
  /nix/store/pnfygdv4j5j5kyyzxlricwnw2lj7y6nv-crypton-0.34-doc
  /nix/store/ilxbvqmx40vkf4kix29kg9b02nmmh05v-crypton-connection-0.3.2
  /nix/store/8m5690b18dg18jgymipqf5w5ls19hjr0-crypton-connection-0.3.2-doc
  /nix/store/98c3g5n7mq4ci8ppyh7h8dqp4qwaj5ll-crypton-x509-1.7.7
  /nix/store/kd3zaqrxdfqf0xqcsy76khpqbq02wb0w-crypton-x509-1.7.7-doc
  /nix/store/ai10apphka2bf8kf7dfcjw9cd2ih0302-crypton-x509-store-1.6.9
  /nix/store/dai7c0ffkv8h1k9x0xkaq1l15qdnrsc6-crypton-x509-store-1.6.9-doc
  /nix/store/qfxi2cm1mdc5k0ji0irm32bq6mjzzl0f-crypton-x509-system-1.6.7
  /nix/store/f5f1900if9a385y7zf37kinq40bxim97-crypton-x509-system-1.6.7-doc
  /nix/store/jm9j15nwyay0z3x4jyah34p46j9bkm22-crypton-x509-validation-1.6.13
  /nix/store/9f4hy8vh5x434iz5kp3a3rqy00hp4v5b-crypton-x509-validation-1.6.13-doc
  /nix/store/77hf42pzrxhl4q152zirzx7babv6b23i-curl-8.11.1-dev
  /nix/store/7mnlrlq9p6g9jdr8raz6w59faxqjrs5q-data-default-0.7.1.2
  /nix/store/k2527w5a5wdi9q1cggiryfi2n8m9asyb-data-default-0.7.1.2-doc
  /nix/store/mgj3d6bcnanj35gzcijmy2mvd3blia2r-data-default-class-0.1.2.2
  /nix/store/k2pjsvsawha531dq0l9hfrzz9qh09cax-data-default-class-0.1.2.2-doc
  /nix/store/mw110pg7lbqcvb2qzl8zc51m4rbmxrsb-data-default-instances-containers-0.0.1
  /nix/store/3w1zba6kpcx7fx5vx6c6b983dgp1wcxf-data-default-instances-containers-0.0.1-doc
  /nix/store/qnc7m9g5yq3hssgip2yssl2kn3368gvj-data-default-instances-dlist-0.0.1.2
  /nix/store/nh5fdhnzwxq03lzwwlrsfc8rpffld3f4-data-default-instances-dlist-0.0.1.2-doc
  /nix/store/vx8dvcxmwyb670r14nkxrffry9n8qvmh-data-default-instances-old-locale-0.0.1.2
  /nix/store/1kd137hfb6vhvigzx76vbclbl0mc6wvy-data-default-instances-old-locale-0.0.1.2-doc
  /nix/store/2iicp6pkdy33khg04v8hlpxsn6vsbz96-data-fix-0.3.4
  /nix/store/89il4rnzp6akp78rgiqbvhph5gjig1kn-data-fix-0.3.4-doc
  /nix/store/v0qz7cmsyyvhf5hbbqz4gpgsnb12ir5q-db-4.8.30-bin
  /nix/store/mjhfsjz7zcn80s1l8v1hajj1qvf5ia41-db-4.8.30-dev
  /nix/store/sfic37zrgzhimavqs6bxdqhc6hvbsb6w-dec-0.0.6
  /nix/store/z8i49vl9j6h5jfrsb14siyrbyzddx1wb-dec-0.0.6-doc
  /nix/store/kydb7xh1lsyj96gfj1d0z7mzibzy73gn-dependent-sum-0.7.2.0
  /nix/store/5ihybp6glbp7mp2ik70mdxr83yhrs0i9-dependent-sum-0.7.2.0-doc
  /nix/store/29cqsqnv1yvlfgb7zvi5dbq7qgdw8w17-dependent-sum-template-0.2.0.1
  /nix/store/0rhkfk41js92xmxxh1a4y0frwi9qyrpk-dependent-sum-template-0.2.0.1-doc
  /nix/store/qp9flbr21wy3xq4z29vxni2mn2lgx2d0-deriving-aeson-0.2.10
  /nix/store/8nsvad27xwd5z4wn3r18im15ab7sm9n8-deriving-aeson-0.2.10-doc
  /nix/store/fjrqc6qpqf3gww92jym5wwy9arhrvd4x-dhall-1.42.1
  /nix/store/nadznk3g7y9rax3k3sb1957ayl24winx-dhall-1.42.1-data
  /nix/store/9bpiwr2vhyn0r2qcd96vh65zd0c36z6q-dhall-1.42.1-doc
  /nix/store/g4vjjp9i4cc2hcsabd4wcq5hsb5s8a85-distributive-0.6.2.1
  /nix/store/z1l323zsdifiapfv9nks2sb3vr146gbk-distributive-0.6.2.1-doc
  /nix/store/i41npv9z1x17lwhx1vzp588h1hsmqhk2-dlist-1.0
  /nix/store/217sfrjcaps8csg57xw21r70nykfvk99-dlist-1.0-doc
  /nix/store/fbvnvjsdql4l446i13700fivax03zkyq-dotgen-0.4.3
  /nix/store/0f3zry0cwyplahy189lqw6bfmhq41pzp-dotgen-0.4.3-doc
  /nix/store/m6q5nyaqkhmbwc9qn46lc2wn4hp786xm-e2fsprogs-1.47.2-dev
  /nix/store/pr4hjj25ji0ggxlxa7c9vzi2147rlayf-ed25519-0.0.5.0
  /nix/store/a7cynri6bvgf9qjc7wfi2vggcy50ygdm-ed25519-0.0.5.0-doc
  /nix/store/j4599pszszhs8w808xsc0i5n05rb05lg-editline-1.17.1-dev
  /nix/store/7mk9gww99x897d8n14hfxr9p27r37iq3-either-5.0.2
  /nix/store/55wymlxqssavynkwga3r46sghbxbqhpw-either-5.0.2-doc
  /nix/store/hzp6cpj4izvhqm4d4linqpdwgzmsw1np-elfutils-0.192-bin
  /nix/store/q67l9rsiqhb34qhllmh5xarqbzb1gqlx-elfutils-0.192-dev
  /nix/store/mqld56zgaqvbqkjsl7yg4ay0bq1wmsa0-entropy-0.4.1.10
  /nix/store/z9d3dy6pfhl9rv8zb64m1ipay8mq80f7-entropy-0.4.1.10-doc
  /nix/store/1kh6w6s4l45d2rc91zfxdad91acgjv0j-execline-2.9.6.1
  /nix/store/0mkn0byp73x2k34qsciazvzlrd5k4lwx-execline-2.9.6.1-bin
  /nix/store/816dfvzq2yydcpz3hz255wqpa3zsgl1f-execline-2.9.6.1-dev
  /nix/store/wv2ic7hlcpb3z91vy0nfalkxr7mpiip1-execline-2.9.6.1-doc
  /nix/store/gqcc3sy7dnvkcczc1hwvkzacy9c0fzfc-execline-2.9.6.1-lib
  /nix/store/b9r6s4lv26826nqx659bygw0pspz58lj-execline-2.9.6.1-man
  /nix/store/p4c7n17a83kgjjy1xdgnghv873gcikl5-expand-response-params
  /nix/store/xgc7hmrxmjcqzxv9ck85csk5xx2nhbij-expat-2.6.4-dev
  /nix/store/w0jcb1gf7ama7zn6in53w52ylr3maqjr-extra-1.7.16
  /nix/store/knq2hz4x9k7998yafl382822vv970n9m-extra-1.7.16-doc
  /nix/store/c8w300aydqa1pcgpmm2yrxnhhp4ygfs2-find-xml-catalogs-hook
  /nix/store/xxhhm31ssd2jw44kv97g5alji797918y-free-5.2
  /nix/store/kx8y1if765f0dc8fkyfmq48af3ijscvi-free-5.2-doc
  /nix/store/a12q6ayvjdfr92dak698gaqldcjs3w5f-fsnotify-0.4.1.0
  /nix/store/brf1fsxs03g80z9b88cxb0k3a46jj7j1-fsnotify-0.4.1.0-doc
  /nix/store/jmish1ffvs939h7j8jicks19n5rq5g8r-fuse-3.16.2-dev
  /nix/store/zs2gq6fkglrd28g1nxlb8waqq37cdc2z-gcc-14-20241116
  /nix/store/4ijy8jbsiqmj37avrk83gn2m903486mr-gcc-wrapper-14-20241116
  /nix/store/g660mfi0nd4hr1543vyr619cwpx51nap-gdbm-1.24
  /nix/store/hfw6rhr2rdwpahbg5w112p84wcinmfad-gdbm-1.24-dev
  /nix/store/yyamzgcvnxdz0nvsl1d30dzlp0v1klxh-generic-lens-2.2.2.0
  /nix/store/mlrasvl2fpc4l0fqk8pm79v9bfzsf9z8-generic-lens-2.2.2.0-doc
  /nix/store/946f10lajfcg491f9h3ys2jqsawywjm5-generic-lens-core-2.2.1.0
  /nix/store/iqz6s41khfs76m8mba9j6ly4pzlwwavn-generic-lens-core-2.2.1.0-doc
  /nix/store/afnr9802y9dg726vfp4pa88jfasqklrc-generically-0.1.1
  /nix/store/49cvhr78vwhyvplmhdinkss33p4w2i7r-generically-0.1.1-doc
  /nix/store/mkhr165k4xinicrvyi8m4fkfpcnmszr2-generics-sop-0.5.1.3
  /nix/store/rhxg19cbp7c6s5xmv2vijgcswajnzclb-generics-sop-0.5.1.3-doc
  /nix/store/9c9w9bl5j7b7r0qvyj9zi1grq6y3br74-ghc-9.6.6
  /nix/store/j031qf5m1qlq82cz5bs98hf3gyp80r7n-ghc-9.6.6-doc
  /nix/store/6aci60gk5wj4bjj1rygzbkc6ximmsm17-glibc-2.40-66-dev
  /nix/store/ir5078058nmc9rx6w0r4mk7jkzqxjqsz-glibc-iconv-2.40
  /nix/store/ghqzzi0bcyq1578lw83cxq2s5vrfwmwh-gmp-6.3.0
  /nix/store/ns0fcfirw3mzmn038mca90n8bjj2y7sy-gmp-with-cxx-6.3.0-dev
  /nix/store/vva8pyqaqrl3lw6jbar4p1wsmc24vkrk-gmp-with-cxx-6.3.0-dev
  /nix/store/2im8z9a4i8gv3d54fxx9361g8mb6giwm-gtest-1.15.2-dev
  /nix/store/n3iv2xf0csnd6rk7s43ls8c2jv4cabrw-half-0.3.1
  /nix/store/g6nciynqj4ks1r9nr6xminjyx4jvlavj-half-0.3.1-doc
  /nix/store/j7qhndp622pmdc3jjzh4vycncrhwg9kp-hashable-1.4.4.0
  /nix/store/z9fsf64gpl9abbf7ws82c3j0hn91kxm5-hashable-1.4.4.0-doc
  /nix/store/wp3mbsp39l8rkzv8cgln5k4hc4cf6g84-haskell-lexer-1.1.2
  /nix/store/dpwg64ygg269wvjnp5vx1fgjgc7l0ywa-haskell-lexer-1.1.2-doc
  /nix/store/h2hh10vjr6n6qdrnllbi6csim3d5ph7n-haskell-src-exts-1.23.1
  /nix/store/9i6p1wfz29fh7fvlkxjs5zdrdxwf3skk-haskell-src-exts-1.23.1-doc
  /nix/store/vzi09hi6dl8zy40qdyzf8nfvmz4fg012-haskell-src-meta-0.8.14
  /nix/store/y83nfgba6gyb6h47p1gclxshd9g3f8ww-haskell-src-meta-0.8.14-doc
  /nix/store/jqg3jvgb879lc5plscp4y9pii2n26qvg-hercules-ci-cnix-store-0.3.6.1
  /nix/store/4i88i5nny7a4hdfqydc7ymljcwnvp0k5-hercules-ci-cnix-store-0.3.6.1-doc
  /nix/store/0l4zggffrskdz3rqpx9psd4h0n2ng2pd-here-1.2.14
  /nix/store/lh0d0j614xq2r1y9bvpafc21z810jpr2-here-1.2.14-doc
  /nix/store/is30v56ik8fdwzk913h1zxnd53m3hys8-hinotify-0.4.1
  /nix/store/r0c810fknq2mjd1mf51hkxgzmmlb9m3d-hinotify-0.4.1-doc
  /nix/store/kdfilqyslprw59cra6ds8c5cxs8xmk5q-hnix-store-core-0.8.0.0
  /nix/store/ji50qdw9p119i93v84gdx4mab56hf8dn-hnix-store-core-0.8.0.0-doc
  /nix/store/nckdki1mb5y95qf5vcdz7x81b89asa1k-hnix-store-nar-0.1.1.0
  /nix/store/nxv5r1mv9gwcfhr8n2qvlrksqkznwf4y-hnix-store-nar-0.1.1.0-doc
  /nix/store/pnkkqvnqrhagpxiydf7jss68hbr38j5j-hostname-1.0
  /nix/store/xdsjgrk914cgg1zdlj17vmxk2w5cpx5a-hostname-1.0-doc
  /nix/store/dwqs1v5s87hzfyzjgv51hlqxpm130jm8-hourglass-0.2.12
  /nix/store/fcdx868m7xnhmfaldmr7rd94bfl0gk9x-hourglass-0.2.12-doc
  /nix/store/9wavw5b2pk1zvgq2mi7004yfap23dh9b-http-api-data-0.5.1
  /nix/store/230szldfn8prap83dxgrcmkvvwna3j9s-http-api-data-0.5.1-doc
  /nix/store/bxrzwgcg5iyf1bgd2s4qzb7z4l1nzaj1-http-client-0.7.17
  /nix/store/mqxiipl53rjbxpq2g1n45n5hkpqphrp5-http-client-0.7.17-doc
  /nix/store/37wvpw6r7m58ihj9j1xha5lbis7b4az3-http-client-tls-0.3.6.4
  /nix/store/bszx0r0kgvhfh3cd094s48agmdw5lasw-http-client-tls-0.3.6.4-doc
  /nix/store/7rk0q3yca030hqhqsn58iv4hiwahcbkb-http-conduit-2.3.9.1
  /nix/store/nznfzb2q873jvd1bwjmhk27ckk6xd7wb-http-conduit-2.3.9.1-doc
  /nix/store/r7qfw11sw9q91iv9qy5jnz973lqy83n9-http-media-0.8.1.1
  /nix/store/32bccmbfmn7zilfs66s7wmf0jrr24p5p-http-media-0.8.1.1-doc
  /nix/store/fjna2vlay459174f9w14badf3swbb5hb-http-types-0.12.4
  /nix/store/ycrjwbkxrl5av7gs62zz3s1ngsbp6lfd-http-types-0.12.4-doc
  /nix/store/bzf2pgd9wqpaynnvy3v29zprsx676q88-hut-0.6.0
  /nix/store/5gl6ia24ki89i5s4rqzcl43273vyrjh5-icu4c-74.2-dev
  /nix/store/3vkaw97j1cv2aviilywagc5v5ilc18z1-immortal-0.3
  /nix/store/1fcafbwyrllzc784yjwgk551n9mbmy0p-immortal-0.3-doc
  /nix/store/rmfjnbl0gkg0iphhh6varyprlzp70nsx-indexed-profunctors-0.1.1.1
  /nix/store/barvkw2rcldgl6wd7fd9sw00pim7xn1a-indexed-profunctors-0.1.1.1-doc
  /nix/store/4s7r3pdil0zi0ky0x2ra4vyh88nlc8bc-indexed-traversable-0.1.4
  /nix/store/918d63z1388wiw5drrj7r271wz0v35al-indexed-traversable-0.1.4-doc
  /nix/store/5yyfvl6w545w8ah3nqh9q9xyy6lhryly-indexed-traversable-instances-0.1.2
  /nix/store/vsijybv511a93dw8730h2kq69432gvnx-indexed-traversable-instances-0.1.2-doc
  /nix/store/2rpfllh6vnhyqjihw30z4940vpqnbg34-ini-0.4.2
  /nix/store/d6ffpwwk1zy93fz8qv1c1wi0v1301gq5-ini-0.4.2-doc
  /nix/store/016asga4vagdjgf2l5qz2w13y7a7r69g-inline-c-0.9.1.10
  /nix/store/fv7x85ir1w8l05z2zp1wswr0xdr45hsz-inline-c-0.9.1.10-doc
  /nix/store/jq4w7mdi8xmhb85r4s46s8ys5v5gh2wx-inline-c-cpp-0.5.0.2
  /nix/store/7ar6r4r1xr3aw4vy5xl94rsp0jn3n4b0-inline-c-cpp-0.5.0.2-doc
  /nix/store/vvni4z0c5zwg0gc369bzw5smk451kfd2-insert-ordered-containers-0.2.5.3
  /nix/store/jky8a1sindfyrd9fxph9axc1b3hsl6vr-insert-ordered-containers-0.2.5.3-doc
  /nix/store/5jg0zabnvnjapnqsvb2gfmcjdrl3aifz-integer-conversion-0.1.0.1
  /nix/store/4h1k8f8jylkfak9x5dn7a25vqbj4frak-integer-conversion-0.1.0.1-doc
  /nix/store/wlpmj7k432j83al1yg6658jv87yyhwvz-integer-logarithms-1.0.3.1
  /nix/store/pyh8ql838fc2vpl18w442xqz531c0w21-integer-logarithms-1.0.3.1-doc
  /nix/store/82qwxk1mr1bgblzkmck9w6ipa4hr0y0c-invariant-0.6.3
  /nix/store/p1825ms0sz9nc3h4wvbbsn2933n9gbzf-invariant-0.6.3-doc
  /nix/store/fcb67fkhvdwwiqgx7vk8ma37ahvhrhbk-iproute-1.7.15
  /nix/store/5nagpj8mgvcgvl2z4qvsw58sx3x4hhz3-iproute-1.7.15-doc
  /nix/store/33cap185sfp53kx0kcy0m1gjq5b9vzpr-isl-0.20
  /nix/store/n6igqx5cjvcybc236grbqpy9wh8zxxqx-jose-0.11
  /nix/store/0qi5pvm95zqyyxfrkrmgr3p3ppkxwl3j-jose-0.11-doc
  /nix/store/ypc262vciqsha43mrmwcp9n29yc5czkv-kan-extensions-5.2.6
  /nix/store/nsb6mj50v4zph8crg8gss44ydjzdkxnz-kan-extensions-5.2.6-doc
  /nix/store/dszh3q7vr8hnx9zjpsd203wdz532xcxl-katip-0.8.8.2
  /nix/store/nm5xf8l1s2706p8173hskrgq85zdk7j3-katip-0.8.8.2-doc
  /nix/store/25fsfycgcx9jvpd101g8mdbjm8cxb7zd-keyutils-1.6.3
  /nix/store/lszn8kpi6hra0xhfb4zh3x97f4hjhinh-keyutils-1.6.3-dev
  /nix/store/7nb0sg9y8j8xli2y3q4rhzzf4npgrz2d-krb5-1.21.3
  /nix/store/plnajdv4w5602hwk6zlgwgjy8p6ypy4b-krb5-1.21.3-dev
  /nix/store/6a2xckw2ava7vc6js8kv7xdh9w3rvm0c-lens-5.2.3
  /nix/store/7iln80zdg1hnrfwc78x3ahxc2zncwfw1-lens-5.2.3-doc
  /nix/store/7xc95r364llnqiby68p31a9q3mlprry6-lens-family-core-2.1.3
  /nix/store/1bkgrwsgkz8kig3k238irxf0nba9c6s9-lens-family-core-2.1.3-doc
  /nix/store/kqx57vq1526ji3mpppi5c40zq2g32ypv-libarchive-3.7.7
  /nix/store/c596qvzh7gsrjmp44xk0395hzwssnqsy-libarchive-3.7.7-dev
  /nix/store/4pgc49xp481vv2cxk3y7qi5rk8scd51s-libcap-ng-0.8.5-dev
  /nix/store/hk04281jgw2af594lfj2jvk91f9ajnxd-libedit-20240808-3.1-dev
  /nix/store/2k0cgcj46iaharh2plwczbkzg32d2595-libev-4.33
  /nix/store/1nj8bdrc9ws3377gyj5jq3ab9czi94pc-libffi-3.4.6-dev
  /nix/store/zn3h8f3z2qrgm0bfb43bz1zkpm8xla2r-libgit2-1.9.0
  /nix/store/7127xwyz3x38b8znp2zrjks6hdbigrhz-libgit2-1.9.0-dev
  /nix/store/d6n3iq97s0jpjqwxzx36n61nij9vg49z-libidn2-2.3.7-bin
  /nix/store/p2wr7ijqdma50q1dw8fm255vgrprrw10-libidn2-2.3.7-dev
  /nix/store/sr12h84y89r2w0y0pzn0gdvj44lyyyi7-libmpc-1.3.1
  /nix/store/jkfw81rnih8ks4pg94a9d5lh76sgnds1-libpsl-0.21.5-bin
  /nix/store/h5ymqil8iysbrw3nwrrsh0xp0jjbifb7-libpsl-0.21.5-dev
  /nix/store/0dwgafvpy3m1p026dml7pcwj818ysmjz-libseccomp-2.5.5
  /nix/store/jcp77nrcxm5jqh0ksrihk1rpazcvkh5s-libseccomp-2.5.5-dev
  /nix/store/pigbgp4s1nlihn0zd0344l6dxn54h1fv-libsodium-1.0.20-dev
  /nix/store/zai4qagp4z5vyrdw1scf7kyh6607g1lr-libssh2-1.11.1-dev
  /nix/store/7q0wvw6vs083fwgnssbjmml9g7y9f6jx-libunistring-1.3-dev
  /nix/store/xdhipy5vbk65gkm1i4ckzn9x4vkdi20f-libxml2-2.13.5-bin
  /nix/store/x7kdblncmd9z9kszqb46kf58b7xyf3kv-libxml2-2.13.5-dev
  /nix/store/arszyr8bzic8jq3lgn39y9397wwj5i0k-libxml2-2.13.5-py
  /nix/store/qs1mk11cnsfgh880ac3d089xfa7g858n-libxslt-1.1.42
  /nix/store/drci4nmdfd3pq0cvjhmmabnkvfpi1pfy-libxslt-1.1.42-bin
  /nix/store/ad2l9744fjasjw86yqbx1qqjbajv0gsr-libxslt-1.1.42-dev
  /nix/store/hygkna8sgwmxvwwjldfw6lw2sx2jfcy4-lifted-base-0.2.3.12
  /nix/store/jnx7dcvda7ny41cp0vrz3w1qbmmg76bm-lifted-base-0.2.3.12-doc
  /nix/store/qhmjl87jvad2kf51jcxjdhdg2jjvpl2x-linux-headers-6.12.7
  /nix/store/5x5xza68wlyfg4xz81swm8wph4828m6h-llhttp-9.2.1-dev
  /nix/store/30qp5n49kw7lpx1q7ran16k6dglzsg45-lowdown-1.3.2
  /nix/store/bdd8apdn3s7b605y0nd3fvi8zhm4aqkc-lowdown-1.3.2-dev
  /nix/store/z3ws5czsjaq21zgdds43qbzwb36awymb-lukko-0.1.1.3
  /nix/store/2ii0zyrrj6qy8aanlrb8v2dgsd81094g-lukko-0.1.1.3-doc
  /nix/store/1vj92b99ay9icd1sicjjpwkkb7dqckxk-lzma-0.0.1.1
  /nix/store/74p4xj4rnjqgqv0fq3lsn3fr388pbvzg-lzma-0.0.1.1-doc
  /nix/store/qrfcard7zbmvbrhykjlm0323w592xgif-lzma-conduit-1.2.3
  /nix/store/hcc8c5z6lb6qwniw3ar19sgjjlrzsmgq-lzma-conduit-1.2.3-doc
  /nix/store/0p7kyi9ipdxn98sxajwa6mssq8vpw6dn-megaparsec-9.5.0
  /nix/store/d8laaa1mzdxrzb91nvqiwsfmasjv0rnf-megaparsec-9.5.0-doc
  /nix/store/cw9vw5w4jm6z561nwxh52q7zspwgzjr5-memory-0.18.0
  /nix/store/qm6hn5pmi847qw1zm4ah0dj2ikf4xhxp-memory-0.18.0-doc
  /nix/store/2mqk0ajf65d6c5d1ffgkhx0y27ilfy9j-microlens-0.4.13.1
  /nix/store/s9x5xlym6mz6rfkmbkl2yldar2vba4qm-microlens-0.4.13.1-doc
  /nix/store/vrzg5zjpqnsabghf1g1j27v8aaqwniwm-microlens-th-0.4.3.15
  /nix/store/s5kxdnn9vl3m9y8caczghp7zn76r9kd8-microlens-th-0.4.3.15-doc
  /nix/store/ls2adssxfkzyy41jcymfl1ax4ksfb0j2-mime-types-0.1.2.0
  /nix/store/xig7q1145393p1v0h53l4dxqvsk3gkcc-mime-types-0.1.2.0-doc
  /nix/store/h4azkm69d1b4rsx56axskvjf1a8ywc2w-mmorph-1.2.0
  /nix/store/mzzrrsmddalmam9b4jal95fq6da6m2za-mmorph-1.2.0-doc
  /nix/store/qgpdrbip868a3n6ly70i7samw7acimn7-monad-control-1.0.3.1
  /nix/store/5y9jmp7pq88yyb6g945hw6bgb758s9n7-monad-control-1.0.3.1-doc
  /nix/store/fy8wn3m2vw2an0s9if8ijnyrmh4gvqkw-monad-loops-0.4.3
  /nix/store/2w59hjr07z8rhqm12qymkxga7hllp1l2-monad-loops-0.4.3-doc
  /nix/store/56csgha485gglyaw6dbdcfqqfbjxwwb9-monad-time-0.4.0.0
  /nix/store/8igrjxcx8x62rnwmazd5lqsawxyxww26-monad-time-0.4.0.0-doc
  /nix/store/yqvzzaci4sjp20lsv4y0fc5rj1jxxw56-mono-traversable-1.0.20.0
  /nix/store/cxz0dx774yswaggjs1idgfxa0a30zzaw-mono-traversable-1.0.20.0-doc
  /nix/store/hmixh88rjl67gapl5xg6mpfvwlwrz41s-moreutils-0.70
  /nix/store/bw53973pz6nndackqrmkadc2hbbcmxh1-mpdecimal-4.0.0-cxx
  /nix/store/k8h33dm56lhr6xbgdn04273hhi73gq37-mpdecimal-4.0.0-dev
  /nix/store/k856x8cy4psqppgsm4wq3j0gg15i8ifz-mpfr-4.2.1
  /nix/store/i276k37is0lmnski58pfzv2l9p3b08dy-mtl-compat-0.2.2
  /nix/store/91afpjpyajqkly06m6jv823rdqshjxhl-ncurses-6.4.20221231-dev
  /nix/store/64mfvgl0fwladzkvg7glbnp17497bz90-netrc-0.2.0.1
  /nix/store/7p21mzbj6a36y728w1w2s2v8wasfc1rm-netrc-0.2.0.1-doc
  /nix/store/k6d2wcqdccs4fnwrm78iw26rh3mcjzh1-network-3.1.4.0
  /nix/store/a82xq98jacsgqpq4b003fbc298z5i850-network-3.1.4.0-doc
  /nix/store/54w6hza8ilfgwn7vw1ma3arx0r7wqkw9-network-info-0.2.1
  /nix/store/m4yqfdy4cxrzdknbi8nyc3znqhgdq19h-network-info-0.2.1-doc
  /nix/store/8pc8hwsabxrhnvbdbj65arj1wlldww33-network-uri-2.6.4.2
  /nix/store/4da7d6jxansjmrryrf41y8qzwvvjqafm-network-uri-2.6.4.2-doc
  /nix/store/4lavj69h0davbcxwrhj6bh10rkgbh1a5-nghttp2-1.64.0
  /nix/store/a6nmcyx9xmxacs5n1jijbm4bxm2w9z3j-nghttp2-1.64.0-dev
  /nix/store/vb2p61snqd66f2qm8znhvgplb3b71zyk-nix-2.24.12-dev
  /nix/store/6hxirhi1wvmp958zdflirf9m4pr5ykan-nix-derivation-1.1.3
  /nix/store/6v3s1f42pcbhg6zl6ayk5ss17cs14h3y-nix-derivation-1.1.3-doc
  /nix/store/qfml0c10l84jllvjbjn5fq1kg7g0k6qq-nix-narinfo-0.1.1.1
  /nix/store/r3645vwg3jg93r7vyhfvldshcj8hrvyq-nix-narinfo-0.1.1.1-doc
  /nix/store/dh4yyzqfg95g18rbkqsh64d8s0d45jd9-nlohmann_json-3.11.3
  /nix/store/30fpkmrjsjy64vb4hx9badklyrwhlxvj-old-locale-1.0.0.7
  /nix/store/nmbxk1cnmrzr29dq6hzph9gf3s2zcq3n-old-locale-1.0.0.7-doc
  /nix/store/6hdc4qw0zx601cs5h3kdi988w5wma1gc-old-time-1.1.0.4
  /nix/store/cgi72hdbksvz8l4lmcqgrqn3381wx3bc-old-time-1.1.0.4-doc
  /nix/store/6qfv77c88imjjhyljf989db3b63npxvy-openssl-3.3.2-bin
  /nix/store/zgbn7c77c40zv9vaakvhynkjq8qnrn1y-openssl-3.3.2-dev
  /nix/store/wlxpf5r7d3lhs5c94p6rnzjvnx93dgfv-optics-core-0.4.1.1
  /nix/store/j8nrfnlbnbqgymzpk7yas2vr50hnpdyf-optics-core-0.4.1.1-doc
  /nix/store/7d779klkzlssrmjfz1c2kjpighk7a4gc-optics-extra-0.4.2.1
  /nix/store/wj1h9myq20fdkd1mzl0nvn5q1fkza86c-optics-extra-0.4.2.1-doc
  /nix/store/dhcrlsgwl5409lmnsayn6pxdip7gcp8c-optics-th-0.4.1
  /nix/store/wc5c724srg8ahz24fjidc4xg99z0zl4g-optics-th-0.4.1-doc
  /nix/store/dcc5llkqagccsc0ks4z2nnvpw4x6msz3-optparse-applicative-0.18.1.0
  /nix/store/fmcv059p3h5zb43hva4ihmdlhil4dyhx-optparse-applicative-0.18.1.0-doc
  /nix/store/gzszpd74gyyfl07b4wdsmkz94n5kmk6i-os-string-2.0.7
  /nix/store/f5z25ibhjy4xzvzj7zxz4fi3f65bywpq-os-string-2.0.7-doc
  /nix/store/k9klx4133kq96iffwikzcpxk7rikpalr-parallel-3.2.2.0
  /nix/store/fg3jwcp1hy9pvhci648p74fjad9cypvh-parallel-3.2.2.0-doc
  /nix/store/1r7px6iqlnf4ja581hc281q204ymg29d-parser-combinators-1.3.0
  /nix/store/y3n235fhqkpfjc65a2zif6sk8w6m64gm-parser-combinators-1.3.0-doc
  /nix/store/czwr5hk5sl47ag1xfbj4mlb2yj2j447g-parsers-0.12.12
  /nix/store/k285j0afsw0pwki0whaqlfkcr953mrnv-parsers-0.12.12-doc
  /nix/store/4ffdxdnvi442sj0dzrmi1xdx24jj9dr5-pcre2-10.44-bin
  /nix/store/8ii02i72cfmgyyba6qqay1ihrznwrif8-pcre2-10.44-dev
  /nix/store/8bqnmc4rasn9xnvmhnpyqvkkxzrp8x0s-pem-0.2.4
  /nix/store/wvpnp2q8zla6yci8n2vfxy0xadp14mjs-pem-0.2.4-doc
  /nix/store/7asl0kbp1iriqx76zayaq0kgnli62m9w-perl-5.40.0-env
  /nix/store/b2qywjxxkdvabx74p7fh63m8yxvvxzs4-perl5.40.0-IO-Tty-1.17
  /nix/store/q2s90bmgd5kal4dy5vkpz13n9qq2ibj4-perl5.40.0-IPC-Run-20231003.0
  /nix/store/60r8da28wrnykjm9zibhryp2jbhy7lrk-perl5.40.0-Time-Duration-1.21
  /nix/store/f9xzda8y1d7zpgkna972mn4p07bqdkwx-perl5.40.0-TimeDate-2.33
  /nix/store/3q80q433fph5ccc1h7p8c0kasni5d7c9-pretty-show-1.10
  /nix/store/gfjfbnpc7ajwkv111w53n747gsyb8v1p-pretty-show-1.10-data
  /nix/store/mzmnbgdgdqrj1w0y38hv76dk5w1dihd3-pretty-show-1.10-doc
  /nix/store/jqqizv2rdhxff2vs4xhfma0j9dwmm7qz-pretty-simple-4.1.2.0
  /nix/store/lfmp8riag4wfiq3xszmclfk5xg1cvgqk-pretty-simple-4.1.2.0-doc
  /nix/store/v11wr56gvn38krg1zgyrhhl9d3b6ljdd-pretty-terminal-0.1.0.0
  /nix/store/1mwjy4lgfji7pinwwn7h1akixh2xgavh-pretty-terminal-0.1.0.0-doc
  /nix/store/aw0rgcw7mhsqm0sa4avqcl87fxxlcamh-prettyprinter-1.7.1
  /nix/store/n6zkldyapj2ddpmb89f8gi01vdi3x94f-prettyprinter-1.7.1-doc
  /nix/store/4nmqsr7hghapnwg2y3v6ac15pq4np53l-prettyprinter-ansi-terminal-1.1.3
  /nix/store/r6x102k4ha2hm6an1rynq8yn5mci8ijz-prettyprinter-ansi-terminal-1.1.3-doc
  /nix/store/q61lppnyldxsw237mj8r116hhm7z1dvd-primitive-0.8.0.0
  /nix/store/4b9kpfkm0xkqblyai9y812jic2ql31ik-primitive-0.8.0.0-doc
  /nix/store/0pd5p09lqyfjng5c5007pbgz5pgf4i71-profunctors-5.6.2
  /nix/store/d89z1adbsbnbv52y5wwn3kjq1zdi4p28-profunctors-5.6.2-doc
  /nix/store/2an1avycqzg8qgcjdv1yvblysvm0yim1-protolude-0.3.4
  /nix/store/8sfgqalx67pwp1fhjh4rckvb745ydi3j-protolude-0.3.4-doc
  /nix/store/adyxyw6sbaar12wn3sa18ksgq94vq3nx-random-1.2.1.2
  /nix/store/ba40c2p6gqdlbf3hcbldxrn3gb0rb4wd-random-1.2.1.2-doc
  /nix/store/krcynf6risn2s3fwvhrpd7jqpv0pd3ya-rapidcheck-0-unstable-2023-12-14
  /nix/store/aq92wjv8vavk77cypsj1lc2i6psx01f1-rapidcheck-0-unstable-2023-12-14-dev
  /nix/store/8zz3a356rwx34afg6rqxacpp46jdp08c-readline-8.2p13-dev
  /nix/store/ggnm65y51zxsxr43b5g6805m5hvd6rlb-reflection-2.1.8
  /nix/store/8h9640vbpmfcai5imndr1m8cnhi9mw2x-reflection-2.1.8-doc
  /nix/store/5r38pw592bypisygp6r903slrsmhc26c-regex-base-0.94.0.2
  /nix/store/ln6r528my7hg5dlxsblmcixz48zp0w28-regex-base-0.94.0.2-doc
  /nix/store/pcyi2fqrlghg99q603gd160yxmcq6c15-regex-posix-0.96.0.1
  /nix/store/yi4gnnzvhng9qxy9hzvq4zv2m0x5rp1f-regex-posix-0.96.0.1-doc
  /nix/store/yvn8m30gw0fmszw7c317ngiyx2fcfmkz-repline-0.4.2.0
  /nix/store/1182h785cnp77d60m051h54q0rib17lp-repline-0.4.2.0-doc
  /nix/store/d319iwrx3hwp7x9v661mvql7fvjw7hwc-resourcet-1.3.0
  /nix/store/47bv7h94bwk6yhx1hgg2m894z2vgq3z8-resourcet-1.3.0-doc
  /nix/store/3ic5dbagdm67mfqcspipd48az052vx6f-retry-0.9.3.1
  /nix/store/n9yxsl40m5aksvsh9s7abx6jziz0i1rw-retry-0.9.3.1-doc
  /nix/store/2f4hdkc0qhlrr8y6wifdqc4k2nk0dg1y-s2n-tls-1.5.10-dev
  /nix/store/m809yws0vwv246qz5qf6r0sd063ji62f-safe-0.3.21
  /nix/store/y62gsbfmls805ppkc1pj9ix6hw6hx8sc-safe-0.3.21-doc
  /nix/store/34fmsr06f51gmb0ng946h13yib7v27dq-safe-exceptions-0.1.7.4
  /nix/store/mrwjsq0d3p1nvz8xx5c2xf6y63i143pr-safe-exceptions-0.1.7.4-doc
  /nix/store/8hxd8sicdzdnphpvm31f40ypyd7nhr6s-scientific-0.3.7.0
  /nix/store/52q16i283gpw38l80l1hrim5zlz78sxs-scientific-0.3.7.0-doc
  /nix/store/xlrw6xr7mgf356bbn9rhcgx1ahpyijaw-semialign-1.3.1
  /nix/store/6a85xph9kap4dkid8b1sx150m1pl4zpl-semialign-1.3.1-doc
  /nix/store/kamjpwf42j9m10027ic1g3x68pyr4vh8-semigroupoids-6.0.1
  /nix/store/mcg457sak216biinzbjkch0xhpcd2413-semigroupoids-6.0.1-doc
  /nix/store/0xrz2ym7bk8h54r8rgcnxfy1rxr13lib-semigroups-0.20
  /nix/store/6asrbvd97zp03xgfdxbv6a4b3jv2i2l8-semigroups-0.20-doc
  /nix/store/41nzyji4rxm6cgsyp5bilj2425g3pwqw-serialise-0.2.6.1
  /nix/store/4givfb3bwwhj2aycykgpwkc4xjm48gj5-serialise-0.2.6.1-doc
  /nix/store/xl4lkmilx6iq5k2h3sd9p96h8nc3sy4a-servant-0.20.2
  /nix/store/y5pfn9fxj7nfr8hl3clq3bswzwx6lr4n-servant-0.20.2-doc
  /nix/store/f9xnbrxilhl9niwjcp8pvfwqnwdsydmb-servant-auth-0.4.2.0
  /nix/store/5jzaglib076pjhwds51bc0vmv0am9nqj-servant-auth-0.4.2.0-doc
  /nix/store/vc5rfnjzmaqf7p4jnmc1kzd42vrzhwfw-servant-auth-client-0.4.2.0
  /nix/store/rm51z5zq28q2f4w3dj2fpyqmsji9918i-servant-auth-client-0.4.2.0-doc
  /nix/store/ggpyp24pb8pqnj94mj3lzz7k6wmbi7v1-servant-client-0.20.2
  /nix/store/v3qv1ai2iqsfrv01shhnqnzpfs3jxl7g-servant-client-0.20.2-doc
  /nix/store/kxpwx0dnnyhfh2kblficl5p51lxf1dwj-servant-client-core-0.20.2
  /nix/store/wi30ldywa9gjpzb3a3af0pa4ynx64giq-servant-client-core-0.20.2-doc
  /nix/store/aw03ybcifrg1zkla4bmip3x1fqb43vdm-servant-conduit-0.16.1
  /nix/store/bgkml7187vmjl635hyajd8rjg9mxb9by-servant-conduit-0.16.1-doc
  /nix/store/da2l94jbw4cf4zkillhy25y0g0haczgl-setup-debug-info-dirs-hook
  /nix/store/2785j6mixfnsccxx87z03dhhsqzfx3i5-singleton-bool-0.1.8
  /nix/store/kswz15gcfn3sb4cj7fkk3v2j7wv1j48b-singleton-bool-0.1.8-doc
  /nix/store/3g7yjnmfr9d2z5cz9l4l2dy9v98pdyc6-skalibs-2.14.3.0
  /nix/store/jhkljvrdzvcqhz6m1dlicsfyzk9ssnhk-skalibs-2.14.3.0-dev
  /nix/store/n4b06miyc1gf84hkiajlzpfy0143r6rm-skalibs-2.14.3.0-doc
  /nix/store/r4lnz59jyxdp0zb08fwi6y5hqqr70jad-skalibs-2.14.3.0-lib
  /nix/store/lvhdb0zfynainrrhnwsasr3kvmsvin27-socks-0.6.1
  /nix/store/jza00jzgqw6cham7d58vhq2m4xkhcwv9-socks-0.6.1-doc
  /nix/store/0h1cnadmn89ckj81c7ryavafgmgzsqfk-some-1.0.6
  /nix/store/9jrfcmplai4l84yymmg0c7qxsszjzx9z-some-1.0.6-doc
  /nix/store/dbxc0sjq06hmnwdwq0h6b38v10kkr8sr-sop-core-0.5.0.2
  /nix/store/jlrc5bnxqsfnyf1skwg2ihkjfndrdz2v-sop-core-0.5.0.2-doc
  /nix/store/5aqps6ja65x89iaxpkwr1bvz1hfpq8ws-split-0.2.5
  /nix/store/dla113xmz882ipmj05z4x88mndn1mppy-split-0.2.5-doc
  /nix/store/9rqzy1asc7i22q4lkp94680jr9r3kjj2-splitmix-0.1.0.5
  /nix/store/m1b38xcx1p2bbzfn4sbjx0v974frzc5n-splitmix-0.1.0.5-doc
  /nix/store/594hg3dcjhgfzvvzvzpkg4rzvmlx4nd0-sqlite-3.47.2-bin
  /nix/store/a6k3hpx35jvgpq7f4yzxfgq3ihr2bcsc-sqlite-3.47.2-dev
  /nix/store/iqlqhlb379fxxxgzcpf4nif58i5lp1qv-stm-chans-3.0.0.9
  /nix/store/hy294b3nymcyi69w3k7rxzggw9kk8bww-stm-chans-3.0.0.9-doc
  /nix/store/ldy1fndpk2s6nba927higlqi6y8l2ass-stm-conduit-4.0.1
  /nix/store/sjs4zhfjsgnagwggzakjrajq04gs33j5-stm-conduit-4.0.1-doc
  /nix/store/06xv3ka6qxcvmrzh0401jgpd67200rmh-streaming-commons-0.2.2.6
  /nix/store/78raldvzplxij87wwp1cynbwswrgj2kf-streaming-commons-0.2.2.6-doc
  /nix/store/hwwdcc7yyfqxhc69gfqwrl2p7jc4mzrk-strict-0.5
  /nix/store/5jqzfzf4sys74q4xb4wi3fp7zy5vqdrs-strict-0.5-doc
  /nix/store/lz0dapmzrmfx4qzk5sv84qkrwq8wh75h-string-conv-0.2.0
  /nix/store/9j6dylags3scmamki2iz1jz2j7cnrl95-string-conv-0.2.0-doc
  /nix/store/d2q1rbbnwq685fks8dwhk0jrha9s6w5r-swagger2-2.8.9
  /nix/store/9qsm1qlw6pmcrgy4lclf2lhwgjj9l8r2-swagger2-2.8.9-doc
  /nix/store/88y968lq3rms92i48s0gpkk1zpdr2fdl-syb-0.7.2.4
  /nix/store/z6bn3w1lbhz3avkq15pb7zmbm0vqs7nm-syb-0.7.2.4-doc
  /nix/store/p6slvkk3i853b0b0ycsnm3jnzfvbpd74-systemd-2.3.0
  /nix/store/pimkaswvp95ip6q0nm729vjjh3xpnfg6-systemd-2.3.0-doc
  /nix/store/vpv6x3g8l2mbxp4si7x3a3h5ashd36sh-tagged-0.8.8
  /nix/store/q3x5yyx54yr4pqambqigz12sj3qz27qw-tagged-0.8.8-doc
  /nix/store/3vp4s9l4sky2lk00fprf9vwf956rwjpb-temporary-1.3
  /nix/store/cswp62b169yyhqxx1z6zidhgbnrl8dcw-temporary-1.3-doc
  /nix/store/618cmmfnhln1y9ajcjkn0x9fa1xi4wms-terminal-size-0.3.4
  /nix/store/v3mlgxp06cfg0hcgjh0apiggnh37vk4z-terminal-size-0.3.4-doc
  /nix/store/y5fkpj057arxgh1rzi7mrlvq3pbmw8sx-text-manipulate-0.3.1.0
  /nix/store/3rb8lg1pgcjdsx4nk5dqjmrqvh54ng7l-text-manipulate-0.3.1.0-doc
  /nix/store/140kp5bpkn3a6nc55787b3jmyr99mxrh-text-short-0.1.6
  /nix/store/1irb94rfzy9m6jcqnjr8zdf30rk6bg4x-text-short-0.1.6-doc
  /nix/store/g10k9srcngmszj63nl566wwdxj2s8fsz-th-abstraction-0.5.0.0
  /nix/store/iznchb4ljn4wkbxsi3bdwnnh5fzay55p-th-abstraction-0.5.0.0-doc
  /nix/store/ljszvg46by508cqp9dakspllghx7q9cc-th-compat-0.1.5
  /nix/store/5gqjmzsaw7d5hchzqxxq84jp70p8815f-th-compat-0.1.5-doc
  /nix/store/r22rfl2f9h71xxfqpq1bk9h6bil07jc3-th-expand-syns-0.4.11.0
  /nix/store/0ls6xhpzm08rd2firi6mhgvn43l4hd0g-th-expand-syns-0.4.11.0-doc
  /nix/store/3lhqvndkfk7f63ng6dqlvyzq7ii4bih4-th-lift-0.8.5
  /nix/store/4768glrv0g9pfva1xsi7m13di1j77w5d-th-lift-0.8.5-doc
  /nix/store/a20is81h2vw7mvllcfxsl3mvyg0drygr-th-lift-instances-0.1.20
  /nix/store/3mbryag7hlpmjk6s98h12cr21zrwyy8a-th-lift-instances-0.1.20-doc
  /nix/store/2a0p2s78ick6i6d82rpky6dqi6w9hk6s-th-orphans-0.13.15
  /nix/store/k8n36zghw663ynf0mnpcmxxgy9w5mbki-th-orphans-0.13.15-doc
  /nix/store/m9jdfn4384mp4rijxbpmiblr8q3srz3x-th-reify-many-0.1.10
  /nix/store/hlah0zhnjbvbxdxfsdfcd88m9ybqm32i-th-reify-many-0.1.10-doc
  /nix/store/j4pkz3cw0ld0ixh5gxi393q74w2f9z6n-these-1.2.1
  /nix/store/zl89lv5abd5il85m339ydfnalqdpjs5z-these-1.2.1-doc
  /nix/store/ly7433fvibpczqb8gya26xq3miinqn06-time-compat-1.9.6.1
  /nix/store/ckr77g6xgvhcv6g8crpmx282iri1hxc9-time-compat-1.9.6.1-doc
  /nix/store/n5lixhp5q84925js1vk003q1ng09aa7y-tls-1.8.0
  /nix/store/m6szrd3j1h4gry1gyyjnb68awcjhvyfi-tls-1.8.0-doc
  /nix/store/xfsfwasf795f97bdx26ncxdp0zjw6nk3-toml11-3.7.1
  /nix/store/ivp16vysd3pkchwivnpbqak9vhd5d1r0-transformers-base-0.4.6
  /nix/store/c2ja9209iqja7jyk5z08hp1qk35z1xmc-transformers-base-0.4.6-doc
  /nix/store/8pdaczra7rphinjzw3vrqr2p753s4ff9-transformers-compat-0.7.2
  /nix/store/3f76y908d6g43jpsbq59m5hmgpm2blxw-transformers-compat-0.7.2-doc
  /nix/store/zdcdiwsxcjlnhc1xkhxf7z0zcd07pbb0-typed-process-0.2.12.0
  /nix/store/laiwng9qg0cr0xa1f84i8nzxi2msspq1-typed-process-0.2.12.0-doc
  /nix/store/i34f7byyygjmcbpbfdmh516f0ldkzxm2-tzdata-2025a-dev
  /nix/store/q5s1j64jpq1biazsd0fryf0iycm8f3s5-unbounded-delays-0.1.1.1
  /nix/store/cqjjlcm9wb02gnzrkl6z460clv1rkdgx-unbounded-delays-0.1.1.1-doc
  /nix/store/y80li8qmq6h2wfa6l8kai3bc3sx05fw2-unix-compat-0.7.3
  /nix/store/1sgj01lwq0ga4j255m9k5k10fcd75cq5-unix-compat-0.7.3-doc
  /nix/store/dz9iaz6738lp6j9kkwpzhzr2vpq0dv34-unix-time-0.4.16
  /nix/store/sam2pspnkvy3bcp48rxw9zwkizpl6p6n-unix-time-0.4.16-doc
  /nix/store/aq4kscd83bgadzrplgakn3qp49irmjxi-unliftio-0.2.25.0
  /nix/store/582qrg9779zd5h9j2z3nxylj4a0bwfam-unliftio-0.2.25.0-doc
  /nix/store/qcwphsk8m9v360fw7fhp0f9vl09vvsk2-unliftio-core-0.2.1.0
  /nix/store/shvwdnxk1rg5qxkw8jdyp8hcxc8xmkga-unliftio-core-0.2.1.0-doc
  /nix/store/912dfiskrypfr34h9s2biccy7048r0d3-unordered-containers-0.2.20
  /nix/store/870cpjhl6i7nsmfz1286lwman34f1wcv-unordered-containers-0.2.20-doc
  /nix/store/4dgvkf7b76zm2ywh1mg78nvmq5b7khig-uri-bytestring-0.3.3.1
  /nix/store/zrqcgsij9zr8g7amhkg58p92584am0wp-uri-bytestring-0.3.3.1-doc
  /nix/store/jrmkpvraq4fl4sdq25alf774x5vij79q-utf8-string-1.0.2
  /nix/store/b5ydlz1xh7laivvzs90z6aw2b3cyjqww-utf8-string-1.0.2-doc
  /nix/store/r8hmcy8grljxrx465qwn83fd6cn528n0-util-linux-minimal-2.39.4
  /nix/store/cxmgrlh0d3y27jzpdgf4iih7njbqsn1a-util-linux-minimal-2.39.4-dev
  /nix/store/xnvh0hnqir765vh7bd0zqrdwrmv6kvk8-uuid-1.3.15
  /nix/store/si99s9w94abq1lpgg7n257h5qi79p91q-uuid-1.3.15-doc
  /nix/store/jkx6ayn6zvvrkg9b2yahg49wghwjnjkl-uuid-types-1.0.5.1
  /nix/store/swjpjf0wvhnfnajxyj7rqcb86dsjhk7x-uuid-types-1.0.5.1-doc
  /nix/store/djdq56rbpysawxhnv9nhq64bk81iccnb-vault-0.3.1.5
  /nix/store/c548mpflvxd8507w184mf50p8xaz1b98-vault-0.3.1.5-doc
  /nix/store/ywnjss7vsn4hvdrg1my0r6k24xksy0sz-vector-0.13.1.0
  /nix/store/494sk5vrw8qf6svcwfzncynzhn7y9iil-vector-0.13.1.0-doc
  /nix/store/nz0mab1m0y0jhn3mrkwryak0rwhm47r5-vector-algorithms-0.9.0.2
  /nix/store/80vmppn1fl6nmr57aa1806521a9ryqha-vector-algorithms-0.9.0.2-doc
  /nix/store/y547y0i7s563b8cdjwi6hy3yl591s5i9-vector-stream-0.1.0.1
  /nix/store/jy9mdw24mdba5gg96ibgmzxqzsi48ldj-vector-stream-0.1.0.1-doc
  /nix/store/15mvlfcrwlxg786h7rcigd6b1bsgwj8l-versions-6.0.7
  /nix/store/50hr61q5dflc2v08nlz13mkrwb96dfzd-versions-6.0.7-doc
  /nix/store/bpdck7aa8h87sy5xlsxas835l5giwz9m-void-0.7.3
  /nix/store/rj0cg9gvlx0w052aimg75i4q075p41am-void-0.7.3-doc
  /nix/store/hh9rjjkbs24qvwr53sbi51r16y86y2d1-websockets-0.12.7.3
  /nix/store/85j33jnb0fq6q5l1mwb94pgp6cfddrzw-websockets-0.12.7.3-doc
  /nix/store/rbdvyhcda31nvw5i8ck6njib7kyjrm3c-witherable-0.4.2
  /nix/store/fnb99p01wlaa0p4v8kkijnz5md0kl1m6-witherable-0.4.2-doc
  /nix/store/kmp5qhr5w7iqmvap8czzd656934rjimz-wuss-2.0.2.0
  /nix/store/dkyl9jkwfh7zghasjjhbd4bn9mkpxjmy-wuss-2.0.2.0-doc
  /nix/store/vbqi7cm08rqvxih5nvnkcbgsdyddsp1w-xml-conduit-1.9.1.4
  /nix/store/2v1jd54qsp966xjj6hy1vbqq32p2nixv-xml-conduit-1.9.1.4-doc
  /nix/store/pm7zpvyhpbfshm1h8qkwsimwk6xd2r68-xml-types-0.3.8
  /nix/store/v5c4p2ss29spyamqr1lwzn592c5rdjnd-xml-types-0.3.8-doc
  /nix/store/66xyqiqgl95hvdwc0mhzynwkplvzkbjw-xz-5.6.3-dev
  /nix/store/6qkh57v46nvkgzh19c1jlr46ndxczh96-zlib-0.6.3.0
  /nix/store/lxp1110rixavn0v3mbi7r2nfjwrjvbsy-zlib-0.6.3.0-doc
  /nix/store/wvz2wwp4pkm550i9a33yqwmzj4mkqbk4-zlib-1.3.1-dev
  /nix/store/9ppq2zyhxas4ikqqm73ym5517m9y8dla-zstd-0.1.3.0
  /nix/store/xsqhgd22xnq2pw4fg53g1n0j0h7ga1nx-zstd-0.1.3.0-doc
  /nix/store/dlwar8yval6cqyln15p6i3flg268v22a-zstd-1.5.6-dev
copying path '/nix/store/1kh6w6s4l45d2rc91zfxdad91acgjv0j-execline-2.9.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wv2ic7hlcpb3z91vy0nfalkxr7mpiip1-execline-2.9.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/b9r6s4lv26826nqx659bygw0pspz58lj-execline-2.9.6.1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/dh4yyzqfg95g18rbkqsh64d8s0d45jd9-nlohmann_json-3.11.3' from 'https://cache.nixos.org'...
copying path '/nix/store/xfsfwasf795f97bdx26ncxdp0zjw6nk3-toml11-3.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/pgw6brv5pkj2a0dhj4a18vd05a6xw16i-boost-1.87.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zfk4jdckif3hyfq3c9lrdhdfr3ksq05s-c-ares-1.27.0' from 'https://cache.nixos.org'...
copying path '/nix/store/j5vbj9nc2z1xs3gv8w4d07bskmkqwyxw-cachix-1.7.6-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/b8n78kwvs3k8mag5fmhi96in5n6xv9ab-colour-2.3.6-data' from 'https://cache.nixos.org'...
copying path '/nix/store/nadznk3g7y9rax3k3sb1957ayl24winx-dhall-1.42.1-data' from 'https://cache.nixos.org'...
copying path '/nix/store/c8w300aydqa1pcgpmm2yrxnhhp4ygfs2-find-xml-catalogs-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/bzf2pgd9wqpaynnvy3v29zprsx676q88-hut-0.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/qhmjl87jvad2kf51jcxjdhdg2jjvpl2x-linux-headers-6.12.7' from 'https://cache.nixos.org'...
copying path '/nix/store/60r8da28wrnykjm9zibhryp2jbhy7lrk-perl5.40.0-Time-Duration-1.21' from 'https://cache.nixos.org'...
copying path '/nix/store/f9xzda8y1d7zpgkna972mn4p07bqdkwx-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'...
copying path '/nix/store/3g7yjnmfr9d2z5cz9l4l2dy9v98pdyc6-skalibs-2.14.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5lyai77rlsjsj3rlvbmvx1rb2cvsghnf-acl-2.3.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/snlq9xq5xpcvfazasypzrv3xg5py0lg3-attr-2.5.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/qdj9bjnc31yb398dgf8pggkb6kv8r4qr-audit-4.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/zfn6iwxk9ic0zanskdwq6lh47czn89bs-bash-5.2p37-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/nzxsyxvyv100fq97w5kr1gv4mx1j22ci-boehm-gc-8.2.8-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/xy92kk6m4ij33l36k3lh08bz2z2314sn-binutils-2.43.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/p5ximpgdr8d5zkpgfaxsswxvyakf3v24-bytestring-builder-0.10.8.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lydcsb0s57gsxyk7s6h8p4sj3s0y47r3-bzip2-1.0.8-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hpspriz4p7xa5d8rvb7csz4cm49nsay4-brotli-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pys0x7920j1jpxnc0k89cbbn2sqddd2n-c-ares-1.27.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/v0qz7cmsyyvhf5hbbqz4gpgsnb12ir5q-db-4.8.30-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/m6q5nyaqkhmbwc9qn46lc2wn4hp786xm-e2fsprogs-1.47.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/j4599pszszhs8w808xsc0i5n05rb05lg-editline-1.17.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hzp6cpj4izvhqm4d4linqpdwgzmsw1np-elfutils-0.192-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/vj4yg07caqph51fihavhin0pak6wj412-brotli-1.1.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/p4c7n17a83kgjjy1xdgnghv873gcikl5-expand-response-params' from 'https://cache.nixos.org'...
copying path '/nix/store/73klzp6plyn2yv8bllsy2f21sd0lckgv-audit-4.0.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/xgc7hmrxmjcqzxv9ck85csk5xx2nhbij-expat-2.6.4-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/jmish1ffvs939h7j8jicks19n5rq5g8r-fuse-3.16.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/g660mfi0nd4hr1543vyr619cwpx51nap-gdbm-1.24' from 'https://cache.nixos.org'...
copying path '/nix/store/j031qf5m1qlq82cz5bs98hf3gyp80r7n-ghc-9.6.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mjhfsjz7zcn80s1l8v1hajj1qvf5ia41-db-4.8.30-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/ghqzzi0bcyq1578lw83cxq2s5vrfwmwh-gmp-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ns0fcfirw3mzmn038mca90n8bjj2y7sy-gmp-with-cxx-6.3.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/2im8z9a4i8gv3d54fxx9361g8mb6giwm-gtest-1.15.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vva8pyqaqrl3lw6jbar4p1wsmc24vkrk-gmp-with-cxx-6.3.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/5gl6ia24ki89i5s4rqzcl43273vyrjh5-icu4c-74.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hfw6rhr2rdwpahbg5w112p84wcinmfad-gdbm-1.24-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/25fsfycgcx9jvpd101g8mdbjm8cxb7zd-keyutils-1.6.3' from 'https://cache.nixos.org'...
copying path '/nix/store/33cap185sfp53kx0kcy0m1gjq5b9vzpr-isl-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/7nb0sg9y8j8xli2y3q4rhzzf4npgrz2d-krb5-1.21.3' from 'https://cache.nixos.org'...
copying path '/nix/store/kqx57vq1526ji3mpppi5c40zq2g32ypv-libarchive-3.7.7' from 'https://cache.nixos.org'...
copying path '/nix/store/4pgc49xp481vv2cxk3y7qi5rk8scd51s-libcap-ng-0.8.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/5h5ghy2qf6l91l52j6m5vx473zi38vc3-binutils-2.43.1' from 'https://cache.nixos.org'...
copying path '/nix/store/2k0cgcj46iaharh2plwczbkzg32d2595-libev-4.33' from 'https://cache.nixos.org'...
copying path '/nix/store/1nj8bdrc9ws3377gyj5jq3ab9czi94pc-libffi-3.4.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/lszn8kpi6hra0xhfb4zh3x97f4hjhinh-keyutils-1.6.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/d6n3iq97s0jpjqwxzx36n61nij9vg49z-libidn2-2.3.7-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/zn3h8f3z2qrgm0bfb43bz1zkpm8xla2r-libgit2-1.9.0' from 'https://cache.nixos.org'...
copying path '/nix/store/jkfw81rnih8ks4pg94a9d5lh76sgnds1-libpsl-0.21.5-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/c596qvzh7gsrjmp44xk0395hzwssnqsy-libarchive-3.7.7-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/plnajdv4w5602hwk6zlgwgjy8p6ypy4b-krb5-1.21.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/0dwgafvpy3m1p026dml7pcwj818ysmjz-libseccomp-2.5.5' from 'https://cache.nixos.org'...
copying path '/nix/store/6aci60gk5wj4bjj1rygzbkc6ximmsm17-glibc-2.40-66-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/pigbgp4s1nlihn0zd0344l6dxn54h1fv-libsodium-1.0.20-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/7q0wvw6vs083fwgnssbjmml9g7y9f6jx-libunistring-1.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/xdhipy5vbk65gkm1i4ckzn9x4vkdi20f-libxml2-2.13.5-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/qs1mk11cnsfgh880ac3d089xfa7g858n-libxslt-1.1.42' from 'https://cache.nixos.org'...
copying path '/nix/store/5x5xza68wlyfg4xz81swm8wph4828m6h-llhttp-9.2.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/jcp77nrcxm5jqh0ksrihk1rpazcvkh5s-libseccomp-2.5.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/p2wr7ijqdma50q1dw8fm255vgrprrw10-libidn2-2.3.7-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/h5ymqil8iysbrw3nwrrsh0xp0jjbifb7-libpsl-0.21.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/30qp5n49kw7lpx1q7ran16k6dglzsg45-lowdown-1.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/bw53973pz6nndackqrmkadc2hbbcmxh1-mpdecimal-4.0.0-cxx' from 'https://cache.nixos.org'...
copying path '/nix/store/fby1ydpragv60ykvj0c9k3f4ghxkmkyn-boost-1.87.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/k856x8cy4psqppgsm4wq3j0gg15i8ifz-mpfr-4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4lavj69h0davbcxwrhj6bh10rkgbh1a5-nghttp2-1.64.0' from 'https://cache.nixos.org'...
copying path '/nix/store/i276k37is0lmnski58pfzv2l9p3b08dy-mtl-compat-0.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/91afpjpyajqkly06m6jv823rdqshjxhl-ncurses-6.4.20221231-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vb2p61snqd66f2qm8znhvgplb3b71zyk-nix-2.24.12-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/x7kdblncmd9z9kszqb46kf58b7xyf3kv-libxml2-2.13.5-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/6qfv77c88imjjhyljf989db3b63npxvy-openssl-3.3.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/7127xwyz3x38b8znp2zrjks6hdbigrhz-libgit2-1.9.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/4ffdxdnvi442sj0dzrmi1xdx24jj9dr5-pcre2-10.44-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/k8h33dm56lhr6xbgdn04273hhi73gq37-mpdecimal-4.0.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/drci4nmdfd3pq0cvjhmmabnkvfpi1pfy-libxslt-1.1.42-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/b2qywjxxkdvabx74p7fh63m8yxvvxzs4-perl5.40.0-IO-Tty-1.17' from 'https://cache.nixos.org'...
copying path '/nix/store/hk04281jgw2af594lfj2jvk91f9ajnxd-libedit-20240808-3.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/sr12h84y89r2w0y0pzn0gdvj44lyyyi7-libmpc-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/arszyr8bzic8jq3lgn39y9397wwj5i0k-libxml2-2.13.5-py' from 'https://cache.nixos.org'...
copying path '/nix/store/ir5078058nmc9rx6w0r4mk7jkzqxjqsz-glibc-iconv-2.40' from 'https://cache.nixos.org'...
copying path '/nix/store/gfjfbnpc7ajwkv111w53n747gsyb8v1p-pretty-show-1.10-data' from 'https://cache.nixos.org'...
copying path '/nix/store/a6nmcyx9xmxacs5n1jijbm4bxm2w9z3j-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/krcynf6risn2s3fwvhrpd7jqpv0pd3ya-rapidcheck-0-unstable-2023-12-14' from 'https://cache.nixos.org'...
copying path '/nix/store/ad2l9744fjasjw86yqbx1qqjbajv0gsr-libxslt-1.1.42-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/8zz3a356rwx34afg6rqxacpp46jdp08c-readline-8.2p13-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/q2s90bmgd5kal4dy5vkpz13n9qq2ibj4-perl5.40.0-IPC-Run-20231003.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zgbn7c77c40zv9vaakvhynkjq8qnrn1y-openssl-3.3.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/bdd8apdn3s7b605y0nd3fvi8zhm4aqkc-lowdown-1.3.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/da2l94jbw4cf4zkillhy25y0g0haczgl-setup-debug-info-dirs-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/n4b06miyc1gf84hkiajlzpfy0143r6rm-skalibs-2.14.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8ii02i72cfmgyyba6qqay1ihrznwrif8-pcre2-10.44-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/r4lnz59jyxdp0zb08fwi6y5hqqr70jad-skalibs-2.14.3.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/594hg3dcjhgfzvvzvzpkg4rzvmlx4nd0-sqlite-3.47.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/i34f7byyygjmcbpbfdmh516f0ldkzxm2-tzdata-2025a-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/zs2gq6fkglrd28g1nxlb8waqq37cdc2z-gcc-14-20241116' from 'https://cache.nixos.org'...
copying path '/nix/store/r8hmcy8grljxrx465qwn83fd6cn528n0-util-linux-minimal-2.39.4' from 'https://cache.nixos.org'...
copying path '/nix/store/q67l9rsiqhb34qhllmh5xarqbzb1gqlx-elfutils-0.192-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/66xyqiqgl95hvdwc0mhzynwkplvzkbjw-xz-5.6.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/wvz2wwp4pkm550i9a33yqwmzj4mkqbk4-zlib-1.3.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/dlwar8yval6cqyln15p6i3flg268v22a-zstd-1.5.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/cxmgrlh0d3y27jzpdgf4iih7njbqsn1a-util-linux-minimal-2.39.4-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/2f4hdkc0qhlrr8y6wifdqc4k2nk0dg1y-s2n-tls-1.5.10-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/zai4qagp4z5vyrdw1scf7kyh6607g1lr-libssh2-1.11.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/7asl0kbp1iriqx76zayaq0kgnli62m9w-perl-5.40.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/aq92wjv8vavk77cypsj1lc2i6psx01f1-rapidcheck-0-unstable-2023-12-14-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/a6k3hpx35jvgpq7f4yzxfgq3ihr2bcsc-sqlite-3.47.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/77hf42pzrxhl4q152zirzx7babv6b23i-curl-8.11.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/vrkxj51s4a1awh7m4p4f1w29wad5s20m-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4hkblamvapamac4f3w2krx7q5c2bfmiy-aws-crt-cpp-0.29.4-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/hmixh88rjl67gapl5xg6mpfvwlwrz41s-moreutils-0.70' from 'https://cache.nixos.org'...
copying path '/nix/store/jhkljvrdzvcqhz6m1dlicsfyzk9ssnhk-skalibs-2.14.3.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/0mkn0byp73x2k34qsciazvzlrd5k4lwx-execline-2.9.6.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/gqcc3sy7dnvkcczc1hwvkzacy9c0fzfc-execline-2.9.6.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/jmf1ihchwjq68j7nckavc2svmdl42la9-aws-sdk-cpp-1.11.448-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/816dfvzq2yydcpz3hz255wqpa3zsgl1f-execline-2.9.6.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/4ijy8jbsiqmj37avrk83gn2m903486mr-gcc-wrapper-14-20241116' from 'https://cache.nixos.org'...
copying path '/nix/store/zifsy58sm1ycz3vcdh3rymmhlqgvw0bb-Diff-0.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p127lyyn0c0888zvzjhkwg7izg42gavf-OneTuple-0.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0l7cqzzkal39hkfllqwdald7kcb9jh2p-SHA-1.6.4.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/grqf0159lkl7bk42fcm7v2ccnv6sj466-StateVar-1.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2yx44z0cwipx37k5i17nijpqabb2by1j-base64-bytestring-1.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0wnpryx30n0mfz0hcm83v0i92knra6lh-assoc-1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qf3fy6sgzfxzzayp8vw8pqajn6gsmip7-auto-update-0.1.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9rsplrg7ar2gn9ixfifd9lbdgxgfsg0x-base-compat-0.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vnqkm7mn5p41ayhl8vqpziiwfykg64qz-base-orphans-0.9.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9w78vlvm8h870q2000xniqr6mjpplxan-basement-0.0.16-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fs5q3jx3payqkl0zl59vqlasi890g2kl-blaze-builder-0.4.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/91np67w1d61dyzyx0j04bymp9m186741-byteorder-1.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/b31naw9rm4affcnacgxvwk2x2q009hfb-algebraic-graphs-0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9bgmsxkyvlvx1lzwgs2a1csh75ym6kv6-call-stack-0.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ibvv4fw8kn0nz46lhvkh0zzqrdjx0p8g-appar-0.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pyb4xawmwwv46yaybhvjvnwj1k586vgb-base16-bytestring-1.0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rkl262zy0abb9hq9c48mi5fiwyv8h39s-cereal-0.5.8.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/84p36mv2wx2naps36h5i1xa0kyd55z11-clock-0.8.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/w7cxg478s39h70vvmzniqhdrzvnsvx99-cmdargs-0.10.22-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z20p1zm3y6kq7s6gixhvk7jizlbbj92l-cryptohash-sha1-0.11.101.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/alnafi65zhqsw97xlzfqx37r5y27hsx8-colour-2.3.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/x99rhy6f0vlw7120ay8icr8x7iv3mb7m-contravariant-1.5.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wgk82ziyfjg7cwl8jhj7n743582z7n5m-cryptohash-md5-0.11.101.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k4l7z556f8g7v575fpcsh6xnkp1mydq1-cryptohash-sha256-0.11.102.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k2pjsvsawha531dq0l9hfrzz9qh09cax-data-default-class-0.1.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/217sfrjcaps8csg57xw21r70nykfvk99-dlist-1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0f3zry0cwyplahy189lqw6bfmhq41pzp-dotgen-0.4.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cpwydlkinfqc7sfk42m0wba8kkhah992-blaze-markup-0.8.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a7cynri6bvgf9qjc7wfi2vggcy50ygdm-ed25519-0.0.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z9d3dy6pfhl9rv8zb64m1ipay8mq80f7-entropy-0.4.1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/49cvhr78vwhyvplmhdinkss33p4w2i7r-generically-0.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9c9w9bl5j7b7r0qvyj9zi1grq6y3br74-ghc-9.6.6' from 'https://cache.nixos.org'...
copying path '/nix/store/knq2hz4x9k7998yafl382822vv970n9m-extra-1.7.16-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/g6nciynqj4ks1r9nr6xminjyx4jvlavj-half-0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v4f0bwminvwnbylq9wyqysd5457i73p7-cookie-0.4.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nh5fdhnzwxq03lzwwlrsfc8rpffld3f4-data-default-instances-dlist-0.0.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dpwg64ygg269wvjnp5vx1fgjgc7l0ywa-haskell-lexer-1.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3w1zba6kpcx7fx5vx6c6b983dgp1wcxf-data-default-instances-containers-0.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xdsjgrk914cgg1zdlj17vmxk2w5cpx5a-hostname-1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9i6p1wfz29fh7fvlkxjs5zdrdxwf3skk-haskell-src-exts-1.23.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fcdx868m7xnhmfaldmr7rd94bfl0gk9x-hourglass-0.2.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/barvkw2rcldgl6wd7fd9sw00pim7xn1a-indexed-profunctors-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kf7d8b7dn8hv1y4kz4f4cr4fn7psyhqi-blaze-html-0.9.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/i8bzyj98jm146vmlvzihcbb9m3g6hyhx-base-compat-batteries-0.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/918d63z1388wiw5drrj7r271wz0v35al-indexed-traversable-0.1.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pyh8ql838fc2vpl18w442xqz531c0w21-integer-logarithms-1.0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/afhcm79mq5kk26zh1cffqfj9qg7g0i6p-ansi-terminal-types-0.11.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1bkgrwsgkz8kig3k238irxf0nba9c6s9-lens-family-core-2.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2ii0zyrrj6qy8aanlrb8v2dgsd81094g-lukko-0.1.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/74p4xj4rnjqgqv0fq3lsn3fr388pbvzg-lzma-0.0.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/s9x5xlym6mz6rfkmbkl2yldar2vba4qm-microlens-0.4.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xig7q1145393p1v0h53l4dxqvsk3gkcc-mime-types-0.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mzzrrsmddalmam9b4jal95fq6da6m2za-mmorph-1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2w59hjr07z8rhqm12qymkxga7hllp1l2-monad-loops-0.4.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iqz6s41khfs76m8mba9j6ly4pzlwwavn-generic-lens-core-2.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8igrjxcx8x62rnwmazd5lqsawxyxww26-monad-time-0.4.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7p21mzbj6a36y728w1w2s2v8wasfc1rm-netrc-0.2.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/a82xq98jacsgqpq4b003fbc298z5i850-network-3.1.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/m4yqfdy4cxrzdknbi8nyc3znqhgdq19h-network-info-0.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/w2if3avjww8x00xjkhi1hwsp5rwszyim-ansi-terminal-1.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/r3645vwg3jg93r7vyhfvldshcj8hrvyq-nix-narinfo-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nmbxk1cnmrzr29dq6hzph9gf3s2zcq3n-old-locale-1.0.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/j8nrfnlbnbqgymzpk7yas2vr50hnpdyf-optics-core-0.4.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/f5z25ibhjy4xzvzj7zxz4fi3f65bywpq-os-string-2.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/y3n235fhqkpfjc65a2zif6sk8w6m64gm-parser-combinators-1.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fg3jwcp1hy9pvhci648p74fjad9cypvh-parallel-3.2.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1mwjy4lgfji7pinwwn7h1akixh2xgavh-pretty-terminal-0.1.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/n6zkldyapj2ddpmb89f8gi01vdi3x94f-prettyprinter-1.7.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4b9kpfkm0xkqblyai9y812jic2ql31ik-primitive-0.8.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mzmnbgdgdqrj1w0y38hv76dk5w1dihd3-pretty-show-1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8h9640vbpmfcai5imndr1m8cnhi9mw2x-reflection-2.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1kd137hfb6vhvigzx76vbclbl0mc6wvy-data-default-instances-old-locale-0.0.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qm6hn5pmi847qw1zm4ah0dj2ikf4xhxp-memory-0.18.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5nagpj8mgvcgvl2z4qvsw58sx3x4hhz3-iproute-1.7.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cgi72hdbksvz8l4lmcqgrqn3381wx3bc-old-time-1.1.0.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ln6r528my7hg5dlxsblmcixz48zp0w28-regex-base-0.94.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1182h785cnp77d60m051h54q0rib17lp-repline-0.4.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/y62gsbfmls805ppkc1pj9ix6hw6hx8sc-safe-0.3.21-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mrwjsq0d3p1nvz8xx5c2xf6y63i143pr-safe-exceptions-0.1.7.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6asrbvd97zp03xgfdxbv6a4b3jv2i2l8-semigroups-0.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z9fsf64gpl9abbf7ws82c3j0hn91kxm5-hashable-1.4.4.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jza00jzgqw6cham7d58vhq2m4xkhcwv9-socks-0.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k2527w5a5wdi9q1cggiryfi2n8m9asyb-data-default-0.7.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9jrfcmplai4l84yymmg0c7qxsszjzx9z-some-1.0.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/r6x102k4ha2hm6an1rynq8yn5mci8ijz-prettyprinter-ansi-terminal-1.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yi4gnnzvhng9qxy9hzvq4zv2m0x5rp1f-regex-posix-0.96.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/i7rp6nn0ahwf8xzc6dy64pfh2rzjbnv1-cborg-0.2.10.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4h1k8f8jylkfak9x5dn7a25vqbj4frak-integer-conversion-0.1.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jlrc5bnxqsfnyf1skwg2ihkjfndrdz2v-sop-core-0.5.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k4jj6v1n4id64kxqkndsvr0qpnkl25pf-asn1-types-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pnfygdv4j5j5kyyzxlricwnw2lj7y6nv-crypton-0.34-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wvpnp2q8zla6yci8n2vfxy0xadp14mjs-pem-0.2.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dla113xmz882ipmj05z4x88mndn1mppy-split-0.2.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fmcv059p3h5zb43hva4ihmdlhil4dyhx-optparse-applicative-0.18.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lfmp8riag4wfiq3xszmclfk5xg1cvgqk-pretty-simple-4.1.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/m1b38xcx1p2bbzfn4sbjx0v974frzc5n-splitmix-0.1.0.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hy294b3nymcyi69w3k7rxzggw9kk8bww-stm-chans-3.0.0.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/54c124lx5yrpvrfgabmzzni7pl11pb89-async-2.2.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vk071higwnxg076a59zsb6cyf29ah9sq-case-insensitive-1.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/89il4rnzp6akp78rgiqbvhph5gjig1kn-data-fix-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/52q16i283gpw38l80l1hrim5zlz78sxs-scientific-0.3.7.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9j6dylags3scmamki2iz1jz2j7cnrl95-string-conv-0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z6bn3w1lbhz3avkq15pb7zmbm0vqs7nm-syb-0.7.2.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/18rqqcl8fhjr4gnm7r2diqm1q2wcs0c0-asn1-encoding-0.9.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/pimkaswvp95ip6q0nm729vjjh3xpnfg6-systemd-2.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q3x5yyx54yr4pqambqigz12sj3qz27qw-tagged-0.8.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v3mlgxp06cfg0hcgjh0apiggnh37vk4z-terminal-size-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3rb8lg1pgcjdsx4nk5dqjmrqvh54ng7l-text-manipulate-0.3.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1irb94rfzy9m6jcqnjr8zdf30rk6bg4x-text-short-0.1.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iznchb4ljn4wkbxsi3bdwnnh5fzay55p-th-abstraction-0.5.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5gqjmzsaw7d5hchzqxxq84jp70p8815f-th-compat-0.1.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ycrjwbkxrl5av7gs62zz3s1ngsbp6lfd-http-types-0.12.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zl89lv5abd5il85m339ydfnalqdpjs5z-these-1.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ckr77g6xgvhcv6g8crpmx282iri1hxc9-time-compat-1.9.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ba40c2p6gqdlbf3hcbldxrn3gb0rb4wd-random-1.2.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c2ja9209iqja7jyk5z08hp1qk35z1xmc-transformers-base-0.4.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/r0c810fknq2mjd1mf51hkxgzmmlb9m3d-hinotify-0.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/l3zlpgb9hjafzmgcg84yiq65c4gsczym-concurrent-output-1.10.21-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8sfgqalx67pwp1fhjh4rckvb745ydi3j-protolude-0.3.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/d8laaa1mzdxrzb91nvqiwsfmasjv0rnf-megaparsec-9.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6nskg70sgpxxmd4jpjbibgj2aya1433k-boring-0.2.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z1l323zsdifiapfv9nks2sb3vr146gbk-distributive-0.6.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/l0a98xcia3l927jq4yppxfmlpf720cv7-asn1-parse-0.9.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4da7d6jxansjmrryrf41y8qzwvvjqafm-network-uri-2.6.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5y9jmp7pq88yyb6g945hw6bgb758s9n7-monad-control-1.0.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/96y56s1pifwnha7a6y3cfrd69kd1aidb-constraints-0.14.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k6khprgq4qpa346dnfibpanxjg8i76ld-comonad-5.0.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3f76y908d6g43jpsbq59m5hmgpm2blxw-transformers-compat-0.7.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/z8i49vl9j6h5jfrsb14siyrbyzddx1wb-dec-0.0.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0rhkfk41js92xmxxh1a4y0frwi9qyrpk-dependent-sum-template-0.2.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rhxg19cbp7c6s5xmv2vijgcswajnzclb-generics-sop-0.5.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5yfa7jm78mvfxsgzvjhlnibh0apnkmkv-ascii-progress-0.3.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qd7iyjxb9gddk4fdld72mbpamx2m5r6y-attoparsec-iso8601-1.1.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/s5kxdnn9vl3m9y8caczghp7zn76r9kd8-microlens-th-0.4.3.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/w2wfycf2nav1n42pcif1hji40ylbawc9-QuickCheck-2.14.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kd3zaqrxdfqf0xqcsy76khpqbq02wb0w-crypton-x509-1.7.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jnx7dcvda7ny41cp0vrz3w1qbmmg76bm-lifted-base-0.2.3.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wc5c724srg8ahz24fjidc4xg99z0zl4g-optics-th-0.4.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5jqzfzf4sys74q4xb4wi3fp7zy5vqdrs-strict-0.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kswz15gcfn3sb4cj7fkk3v2j7wv1j48b-singleton-bool-0.1.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cswp62b169yyhqxx1z6zidhgbnrl8dcw-temporary-1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cqjjlcm9wb02gnzrkl6z460clv1rkdgx-unbounded-delays-0.1.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0ls6xhpzm08rd2firi6mhgvn43l4hd0g-th-expand-syns-0.4.11.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4768glrv0g9pfva1xsi7m13di1j77w5d-th-lift-0.8.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1sgj01lwq0ga4j255m9k5k10fcd75cq5-unix-compat-0.7.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iwn1adysw4b8bx9fqd9d3aydmls5j3zz-bifunctors-5.6.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bz6fzrf73lfvk0xpg1h8dnh464diylqy-concurrent-extra-0.7.0.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/sam2pspnkvy3bcp48rxw9zwkizpl6p6n-unix-time-0.4.16-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/shvwdnxk1rg5qxkw8jdyp8hcxc8xmkga-unliftio-core-0.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/870cpjhl6i7nsmfz1286lwman34f1wcv-unordered-containers-0.2.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/b5ydlz1xh7laivvzs90z6aw2b3cyjqww-utf8-string-1.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/swjpjf0wvhnfnajxyj7rqcb86dsjhk7x-uuid-types-1.0.5.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/c548mpflvxd8507w184mf50p8xaz1b98-vault-0.3.1.5-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/spq4jkqbda5vfp88c2sd068g92qxv40l-constraints-extras-0.4.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yw70dkbc8fykiixvk89fy1rbdp9jncvk-atomic-write-0.2.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/1fcafbwyrllzc784yjwgk551n9mbmy0p-immortal-0.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/brf1fsxs03g80z9b88cxb0k3a46jj7j1-fsnotify-0.4.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/47bv7h94bwk6yhx1hgg2m894z2vgq3z8-resourcet-1.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/n9yxsl40m5aksvsh9s7abx6jziz0i1rw-retry-0.9.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hlah0zhnjbvbxdxfsdfcd88m9ybqm32i-th-reify-many-0.1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/laiwng9qg0cr0xa1f84i8nzxi2msspq1-typed-process-0.2.12.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/582qrg9779zd5h9j2z3nxylj4a0bwfam-unliftio-0.2.25.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dai7c0ffkv8h1k9x0xkaq1l15qdnrsc6-crypton-x509-store-1.6.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5ihybp6glbp7mp2ik70mdxr83yhrs0i9-dependent-sum-0.7.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/si99s9w94abq1lpgg7n257h5qi79p91q-uuid-1.3.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/32bccmbfmn7zilfs66s7wmf0jrr24p5p-http-media-0.8.1.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/d89z1adbsbnbv52y5wwn3kjq1zdi4p28-profunctors-5.6.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/g9mgf5ffha51fx7khwils5xy4zkhp2ww-charset-0.3.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nxv5r1mv9gwcfhr8n2qvlrksqkznwf4y-hnix-store-nar-0.1.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/230szldfn8prap83dxgrcmkvvwna3j9s-http-api-data-0.5.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/d6ffpwwk1zy93fz8qv1c1wi0v1301gq5-ini-0.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mcg457sak216biinzbjkch0xhpcd2413-semigroupoids-6.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k8n36zghw663ynf0mnpcmxxgy9w5mbki-th-orphans-0.13.15-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jy9mdw24mdba5gg96ibgmzxqzsi48ldj-vector-stream-0.1.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rj0cg9gvlx0w052aimg75i4q075p41am-void-0.7.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/50hr61q5dflc2v08nlz13mkrwb96dfzd-versions-6.0.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lxp1110rixavn0v3mbi7r2nfjwrjvbsy-zlib-0.6.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v5c4p2ss29spyamqr1lwzn592c5rdjnd-xml-types-0.3.8-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/f5f1900if9a385y7zf37kinq40bxim97-crypton-x509-system-1.6.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9f4hy8vh5x434iz5kp3a3rqy00hp4v5b-crypton-x509-validation-1.6.13-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/y83nfgba6gyb6h47p1gclxshd9g3f8ww-haskell-src-meta-0.8.14-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xsqhgd22xnq2pw4fg53g1n0j0h7ga1nx-zstd-0.1.3.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/k285j0afsw0pwki0whaqlfkcr953mrnv-parsers-0.12.12-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/494sk5vrw8qf6svcwfzncynzhn7y9iil-vector-0.13.1.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/m6szrd3j1h4gry1gyyjnb68awcjhvyfi-tls-1.8.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/78raldvzplxij87wwp1cynbwswrgj2kf-streaming-commons-0.2.2.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/lh0d0j614xq2r1y9bvpafc21z810jpr2-here-1.2.14-doc' from 'https://cache.nixos.org'...
warning: download buffer is full; consider increasing the 'download-buffer-size' setting
copying path '/nix/store/55wymlxqssavynkwga3r46sghbxbqhpw-either-5.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/kx8y1if765f0dc8fkyfmq48af3ijscvi-free-5.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mlrasvl2fpc4l0fqk8pm79v9bfzsf9z8-generic-lens-2.2.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p1825ms0sz9nc3h4wvbbsn2933n9gbzf-invariant-0.6.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8m5690b18dg18jgymipqf5w5ls19hjr0-crypton-connection-0.3.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q4555affgbplvr5lyrm118m8hghnp9gv-bitvec-1.1.5.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fv7x85ir1w8l05z2zp1wswr0xdr45hsz-inline-c-0.9.1.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vsijybv511a93dw8730h2kq69432gvnx-indexed-traversable-instances-0.1.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6v3s1f42pcbhg6zl6ayk5ss17cs14h3y-nix-derivation-1.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4givfb3bwwhj2aycykgpwkc4xjm48gj5-serialise-0.2.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3mbryag7hlpmjk6s98h12cr21zrwyy8a-th-lift-instances-0.1.20-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mqxiipl53rjbxpq2g1n45n5hkpqphrp5-http-client-0.7.17-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/85j33jnb0fq6q5l1mwb94pgp6cfddrzw-websockets-0.12.7.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zrqcgsij9zr8g7amhkg58p92584am0wp-uri-bytestring-0.3.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wj1h9myq20fdkd1mzl0nvn5q1fkza86c-optics-extra-0.4.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/fnb99p01wlaa0p4v8kkijnz5md0kl1m6-witherable-0.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/ji50qdw9p119i93v84gdx4mab56hf8dn-hnix-store-core-0.8.0.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/6a85xph9kap4dkid8b1sx150m1pl4zpl-semialign-1.3.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/80vmppn1fl6nmr57aa1806521a9ryqha-vector-algorithms-0.9.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/3j9qnsdipcns3h0i5dvb8zgm2giq58ia-aeson-2.1.2.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7ar6r4r1xr3aw4vy5xl94rsp0jn3n4b0-inline-c-cpp-0.5.0.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/dkyl9jkwfh7zghasjjhbd4bn9mkpxjmy-wuss-2.0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/n7178yr84rqw3wdm3sx2c3rkcgxicdbk-adjunctions-4.4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bszx0r0kgvhfh3cd094s48agmdw5lasw-http-client-tls-0.3.6.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cxz0dx774yswaggjs1idgfxa0a30zzaw-mono-traversable-1.0.20.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nsb6mj50v4zph8crg8gss44ydjzdkxnz-kan-extensions-5.2.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7iln80zdg1hnrfwc78x3ahxc2zncwfw1-lens-5.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/8nsvad27xwd5z4wn3r18im15ab7sm9n8-deriving-aeson-0.2.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nm5xf8l1s2706p8173hskrgq85zdk7j3-katip-0.8.8.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/y5pfn9fxj7nfr8hl3clq3bswzwx6lr4n-servant-0.20.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mkni2parqjza8ihn5p1w2j82g46d2xj7-cborg-json-0.2.6.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5b2jgfx7484ppnx3n6zrvp6flmjx0jf0-conduit-1.3.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/qvy8743mm1a5ic1i02w676amcakpx6k1-aeson-pretty-0.8.10-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9bpiwr2vhyn0r2qcd96vh65zd0c36z6q-dhall-1.42.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wi30ldywa9gjpzb3a3af0pa4ynx64giq-servant-client-core-0.20.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/glpns6f7xhib6fpzd523aa3qwb4gk5xq-conduit-extra-1.3.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7kqc77k4ck83rk0rx4xmpbi5h3krlv4d-cereal-conduit-0.8.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bac7ikpslc8wni686ck177ac9yy606xl-conduit-concurrent-map-0.1.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/vkd454k8rqkg91b4d85nz640qqgfdc0w-conduit-zstd-0.0.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/4i88i5nny7a4hdfqydc7ymljcwnvp0k5-hercules-ci-cnix-store-0.3.6.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/hcc8c5z6lb6qwniw3ar19sgjjlrzsmgq-lzma-conduit-1.2.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/bgkml7187vmjl635hyajd8rjg9mxb9by-servant-conduit-0.16.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/nznfzb2q873jvd1bwjmhk27ckk6xd7wb-http-conduit-2.3.9.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/sjs4zhfjsgnagwggzakjrajq04gs33j5-stm-conduit-4.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/2v1jd54qsp966xjj6hy1vbqq32p2nixv-xml-conduit-1.9.1.4-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v3qv1ai2iqsfrv01shhnqnzpfs3jxl7g-servant-client-0.20.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/jky8a1sindfyrd9fxph9axc1b3hsl6vr-insert-ordered-containers-0.2.5.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zlri2vspm6nm4vvjpki65j25szyxina9-amazonka-core-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gvsmrz485lxdw6rf0p0qmfvx29rzhij3-concise-0.1.0.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/0qi5pvm95zqyyxfrkrmgr3p3ppkxwl3j-jose-0.11-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/5jzaglib076pjhwds51bc0vmv0am9nqj-servant-auth-0.4.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/rm51z5zq28q2f4w3dj2fpyqmsji9918i-servant-auth-client-0.4.2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9qsm1qlw6pmcrgy4lclf2lhwgjj9l8r2-swagger2-2.8.9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/iay0r36vkbn2k8bm52zl3b8bikjlfy9d-amazonka-s3-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/75jgkypkzqi5xr2jhmm2fdcp8xi2rsj0-amazonka-sts-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/gpk6smfb7nyb0ikp6g8nb9vxafygxq3p-amazonka-sso-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/78b9mpap5j9gk7dkp34514mdawvgrq03-cachix-api-1.7.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/80vz2dg2y17ca33xddh7vw23yvn3xqh9-amazonka-2.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/xrsgv9khl8wmx4v6qbdf370nk7f5a4k6-cachix-1.7.6-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/yhc658pmlhxxqdx2dzxz7fln0689rkq1-Diff-0.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/pvw1v815d8xl22hw8wcxvk6i9xq68d5q-algebraic-graphs-0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/jk2w96vwz1vsknaj0nw9j4l8gi6rix2k-appar-0.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/x8cb85432nz2gc02cjwkssv3jnprh829-StateVar-1.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/z5dqk2aww919mpsd5ahvbya1wj08l5pi-assoc-1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/2x3gc0dh7lbfgb4m9ng1fbdlgq9xn9ih-OneTuple-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/lna4ilzp04r09an26mx1vw2q8pz7qjzd-base-orphans-0.9.2' from 'https://cache.nixos.org'...
copying path '/nix/store/a3jhzpjywi43lzfj25xz3ajiin458cmi-base-compat-0.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/s5xz879ywr8k0wkpwzcxsx9ca0ysqikl-SHA-1.6.4.4' from 'https://cache.nixos.org'...
copying path '/nix/store/2w1hb16923bbxhhr62l7fn9jcdmma3g8-auto-update-0.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/az52mc2g4bmysn0ciaz04qyybphr0zcf-base16-bytestring-1.0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/399ik69niq59q0m0wm95c0f7pkv6pgm4-base64-bytestring-1.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/glciziacmffv6yx1vn67478hkiaiggp7-basement-0.0.16' from 'https://cache.nixos.org'...
copying path '/nix/store/45l9apy0mmq3ad0j0bdcpsi6333y6dwg-byteorder-1.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/vcbbf9mkyhqpry6xzwl4qxpslq659bf0-blaze-builder-0.4.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/19q2xmd7jjxal5qvilq43drmg3jy1zfc-call-stack-0.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8awvm1qlbfwkdlfjw279fkdk9gmab01i-cereal-0.5.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/rr9y95n36rw5hks5ch3r31fgjb6iv1f0-cmdargs-0.10.22' from 'https://cache.nixos.org'...
copying path '/nix/store/3ymxyjd8zhzfscxgpxl4hwnam3y9n6xw-clock-0.8.4' from 'https://cache.nixos.org'...
copying path '/nix/store/8c06fy4z45l4xzjwarj6v3nj3zxmkj7n-colour-2.3.6' from 'https://cache.nixos.org'...
copying path '/nix/store/wj39swgqjh9x508jc51l1vrccsi0y4f3-contravariant-1.5.5' from 'https://cache.nixos.org'...
copying path '/nix/store/g30k0srqjkqkviv1my87qdvq2gny01ci-cryptohash-md5-0.11.101.0' from 'https://cache.nixos.org'...
copying path '/nix/store/cjjkvk033bkvygbjxm0n5bf30n6qwnyg-cryptohash-sha1-0.11.101.0' from 'https://cache.nixos.org'...
copying path '/nix/store/wvl3nfflnrjx7014rr8il9z77lvfv42n-cryptohash-sha256-0.11.102.1' from 'https://cache.nixos.org'...
copying path '/nix/store/mgj3d6bcnanj35gzcijmy2mvd3blia2r-data-default-class-0.1.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/fbvnvjsdql4l446i13700fivax03zkyq-dotgen-0.4.3' from 'https://cache.nixos.org'...
copying path '/nix/store/i41npv9z1x17lwhx1vzp588h1hsmqhk2-dlist-1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8rayd29zcgdsj6msjhmwkc9fdfdcx8l9-blaze-markup-0.8.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pr4hjj25ji0ggxlxa7c9vzi2147rlayf-ed25519-0.0.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/mqld56zgaqvbqkjsl7yg4ay0bq1wmsa0-entropy-0.4.1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/afnr9802y9dg726vfp4pa88jfasqklrc-generically-0.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/kw506vpsjip553b70ddjvb9phcshln7n-base-compat-batteries-0.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/n3iv2xf0csnd6rk7s43ls8c2jv4cabrw-half-0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wp3mbsp39l8rkzv8cgln5k4hc4cf6g84-haskell-lexer-1.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/mw110pg7lbqcvb2qzl8zc51m4rbmxrsb-data-default-instances-containers-0.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/rg8kz1ayp0qrzdvzlqarm5flga59ji1s-cookie-0.4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/w0jcb1gf7ama7zn6in53w52ylr3maqjr-extra-1.7.16' from 'https://cache.nixos.org'...
copying path '/nix/store/h2hh10vjr6n6qdrnllbi6csim3d5ph7n-haskell-src-exts-1.23.1' from 'https://cache.nixos.org'...
copying path '/nix/store/dwqs1v5s87hzfyzjgv51hlqxpm130jm8-hourglass-0.2.12' from 'https://cache.nixos.org'...
copying path '/nix/store/pnkkqvnqrhagpxiydf7jss68hbr38j5j-hostname-1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/rmfjnbl0gkg0iphhh6varyprlzp70nsx-indexed-profunctors-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4s7r3pdil0zi0ky0x2ra4vyh88nlc8bc-indexed-traversable-0.1.4' from 'https://cache.nixos.org'...
copying path '/nix/store/wlpmj7k432j83al1yg6658jv87yyhwvz-integer-logarithms-1.0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/qnc7m9g5yq3hssgip2yssl2kn3368gvj-data-default-instances-dlist-0.0.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/7xc95r364llnqiby68p31a9q3mlprry6-lens-family-core-2.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/z3ws5czsjaq21zgdds43qbzwb36awymb-lukko-0.1.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/1vj92b99ay9icd1sicjjpwkkb7dqckxk-lzma-0.0.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/2mqk0ajf65d6c5d1ffgkhx0y27ilfy9j-microlens-0.4.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/585x5jcbvwpz9716kkx5lb1kmflrkjks-blaze-html-0.9.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/1lb9yid5fvaxld9ikjh640gsfisb211j-ansi-terminal-types-0.11.5' from 'https://cache.nixos.org'...
copying path '/nix/store/ls2adssxfkzyy41jcymfl1ax4ksfb0j2-mime-types-0.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fy8wn3m2vw2an0s9if8ijnyrmh4gvqkw-monad-loops-0.4.3' from 'https://cache.nixos.org'...
copying path '/nix/store/56csgha485gglyaw6dbdcfqqfbjxwwb9-monad-time-0.4.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/64mfvgl0fwladzkvg7glbnp17497bz90-netrc-0.2.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/k6d2wcqdccs4fnwrm78iw26rh3mcjzh1-network-3.1.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/946f10lajfcg491f9h3ys2jqsawywjm5-generic-lens-core-2.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/54w6hza8ilfgwn7vw1ma3arx0r7wqkw9-network-info-0.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/30fpkmrjsjy64vb4hx9badklyrwhlxvj-old-locale-1.0.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/gzszpd74gyyfl07b4wdsmkz94n5kmk6i-os-string-2.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/k9klx4133kq96iffwikzcpxk7rikpalr-parallel-3.2.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/1r7px6iqlnf4ja581hc281q204ymg29d-parser-combinators-1.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/wlxpf5r7d3lhs5c94p6rnzjvnx93dgfv-optics-core-0.4.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4j93xfwl6b914fl5zk7916442yqcx3k5-ansi-terminal-1.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/v11wr56gvn38krg1zgyrhhl9d3b6ljdd-pretty-terminal-0.1.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/aw0rgcw7mhsqm0sa4avqcl87fxxlcamh-prettyprinter-1.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/q61lppnyldxsw237mj8r116hhm7z1dvd-primitive-0.8.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/6hdc4qw0zx601cs5h3kdi988w5wma1gc-old-time-1.1.0.4' from 'https://cache.nixos.org'...
copying path '/nix/store/vx8dvcxmwyb670r14nkxrffry9n8qvmh-data-default-instances-old-locale-0.0.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/ggnm65y51zxsxr43b5g6805m5hvd6rlb-reflection-2.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/3q80q433fph5ccc1h7p8c0kasni5d7c9-pretty-show-1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/5r38pw592bypisygp6r903slrsmhc26c-regex-base-0.94.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/7mnlrlq9p6g9jdr8raz6w59faxqjrs5q-data-default-0.7.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/yvn8m30gw0fmszw7c317ngiyx2fcfmkz-repline-0.4.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/m809yws0vwv246qz5qf6r0sd063ji62f-safe-0.3.21' from 'https://cache.nixos.org'...
copying path '/nix/store/34fmsr06f51gmb0ng946h13yib7v27dq-safe-exceptions-0.1.7.4' from 'https://cache.nixos.org'...
copying path '/nix/store/0xrz2ym7bk8h54r8rgcnxfy1rxr13lib-semigroups-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/0h1cnadmn89ckj81c7ryavafgmgzsqfk-some-1.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/dbxc0sjq06hmnwdwq0h6b38v10kkr8sr-sop-core-0.5.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/pcyi2fqrlghg99q603gd160yxmcq6c15-regex-posix-0.96.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/5aqps6ja65x89iaxpkwr1bvz1hfpq8ws-split-0.2.5' from 'https://cache.nixos.org'...
copying path '/nix/store/j7qhndp622pmdc3jjzh4vycncrhwg9kp-hashable-1.4.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/9rqzy1asc7i22q4lkp94680jr9r3kjj2-splitmix-0.1.0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/iqlqhlb379fxxxgzcpf4nif58i5lp1qv-stm-chans-3.0.0.9' from 'https://cache.nixos.org'...
copying path '/nix/store/fcb67fkhvdwwiqgx7vk8ma37ahvhrhbk-iproute-1.7.15' from 'https://cache.nixos.org'...
copying path '/nix/store/adyxyw6sbaar12wn3sa18ksgq94vq3nx-random-1.2.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/lz0dapmzrmfx4qzk5sv84qkrwq8wh75h-string-conv-0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/88y968lq3rms92i48s0gpkk1zpdr2fdl-syb-0.7.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/p6slvkk3i853b0b0ycsnm3jnzfvbpd74-systemd-2.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vpv6x3g8l2mbxp4si7x3a3h5ashd36sh-tagged-0.8.8' from 'https://cache.nixos.org'...
copying path '/nix/store/4nmqsr7hghapnwg2y3v6ac15pq4np53l-prettyprinter-ansi-terminal-1.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/2iicp6pkdy33khg04v8hlpxsn6vsbz96-data-fix-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/lwn008dspng8wh7nzxjjb2a2azz4wgyl-async-2.2.5' from 'https://cache.nixos.org'...
copying path '/nix/store/g1ggnwf7yp95z2f8s4cmzvb79s4d9i5l-case-insensitive-1.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/cw9vw5w4jm6z561nwxh52q7zspwgzjr5-memory-0.18.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lvhdb0zfynainrrhnwsasr3kvmsvin27-socks-0.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/618cmmfnhln1y9ajcjkn0x9fa1xi4wms-terminal-size-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/y5fkpj057arxgh1rzi7mrlvq3pbmw8sx-text-manipulate-0.3.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/mhrgj3xg215gvpk83nzmsknj9avqj1gb-cborg-0.2.10.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5jg0zabnvnjapnqsvb2gfmcjdrl3aifz-integer-conversion-0.1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8hxd8sicdzdnphpvm31f40ypyd7nhr6s-scientific-0.3.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fa04dbk4hbg1hsfj1sw31m7w0yv7vp11-boring-0.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/g4vjjp9i4cc2hcsabd4wcq5hsb5s8a85-distributive-0.6.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/g10k9srcngmszj63nl566wwdxj2s8fsz-th-abstraction-0.5.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/140kp5bpkn3a6nc55787b3jmyr99mxrh-text-short-0.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/ljszvg46by508cqp9dakspllghx7q9cc-th-compat-0.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/fjna2vlay459174f9w14badf3swbb5hb-http-types-0.12.4' from 'https://cache.nixos.org'...
copying path '/nix/store/l1y5j5sxpc4v0icrmbicm28n6bfxyjhk-concurrent-output-1.10.21' from 'https://cache.nixos.org'...
copying path '/nix/store/bkazzl86rbgfykgfnadga6r327rx5hdd-constraints-0.14.2' from 'https://cache.nixos.org'...
copying path '/nix/store/is30v56ik8fdwzk913h1zxnd53m3hys8-hinotify-0.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/sfic37zrgzhimavqs6bxdqhc6hvbsb6w-dec-0.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/8pc8hwsabxrhnvbdbj65arj1wlldww33-network-uri-2.6.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/j4pkz3cw0ld0ixh5gxi393q74w2f9z6n-these-1.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8r5im93cwq7ccxa3djdsx6labmnzja73-QuickCheck-2.14.3' from 'https://cache.nixos.org'...
copying path '/nix/store/3vp4s9l4sky2lk00fprf9vwf956rwjpb-temporary-1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/ly7433fvibpczqb8gya26xq3miinqn06-time-compat-1.9.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/2785j6mixfnsccxx87z03dhhsqzfx3i5-singleton-bool-0.1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/13x0sk8mf59f2xnjrhvm9827lg0jcknx-attoparsec-0.14.4' from 'https://cache.nixos.org'...
copying path '/nix/store/0p7kyi9ipdxn98sxajwa6mssq8vpw6dn-megaparsec-9.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pv02w9dkg1j126qdj5h8m3q5ywh0kv5p-ascii-progress-0.3.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8pdaczra7rphinjzw3vrqr2p753s4ff9-transformers-compat-0.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/rgm4b08xgjh2amkhzyp7za86mbksqfky-asn1-types-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/q5s1j64jpq1biazsd0fryf0iycm8f3s5-unbounded-delays-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zsxh5vnmr4w6zink3bgjbgsmaakgrirn-crypton-0.34' from 'https://cache.nixos.org'...
copying path '/nix/store/8bqnmc4rasn9xnvmhnpyqvkkxzrp8x0s-pem-0.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/y80li8qmq6h2wfa6l8kai3bc3sx05fw2-unix-compat-0.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/hwwdcc7yyfqxhc69gfqwrl2p7jc4mzrk-strict-0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/29cqsqnv1yvlfgb7zvi5dbq7qgdw8w17-dependent-sum-template-0.2.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vrzg5zjpqnsabghf1g1j27v8aaqwniwm-microlens-th-0.4.3.15' from 'https://cache.nixos.org'...
copying path '/nix/store/mkhr165k4xinicrvyi8m4fkfpcnmszr2-generics-sop-0.5.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/f4fqa78x9ssvag40m8jvna2nxazwl9qh-concurrent-extra-0.7.0.12' from 'https://cache.nixos.org'...
copying path '/nix/store/dhcrlsgwl5409lmnsayn6pxdip7gcp8c-optics-th-0.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/r22rfl2f9h71xxfqpq1bk9h6bil07jc3-th-expand-syns-0.4.11.0' from 'https://cache.nixos.org'...
copying path '/nix/store/bl85wwx2xncwi9s37id6f7a2i2i96ma0-asn1-encoding-0.9.6' from 'https://cache.nixos.org'...
copying path '/nix/store/3lhqvndkfk7f63ng6dqlvyzq7ii4bih4-th-lift-0.8.5' from 'https://cache.nixos.org'...
copying path '/nix/store/dz9iaz6738lp6j9kkwpzhzr2vpq0dv34-unix-time-0.4.16' from 'https://cache.nixos.org'...
copying path '/nix/store/qr3msxz91gh0hpxzs2wcsiih9d1kkx2f-atomic-write-0.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8wmq1p7242zbll7chdxkg9yd2q6pa2yb-comonad-5.0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/h4azkm69d1b4rsx56axskvjf1a8ywc2w-mmorph-1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/dcc5llkqagccsc0ks4z2nnvpw4x6msz3-optparse-applicative-0.18.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ivp16vysd3pkchwivnpbqak9vhd5d1r0-transformers-base-0.4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/2an1avycqzg8qgcjdv1yvblysvm0yim1-protolude-0.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/qcwphsk8m9v360fw7fhp0f9vl09vvsk2-unliftio-core-0.2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/m9jdfn4384mp4rijxbpmiblr8q3srz3x-th-reify-many-0.1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/912dfiskrypfr34h9s2biccy7048r0d3-unordered-containers-0.2.20' from 'https://cache.nixos.org'...
copying path '/nix/store/qgpdrbip868a3n6ly70i7samw7acimn7-monad-control-1.0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/jrmkpvraq4fl4sdq25alf774x5vij79q-utf8-string-1.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2a0p2s78ick6i6d82rpky6dqi6w9hk6s-th-orphans-0.13.15' from 'https://cache.nixos.org'...
copying path '/nix/store/p2fk0rfb2n3l3i5ffxdicks6vzb00p1v-asn1-parse-0.9.5' from 'https://cache.nixos.org'...
copying path '/nix/store/3vkaw97j1cv2aviilywagc5v5ilc18z1-immortal-0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/lhqgz221rbrjm6573cjyii7b2blm9piv-bifunctors-5.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/a12q6ayvjdfr92dak698gaqldcjs3w5f-fsnotify-0.4.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/d319iwrx3hwp7x9v661mvql7fvjw7hwc-resourcet-1.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/3ic5dbagdm67mfqcspipd48az052vx6f-retry-0.9.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/hygkna8sgwmxvwwjldfw6lw2sx2jfcy4-lifted-base-0.2.3.12' from 'https://cache.nixos.org'...
copying path '/nix/store/zdcdiwsxcjlnhc1xkhxf7z0zcd07pbb0-typed-process-0.2.12.0' from 'https://cache.nixos.org'...
copying path '/nix/store/aq4kscd83bgadzrplgakn3qp49irmjxi-unliftio-0.2.25.0' from 'https://cache.nixos.org'...
copying path '/nix/store/r7qfw11sw9q91iv9qy5jnz973lqy83n9-http-media-0.8.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/jkx6ayn6zvvrkg9b2yahg49wghwjnjkl-uuid-types-1.0.5.1' from 'https://cache.nixos.org'...
copying path '/nix/store/y8gf0wfm7zf9n43mfgz6d60kci1flyd7-attoparsec-iso8601-1.1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/qfml0c10l84jllvjbjn5fq1kg7g0k6qq-nix-narinfo-0.1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/y547y0i7s563b8cdjwi6hy3yl591s5i9-vector-stream-0.1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bpdck7aa8h87sy5xlsxas835l5giwz9m-void-0.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/6qkh57v46nvkgzh19c1jlr46ndxczh96-zlib-0.6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pm7zpvyhpbfshm1h8qkwsimwk6xd2r68-xml-types-0.3.8' from 'https://cache.nixos.org'...
copying path '/nix/store/9ppq2zyhxas4ikqqm73ym5517m9y8dla-zstd-0.1.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/15mvlfcrwlxg786h7rcigd6b1bsgwj8l-versions-6.0.7' from 'https://cache.nixos.org'...
copying path '/nix/store/jqqizv2rdhxff2vs4xhfma0j9dwmm7qz-pretty-simple-4.1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/xnvh0hnqir765vh7bd0zqrdwrmv6kvk8-uuid-1.3.15' from 'https://cache.nixos.org'...
copying path '/nix/store/ywnjss7vsn4hvdrg1my0r6k24xksy0sz-vector-0.13.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/b2pcjsm9p8dqqx2i6rlin1y403981lwk-charset-0.3.10' from 'https://cache.nixos.org'...
copying path '/nix/store/nckdki1mb5y95qf5vcdz7x81b89asa1k-hnix-store-nar-0.1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/9wavw5b2pk1zvgq2mi7004yfap23dh9b-http-api-data-0.5.1' from 'https://cache.nixos.org'...
copying path '/nix/store/2rpfllh6vnhyqjihw30z4940vpqnbg34-ini-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/djdq56rbpysawxhnv9nhq64bk81iccnb-vault-0.3.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/06xv3ka6qxcvmrzh0401jgpd67200rmh-streaming-commons-0.2.2.6' from 'https://cache.nixos.org'...
copying path '/nix/store/0pd5p09lqyfjng5c5007pbgz5pgf4i71-profunctors-5.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/kamjpwf42j9m10027ic1g3x68pyr4vh8-semigroupoids-6.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bxrzwgcg5iyf1bgd2s4qzb7z4l1nzaj1-http-client-0.7.17' from 'https://cache.nixos.org'...
copying path '/nix/store/hh9rjjkbs24qvwr53sbi51r16y86y2d1-websockets-0.12.7.3' from 'https://cache.nixos.org'...
copying path '/nix/store/czwr5hk5sl47ag1xfbj4mlb2yj2j447g-parsers-0.12.12' from 'https://cache.nixos.org'...
copying path '/nix/store/yyamzgcvnxdz0nvsl1d30dzlp0v1klxh-generic-lens-2.2.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/82qwxk1mr1bgblzkmck9w6ipa4hr0y0c-invariant-0.6.3' from 'https://cache.nixos.org'...
copying path '/nix/store/7mk9gww99x897d8n14hfxr9p27r37iq3-either-5.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/xxhhm31ssd2jw44kv97g5alji797918y-free-5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/98c3g5n7mq4ci8ppyh7h8dqp4qwaj5ll-crypton-x509-1.7.7' from 'https://cache.nixos.org'...
copying path '/nix/store/ai10apphka2bf8kf7dfcjw9cd2ih0302-crypton-x509-store-1.6.9' from 'https://cache.nixos.org'...
copying path '/nix/store/qfxi2cm1mdc5k0ji0irm32bq6mjzzl0f-crypton-x509-system-1.6.7' from 'https://cache.nixos.org'...
copying path '/nix/store/jm9j15nwyay0z3x4jyah34p46j9bkm22-crypton-x509-validation-1.6.13' from 'https://cache.nixos.org'...
copying path '/nix/store/n5lixhp5q84925js1vk003q1ng09aa7y-tls-1.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/4rnwadj6jx7wqi4cc49kqwdfa1af05g3-bitvec-1.1.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5yyfvl6w545w8ah3nqh9q9xyy6lhryly-indexed-traversable-instances-0.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/016asga4vagdjgf2l5qz2w13y7a7r69g-inline-c-0.9.1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/6hxirhi1wvmp958zdflirf9m4pr5ykan-nix-derivation-1.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/41nzyji4rxm6cgsyp5bilj2425g3pwqw-serialise-0.2.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/a20is81h2vw7mvllcfxsl3mvyg0drygr-th-lift-instances-0.1.20' from 'https://cache.nixos.org'...
copying path '/nix/store/lcbw1b0nj9w50pjawckk3sd61zqw4n5j-adjunctions-4.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/rbdvyhcda31nvw5i8ck6njib7kyjrm3c-witherable-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/7d779klkzlssrmjfz1c2kjpighk7a4gc-optics-extra-0.4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/xlrw6xr7mgf356bbn9rhcgx1ahpyijaw-semialign-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4dgvkf7b76zm2ywh1mg78nvmq5b7khig-uri-bytestring-0.3.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/r41s1biwj497s5qvmm9n47zq7vlxs9z2-aeson-2.1.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/nz0mab1m0y0jhn3mrkwryak0rwhm47r5-vector-algorithms-0.9.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/ypc262vciqsha43mrmwcp9n29yc5czkv-kan-extensions-5.2.6' from 'https://cache.nixos.org'...
copying path '/nix/store/jq4w7mdi8xmhb85r4s46s8ys5v5gh2wx-inline-c-cpp-0.5.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/vzi09hi6dl8zy40qdyzf8nfvmz4fg012-haskell-src-meta-0.8.14' from 'https://cache.nixos.org'...
copying path '/nix/store/6a2xckw2ava7vc6js8kv7xdh9w3rvm0c-lens-5.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/yqvzzaci4sjp20lsv4y0fc5rj1jxxw56-mono-traversable-1.0.20.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ilxbvqmx40vkf4kix29kg9b02nmmh05v-crypton-connection-0.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/0l4zggffrskdz3rqpx9psd4h0n2ng2pd-here-1.2.14' from 'https://cache.nixos.org'...
copying path '/nix/store/37wvpw6r7m58ihj9j1xha5lbis7b4az3-http-client-tls-0.3.6.4' from 'https://cache.nixos.org'...
copying path '/nix/store/kmp5qhr5w7iqmvap8czzd656934rjimz-wuss-2.0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/yrjli6hx2sb3xa29s6v3yd51sxs0ib0n-conduit-1.3.6' from 'https://cache.nixos.org'...
copying path '/nix/store/ykghpxdrp6c1jkbsb48db2y05hdg4g8h-attoparsec-aeson-2.1.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/nqcsirq3swwl44x8bkhqvl2yg2jxpjl2-constraints-extras-0.4.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/qp9flbr21wy3xq4z29vxni2mn2lgx2d0-deriving-aeson-0.2.10' from 'https://cache.nixos.org'...
copying path '/nix/store/xl4lkmilx6iq5k2h3sd9p96h8nc3sy4a-servant-0.20.2' from 'https://cache.nixos.org'...
copying path '/nix/store/dszh3q7vr8hnx9zjpsd203wdz532xcxl-katip-0.8.8.2' from 'https://cache.nixos.org'...
copying path '/nix/store/b2nh2bbscz6rrvdcrkyj313gb6lz9ppy-aeson-pretty-0.8.10' from 'https://cache.nixos.org'...
copying path '/nix/store/kydb7xh1lsyj96gfj1d0z7mzibzy73gn-dependent-sum-0.7.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/kdfilqyslprw59cra6ds8c5cxs8xmk5q-hnix-store-core-0.8.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fb3bqscan8y3cgy5gvhpv8dpsbxl2dwh-cborg-json-0.2.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fjrqc6qpqf3gww92jym5wwy9arhrvd4x-dhall-1.42.1' from 'https://cache.nixos.org'...
copying path '/nix/store/kxpwx0dnnyhfh2kblficl5p51lxf1dwj-servant-client-core-0.20.2' from 'https://cache.nixos.org'...
copying path '/nix/store/2cyfaziwm3cfirbhp1pbg82c7walfa6c-conduit-extra-1.3.6' from 'https://cache.nixos.org'...
copying path '/nix/store/mpmk7nij74dv71lnmk0gvqrbkhd7j0lw-conduit-zstd-0.0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/qrfcard7zbmvbrhykjlm0323w592xgif-lzma-conduit-1.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/f8sl3wvryllf3snvr1z9cxf3k37nrydm-cereal-conduit-0.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/aw03ybcifrg1zkla4bmip3x1fqb43vdm-servant-conduit-0.16.1' from 'https://cache.nixos.org'...
copying path '/nix/store/jqg3jvgb879lc5plscp4y9pii2n26qvg-hercules-ci-cnix-store-0.3.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vlai21svg23hzj2knq8warap3ggcn3dl-conduit-concurrent-map-0.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/8ll0mdjk3zgp4i17q7fksqrwwl7zi25n-concise-0.1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vvni4z0c5zwg0gc369bzw5smk451kfd2-insert-ordered-containers-0.2.5.3' from 'https://cache.nixos.org'...
copying path '/nix/store/ggpyp24pb8pqnj94mj3lzz7k6wmbi7v1-servant-client-0.20.2' from 'https://cache.nixos.org'...
copying path '/nix/store/n6igqx5cjvcybc236grbqpy9wh8zxxqx-jose-0.11' from 'https://cache.nixos.org'...
copying path '/nix/store/7rk0q3yca030hqhqsn58iv4hiwahcbkb-http-conduit-2.3.9.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vbqi7cm08rqvxih5nvnkcbgsdyddsp1w-xml-conduit-1.9.1.4' from 'https://cache.nixos.org'...
copying path '/nix/store/ldy1fndpk2s6nba927higlqi6y8l2ass-stm-conduit-4.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/d2q1rbbnwq685fks8dwhk0jrha9s6w5r-swagger2-2.8.9' from 'https://cache.nixos.org'...
copying path '/nix/store/ag52jmdrlxh11zg1kxxypc2k09ivlgx8-amazonka-core-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/f9xnbrxilhl9niwjcp8pvfwqnwdsydmb-servant-auth-0.4.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vc5rfnjzmaqf7p4jnmc1kzd42vrzhwfw-servant-auth-client-0.4.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/izrsxbrpwcw2y1km6p2p9cjkyp4h3w49-amazonka-sso-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/hgr18sgfbgs6fzqvnrws4gkkx84hqj2i-amazonka-sts-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/6s72icyi151zb0a943z4q3wm2vgvhdwv-amazonka-s3-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/kb631p6ag066xjm2s4jxjbpxpz8dij95-cachix-api-1.7.6' from 'https://cache.nixos.org'...
copying path '/nix/store/9554vmy85l070y29yzc3k17m43fwvf3g-amazonka-2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/7r8bwfi32676n461ps85dapw7dikd3x7-cachix-1.7.6' from 'https://cache.nixos.org'...
building '/nix/store/i5knbyawd2i5snxvyi51r48zsgqmnf8j-user-environment.drv'...
[#1429863] 2025/02/14 01:57:53 Cloning repositories
Cloning into 'sylvan'...
+ cd sylvan
+ git checkout -q 3295c5d8c071423adaa79d152cacacb16194c59a
+ cd sylvan
+ git submodule update --init --recursive
[#1429863] 2025/02/14 01:57:54 Running task cachix-setup
[#1429863] 2025/02/14 01:57:55 Running task build-websites
[#1429863] 2025/02/14 01:58:36 Running task deploy-websites
[#1429863] 2025/02/14 01:58:42 Running task bootstrap
[#1429863] 2025/02/14 02:00:23 Build failed.
[#1429863] 2025/02/14 02:00:23 The build environment will be kept alive for 10 minutes.
[#1429863] 2025/02/14 02:00:23 To log in with SSH and examine it, use the following command:
[#1429863] 2025/02/14 02:00:23 
[#1429863] 2025/02/14 02:00:23 	ssh -t builds@fra02.builds.sr.ht connect 1429863
[#1429863] 2025/02/14 02:00:23 
[#1429863] 2025/02/14 02:00:23 After logging in, the deadline is increased to your remaining build time.
[#1429863] 2025/02/14 02:10:23 Deadline elapsed. Terminating build environment.
[#1429863] 2025/02/14 02:10:23 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-websites
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
+ pipeline -w ' ts' ' -s' '' fdmove -c 2 1 cachix watch-exec sylvan -- nix -L build ./sylvan#websites
00:00:01 copying path '/nix/store/8xghs76gsk1s4p9izzwdhggsa5f29jks-source' from 'https://sylvan.cachix.org'...
00:00:02 copying path '/nix/store/yj1wxm9hh8610iyzqnz75kvs6xl8j3my-source' from 'https://sylvan.cachix.org'...
00:00:02 copying path '/nix/store/i1aw9jjgxcvyd642s12kw3iasmarwd42-source' from 'https://cache.nixos.org'...
00:00:08 copying path '/nix/store/s35zw2imni955152gibnkr74cp6vh5zi-source' from 'https://sylvan.cachix.org'...
00:00:09 copying path '/nix/store/24rxbd48973yil9kngv0q1ni815azbp5-source' from 'https://cache.nixos.org'...
00:00:15 copying path '/nix/store/a5spqvgdp4qxhz4arxxn2374jv0r7acv-source' from 'https://sylvan.cachix.org'...
00:00:16 copying path '/nix/store/r88zkfh22shcgj0c4zh9jj2q5r1z9wjn-source' from 'https://cache.nixos.org'...
00:00:21 copying path '/nix/store/pjbynv4ywjvl8qqv1j04d8cwk0lxcrhr-source' from 'https://sylvan.cachix.org'...
00:00:21 copying path '/nix/store/35dcag44a0ymww0vy0s4jjgxwpv9g62d-source' from 'https://cache.nixos.org'...
00:00:39 this derivation will be built:
00:00:39   /nix/store/izlndkrhqami1r2l4xk1l2kq9jr7iihq-sylvan-websites.drv
00:00:39 these 33 paths will be fetched (15.07 MiB download, 68.69 MiB unpacked):
00:00:39   /nix/store/mjgi65m3hgzqqvqcix848gskkw5zzwi9-acl-2.3.2
00:00:39   /nix/store/5nk2ga7i2f030am4qpcdsd8qlk6i3z83-attr-2.5.2
00:00:39   /nix/store/306znyj77fv49kwnkpxmb0j2znqpa8bj-bash-5.2p26
00:00:39   /nix/store/xwcf1rw3ackqp2vxms9myf9jq2ny6ynv-bzip2-1.0.8
00:00:39   /nix/store/mxcq77rlan82dzpv3cgj0fh6qvv8ncil-bzip2-1.0.8-bin
00:00:39   /nix/store/php4qidg2bxzmm79vpri025bqi0fa889-coreutils-9.5
00:00:39   /nix/store/i34mknsjgrfyy71k2h79gda0bvagzc2j-diffutils-3.10
00:00:39   /nix/store/1sffjkg6c6ff16fz5yr0pnz3j7vja42h-ed-1.20.2
00:00:39   /nix/store/xx7x1dwybpssfhq8yikvzz38bh3yrq97-file-5.45
00:00:39   /nix/store/jjcsr5gs4qanf7ln5c6wgcq4sn75a978-findutils-4.9.0
00:00:39   /nix/store/8vvkbgmnin1x2jkp7wcb2zg1p0vc4ks9-gawk-5.2.2
00:00:39   /nix/store/xvzz97yk73hw03v5dhhz3j47ggwf1yq1-gcc-13.2.0-lib
00:00:39   /nix/store/0rxb3ixzk4zaqivc9s795m0a3679wbw2-gcc-13.2.0-libgcc
00:00:39   /nix/store/k7zgvzp2r31zkg9xqgjim7mbknryv6bs-glibc-2.39-52
00:00:39   /nix/store/7ivacs3m2fm19hyxdmrs05xisj82v6y5-gmp-with-cxx-6.3.0
00:00:39   /nix/store/4i0j14zymvlngyyhq2254f4g9m9my98y-gnu-config-2024-01-01
00:00:39   /nix/store/28gpmx3z6ss3znd7fhmrzmvk3x5lnfbk-gnugrep-3.11
00:00:39   /nix/store/cdzpn0rdq810aknww3w9fy3wmw9ixr66-gnumake-4.4.1
00:00:39   /nix/store/5zjms21vpxlkbc0qyl5pmj2sidfmzmd7-gnused-4.9
00:00:39   /nix/store/rik7p68cq7yzlj5pmfpf4yv6jnrpvlgf-gnutar-1.35
00:00:39   /nix/store/j5chw7v1x3vlmf3wmdpdb5gwh9hl0b80-gzip-1.13
00:00:39   /nix/store/ic63ay0py10fyryaw7345k4ps32da33w-libidn2-2.3.7
00:00:39   /nix/store/yfp7dr8m7zi7kxk49wd714gwvhb105hf-libunistring-1.1
00:00:39   /nix/store/0lfxbmchigx9vs9qmrlbahcy6nxwfnj1-patch-2.7.6
00:00:39   /nix/store/nbad47q0m0m9c5xid7zh05hiknwircbp-patchelf-0.15.0
00:00:39   /nix/store/g3vi60zgyjsvij7xkk6dxky1hkwh0ynd-pcre2-10.43
00:00:39   /nix/store/rg6agzlb4gcl4w2126m16qm4mgr8jgi6-stdenv-linux
00:00:39   /nix/store/2p8b3kadkwckw49lgrx8kvak7xp879wq-sylvan-lang.org.tgz
00:00:39   /nix/store/bq6xbl9cq6hkcn65mz2fzc2k38xiv87h-update-autotools-gnu-config-scripts-hook
00:00:39   /nix/store/1q9vc0lq7qjlfjz47mfmlzdf86c543jy-xgcc-13.2.0-libgcc
00:00:39   /nix/store/lphbn1va4i43fj7f3m9xskf9y86khzf3-xz-5.4.6
00:00:39   /nix/store/6i4xxaa812vsbli9jkq4mksdddrk27lw-xz-5.4.6-bin
00:00:39   /nix/store/lv6nackqis28gg7l2ic43f6nk52hb39g-zlib-1.3.1
00:00:39 copying path '/nix/store/2p8b3kadkwckw49lgrx8kvak7xp879wq-sylvan-lang.org.tgz' from 'https://sylvan.cachix.org'...
00:00:39 copying path '/nix/store/4i0j14zymvlngyyhq2254f4g9m9my98y-gnu-config-2024-01-01' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/1q9vc0lq7qjlfjz47mfmlzdf86c543jy-xgcc-13.2.0-libgcc' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/yfp7dr8m7zi7kxk49wd714gwvhb105hf-libunistring-1.1' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/0rxb3ixzk4zaqivc9s795m0a3679wbw2-gcc-13.2.0-libgcc' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/bq6xbl9cq6hkcn65mz2fzc2k38xiv87h-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/ic63ay0py10fyryaw7345k4ps32da33w-libidn2-2.3.7' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/k7zgvzp2r31zkg9xqgjim7mbknryv6bs-glibc-2.39-52' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/5nk2ga7i2f030am4qpcdsd8qlk6i3z83-attr-2.5.2' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/306znyj77fv49kwnkpxmb0j2znqpa8bj-bash-5.2p26' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/xwcf1rw3ackqp2vxms9myf9jq2ny6ynv-bzip2-1.0.8' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/1sffjkg6c6ff16fz5yr0pnz3j7vja42h-ed-1.20.2' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/8vvkbgmnin1x2jkp7wcb2zg1p0vc4ks9-gawk-5.2.2' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/5zjms21vpxlkbc0qyl5pmj2sidfmzmd7-gnused-4.9' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/xvzz97yk73hw03v5dhhz3j47ggwf1yq1-gcc-13.2.0-lib' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/cdzpn0rdq810aknww3w9fy3wmw9ixr66-gnumake-4.4.1' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/g3vi60zgyjsvij7xkk6dxky1hkwh0ynd-pcre2-10.43' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/lphbn1va4i43fj7f3m9xskf9y86khzf3-xz-5.4.6' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/lv6nackqis28gg7l2ic43f6nk52hb39g-zlib-1.3.1' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/0lfxbmchigx9vs9qmrlbahcy6nxwfnj1-patch-2.7.6' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/mxcq77rlan82dzpv3cgj0fh6qvv8ncil-bzip2-1.0.8-bin' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/mjgi65m3hgzqqvqcix848gskkw5zzwi9-acl-2.3.2' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/xx7x1dwybpssfhq8yikvzz38bh3yrq97-file-5.45' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/rik7p68cq7yzlj5pmfpf4yv6jnrpvlgf-gnutar-1.35' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/j5chw7v1x3vlmf3wmdpdb5gwh9hl0b80-gzip-1.13' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/6i4xxaa812vsbli9jkq4mksdddrk27lw-xz-5.4.6-bin' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/28gpmx3z6ss3znd7fhmrzmvk3x5lnfbk-gnugrep-3.11' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/7ivacs3m2fm19hyxdmrs05xisj82v6y5-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/nbad47q0m0m9c5xid7zh05hiknwircbp-patchelf-0.15.0' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/php4qidg2bxzmm79vpri025bqi0fa889-coreutils-9.5' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/i34mknsjgrfyy71k2h79gda0bvagzc2j-diffutils-3.10' from 'https://cache.nixos.org'...
00:00:39 copying path '/nix/store/jjcsr5gs4qanf7ln5c6wgcq4sn75a978-findutils-4.9.0' from 'https://cache.nixos.org'...
00:00:40 copying path '/nix/store/rg6agzlb4gcl4w2126m16qm4mgr8jgi6-stdenv-linux' from 'https://cache.nixos.org'...
00:00:40 building '/nix/store/izlndkrhqami1r2l4xk1l2kq9jr7iihq-sylvan-websites.drv'...

real	0m40.642s
user	0m3.676s
sys	0m1.290s
deploy-websites
1
2
3
4
+ for file in result/*
++ basename result/sylvan-lang.org
+ hut pages publish -d sylvan-lang.org result/sylvan-lang.org
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
s[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]])
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e₁₂₆₉₆, acc₁₂₇₀₀]], "unDual"], "appEndo"]]) = (fn(acc₁₂₇₀₀ : type) -{...e₁₂₆₉₆}> acc₁₂₇₀₀ : type)
00:00:42 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/prelude/classes/foldable.syl:31.2-46
00:00:42 ocaml5.1.1-sylvan_stage0> +    has arguments applied that would require it to have a different type
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    --> ./std/prelude/classes/foldable.syl:31.2-46
00:00:42 ocaml5.1.1-sylvan_stage0> +     │
00:00:42 ocaml5.1.1-sylvan_stage0> +  31 │   foldMap(toDualEndo, xs).unDual.appEndo(init)
00:00:42 ocaml5.1.1-sylvan_stage0> +     │   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:00:42 ocaml5.1.1-sylvan_stage0> +  Raised by primitive operation at Stdlib__Sys.getenv_opt in file "sys.ml.in", line 60, characters 11-21
00:00:42 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    elem₂₆₂₅ : type
00:00:42 ocaml5.1.1-sylvan_stage0> +   ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
00:00:42 ocaml5.1.1-sylvan_stage0> +    ?₃₆₄₃₄₉ : (fn() -{LocalMutable[?₃₆₃₉₉₃]}> Array[elem₂₆₂₅] : type) = (fn[scope₁₁₉₇₁: MutableScope]() -{LocalMutable[scope₁₁₉₇₁]}> Array[elem₂₆₂₅] : type)
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (fn[scope₁₁₉₇₁: MutableScope]() -{LocalMutable[scope₁₁₉₇₁]}> Array[elem₂₆₂₅] : type) = (fn() -{LocalMutable[?₃₆₃₉₉₃]}> Array[elem₂₆₂₅] : type)
00:00:42 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (fn(fn[scope₁₁₉₇₁: MutableScope]() -{LocalMutable[scope₁₁₉₇₁]}> Array[elem₂₆₂₅] : type) -> Array[elem₂₆₂₅] : type) = (fn(fn() -{LocalMutable[?₃₆₃₉₉₃]}> Array[elem₂₆₂₅] : type) -> Array[elem₂₆₂₅] : type)
00:00:42 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/data/array.syl:34.8-39.10 has arguments
00:00:42 ocaml5.1.1-sylvan_stage0> +    applied that would require it to have a different type
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:34.8-39.10
00:00:42 ocaml5.1.1-sylvan_stage0> +     │
00:00:42 ocaml5.1.1-sylvan_stage0> +  34 │   withLocalMutable(fn[scope]() => {
00:00:42 ocaml5.1.1-sylvan_stage0> +     │ ╭─^
00:00:42 ocaml5.1.1-sylvan_stage0> +  35 │ │   def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +  36 │ │   copyArrayToMutableArray(out, 0, lhs, 0, lhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +  37 │ │   copyArrayToMutableArray(out, lhsLength, rhs, 0, rhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +  38 │ │   freezeMutableArray(out)
00:00:42 ocaml5.1.1-sylvan_stage0> +  39 │ │ })
00:00:42 ocaml5.1.1-sylvan_stage0> +     │ ╰──^
00:00:42 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Tyck_common.try_unify_ty_in_ht in file "lib/tyck_common.ml", line 1864, characters 6-147
00:00:42 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_common.try_unify_ty_in_ht in file "lib/tyck_common.ml", line 1756, characters 8-166
00:00:42 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_common.Type.try_unify in file "lib/tyck_common.ml", line 4540, characters 6-78
00:00:42 ocaml5.1.1-sylvan_stage0> +  error[E0019]: could not solve for type:
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    elem₂₆₂₅ : type
00:00:42 ocaml5.1.1-sylvan_stage0> +    scope₂₇₁₁ : type
00:00:42 ocaml5.1.1-sylvan_stage0> +   ────────────────────────
00:00:42 ocaml5.1.1-sylvan_stage0> +    ?₃₆₃₉₉₃ : MutableScope
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:35.21-36
00:00:42 ocaml5.1.1-sylvan_stage0> +     │
00:00:42 ocaml5.1.1-sylvan_stage0> +  35 │           def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +     │                      ^~~~~~~~~~~~~~~
00:00:42 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Tyck_common.try_unify_ty_in_ht in file "lib/tyck_common.ml", line 1864, characters 6-147
00:00:42 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_common.try_unify_ty_in_ht in file "lib/tyck_common.ml", line 1756, characters 8-166
00:00:42 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_common.Type.try_unify in file "lib/tyck_common.ml", line 4540, characters 6-78
00:00:42 ocaml5.1.1-sylvan_stage0> +  error[E0019]: could not solve for type:
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    elem₂₆₂₅ : type
00:00:42 ocaml5.1.1-sylvan_stage0> +   ─────────────────
00:00:42 ocaml5.1.1-sylvan_stage0> +    ?₃₆₄₂₈₄ : type
00:00:42 ocaml5.1.1-sylvan_stage0> +
00:00:42 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:34.25-39.9
00:00:42 ocaml5.1.1-sylvan_stage0> +     │
00:00:42 ocaml5.1.1-sylvan_stage0> +  34 │   withLocalMutable(fn[scope]() => {
00:00:42 ocaml5.1.1-sylvan_stage0> +     │ ╭──────────────────^
00:00:42 ocaml5.1.1-sylvan_stage0> +  35 │ │   def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +  36 │ │   copyArrayToMutableArray(out, 0, lhs, 0, lhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +  37 │ │   copyArrayToMutableArray(out, lhsLength, rhs, 0, rhsLength);
00:00:42 ocaml5.1.1-sylvan_stage0> +  38 │ │   freezeMutableArray(out)
00:00:42 ocaml5.1.1-sylvan_stage0> +  39 │ │ })
00:00:42 ocaml5.1.1-sylvan_stage0> +     │ ╰─^
00:00:42 ocaml5.1.1-sylvan_stage0> +  Raised at Sylvan_stage0__Tyck_common.try_unify_ty_in_ht in file "lib/tyck_common.ml", line 1864, characters 6-147
00:00:42 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_common.try_unify_ty_in_ht in file "lib/tyck_common.ml", line 1756, characters 8-166
00:00:42 ocaml5.1.1-sylvan_stage0> +  Called from Sylvan_stage0__Tyck_common.Type.try_unify in file "lib/tyck_common.ml", line 4540, characters 6-78
00:00:42 ocaml5.1.1-sylvan_stage0> +  Encountered 76 errors and 1 warning.
00:00:42 ocaml5.1.1-sylvan_stage0> +  [1]
00:01:41 ocaml5.1.1-sylvan_stage0> File "tests/all_errors.t/run.t", line 1, characters 0-0:
00:01:41 ocaml5.1.1-sylvan_stage0> --- tests/all_errors.t/run.t  2025-02-14 02:00:21.019385837 +0000
00:01:41 ocaml5.1.1-sylvan_stage0> +++ tests/all_errors.t/run.t.corrected        2025-02-14 02:00:21.405381371 +0000
00:01:41 ocaml5.1.1-sylvan_stage0> @@ -18,387 +18,424474 @@
00:01:41 ocaml5.1.1-sylvan_stage0>  Lexer and parser errors.
00:01:41 ocaml5.1.1-sylvan_stage0>    $ compile err_0001
00:01:41 ocaml5.1.1-sylvan_stage0> -  error[E0001]: unexpected character '`'
00:01:41 ocaml5.1.1-sylvan_stage0> -   --> ./err_0001.syl:1.0
00:01:41 ocaml5.1.1-sylvan_stage0> -    |
00:01:41 ocaml5.1.1-sylvan_stage0> -  1 | `
00:01:41 ocaml5.1.1-sylvan_stage0> -    | ^
00:01:41 ocaml5.1.1-sylvan_stage0> -  Encountered 1 error.
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    e{_} : Effects
00:01:41 ocaml5.1.1-sylvan_stage0> +    a{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    acc{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    where$0{_} : ::std::prelude::classes::foldable::Foldable[a{_}]
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (fn(acc{_} : type) -{...e{_}}> acc{_} : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (fn(acc{_} : type) -{...e{_}}> acc{_} : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +    has arguments applied that would require it to have a different type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  31 |   foldMap(toDualEndo, xs).unDual.appEndo(init)
00:01:41 ocaml5.1.1-sylvan_stage0> +     |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    e{_} : Effects
00:01:41 ocaml5.1.1-sylvan_stage0> +    a{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    acc{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    where$0{_} : ::std::prelude::classes::foldable::Foldable[a{_}]
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::algebra::endomorphism::Endo[e{_}, acc{_}] : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::algebra::endomorphism::Endo[e{_}, acc{_}] : type) = ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (fn(acc{_} : type) -{...e{_}}> acc{_} : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +    has arguments applied that would require it to have a different type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  31 |   foldMap(toDualEndo, xs).unDual.appEndo(init)
00:01:41 ocaml5.1.1-sylvan_stage0> +     |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    e{_} : Effects
00:01:41 ocaml5.1.1-sylvan_stage0> +    a{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    acc{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    where$0{_} : ::std::prelude::classes::foldable::Foldable[a{_}]
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (fn(acc{_} : type) -{...e{_}}> acc{_} : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +    has arguments applied that would require it to have a different type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  31 |   foldMap(toDualEndo, xs).unDual.appEndo(init)
00:01:41 ocaml5.1.1-sylvan_stage0> +     |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    e{_} : Effects
00:01:41 ocaml5.1.1-sylvan_stage0> +    a{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    acc{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    where$0{_} : ::std::prelude::classes::foldable::Foldable[a{_}]
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (fn(acc{_} : type) -{...e{_}}> acc{_} : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +    has arguments applied that would require it to have a different type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  31 |   foldMap(toDualEndo, xs).unDual.appEndo(init)
00:01:41 ocaml5.1.1-sylvan_stage0> +     |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    e{_} : Effects
00:01:41 ocaml5.1.1-sylvan_stage0> +    a{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    acc{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    where$0{_} : ::std::prelude::classes::foldable::Foldable[a{_}]
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten0{_} : (::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : RuntimeRepr) = (RuntimeReprBoxed : RuntimeRepr)
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +    flatten1{_} : ((::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]) : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"] : Type[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> ...TRUNCATED BY DUNE...
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (::std::intrinsics::FieldType[RuntimeReprBoxed, (::std::algebra::endomorphism::Endo[e{_}, acc{_}] |> EqCongApp[EqRefl[Type], EqSym[EqTrans[AxiomNewtypeFieldRepr[./std/algebra/dual_monoid.syl:8.12-16, [::std::algebra::endomorphism::Endo[e{_}, acc{_}]]], EqRefl[RuntimeReprBoxed]]]]), "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]])
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (::std::intrinsics::FieldType[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"] : Type[::std::intrinsics::FieldRepr[::std::intrinsics::FieldRepr[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], ::std::intrinsics::FieldType[RuntimeReprBoxed, ::std::algebra::dual_monoid::Dual[::std::algebra::endomorphism::Endo[e{_}, acc{_}]], "unDual"], "appEndo"]]) = (fn(acc{_} : type) -{...e{_}}> acc{_} : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +    has arguments applied that would require it to have a different type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/prelude/classes/foldable.syl:31.2-46
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  31 |   foldMap(toDualEndo, xs).unDual.appEndo(init)
00:01:41 ocaml5.1.1-sylvan_stage0> +     |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0018]: could not solve for:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    elem{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : (fn() -{LocalMutable[?{_}]}> Array[elem{_}] : type) = (fn[scope{_}: MutableScope]() -{LocalMutable[scope{_}]}> Array[elem{_}] : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +  this constraint exists because:
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (fn[scope{_}: MutableScope]() -{LocalMutable[scope{_}]}> Array[elem{_}] : type) = (fn() -{LocalMutable[?{_}]}> Array[elem{_}] : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - it is used to solve for (fn(fn[scope{_}: MutableScope]() -{LocalMutable[scope{_}]}> Array[elem{_}] : type) -> Array[elem{_}] : type) = (fn(fn() -{LocalMutable[?{_}]}> Array[elem{_}] : type) -> Array[elem{_}] : type)
00:01:41 ocaml5.1.1-sylvan_stage0> +  - the type of the expression at ./std/data/array.syl:34.8-39.10 has arguments
00:01:41 ocaml5.1.1-sylvan_stage0> +    applied that would require it to have a different type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:34.8-39.10
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  34 |   withLocalMutable(fn[scope]() => {
00:01:41 ocaml5.1.1-sylvan_stage0> +     | /-^
00:01:41 ocaml5.1.1-sylvan_stage0> +  35 | |   def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +  36 | |   copyArrayToMutableArray(out, 0, lhs, 0, lhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +  37 | |   copyArrayToMutableArray(out, lhsLength, rhs, 0, rhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +  38 | |   freezeMutableArray(out)
00:01:41 ocaml5.1.1-sylvan_stage0> +  39 | | })
00:01:41 ocaml5.1.1-sylvan_stage0> +     | \--^
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0019]: could not solve for type:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    elem{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +    scope{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : MutableScope
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:35.21-36
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  35 |           def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +     |                      ^~~~~~~~~~~~~~~
00:01:41 ocaml5.1.1-sylvan_stage0> +  error[E0019]: could not solve for type:
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    elem{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +   ----------------------------------------
00:01:41 ocaml5.1.1-sylvan_stage0> +    ?{_} : type
00:01:41 ocaml5.1.1-sylvan_stage0> +
00:01:41 ocaml5.1.1-sylvan_stage0> +    --> ./std/data/array.syl:34.25-39.9
00:01:41 ocaml5.1.1-sylvan_stage0> +     |
00:01:41 ocaml5.1.1-sylvan_stage0> +  34 |   withLocalMutable(fn[scope]() => {
00:01:41 ocaml5.1.1-sylvan_stage0> +     | /------------------^
00:01:41 ocaml5.1.1-sylvan_stage0> +  35 | |   def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +  36 | |   copyArrayToMutableArray(out, 0, lhs, 0, lhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +  37 | |   copyArrayToMutableArray(out, lhsLength, rhs, 0, rhsLength);
00:01:41 ocaml5.1.1-sylvan_stage0> +  38 | |   freezeMutableArray(out)
00:01:41 ocaml5.1.1-sylvan_stage0> +  39 | | })
00:01:41 ocaml5.1.1-sylvan_stage0> +     | \-^
00:01:41 ocaml5.1.1-sylvan_stage0> +  Encountered 76 errors.
00:01:41 ocaml5.1.1-sylvan_stage0>  vim: set ft=cram :
00:01:41 error: builder for '/nix/store/8gzq5bj1q1j233kdn7hhpjv7ma334nrv-ocaml5.1.1-sylvan_stage0-0.0.1-pre.drv' failed with exit code 1;
00:01:41        last 25 log lines:
00:01:41        > +
00:01:41        > +    --> ./std/data/array.syl:35.21-36
00:01:41        > +     |
00:01:41        > +  35 |           def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:01:41        > +     |                      ^~~~~~~~~~~~~~~
00:01:41        > +  error[E0019]: could not solve for type:
00:01:41        > +
00:01:41        > +    elem{_} : type
00:01:41        > +   ----------------------------------------
00:01:41        > +    ?{_} : type
00:01:41        > +
00:01:41        > +    --> ./std/data/array.syl:34.25-39.9
00:01:41        > +     |
00:01:41        > +  34 |   withLocalMutable(fn[scope]() => {
00:01:41        > +     | /------------------^
00:01:41        > +  35 | |   def out := newMutableArray(readArray(lhs, 0), lhsLength + rhsLength);
00:01:41        > +  36 | |   copyArrayToMutableArray(out, 0, lhs, 0, lhsLength);
00:01:41        > +  37 | |   copyArrayToMutableArray(out, lhsLength, rhs, 0, rhsLength);
00:01:41        > +  38 | |   freezeMutableArray(out)
00:01:41        > +  39 | | })
00:01:41        > +     | \-^
00:01:41        > +  Encountered 76 errors.
00:01:41        >
00:01:41        >  vim: set ft=cram :
00:01:41        >
00:01:41        For full logs, run 'nix-store -l /nix/store/8gzq5bj1q1j233kdn7hhpjv7ma334nrv-ocaml5.1.1-sylvan_stage0-0.0.1-pre.drv'.

real	1m41.398s
user	0m1.182s
sys	0m0.640s
Build complete: failed a month ago (took 3 minutes)