logone 0.2.9

A command-line tool that parses Nix's --log-format json-internal output as standalone and crate library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
@nix {"action":"start","id":3920596471644160,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/source-stdenv.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644160}
@nix {"action":"start","id":3920596471644161,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/default-builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644161}
@nix {"action":"start","id":3920596471644162,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/linux/bootstrap-tools/glibc/unpack-bootstrap-tools.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644162}
@nix {"action":"start","id":3920596471644163,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644163}
@nix {"action":"start","id":3920596471644164,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/no-broken-symlinks.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644164}
@nix {"action":"start","id":3920596471644165,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/audit-tmpdir.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644165}
@nix {"action":"start","id":3920596471644166,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/compress-man-pages.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644166}
@nix {"action":"start","id":3920596471644167,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/make-symlinks-relative.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644167}
@nix {"action":"start","id":3920596471644168,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-docs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644168}
@nix {"action":"start","id":3920596471644169,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-lib64.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644169}
@nix {"action":"start","id":3920596471644170,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-sbin.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644170}
@nix {"action":"start","id":3920596471644171,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-systemd-user-units.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644171}
@nix {"action":"start","id":3920596471644172,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/multiple-outputs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644172}
@nix {"action":"start","id":3920596471644173,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/patch-shebangs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644173}
@nix {"action":"start","id":3920596471644174,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/prune-libtool-files.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644174}
@nix {"action":"start","id":3920596471644175,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/reproducible-builds.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644175}
@nix {"action":"start","id":3920596471644176,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/set-source-date-epoch-to-latest.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644176}
@nix {"action":"start","id":3920596471644177,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/strip.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644177}
@nix {"action":"start","id":3920596471644178,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/setup.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644178}
@nix {"action":"start","id":3920596471644179,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/update-autotools-gnu-config-scripts.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644179}
@nix {"action":"start","id":3920596471644180,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/ld-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644180}
@nix {"action":"start","id":3920596471644181,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/gnu-binutils-strip-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644181}
@nix {"action":"start","id":3920596471644182,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644182}
@nix {"action":"start","id":3920596471644183,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644183}
@nix {"action":"start","id":3920596471644184,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/wrapper-common/utils.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644184}
@nix {"action":"start","id":3920596471644185,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/wrapper-common/darwin-sdk-setup.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644185}
@nix {"action":"start","id":3920596471644186,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/role.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644186}
@nix {"action":"start","id":3920596471644187,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644187}
@nix {"action":"start","id":3920596471644188,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644188}
@nix {"action":"start","id":3920596471644189,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644189}
@nix {"action":"start","id":3920596471644190,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644190}
@nix {"action":"start","id":3920596471644191,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/cc-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644191}
@nix {"action":"start","id":3920596471644192,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/CVE-2024-56406.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644192}
@nix {"action":"start","id":3920596471644193,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/no-sys-dirs-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644193}
@nix {"action":"start","id":3920596471644194,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/fix-build-with-only-C-locale-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644194}
@nix {"action":"start","id":3920596471644195,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644195}
@nix {"action":"start","id":3920596471644196,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/separate-debug-info.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644196}
@nix {"action":"start","id":3920596471644197,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/shells/bash/pgrp-pipe-5.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644197}
@nix {"action":"start","id":3920596471644198,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/shells/bash/parallel.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644198}
@nix {"action":"start","id":3920596471644199,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/shells/bash/fix-pop-var-context-error.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644199}
@nix {"action":"start","id":3920596471644200,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/gettext/absolute-paths.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644200}
@nix {"action":"start","id":3920596471644201,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/gettext/0001-msginit-Do-not-use-POT-Creation-Date.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644201}
@nix {"action":"start","id":3920596471644202,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/gettext/gettext-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644202}
@nix {"action":"start","id":3920596471644203,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ex/expand-response-params/expand-response-params.c' to the store","type":0}
@nix {"action":"stop","id":3920596471644203}
@nix {"action":"start","id":3920596471644204,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/deterministic.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644204}
@nix {"action":"start","id":3920596471644205,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-the-NM-nm-over-here-B-option-w.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644205}
@nix {"action":"start","id":3920596471644206,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-nm-BSD-flag-detection.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644206}
@nix {"action":"start","id":3920596471644207,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/always-search-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644207}
@nix {"action":"start","id":3920596471644208,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/plugins-no-BINDIR.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644208}
@nix {"action":"start","id":3920596471644209,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/0001-libtool.m4-update-macos-version-detection-block.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644209}
@nix {"action":"start","id":3920596471644210,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/avr-size.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644210}
@nix {"action":"start","id":3920596471644211,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/windres-locate-gcc.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644211}
@nix {"action":"start","id":3920596471644212,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/patchelf/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644212}
@nix {"action":"start","id":3920596471644213,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/autoreconf.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644213}
@nix {"action":"start","id":3920596471644214,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/automake/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644214}
@nix {"action":"start","id":3920596471644215,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/perl-modules/generic/builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644215}
@nix {"action":"start","id":3920596471644216,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/gcc-12-no-sys-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644216}
@nix {"action":"start","id":3920596471644217,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/13/no-sys-dirs-riscv.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644217}
@nix {"action":"start","id":3920596471644218,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/13/mangle-NIX_STORE-in-__FILE__.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644218}
@nix {"action":"start","id":3920596471644219,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/ppc-musl.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644219}
@nix {"action":"start","id":3920596471644220,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/cfi_startproc-reorder-label-14-1.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644220}
@nix {"action":"start","id":3920596471644221,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/14/aarch64-fix-ice-subreg.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644221}
@nix {"action":"start","id":3920596471644222,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/nuke-references/nuke-refs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644222}
@nix {"action":"start","id":3920596471644223,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/os-specific/linux/kernel-headers/no-relocs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644223}
@nix {"action":"start","id":3920596471644224,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/compression/bzip2/patches/bzip2-1.0.6.2-autoconfiscated.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644224}
@nix {"action":"start","id":3920596471644225,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/autoconf-archive/0001-ax_check_gl.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644225}
@nix {"action":"start","id":3920596471644226,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/autoconf-archive/0002-ax_check_glx.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644226}
@nix {"action":"start","id":3920596471644227,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/autoconf-archive/0003-ax_switch_flags.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644227}
@nix {"action":"start","id":3920596471644228,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/pkg-config-wrapper/pkg-config-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644228}
@nix {"action":"start","id":3920596471644229,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/pk/pkg-config-unwrapped/requires-private.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644229}
@nix {"action":"start","id":3920596471644230,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/pkg-config-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644230}
@nix {"action":"start","id":3920596471644231,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/pkg-config-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644231}
@nix {"action":"start","id":3920596471644232,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/3.12/no-ldconfig.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644232}
@nix {"action":"start","id":3920596471644233,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/virtualenv-permissions.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644233}
@nix {"action":"start","id":3920596471644234,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/platform-triplet-detection.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644234}
@nix {"action":"start","id":3920596471644235,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644235}
@nix {"action":"start","id":3920596471644236,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/2.40-master.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644236}
@nix {"action":"start","id":3920596471644237,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/nix-locale-archive.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644237}
@nix {"action":"start","id":3920596471644238,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-cache.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644238}
@nix {"action":"start","id":3920596471644239,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-preload.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644239}
@nix {"action":"start","id":3920596471644240,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/fix_path_attribute_in_getconf.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644240}
@nix {"action":"start","id":3920596471644241,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/fix-x64-abi.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644241}
@nix {"action":"start","id":3920596471644242,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/nix-nss-open-files.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644242}
@nix {"action":"start","id":3920596471644243,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/0001-Revert-Remove-all-usage-of-BASH-or-BASH-in-installed.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644243}
@nix {"action":"start","id":3920596471644244,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/reenable_DT_HASH.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644244}
@nix {"action":"start","id":3920596471644245,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/make-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644245}
@nix {"action":"start","id":3920596471644246,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/die.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644246}
@nix {"action":"start","id":3920596471644247,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/attr/musl.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644247}
@nix {"action":"start","id":3920596471644248,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/misc/findutils/no-install-statedir.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644248}
@nix {"action":"start","id":3920596471644249,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/build-managers/gnumake/patches/0001-No-impure-bin-sh.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644249}
@nix {"action":"start","id":3920596471644250,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/build-managers/gnumake/patches/0002-Remove-impure-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644250}
@nix {"action":"start","id":3920596471644251,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/build-managers/gnumake/patches/0003-Do-not-search-for-a-C-compiler-and-set-MAKE_CXX.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644251}
@nix {"action":"start","id":3920596471644252,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/archivers/gnutar/link-libiconv.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644252}
@nix {"action":"start","id":3920596471644253,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/locales-builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644253}
@nix {"action":"start","id":3920596471644254,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/lz/lzip/lzip-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644254}
@nix {"action":"start","id":3920596471644255,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2018-6951.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644255}
@nix {"action":"start","id":3920596471644256,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/Allow_input_files_to_be_missing_for_ed-style_patches.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644256}
@nix {"action":"start","id":3920596471644257,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/Abort_when_cleaning_up_fails.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644257}
@nix {"action":"start","id":3920596471644258,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2018-1000156.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644258}
@nix {"action":"start","id":3920596471644259,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2018-6952.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644259}
@nix {"action":"start","id":3920596471644260,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2019-13636.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644260}
@nix {"action":"start","id":3920596471644261,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2019-13638-and-CVE-2018-20969.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644261}
@nix {"action":"start","id":3920596471644262,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchurl/builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644262}
@nix {"action":"start","id":3920596471644263,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchurl/write-mirror-list.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644263}
@nix {"action":"start","id":3920596471644264,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ma/makeBinaryWrapper/make-binary-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644264}
@nix {"action":"start","id":3920596471644265,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/openssl/3.0/nix-ssl-cert-file.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644265}
@nix {"action":"start","id":3920596471644266,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/openssl/3.0/openssl-disable-kernel-detection.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644266}
@nix {"action":"start","id":3920596471644267,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/openssl/3.4/use-etc-ssl-certs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644267}
@nix {"action":"start","id":3920596471644268,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ke/keyutils/conf-symlink.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644268}
@nix {"action":"start","id":3920596471644269,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ke/keyutils/0001-Remove-unused-function-after_eq.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644269}
@nix {"action":"start","id":3920596471644270,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ke/keyutils/pkg-config-static.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644270}
@nix {"action":"start","id":3920596471644271,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cu/curlMinimal/0001-http2-fix-stream-window-size-after-unpausing.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644271}
@nix {"action":"start","id":3920609356546048,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546049,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546050,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546049,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546050,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546048,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546048,"type":106}
@nix {"action":"start","id":3920609356546051,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546051}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546049,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546050,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546048,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546048,"type":106}
@nix {"action":"stop","id":3920609356546050}
@nix {"action":"stop","id":3920609356546049}
@nix {"action":"stop","id":3920609356546048}
@nix {"action":"start","id":3920596471644272,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/source-stdenv.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644272}
@nix {"action":"start","id":3920596471644273,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/default-builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644273}
@nix {"action":"start","id":3920596471644274,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/linux/bootstrap-tools/glibc/unpack-bootstrap-tools.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644274}
@nix {"action":"start","id":3920596471644275,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644275}
@nix {"action":"start","id":3920596471644276,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/no-broken-symlinks.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644276}
@nix {"action":"start","id":3920596471644277,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/audit-tmpdir.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644277}
@nix {"action":"start","id":3920596471644278,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/compress-man-pages.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644278}
@nix {"action":"start","id":3920596471644279,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/make-symlinks-relative.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644279}
@nix {"action":"start","id":3920596471644280,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-docs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644280}
@nix {"action":"start","id":3920596471644281,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-lib64.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644281}
@nix {"action":"start","id":3920596471644282,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-sbin.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644282}
@nix {"action":"start","id":3920596471644283,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-systemd-user-units.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644283}
@nix {"action":"start","id":3920596471644284,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/multiple-outputs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644284}
@nix {"action":"start","id":3920596471644285,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/patch-shebangs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644285}
@nix {"action":"start","id":3920596471644286,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/prune-libtool-files.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644286}
@nix {"action":"start","id":3920596471644287,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/reproducible-builds.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644287}
@nix {"action":"start","id":3920596471644288,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/set-source-date-epoch-to-latest.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644288}
@nix {"action":"start","id":3920596471644289,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/strip.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644289}
@nix {"action":"start","id":3920596471644290,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/setup.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644290}
@nix {"action":"start","id":3920596471644291,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/update-autotools-gnu-config-scripts.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644291}
@nix {"action":"start","id":3920596471644292,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/ld-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644292}
@nix {"action":"start","id":3920596471644293,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/gnu-binutils-strip-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644293}
@nix {"action":"start","id":3920596471644294,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644294}
@nix {"action":"start","id":3920596471644295,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644295}
@nix {"action":"start","id":3920596471644296,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/wrapper-common/utils.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644296}
@nix {"action":"start","id":3920596471644297,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/wrapper-common/darwin-sdk-setup.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644297}
@nix {"action":"start","id":3920596471644298,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/role.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644298}
@nix {"action":"start","id":3920596471644299,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644299}
@nix {"action":"start","id":3920596471644300,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644300}
@nix {"action":"start","id":3920596471644301,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644301}
@nix {"action":"start","id":3920596471644302,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644302}
@nix {"action":"start","id":3920596471644303,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/cc-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644303}
@nix {"action":"start","id":3920596471644304,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/CVE-2024-56406.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644304}
@nix {"action":"start","id":3920596471644305,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/CVE-2025-40909.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644305}
@nix {"action":"start","id":3920596471644306,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/no-sys-dirs-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644306}
@nix {"action":"start","id":3920596471644307,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/fix-build-with-only-C-locale-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644307}
@nix {"action":"start","id":3920596471644308,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644308}
@nix {"action":"start","id":3920596471644309,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/separate-debug-info.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644309}
@nix {"action":"start","id":3920596471644310,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/shells/bash/pgrp-pipe-5.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644310}
@nix {"action":"start","id":3920596471644311,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/absolute-paths.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644311}
@nix {"action":"start","id":3920596471644312,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/0001-msginit-Do-not-use-POT-Creation-Date.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644312}
@nix {"action":"start","id":3920596471644313,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/memory-safety.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644313}
@nix {"action":"start","id":3920596471644314,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/gettext-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644314}
@nix {"action":"start","id":3920596471644315,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ex/expand-response-params/expand-response-params.c' to the store","type":0}
@nix {"action":"stop","id":3920596471644315}
@nix {"action":"start","id":3920596471644316,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/deterministic.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644316}
@nix {"action":"start","id":3920596471644317,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-the-NM-nm-over-here-B-option-w.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644317}
@nix {"action":"start","id":3920596471644318,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-nm-BSD-flag-detection.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644318}
@nix {"action":"start","id":3920596471644319,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/always-search-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644319}
@nix {"action":"start","id":3920596471644320,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/plugins-no-BINDIR.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644320}
@nix {"action":"start","id":3920596471644321,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/0001-libtool.m4-update-macos-version-detection-block.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644321}
@nix {"action":"start","id":3920596471644322,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/avr-size.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644322}
@nix {"action":"start","id":3920596471644323,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/windres-locate-gcc.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644323}
@nix {"action":"start","id":3920596471644324,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/patchelf/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644324}
@nix {"action":"start","id":3920596471644325,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/sa/sanitiseHeaderPathsHook/sanitise-header-paths-hook.bash' to the store","type":0}
@nix {"action":"stop","id":3920596471644325}
@nix {"action":"start","id":3920596471644326,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/remove-references-to/remove-references-to.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644326}
@nix {"action":"start","id":3920596471644327,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/gcc-12-no-sys-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644327}
@nix {"action":"start","id":3920596471644328,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/13/no-sys-dirs-riscv.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644328}
@nix {"action":"start","id":3920596471644329,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/13/mangle-NIX_STORE-in-__FILE__.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644329}
@nix {"action":"start","id":3920596471644330,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/ppc-musl.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644330}
@nix {"action":"start","id":3920596471644331,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/cfi_startproc-reorder-label-14-1.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644331}
@nix {"action":"start","id":3920596471644332,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/nuke-references/nuke-refs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644332}
@nix {"action":"start","id":3920596471644333,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/os-specific/linux/kernel-headers/no-relocs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644333}
@nix {"action":"start","id":3920596471644334,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/au/autoconf-archive/0001-ax_check_gl.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644334}
@nix {"action":"start","id":3920596471644335,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/au/autoconf-archive/0002-ax_check_glx.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644335}
@nix {"action":"start","id":3920596471644336,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/au/autoconf-archive/0003-ax_switch_flags.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644336}
@nix {"action":"start","id":3920596471644337,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/autoreconf.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644337}
@nix {"action":"start","id":3920596471644338,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/automake/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644338}
@nix {"action":"start","id":3920596471644339,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/file/32-bit-time_t.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644339}
@nix {"action":"start","id":3920596471644340,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/pkg-config-wrapper/pkg-config-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644340}
@nix {"action":"start","id":3920596471644341,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/pk/pkg-config-unwrapped/requires-private.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644341}
@nix {"action":"start","id":3920596471644342,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/pkg-config-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644342}
@nix {"action":"start","id":3920596471644343,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/pkg-config-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644343}
@nix {"action":"start","id":3920596471644344,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/python/cpython/3.13/no-ldconfig.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644344}
@nix {"action":"start","id":3920596471644345,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/python/cpython/3.13/virtualenv-permissions.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644345}
@nix {"action":"start","id":3920596471644346,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/python/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644346}
@nix {"action":"start","id":3920596471644347,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/2.40-master.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644347}
@nix {"action":"start","id":3920596471644348,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/nix-locale-archive.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644348}
@nix {"action":"start","id":3920596471644349,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-cache.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644349}
@nix {"action":"start","id":3920596471644350,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-preload.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644350}
@nix {"action":"start","id":3920596471644351,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/fix_path_attribute_in_getconf.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644351}
@nix {"action":"start","id":3920596471644352,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/fix-x64-abi.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644352}
@nix {"action":"start","id":3920596471644353,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/nix-nss-open-files.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644353}
@nix {"action":"start","id":3920596471644354,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/0001-Revert-Remove-all-usage-of-BASH-or-BASH-in-installed.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644354}
@nix {"action":"start","id":3920596471644355,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/reenable_DT_HASH.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644355}
@nix {"action":"start","id":3920596471644356,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/make-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644356}
@nix {"action":"start","id":3920596471644357,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/die.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644357}
@nix {"action":"start","id":3920596471644358,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/compression/bzip2/patches/bzip2-1.0.6.2-autoconfiscated.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644358}
@nix {"action":"start","id":3920596471644359,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/attr/musl.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644359}
@nix {"action":"start","id":3920596471644360,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/coreutils/CVE-2025-5278.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644360}
@nix {"action":"start","id":3920596471644361,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/coreutils/gnulib-float-h-tests-port-to-C23-PowerPC-GCC.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644361}
@nix {"action":"start","id":3920596471644362,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/text/diffutils/gnulib-float-h-tests-port-to-C23-PowerPC-GCC.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644362}
@nix {"action":"start","id":3920596471644363,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/findutils/no-install-statedir.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644363}
@nix {"action":"start","id":3920596471644364,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/build-managers/gnumake/patches/0001-No-impure-bin-sh.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644364}
@nix {"action":"start","id":3920596471644365,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/build-managers/gnumake/patches/0002-Remove-impure-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644365}
@nix {"action":"start","id":3920596471644366,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/build-managers/gnumake/patches/0003-Do-not-search-for-a-C-compiler-and-set-MAKE_CXX.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644366}
@nix {"action":"start","id":3920596471644367,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/archivers/gnutar/link-libiconv.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644367}
@nix {"action":"start","id":3920596471644368,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/locales-builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644368}
@nix {"action":"start","id":3920596471644369,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/text/gnugrep/gnulib-float-h-tests-port-to-C23-PowerPC-GCC.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644369}
@nix {"action":"start","id":3920596471644370,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/lz/lzip/lzip-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644370}
@nix {"action":"start","id":3920596471644371,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/fetchurl/builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644371}
@nix {"action":"start","id":3920596471644372,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/fetchurl/write-mirror-list.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644372}
@nix {"action":"start","id":3920596471644373,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ma/makeBinaryWrapper/make-binary-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644373}
@nix {"action":"start","id":3920596471644374,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/openssl/3.0/nix-ssl-cert-file.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644374}
@nix {"action":"start","id":3920596471644375,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/openssl/3.0/openssl-disable-kernel-detection.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644375}
@nix {"action":"start","id":3920596471644376,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/openssl/3.5/use-etc-ssl-certs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644376}
@nix {"action":"start","id":3920596471644377,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ke/keyutils/conf-symlink.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644377}
@nix {"action":"start","id":3920596471644378,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ke/keyutils/0001-Remove-unused-function-after_eq.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644378}
@nix {"action":"start","id":3920596471644379,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ke/keyutils/pkg-config-static.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644379}
@nix {"action":"msg","level":0,"msg":"trace: No Cargo.dependencies.nix found"}
@nix {"action":"start","id":3920596471644380,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gr/groff/site.tmac' to the store","type":0}
@nix {"action":"stop","id":3920596471644380}
@nix {"action":"start","id":3920596471644381,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/patchutils/drop-comments.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644381}
@nix {"action":"start","id":3920596471644382,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/remove-references-to/remove-references-to.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644382}
@nix {"action":"start","id":3920609356546052,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546053,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546054,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546053,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546054,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546052,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546052,"type":106}
@nix {"action":"start","id":3920609356546055,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546055}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546053,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546054,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546052,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546052,"type":106}
@nix {"action":"stop","id":3920609356546054}
@nix {"action":"stop","id":3920609356546053}
@nix {"action":"stop","id":3920609356546052}
@nix {"action":"start","id":3920596471644383,"level":5,"parent":0,"text":"copying '/nix/store/qcgr82a27rmifcmw7hhxywsd43gnb75j-source/Cargo.lock' to the store","type":0}
@nix {"action":"stop","id":3920596471644383}
@nix {"action":"start","id":3920596471644384,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/li/libedit/01-cygwin.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644384}
@nix {"action":"start","id":3920596471644385,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/in/installShellFiles/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644385}
@nix {"action":"start","id":3920596471644386,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/tz/tzdata/tzdata-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644386}
@nix {"action":"start","id":3920596471644387,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644387}
@nix {"action":"start","id":3920596471644388,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/check-pc-files-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644388}
@nix {"action":"start","id":3920596471644389,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/000-nixpkgs-cmake-prefix-path.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644389}
@nix {"action":"start","id":3920596471644390,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/001-search-path.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644390}
@nix {"action":"start","id":3920596471644391,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/008-FindCURL-Add-more-target-properties-from-pkg-config.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644391}
@nix {"action":"start","id":3920596471644392,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/009-cmCurl-Avoid-using-undocumented-type-for-CURLOPT_NETRC-values.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644392}
@nix {"action":"start","id":3920596471644393,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/compression/zstd/playtests-darwin.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644393}
@nix {"action":"start","id":3920596471644394,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-8139.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644394}
@nix {"action":"start","id":3920596471644395,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-8140.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644395}
@nix {"action":"start","id":3920596471644396,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-8141.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644396}
@nix {"action":"start","id":3920596471644397,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-9636.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644397}
@nix {"action":"start","id":3920596471644398,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2015-7696.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644398}
@nix {"action":"start","id":3920596471644399,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2015-7697.diff' to the store","type":0}
@nix {"action":"stop","id":3920596471644399}
@nix {"action":"start","id":3920596471644400,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-9913.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644400}
@nix {"action":"start","id":3920596471644401,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2016-9844.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644401}
@nix {"action":"start","id":3920596471644402,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2018-18384.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644402}
@nix {"action":"start","id":3920596471644403,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/dont-hardcode-cc.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644403}
@nix {"action":"start","id":3920596471644404,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/implicit-declarations-fix.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644404}
@nix {"action":"start","id":3920596471644405,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644405}
@nix {"action":"start","id":3920596471644406,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/sqlite/Libs.private.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644406}
@nix {"action":"start","id":3920596471644407,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/sqlite/3.48.0-fk-conflict-handling.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644407}
@nix {"action":"start","id":3920596471644408,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ut/util-linux/rtcwake-search-PATH-for-shutdown.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644408}
@nix {"action":"start","id":3920596471644409,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ut/util-linux/fix-darwin-build.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644409}
@nix {"action":"start","id":3920596471644410,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/tcl/tcl-package-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644410}
@nix {"action":"start","id":3920596471644411,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/fix-build-time-run-tcl.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644411}
@nix {"action":"start","id":3920596471644412,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/0004-enable-cross-compilation.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644412}
@nix {"action":"start","id":3920596471644413,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/fix-darwin-bsd-clang16.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644413}
@nix {"action":"start","id":3920596471644414,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/freebsd-unversioned.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644414}
@nix {"action":"start","id":3920596471644415,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gd/gdbm/upstream-darwin-clock-nanosleep-fix.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644415}
@nix {"action":"start","id":3920596471644416,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gd/gdbm/upstream-lockwait-test-fixes.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644416}
@nix {"action":"start","id":3920596471644417,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gd/gdbm/upstream-musl-ssize_t-fix.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644417}
@nix {"action":"start","id":3920596471644418,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/readline/link-against-ncurses.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644418}
@nix {"action":"start","id":3920596471644419,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/readline/no-arch_only-8.2.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644419}
@nix {"action":"start","id":3920596471644420,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/mimetypes.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644420}
@nix {"action":"start","id":3920596471644421,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/sitecustomize.py' to the store","type":0}
@nix {"action":"stop","id":3920596471644421}
@nix {"action":"start","id":3920596471644422,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/wrap.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644422}
@nix {"action":"start","id":3920596471644423,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-remove-tests-dir-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644423}
@nix {"action":"start","id":3920596471644424,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644424}
@nix {"action":"start","id":3920596471644425,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/catch_conflicts/catch_conflicts.py' to the store","type":0}
@nix {"action":"stop","id":3920596471644425}
@nix {"action":"start","id":3920596471644426,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-remove-bin-bytecode-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644426}
@nix {"action":"start","id":3920596471644427,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/setuptools-build-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644427}
@nix {"action":"start","id":3920596471644428,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/pypa-build-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644428}
@nix {"action":"start","id":3920596471644429,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-runtime-deps-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644429}
@nix {"action":"start","id":3920596471644430,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-runtime-deps-check-hook.py' to the store","type":0}
@nix {"action":"stop","id":3920596471644430}
@nix {"action":"start","id":3920596471644431,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/pypa-install-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644431}
@nix {"action":"start","id":3920596471644432,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-imports-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644432}
@nix {"action":"start","id":3920596471644433,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-namespaces-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644433}
@nix {"action":"start","id":3920596471644434,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-output-dist-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644434}
@nix {"action":"start","id":3920596471644435,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/wheel/0001-tests-Rename-a-a-o-_-.py-_-.py.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644435}
@nix {"action":"start","id":3920596471644436,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/setuptools/tag-date.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644436}
@nix {"action":"start","id":3920596471644437,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/run_setup.py' to the store","type":0}
@nix {"action":"stop","id":3920596471644437}
@nix {"action":"start","id":3920596471644438,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/setuptools-scm/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644438}
@nix {"action":"start","id":3920596471644439,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/unittest-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644439}
@nix {"action":"start","id":3920596471644440,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/iniconfig/version.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644440}
@nix {"action":"start","id":3920596471644441,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/pytest-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644441}
@nix {"action":"start","id":3920596471644442,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/find-xml-catalogs.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644442}
@nix {"action":"start","id":3920596471644443,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/catalog-legacy-uris.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644443}
@nix {"action":"start","id":3920596471644444,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ni/ninja/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644444}
@nix {"action":"start","id":3920596471644445,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/000-nixpkgs-cmake-prefix-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644445}
@nix {"action":"start","id":3920596471644446,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/001-fix-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644446}
@nix {"action":"start","id":3920596471644447,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/002-clear-old-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644447}
@nix {"action":"start","id":3920596471644448,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/003-more-env-vars.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644448}
@nix {"action":"start","id":3920596471644449,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/004-gir-fallback-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644449}
@nix {"action":"start","id":3920596471644450,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/005-boost-Do-not-add-system-paths-on-nix.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644450}
@nix {"action":"start","id":3920596471644451,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/007-freebsd-pkgconfig-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644451}
@nix {"action":"start","id":3920596471644452,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644452}
@nix {"action":"start","id":3920596471644453,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/os-specific/linux/fuse/fuse3-install.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644453}
@nix {"action":"start","id":3920596471644454,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/os-specific/linux/fuse/fuse3-Do-not-set-FUSERMOUNT_DIR.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644454}
@nix {"action":"start","id":3920596471644455,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/li/libarchive/fix-pkg-config-iconv.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644455}
@nix {"action":"start","id":3920596471644456,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/rh/rhash/dont-fail-ln.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644456}
@nix {"action":"start","id":3920596471644457,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/rh/rhash/do-link-so.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644457}
@nix {"action":"start","id":3920596471644458,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/cython/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644458}
@nix {"action":"start","id":3920596471644459,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gt/gtk-doc/respect-xml-catalog-files-var.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644459}
@nix {"action":"start","id":3920596471644460,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/auto-patchelf.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644460}
@nix {"action":"start","id":3920596471644461,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/buildenv/builder.pl' to the store","type":0}
@nix {"action":"stop","id":3920596471644461}
@nix {"action":"start","id":3920596471644462,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/auto-patchelf/source' to the store","type":0}
@nix {"action":"stop","id":3920596471644462}
@nix {"action":"start","id":3920596471644463,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/rust/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644463}
@nix {"action":"start","id":3920596471644464,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/rustc-wrapper/rustc-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644464}
@nix {"action":"start","id":3920596471644465,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/certifi/env.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644465}
@nix {"action":"start","id":3920596471644466,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ca/cacert/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644466}
@nix {"action":"start","id":3920596471644467,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/attrs/remove-hatch-plugins.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644467}
@nix {"action":"start","id":3920596471644468,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gt/gtest/fix-cmake-config-includedir.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644468}
@nix {"action":"start","id":3920596471644469,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/de/deterministic-uname/deterministic-uname.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644469}
@nix {"action":"start","id":3920596471644470,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ma/man-db/systemwide-man-db-conf.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644470}
@nix {"action":"start","id":3920596471644471,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/w3/w3m/RAND_egd.libressl.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644471}
@nix {"action":"start","id":3920596471644472,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchgit/builder.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644472}
@nix {"action":"start","id":3920596471644473,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchgit/nix-prefetch-git' to the store","type":0}
@nix {"action":"stop","id":3920596471644473}
@nix {"action":"start","id":3920596471644474,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/docbook2texi.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644474}
@nix {"action":"start","id":3920596471644475,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/git-sh-i18n.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644475}
@nix {"action":"start","id":3920596471644476,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/git-send-email-honor-PATH.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644476}
@nix {"action":"start","id":3920596471644477,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/installCheck-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644477}
@nix {"action":"start","id":3920596471644478,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/op/opensp/fix-register-storage-class.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644478}
@nix {"action":"start","id":3920596471644479,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/op/opensp/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644479}
@nix {"action":"start","id":3920596471644480,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/perl-modules/xml-parser-0001-HACK-Assumes-Expat-paths-are-good.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644480}
@nix {"action":"start","id":3920596471644481,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/do/docbook2x/db2x_texixml-to-stdout.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644481}
@nix {"action":"start","id":3920596471644482,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/pytest-xdist/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644482}
@nix {"action":"start","id":3920596471644483,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/requests/ca-load-regression.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644483}
@nix {"action":"start","id":3920596471644484,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-build-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644484}
@nix {"action":"start","id":3920596471644485,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644485}
@nix {"action":"start","id":3920596471644486,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-install-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644486}
@nix {"action":"start","id":3920596471644487,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":3920596471644487}
@nix {"action":"start","id":3920596471644488,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/fetchcargo-default-config.toml' to the store","type":0}
@nix {"action":"stop","id":3920596471644488}
@nix {"action":"start","id":3920596471644489,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/li/libpfm/fix-windows.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644489}
@nix {"action":"start","id":3920596471644490,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644490}
@nix {"action":"start","id":3920596471644491,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644491}
@nix {"action":"start","id":3920596471644492,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644492}
@nix {"action":"start","id":3920596471644493,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644493}
@nix {"action":"start","id":3920596471644494,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644494}
@nix {"action":"start","id":3920596471644495,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/19/clang/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644495}
@nix {"action":"start","id":3920596471644496,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644496}
@nix {"action":"start","id":3920596471644497,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644497}
@nix {"action":"start","id":3920596471644498,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644498}
@nix {"action":"start","id":3920596471644499,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644499}
@nix {"action":"start","id":3920596471644500,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644500}
@nix {"action":"start","id":3920596471644501,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644501}
@nix {"action":"start","id":3920596471644502,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644502}
@nix {"action":"start","id":3920596471644503,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644503}
@nix {"action":"start","id":3920596471644504,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644504}
@nix {"action":"start","id":3920596471644505,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644505}
@nix {"action":"start","id":3920596471644506,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644506}
@nix {"action":"start","id":3920596471644507,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644507}
@nix {"action":"start","id":3920596471644508,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644508}
@nix {"action":"start","id":3920596471644509,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644509}
@nix {"action":"start","id":3920596471644510,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644510}
@nix {"action":"start","id":3920596471644511,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644511}
@nix {"action":"start","id":3920596471644512,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644512}
@nix {"action":"start","id":3920596471644513,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644513}
@nix {"action":"start","id":3920596471644514,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644514}
@nix {"action":"start","id":3920596471644515,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":3920596471644515}
@nix {"action":"start","id":3920596471644516,"level":5,"parent":0,"text":"copying '/nix/store/qcgr82a27rmifcmw7hhxywsd43gnb75j-source' to the store","type":0}
@nix {"action":"stop","id":3920596471644516}
@nix {"action":"start","id":3920609356546056,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546057,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546058,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546057,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546058,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546056,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546056,"type":106}
@nix {"action":"start","id":3920609356546059,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546059}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546057,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546058,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546056,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546056,"type":106}
@nix {"action":"stop","id":3920609356546058}
@nix {"action":"stop","id":3920609356546057}
@nix {"action":"stop","id":3920609356546056}
@nix {"action":"start","id":3920609356546060,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546061,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546062,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546061,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546062,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546060,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546060,"type":106}
@nix {"action":"start","id":3920609356546063,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546063}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546061,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546062,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546060,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546060,"type":106}
@nix {"action":"stop","id":3920609356546062}
@nix {"action":"stop","id":3920609356546061}
@nix {"action":"stop","id":3920609356546060}
@nix {"action":"start","id":3920609356546064,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546065,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546066,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546065,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546066,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546064,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546064,"type":106}
@nix {"action":"start","id":3920609356546067,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546067}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546065,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546066,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546064,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546064,"type":106}
@nix {"action":"stop","id":3920609356546066}
@nix {"action":"stop","id":3920609356546065}
@nix {"action":"stop","id":3920609356546064}
@nix {"action":"start","id":3920609356546068,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546069,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546070,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546069,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546070,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546068,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546068,"type":106}
@nix {"action":"start","id":3920609356546071,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546071}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546069,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546070,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546068,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546068,"type":106}
@nix {"action":"stop","id":3920609356546070}
@nix {"action":"stop","id":3920609356546069}
@nix {"action":"stop","id":3920609356546068}
@nix {"action":"start","id":3920609356546072,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546073,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546074,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546073,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546074,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546072,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546072,"type":106}
@nix {"action":"start","id":3920609356546075,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546075}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546073,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546074,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546072,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546072,"type":106}
@nix {"action":"stop","id":3920609356546074}
@nix {"action":"stop","id":3920609356546073}
@nix {"action":"stop","id":3920609356546072}
@nix {"action":"start","id":3920609356546076,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546077,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546078,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546077,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546078,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546076,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546076,"type":106}
@nix {"action":"start","id":3920609356546079,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546079}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546077,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546078,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546076,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546076,"type":106}
@nix {"action":"stop","id":3920609356546078}
@nix {"action":"stop","id":3920609356546077}
@nix {"action":"stop","id":3920609356546076}
@nix {"action":"start","id":3920609356546080,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546081,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546082,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546081,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546082,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546080,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546080,"type":106}
@nix {"action":"start","id":3920609356546083,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546083}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546081,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546082,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546080,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546080,"type":106}
@nix {"action":"stop","id":3920609356546082}
@nix {"action":"stop","id":3920609356546081}
@nix {"action":"stop","id":3920609356546080}
@nix {"action":"start","id":3920609356546084,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546085,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546086,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546085,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546086,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546084,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546084,"type":106}
@nix {"action":"start","id":3920609356546087,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546087}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546085,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546086,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546084,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546084,"type":106}
@nix {"action":"stop","id":3920609356546086}
@nix {"action":"stop","id":3920609356546085}
@nix {"action":"stop","id":3920609356546084}
@nix {"action":"start","id":3920609356546088,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546089,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546090,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546089,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546090,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546088,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546088,"type":106}
@nix {"action":"start","id":3920609356546091,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546091}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546089,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546090,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546088,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546088,"type":106}
@nix {"action":"stop","id":3920609356546090}
@nix {"action":"stop","id":3920609356546089}
@nix {"action":"stop","id":3920609356546088}
@nix {"action":"start","id":3920609356546092,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546093,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546094,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546093,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546094,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546092,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546092,"type":106}
@nix {"action":"start","id":3920609356546095,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546095}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546093,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546094,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546092,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546092,"type":106}
@nix {"action":"stop","id":3920609356546094}
@nix {"action":"stop","id":3920609356546093}
@nix {"action":"stop","id":3920609356546092}
@nix {"action":"start","id":3920609356546096,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546097,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546098,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546097,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546098,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546096,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546096,"type":106}
@nix {"action":"start","id":3920609356546099,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546099}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546097,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546098,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546096,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546096,"type":106}
@nix {"action":"stop","id":3920609356546098}
@nix {"action":"stop","id":3920609356546097}
@nix {"action":"stop","id":3920609356546096}
@nix {"action":"start","id":3920609356546100,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546101,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546102,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546101,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546102,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546100,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546100,"type":106}
@nix {"action":"start","id":3920609356546103,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546103}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546101,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546102,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546100,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546100,"type":106}
@nix {"action":"stop","id":3920609356546102}
@nix {"action":"stop","id":3920609356546101}
@nix {"action":"stop","id":3920609356546100}
@nix {"action":"start","id":3920609356546104,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546105,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546106,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546105,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546106,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546104,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546104,"type":106}
@nix {"action":"start","id":3920609356546107,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546107}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546105,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546106,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546104,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546104,"type":106}
@nix {"action":"stop","id":3920609356546106}
@nix {"action":"stop","id":3920609356546105}
@nix {"action":"stop","id":3920609356546104}
@nix {"action":"start","id":3920609356546108,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546109,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546110,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546109,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546110,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546108,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546108,"type":106}
@nix {"action":"start","id":3920609356546111,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546111}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546109,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546110,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546108,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546108,"type":106}
@nix {"action":"stop","id":3920609356546110}
@nix {"action":"stop","id":3920609356546109}
@nix {"action":"stop","id":3920609356546108}
@nix {"action":"start","id":3920609356546112,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546113,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546114,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546113,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546114,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546112,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546112,"type":106}
@nix {"action":"start","id":3920609356546115,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546115}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546113,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546114,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546112,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546112,"type":106}
@nix {"action":"stop","id":3920609356546114}
@nix {"action":"stop","id":3920609356546113}
@nix {"action":"stop","id":3920609356546112}
@nix {"action":"start","id":3920609356546116,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546117,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546118,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546117,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546118,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546116,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546116,"type":106}
@nix {"action":"start","id":3920609356546119,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546119}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546117,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546118,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546116,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546116,"type":106}
@nix {"action":"stop","id":3920609356546118}
@nix {"action":"stop","id":3920609356546117}
@nix {"action":"stop","id":3920609356546116}
@nix {"action":"start","id":3920609356546120,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546121,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546122,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546121,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546122,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546120,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546120,"type":106}
@nix {"action":"start","id":3920609356546123,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546123}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546121,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546122,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546120,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546120,"type":106}
@nix {"action":"stop","id":3920609356546122}
@nix {"action":"stop","id":3920609356546121}
@nix {"action":"stop","id":3920609356546120}
@nix {"action":"start","id":3920609356546124,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546125,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546126,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546125,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546126,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546124,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546124,"type":106}
@nix {"action":"start","id":3920609356546127,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546127}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546125,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546126,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546124,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546124,"type":106}
@nix {"action":"stop","id":3920609356546126}
@nix {"action":"stop","id":3920609356546125}
@nix {"action":"stop","id":3920609356546124}
@nix {"action":"start","id":3920609356546128,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546129,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546130,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546129,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546130,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546128,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546128,"type":106}
@nix {"action":"start","id":3920609356546131,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546131}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546129,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546130,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546128,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546128,"type":106}
@nix {"action":"stop","id":3920609356546130}
@nix {"action":"stop","id":3920609356546129}
@nix {"action":"stop","id":3920609356546128}
@nix {"action":"start","id":3920609356546132,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546133,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546134,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546133,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546134,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546132,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546132,"type":106}
@nix {"action":"start","id":3920609356546135,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546135}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546133,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546134,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546132,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546132,"type":106}
@nix {"action":"stop","id":3920609356546134}
@nix {"action":"stop","id":3920609356546133}
@nix {"action":"stop","id":3920609356546132}
@nix {"action":"start","id":3920609356546136,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546137,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546138,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546137,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546138,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546136,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546136,"type":106}
@nix {"action":"start","id":3920609356546139,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546139}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546137,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546138,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546136,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546136,"type":106}
@nix {"action":"stop","id":3920609356546138}
@nix {"action":"stop","id":3920609356546137}
@nix {"action":"stop","id":3920609356546136}
@nix {"action":"start","id":3920609356546140,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546141,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546142,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546141,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546142,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546140,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546140,"type":106}
@nix {"action":"start","id":3920609356546143,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546143}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546141,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546142,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546140,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546140,"type":106}
@nix {"action":"stop","id":3920609356546142}
@nix {"action":"stop","id":3920609356546141}
@nix {"action":"stop","id":3920609356546140}
@nix {"action":"start","id":3920609356546144,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546145,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546146,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546145,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546146,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546144,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546144,"type":106}
@nix {"action":"start","id":3920609356546147,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546147}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546145,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546146,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546144,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546144,"type":106}
@nix {"action":"stop","id":3920609356546146}
@nix {"action":"stop","id":3920609356546145}
@nix {"action":"stop","id":3920609356546144}
@nix {"action":"start","id":3920609356546148,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546149,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546150,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546149,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546150,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546148,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546148,"type":106}
@nix {"action":"start","id":3920609356546151,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546151}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546149,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546150,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546148,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546148,"type":106}
@nix {"action":"stop","id":3920609356546150}
@nix {"action":"stop","id":3920609356546149}
@nix {"action":"stop","id":3920609356546148}
@nix {"action":"start","id":3920609356546152,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546153,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546154,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546153,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546154,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546152,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546152,"type":106}
@nix {"action":"start","id":3920609356546155,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546155}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546153,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546154,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546152,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546152,"type":106}
@nix {"action":"stop","id":3920609356546154}
@nix {"action":"stop","id":3920609356546153}
@nix {"action":"stop","id":3920609356546152}
@nix {"action":"start","id":3920609356546156,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546157,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546158,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546157,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546158,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546156,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546156,"type":106}
@nix {"action":"start","id":3920609356546159,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546159}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546157,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546158,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546156,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546156,"type":106}
@nix {"action":"stop","id":3920609356546158}
@nix {"action":"stop","id":3920609356546157}
@nix {"action":"stop","id":3920609356546156}
@nix {"action":"start","id":3920609356546160,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546161,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546162,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546161,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546162,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546160,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546160,"type":106}
@nix {"action":"start","id":3920609356546163,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546163}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546161,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546162,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546160,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546160,"type":106}
@nix {"action":"stop","id":3920609356546162}
@nix {"action":"stop","id":3920609356546161}
@nix {"action":"stop","id":3920609356546160}
@nix {"action":"start","id":3920609356546164,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546165,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546166,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546165,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546166,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546164,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546164,"type":106}
@nix {"action":"start","id":3920609356546167,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546167}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546165,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546166,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546164,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546164,"type":106}
@nix {"action":"stop","id":3920609356546166}
@nix {"action":"stop","id":3920609356546165}
@nix {"action":"stop","id":3920609356546164}
@nix {"action":"start","id":3920609356546168,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546169,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546170,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546169,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546170,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546168,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546168,"type":106}
@nix {"action":"start","id":3920609356546171,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546171}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546169,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546170,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546168,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546168,"type":106}
@nix {"action":"stop","id":3920609356546170}
@nix {"action":"stop","id":3920609356546169}
@nix {"action":"stop","id":3920609356546168}
@nix {"action":"start","id":3920596471644517,"level":5,"parent":0,"text":"copying '/home/nixos/ka4h2' to the store","type":0}
@nix {"action":"stop","id":3920596471644517}
@nix {"action":"start","id":3920609356546172,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546173,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546174,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546173,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546174,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546172,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546172,"type":106}
@nix {"action":"start","id":3920609356546175,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546175}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546173,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546174,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546172,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546172,"type":106}
@nix {"action":"stop","id":3920609356546174}
@nix {"action":"stop","id":3920609356546173}
@nix {"action":"stop","id":3920609356546172}
@nix {"action":"start","id":3920609356546176,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546177,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546178,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546177,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546178,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546176,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546176,"type":106}
@nix {"action":"start","id":3920609356546179,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546179}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546177,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546178,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546176,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546176,"type":106}
@nix {"action":"stop","id":3920609356546178}
@nix {"action":"stop","id":3920609356546177}
@nix {"action":"stop","id":3920609356546176}
@nix {"action":"start","id":3920609356546180,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546181,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546182,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546181,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546182,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546180,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546180,"type":106}
@nix {"action":"start","id":3920609356546183,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546183}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546181,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546182,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546180,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546180,"type":106}
@nix {"action":"stop","id":3920609356546182}
@nix {"action":"stop","id":3920609356546181}
@nix {"action":"stop","id":3920609356546180}
@nix {"action":"start","id":3920609356546184,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546185,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546186,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546185,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546186,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546184,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546184,"type":106}
@nix {"action":"start","id":3920609356546187,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546187}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546185,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546186,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546184,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546184,"type":106}
@nix {"action":"stop","id":3920609356546186}
@nix {"action":"stop","id":3920609356546185}
@nix {"action":"stop","id":3920609356546184}
@nix {"action":"start","id":3920609356546188,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546189,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546190,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546189,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546190,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546188,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546188,"type":106}
@nix {"action":"start","id":3920609356546191,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546191}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546189,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546190,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546188,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546188,"type":106}
@nix {"action":"stop","id":3920609356546190}
@nix {"action":"stop","id":3920609356546189}
@nix {"action":"stop","id":3920609356546188}
@nix {"action":"start","id":3920609356546192,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546193,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546194,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546193,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546194,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546192,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546192,"type":106}
@nix {"action":"start","id":3920609356546195,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546195}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546193,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546194,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546192,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546192,"type":106}
@nix {"action":"stop","id":3920609356546194}
@nix {"action":"stop","id":3920609356546193}
@nix {"action":"stop","id":3920609356546192}
@nix {"action":"start","id":3920609356546196,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546197,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546198,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546197,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546198,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546196,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546196,"type":106}
@nix {"action":"start","id":3920609356546199,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546199}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546197,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546198,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546196,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546196,"type":106}
@nix {"action":"stop","id":3920609356546198}
@nix {"action":"stop","id":3920609356546197}
@nix {"action":"stop","id":3920609356546196}
@nix {"action":"start","id":3920609356546200,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546201,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546202,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546201,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546202,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546200,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546200,"type":106}
@nix {"action":"start","id":3920609356546203,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546203}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546201,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546202,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546200,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546200,"type":106}
@nix {"action":"stop","id":3920609356546202}
@nix {"action":"stop","id":3920609356546201}
@nix {"action":"stop","id":3920609356546200}
@nix {"action":"start","id":3920609356546204,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546205,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546206,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546205,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546206,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546204,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546204,"type":106}
@nix {"action":"start","id":3920609356546207,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546207}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546205,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546206,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546204,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546204,"type":106}
@nix {"action":"stop","id":3920609356546206}
@nix {"action":"stop","id":3920609356546205}
@nix {"action":"stop","id":3920609356546204}
@nix {"action":"start","id":3920609356546208,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546209,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546210,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546209,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546210,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546208,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546208,"type":106}
@nix {"action":"start","id":3920609356546211,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546211}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546209,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546210,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546208,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546208,"type":106}
@nix {"action":"stop","id":3920609356546210}
@nix {"action":"stop","id":3920609356546209}
@nix {"action":"stop","id":3920609356546208}
@nix {"action":"start","id":3920609356546212,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546213,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546214,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546213,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546214,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546212,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546212,"type":106}
@nix {"action":"start","id":3920609356546215,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546215}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546213,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546214,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546212,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546212,"type":106}
@nix {"action":"stop","id":3920609356546214}
@nix {"action":"stop","id":3920609356546213}
@nix {"action":"stop","id":3920609356546212}
@nix {"action":"start","id":3920609356546216,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546217,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546218,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546217,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546218,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546216,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546216,"type":106}
@nix {"action":"start","id":3920609356546219,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546219}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546217,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546218,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546216,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546216,"type":106}
@nix {"action":"stop","id":3920609356546218}
@nix {"action":"stop","id":3920609356546217}
@nix {"action":"stop","id":3920609356546216}
@nix {"action":"start","id":3920609356546220,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546221,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546222,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546221,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546222,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546220,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546220,"type":106}
@nix {"action":"start","id":3920609356546223,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546223}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546221,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546222,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546220,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546220,"type":106}
@nix {"action":"stop","id":3920609356546222}
@nix {"action":"stop","id":3920609356546221}
@nix {"action":"stop","id":3920609356546220}
@nix {"action":"start","id":3920609356546224,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546225,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546226,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546225,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546226,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546224,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546224,"type":106}
@nix {"action":"start","id":3920609356546227,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546227}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546225,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546226,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546224,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546224,"type":106}
@nix {"action":"stop","id":3920609356546226}
@nix {"action":"stop","id":3920609356546225}
@nix {"action":"stop","id":3920609356546224}
@nix {"action":"start","id":3920609356546228,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546229,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546230,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546229,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546230,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546228,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546228,"type":106}
@nix {"action":"start","id":3920609356546231,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546231}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546229,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546230,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546228,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546228,"type":106}
@nix {"action":"stop","id":3920609356546230}
@nix {"action":"stop","id":3920609356546229}
@nix {"action":"stop","id":3920609356546228}
@nix {"action":"start","id":3920609356546232,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546233,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546234,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546233,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546234,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546232,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546232,"type":106}
@nix {"action":"start","id":3920609356546235,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546235}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546233,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546234,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546232,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546232,"type":106}
@nix {"action":"stop","id":3920609356546234}
@nix {"action":"stop","id":3920609356546233}
@nix {"action":"stop","id":3920609356546232}
@nix {"action":"start","id":3920609356546236,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546237,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546238,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546237,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546238,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546236,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546236,"type":106}
@nix {"action":"start","id":3920609356546239,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546239}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546237,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546238,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546236,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546236,"type":106}
@nix {"action":"stop","id":3920609356546238}
@nix {"action":"stop","id":3920609356546237}
@nix {"action":"stop","id":3920609356546236}
@nix {"action":"start","id":3920609356546240,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546241,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546242,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546241,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546242,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546240,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546240,"type":106}
@nix {"action":"start","id":3920609356546243,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546243}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546241,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546242,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546240,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546240,"type":106}
@nix {"action":"stop","id":3920609356546242}
@nix {"action":"stop","id":3920609356546241}
@nix {"action":"stop","id":3920609356546240}
@nix {"action":"start","id":3920609356546244,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546245,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546246,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546245,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546246,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546244,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546244,"type":106}
@nix {"action":"start","id":3920609356546247,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546247}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546245,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546246,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546244,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546244,"type":106}
@nix {"action":"stop","id":3920609356546246}
@nix {"action":"stop","id":3920609356546245}
@nix {"action":"stop","id":3920609356546244}
@nix {"action":"start","id":3920609356546248,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546249,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546250,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546249,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546250,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546248,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546248,"type":106}
@nix {"action":"start","id":3920609356546251,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546251}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546249,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546250,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546248,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546248,"type":106}
@nix {"action":"stop","id":3920609356546250}
@nix {"action":"stop","id":3920609356546249}
@nix {"action":"stop","id":3920609356546248}
@nix {"action":"start","id":3920609356546252,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546253,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546254,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546253,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546254,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546252,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546252,"type":106}
@nix {"action":"start","id":3920609356546255,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546255}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546253,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546254,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546252,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546252,"type":106}
@nix {"action":"stop","id":3920609356546254}
@nix {"action":"stop","id":3920609356546253}
@nix {"action":"stop","id":3920609356546252}
@nix {"action":"start","id":3920609356546256,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546257,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546258,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546257,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546258,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546256,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546256,"type":106}
@nix {"action":"start","id":3920609356546259,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546259}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546257,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546258,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546256,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546256,"type":106}
@nix {"action":"stop","id":3920609356546258}
@nix {"action":"stop","id":3920609356546257}
@nix {"action":"stop","id":3920609356546256}
@nix {"action":"start","id":3920609356546260,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546261,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546262,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546261,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546262,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546260,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546260,"type":106}
@nix {"action":"start","id":3920609356546263,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546263}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546261,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546262,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546260,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546260,"type":106}
@nix {"action":"stop","id":3920609356546262}
@nix {"action":"stop","id":3920609356546261}
@nix {"action":"stop","id":3920609356546260}
@nix {"action":"start","id":3920609356546264,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546265,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546266,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546265,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546266,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546264,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546264,"type":106}
@nix {"action":"start","id":3920609356546267,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546267}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546265,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546266,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546264,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546264,"type":106}
@nix {"action":"stop","id":3920609356546266}
@nix {"action":"stop","id":3920609356546265}
@nix {"action":"stop","id":3920609356546264}
@nix {"action":"start","id":3920609356546268,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546269,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546270,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546269,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546270,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546268,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546268,"type":106}
@nix {"action":"start","id":3920609356546271,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546271}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546269,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546270,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546268,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546268,"type":106}
@nix {"action":"stop","id":3920609356546270}
@nix {"action":"stop","id":3920609356546269}
@nix {"action":"stop","id":3920609356546268}
@nix {"action":"start","id":3920609356546272,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546273,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546274,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546273,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546274,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546272,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546272,"type":106}
@nix {"action":"start","id":3920609356546275,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546275}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546273,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546274,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546272,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546272,"type":106}
@nix {"action":"stop","id":3920609356546274}
@nix {"action":"stop","id":3920609356546273}
@nix {"action":"stop","id":3920609356546272}
@nix {"action":"start","id":3920609356546276,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546277,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546278,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546277,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546278,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546276,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546276,"type":106}
@nix {"action":"start","id":3920609356546279,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546279}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546277,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546278,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546276,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546276,"type":106}
@nix {"action":"stop","id":3920609356546278}
@nix {"action":"stop","id":3920609356546277}
@nix {"action":"stop","id":3920609356546276}
@nix {"action":"start","id":3920609356546280,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546281,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546282,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546281,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546282,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546280,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546280,"type":106}
@nix {"action":"start","id":3920609356546283,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546283}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546281,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546282,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546280,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546280,"type":106}
@nix {"action":"stop","id":3920609356546282}
@nix {"action":"stop","id":3920609356546281}
@nix {"action":"stop","id":3920609356546280}
@nix {"action":"start","id":3920609356546284,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546285,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546286,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546285,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546286,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546284,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546284,"type":106}
@nix {"action":"start","id":3920609356546287,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546287}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546285,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546286,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546284,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546284,"type":106}
@nix {"action":"stop","id":3920609356546286}
@nix {"action":"stop","id":3920609356546285}
@nix {"action":"stop","id":3920609356546284}
@nix {"action":"start","id":3920609356546288,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546289,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546290,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546289,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546290,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546288,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546288,"type":106}
@nix {"action":"start","id":3920609356546291,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546291}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546289,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546290,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546288,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546288,"type":106}
@nix {"action":"stop","id":3920609356546290}
@nix {"action":"stop","id":3920609356546289}
@nix {"action":"stop","id":3920609356546288}
@nix {"action":"start","id":3920609356546292,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546293,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546294,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546293,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546294,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546292,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546292,"type":106}
@nix {"action":"start","id":3920609356546295,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546295}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546293,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546294,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546292,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546292,"type":106}
@nix {"action":"stop","id":3920609356546294}
@nix {"action":"stop","id":3920609356546293}
@nix {"action":"stop","id":3920609356546292}
@nix {"action":"start","id":3920609356546296,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546297,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546298,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546297,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546298,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546296,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546296,"type":106}
@nix {"action":"start","id":3920609356546299,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546299}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546297,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546298,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546296,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546296,"type":106}
@nix {"action":"stop","id":3920609356546298}
@nix {"action":"stop","id":3920609356546297}
@nix {"action":"stop","id":3920609356546296}
@nix {"action":"start","id":3920609356546300,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546301,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546302,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546301,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546302,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546300,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546300,"type":106}
@nix {"action":"start","id":3920609356546303,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546303}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546301,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546302,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546300,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546300,"type":106}
@nix {"action":"stop","id":3920609356546302}
@nix {"action":"stop","id":3920609356546301}
@nix {"action":"stop","id":3920609356546300}
@nix {"action":"start","id":3920609356546304,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546305,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546306,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546305,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546306,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546304,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546304,"type":106}
@nix {"action":"start","id":3920609356546307,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546307}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546305,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546306,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546304,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546304,"type":106}
@nix {"action":"stop","id":3920609356546306}
@nix {"action":"stop","id":3920609356546305}
@nix {"action":"stop","id":3920609356546304}
@nix {"action":"start","id":3920609356546308,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546309,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546310,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546309,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546310,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546308,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546308,"type":106}
@nix {"action":"start","id":3920609356546311,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546311}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546309,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546310,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546308,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546308,"type":106}
@nix {"action":"stop","id":3920609356546310}
@nix {"action":"stop","id":3920609356546309}
@nix {"action":"stop","id":3920609356546308}
@nix {"action":"start","id":3920609356546312,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546313,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546314,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546313,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546314,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546312,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546312,"type":106}
@nix {"action":"start","id":3920609356546315,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546315}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546313,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546314,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546312,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546312,"type":106}
@nix {"action":"stop","id":3920609356546314}
@nix {"action":"stop","id":3920609356546313}
@nix {"action":"stop","id":3920609356546312}
@nix {"action":"start","id":3920609356546316,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546317,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546318,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546317,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546318,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546316,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546316,"type":106}
@nix {"action":"start","id":3920609356546319,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546319}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546317,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546318,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546316,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546316,"type":106}
@nix {"action":"stop","id":3920609356546318}
@nix {"action":"stop","id":3920609356546317}
@nix {"action":"stop","id":3920609356546316}
@nix {"action":"start","id":3920609356546320,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546321,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546322,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546321,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546322,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546320,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546320,"type":106}
@nix {"action":"start","id":3920609356546323,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546323}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546321,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546322,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546320,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546320,"type":106}
@nix {"action":"stop","id":3920609356546322}
@nix {"action":"stop","id":3920609356546321}
@nix {"action":"stop","id":3920609356546320}
@nix {"action":"start","id":3920609356546324,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546325,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546326,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546325,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546326,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546324,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546324,"type":106}
@nix {"action":"start","id":3920609356546327,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546327}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546325,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546326,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546324,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546324,"type":106}
@nix {"action":"stop","id":3920609356546326}
@nix {"action":"stop","id":3920609356546325}
@nix {"action":"stop","id":3920609356546324}
@nix {"action":"start","id":3920609356546328,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546329,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546330,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546329,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546330,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546328,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546328,"type":106}
@nix {"action":"start","id":3920609356546331,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546331}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546329,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546330,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546328,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546328,"type":106}
@nix {"action":"stop","id":3920609356546330}
@nix {"action":"stop","id":3920609356546329}
@nix {"action":"stop","id":3920609356546328}
@nix {"action":"start","id":3920609356546332,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546333,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546334,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546333,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546334,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546332,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546332,"type":106}
@nix {"action":"start","id":3920609356546335,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546335}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546333,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546334,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546332,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546332,"type":106}
@nix {"action":"stop","id":3920609356546334}
@nix {"action":"stop","id":3920609356546333}
@nix {"action":"stop","id":3920609356546332}
@nix {"action":"start","id":3920609356546336,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546337,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546338,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546337,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546338,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546336,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546336,"type":106}
@nix {"action":"start","id":3920609356546339,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546339}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546337,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546338,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546336,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546336,"type":106}
@nix {"action":"stop","id":3920609356546338}
@nix {"action":"stop","id":3920609356546337}
@nix {"action":"stop","id":3920609356546336}
@nix {"action":"start","id":3920609356546340,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546341,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546342,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546341,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546342,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546340,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546340,"type":106}
@nix {"action":"start","id":3920609356546343,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546343}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546341,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546342,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546340,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546340,"type":106}
@nix {"action":"stop","id":3920609356546342}
@nix {"action":"stop","id":3920609356546341}
@nix {"action":"stop","id":3920609356546340}
@nix {"action":"start","id":3920609356546344,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546345,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546346,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546345,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546346,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546344,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546344,"type":106}
@nix {"action":"start","id":3920609356546347,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546347}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546345,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546346,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546344,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546344,"type":106}
@nix {"action":"stop","id":3920609356546346}
@nix {"action":"stop","id":3920609356546345}
@nix {"action":"stop","id":3920609356546344}
@nix {"action":"start","id":3920609356546348,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546349,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546350,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546349,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546350,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546348,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546348,"type":106}
@nix {"action":"start","id":3920609356546351,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546351}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546349,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546350,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546348,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546348,"type":106}
@nix {"action":"stop","id":3920609356546350}
@nix {"action":"stop","id":3920609356546349}
@nix {"action":"stop","id":3920609356546348}
@nix {"action":"start","id":3920609356546352,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546353,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546354,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546353,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546354,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546352,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546352,"type":106}
@nix {"action":"start","id":3920609356546355,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546355}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546353,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546354,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546352,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546352,"type":106}
@nix {"action":"stop","id":3920609356546354}
@nix {"action":"stop","id":3920609356546353}
@nix {"action":"stop","id":3920609356546352}
@nix {"action":"start","id":3920609356546356,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546357,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546358,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546357,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546358,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546356,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546356,"type":106}
@nix {"action":"start","id":3920609356546359,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546359}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546357,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546358,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546356,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546356,"type":106}
@nix {"action":"stop","id":3920609356546358}
@nix {"action":"stop","id":3920609356546357}
@nix {"action":"stop","id":3920609356546356}
@nix {"action":"start","id":3920609356546360,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546361,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546362,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546361,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546362,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546360,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546360,"type":106}
@nix {"action":"start","id":3920609356546363,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546363}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546361,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546362,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546360,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546360,"type":106}
@nix {"action":"stop","id":3920609356546362}
@nix {"action":"stop","id":3920609356546361}
@nix {"action":"stop","id":3920609356546360}
@nix {"action":"start","id":3920609356546364,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546365,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546366,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546365,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546366,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546364,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546364,"type":106}
@nix {"action":"start","id":3920609356546367,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546367}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546365,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546366,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546364,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546364,"type":106}
@nix {"action":"stop","id":3920609356546366}
@nix {"action":"stop","id":3920609356546365}
@nix {"action":"stop","id":3920609356546364}
@nix {"action":"start","id":3920609356546368,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546369,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546370,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546369,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546370,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546368,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546368,"type":106}
@nix {"action":"start","id":3920609356546371,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546371}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546369,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546370,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546368,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546368,"type":106}
@nix {"action":"stop","id":3920609356546370}
@nix {"action":"stop","id":3920609356546369}
@nix {"action":"stop","id":3920609356546368}
@nix {"action":"start","id":3920609356546372,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546373,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546374,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546373,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546374,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546372,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546372,"type":106}
@nix {"action":"start","id":3920609356546375,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546375}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546373,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546374,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546372,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546372,"type":106}
@nix {"action":"stop","id":3920609356546374}
@nix {"action":"stop","id":3920609356546373}
@nix {"action":"stop","id":3920609356546372}
@nix {"action":"start","id":3920609356546376,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546377,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546378,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546377,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546378,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546376,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546376,"type":106}
@nix {"action":"start","id":3920609356546379,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546379}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546377,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546378,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546376,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546376,"type":106}
@nix {"action":"stop","id":3920609356546378}
@nix {"action":"stop","id":3920609356546377}
@nix {"action":"stop","id":3920609356546376}
@nix {"action":"start","id":3920609356546380,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546381,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546382,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546381,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546382,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546380,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546380,"type":106}
@nix {"action":"start","id":3920609356546383,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546383}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546381,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546382,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546380,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546380,"type":106}
@nix {"action":"stop","id":3920609356546382}
@nix {"action":"stop","id":3920609356546381}
@nix {"action":"stop","id":3920609356546380}
@nix {"action":"start","id":3920609356546384,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546385,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546386,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546385,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546386,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546384,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546384,"type":106}
@nix {"action":"start","id":3920609356546387,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546387}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546385,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546386,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546384,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546384,"type":106}
@nix {"action":"stop","id":3920609356546386}
@nix {"action":"stop","id":3920609356546385}
@nix {"action":"stop","id":3920609356546384}
@nix {"action":"start","id":3920609356546388,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546389,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546390,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546389,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546390,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546388,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546388,"type":106}
@nix {"action":"start","id":3920609356546391,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546391}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546389,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546390,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546388,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546388,"type":106}
@nix {"action":"stop","id":3920609356546390}
@nix {"action":"stop","id":3920609356546389}
@nix {"action":"stop","id":3920609356546388}
@nix {"action":"start","id":3920609356546392,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546393,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546394,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546393,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546394,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546392,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546392,"type":106}
@nix {"action":"start","id":3920609356546395,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546395}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546393,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546394,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546392,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546392,"type":106}
@nix {"action":"stop","id":3920609356546394}
@nix {"action":"stop","id":3920609356546393}
@nix {"action":"stop","id":3920609356546392}
@nix {"action":"start","id":3920609356546396,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546397,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546398,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546397,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546398,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546396,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546396,"type":106}
@nix {"action":"start","id":3920609356546399,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546399}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546397,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546398,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546396,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546396,"type":106}
@nix {"action":"stop","id":3920609356546398}
@nix {"action":"stop","id":3920609356546397}
@nix {"action":"stop","id":3920609356546396}
@nix {"action":"start","id":3920609356546400,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546401,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546402,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546401,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546402,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546400,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546400,"type":106}
@nix {"action":"start","id":3920609356546403,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546403}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546401,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546402,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546400,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546400,"type":106}
@nix {"action":"stop","id":3920609356546402}
@nix {"action":"stop","id":3920609356546401}
@nix {"action":"stop","id":3920609356546400}
@nix {"action":"start","id":3920609356546404,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546405,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546406,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546405,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546406,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546404,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546404,"type":106}
@nix {"action":"start","id":3920609356546407,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546407}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546405,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546406,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546404,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546404,"type":106}
@nix {"action":"stop","id":3920609356546406}
@nix {"action":"stop","id":3920609356546405}
@nix {"action":"stop","id":3920609356546404}
@nix {"action":"start","id":3920609356546408,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546409,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546410,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546409,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546410,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546408,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546408,"type":106}
@nix {"action":"start","id":3920609356546411,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546411}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546409,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546410,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546408,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546408,"type":106}
@nix {"action":"stop","id":3920609356546410}
@nix {"action":"stop","id":3920609356546409}
@nix {"action":"stop","id":3920609356546408}
@nix {"action":"start","id":3920609356546412,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546413,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546414,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546413,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546414,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546412,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546412,"type":106}
@nix {"action":"start","id":3920609356546415,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546415}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546413,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546414,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546412,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546412,"type":106}
@nix {"action":"stop","id":3920609356546414}
@nix {"action":"stop","id":3920609356546413}
@nix {"action":"stop","id":3920609356546412}
@nix {"action":"start","id":3920609356546416,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546417,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546418,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546417,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546418,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546416,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546416,"type":106}
@nix {"action":"start","id":3920609356546419,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546419}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546417,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546418,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546416,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546416,"type":106}
@nix {"action":"stop","id":3920609356546418}
@nix {"action":"stop","id":3920609356546417}
@nix {"action":"stop","id":3920609356546416}
@nix {"action":"start","id":3920609356546420,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546421,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546422,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546421,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546422,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546420,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546420,"type":106}
@nix {"action":"start","id":3920609356546423,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546423}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546421,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546422,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546420,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546420,"type":106}
@nix {"action":"stop","id":3920609356546422}
@nix {"action":"stop","id":3920609356546421}
@nix {"action":"stop","id":3920609356546420}
@nix {"action":"start","id":3920609356546424,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546425,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546426,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546425,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546426,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546424,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546424,"type":106}
@nix {"action":"start","id":3920609356546427,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546427}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546425,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546426,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546424,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546424,"type":106}
@nix {"action":"stop","id":3920609356546426}
@nix {"action":"stop","id":3920609356546425}
@nix {"action":"stop","id":3920609356546424}
@nix {"action":"start","id":3920609356546428,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546429,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546430,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546429,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546430,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546428,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546428,"type":106}
@nix {"action":"start","id":3920609356546431,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546431}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546429,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546430,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546428,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546428,"type":106}
@nix {"action":"stop","id":3920609356546430}
@nix {"action":"stop","id":3920609356546429}
@nix {"action":"stop","id":3920609356546428}
@nix {"action":"start","id":3920609356546432,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546433,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546434,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546433,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546434,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546432,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546432,"type":106}
@nix {"action":"start","id":3920609356546435,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546435}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546433,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546434,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546432,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546432,"type":106}
@nix {"action":"stop","id":3920609356546434}
@nix {"action":"stop","id":3920609356546433}
@nix {"action":"stop","id":3920609356546432}
@nix {"action":"start","id":3920609356546436,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546437,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546438,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546437,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546438,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546436,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546436,"type":106}
@nix {"action":"start","id":3920609356546439,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546439}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546437,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546438,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546436,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546436,"type":106}
@nix {"action":"stop","id":3920609356546438}
@nix {"action":"stop","id":3920609356546437}
@nix {"action":"stop","id":3920609356546436}
@nix {"action":"start","id":3920609356546440,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546441,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546442,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546441,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546442,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546440,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546440,"type":106}
@nix {"action":"start","id":3920609356546443,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546443}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546441,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546442,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546440,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546440,"type":106}
@nix {"action":"stop","id":3920609356546442}
@nix {"action":"stop","id":3920609356546441}
@nix {"action":"stop","id":3920609356546440}
@nix {"action":"start","id":3920609356546444,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546445,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546446,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546445,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546446,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546444,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546444,"type":106}
@nix {"action":"start","id":3920609356546447,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546447}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546445,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546446,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546444,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546444,"type":106}
@nix {"action":"stop","id":3920609356546446}
@nix {"action":"stop","id":3920609356546445}
@nix {"action":"stop","id":3920609356546444}
@nix {"action":"start","id":3920609356546448,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546449,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546450,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546449,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546450,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546448,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546448,"type":106}
@nix {"action":"start","id":3920609356546451,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546451}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546449,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546450,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546448,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546448,"type":106}
@nix {"action":"stop","id":3920609356546450}
@nix {"action":"stop","id":3920609356546449}
@nix {"action":"stop","id":3920609356546448}
@nix {"action":"start","id":3920609356546452,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546453,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546454,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546453,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546454,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546452,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546452,"type":106}
@nix {"action":"start","id":3920609356546455,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546455}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546453,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546454,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546452,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546452,"type":106}
@nix {"action":"stop","id":3920609356546454}
@nix {"action":"stop","id":3920609356546453}
@nix {"action":"stop","id":3920609356546452}
@nix {"action":"start","id":3920609356546456,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546457,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546458,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546457,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546458,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546456,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546456,"type":106}
@nix {"action":"start","id":3920609356546459,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546459}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546457,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546458,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546456,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546456,"type":106}
@nix {"action":"stop","id":3920609356546458}
@nix {"action":"stop","id":3920609356546457}
@nix {"action":"stop","id":3920609356546456}
@nix {"action":"start","id":3920609356546460,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546461,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546462,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546461,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546462,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546460,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546460,"type":106}
@nix {"action":"start","id":3920609356546463,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546463}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546461,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546462,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546460,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546460,"type":106}
@nix {"action":"stop","id":3920609356546462}
@nix {"action":"stop","id":3920609356546461}
@nix {"action":"stop","id":3920609356546460}
@nix {"action":"start","id":3920609356546464,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546465,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546466,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546465,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546466,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546464,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546464,"type":106}
@nix {"action":"start","id":3920609356546467,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546467}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546465,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546466,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546464,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546464,"type":106}
@nix {"action":"stop","id":3920609356546466}
@nix {"action":"stop","id":3920609356546465}
@nix {"action":"stop","id":3920609356546464}
@nix {"action":"start","id":3920609356546468,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546469,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546470,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546469,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546470,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546468,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546468,"type":106}
@nix {"action":"start","id":3920609356546471,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546471}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546469,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546470,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546468,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546468,"type":106}
@nix {"action":"stop","id":3920609356546470}
@nix {"action":"stop","id":3920609356546469}
@nix {"action":"stop","id":3920609356546468}
@nix {"action":"start","id":3920609356546472,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546473,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546474,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546473,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546474,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546472,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546472,"type":106}
@nix {"action":"start","id":3920609356546475,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546475}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546473,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546474,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546472,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546472,"type":106}
@nix {"action":"stop","id":3920609356546474}
@nix {"action":"stop","id":3920609356546473}
@nix {"action":"stop","id":3920609356546472}
@nix {"action":"start","id":3920609356546476,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546477,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546478,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546477,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546478,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546476,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546476,"type":106}
@nix {"action":"start","id":3920609356546479,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546479}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546477,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546478,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546476,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546476,"type":106}
@nix {"action":"stop","id":3920609356546478}
@nix {"action":"stop","id":3920609356546477}
@nix {"action":"stop","id":3920609356546476}
@nix {"action":"start","id":3920609356546480,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546481,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546482,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546481,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546482,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546480,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546480,"type":106}
@nix {"action":"start","id":3920609356546483,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546483}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546481,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546482,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546480,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546480,"type":106}
@nix {"action":"stop","id":3920609356546482}
@nix {"action":"stop","id":3920609356546481}
@nix {"action":"stop","id":3920609356546480}
@nix {"action":"start","id":3920609356546484,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546485,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546486,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546485,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546486,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546484,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546484,"type":106}
@nix {"action":"start","id":3920609356546487,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546487}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546485,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546486,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546484,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546484,"type":106}
@nix {"action":"stop","id":3920609356546486}
@nix {"action":"stop","id":3920609356546485}
@nix {"action":"stop","id":3920609356546484}
@nix {"action":"start","id":3920609356546488,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546489,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546490,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546489,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546490,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546488,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546488,"type":106}
@nix {"action":"start","id":3920609356546491,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546491}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546489,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546490,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546488,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546488,"type":106}
@nix {"action":"stop","id":3920609356546490}
@nix {"action":"stop","id":3920609356546489}
@nix {"action":"stop","id":3920609356546488}
@nix {"action":"start","id":3920609356546492,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546493,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546494,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546493,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546494,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546492,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546492,"type":106}
@nix {"action":"start","id":3920609356546495,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546495}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546493,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546494,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546492,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546492,"type":106}
@nix {"action":"stop","id":3920609356546494}
@nix {"action":"stop","id":3920609356546493}
@nix {"action":"stop","id":3920609356546492}
@nix {"action":"start","id":3920609356546496,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546497,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546498,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546497,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546498,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546496,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546496,"type":106}
@nix {"action":"start","id":3920609356546499,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546499}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546497,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546498,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546496,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546496,"type":106}
@nix {"action":"stop","id":3920609356546498}
@nix {"action":"stop","id":3920609356546497}
@nix {"action":"stop","id":3920609356546496}
@nix {"action":"start","id":3920609356546500,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546501,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546502,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546501,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546502,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546500,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546500,"type":106}
@nix {"action":"start","id":3920609356546503,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546503}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546501,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546502,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546500,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546500,"type":106}
@nix {"action":"stop","id":3920609356546502}
@nix {"action":"stop","id":3920609356546501}
@nix {"action":"stop","id":3920609356546500}
@nix {"action":"start","id":3920609356546504,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546505,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546506,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546505,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546506,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546504,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546504,"type":106}
@nix {"action":"start","id":3920609356546507,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546507}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546505,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546506,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546504,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546504,"type":106}
@nix {"action":"stop","id":3920609356546506}
@nix {"action":"stop","id":3920609356546505}
@nix {"action":"stop","id":3920609356546504}
@nix {"action":"start","id":3920609356546508,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546509,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546510,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546509,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546510,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546508,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546508,"type":106}
@nix {"action":"start","id":3920609356546511,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546511}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546509,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546510,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546508,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546508,"type":106}
@nix {"action":"stop","id":3920609356546510}
@nix {"action":"stop","id":3920609356546509}
@nix {"action":"stop","id":3920609356546508}
@nix {"action":"start","id":3920609356546512,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546513,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546514,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546513,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546514,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546512,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546512,"type":106}
@nix {"action":"start","id":3920609356546515,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546515}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546513,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546514,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546512,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546512,"type":106}
@nix {"action":"stop","id":3920609356546514}
@nix {"action":"stop","id":3920609356546513}
@nix {"action":"stop","id":3920609356546512}
@nix {"action":"start","id":3920609356546516,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546517,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546518,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546517,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546518,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546516,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546516,"type":106}
@nix {"action":"start","id":3920609356546519,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546519}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546517,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546518,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546516,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546516,"type":106}
@nix {"action":"stop","id":3920609356546518}
@nix {"action":"stop","id":3920609356546517}
@nix {"action":"stop","id":3920609356546516}
@nix {"action":"start","id":3920609356546520,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546521,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546522,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546521,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546522,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546520,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546520,"type":106}
@nix {"action":"start","id":3920609356546523,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546523}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546521,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546522,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546520,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546520,"type":106}
@nix {"action":"stop","id":3920609356546522}
@nix {"action":"stop","id":3920609356546521}
@nix {"action":"stop","id":3920609356546520}
@nix {"action":"start","id":3920609356546524,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546525,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546526,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546525,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546526,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546524,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546524,"type":106}
@nix {"action":"start","id":3920609356546527,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546527}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546525,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546526,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546524,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546524,"type":106}
@nix {"action":"stop","id":3920609356546526}
@nix {"action":"stop","id":3920609356546525}
@nix {"action":"stop","id":3920609356546524}
@nix {"action":"start","id":3920609356546528,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546529,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546530,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546529,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546530,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546528,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546528,"type":106}
@nix {"action":"start","id":3920609356546531,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546531}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546529,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546530,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546528,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546528,"type":106}
@nix {"action":"stop","id":3920609356546530}
@nix {"action":"stop","id":3920609356546529}
@nix {"action":"stop","id":3920609356546528}
@nix {"action":"start","id":3920609356546532,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546533,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546534,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546533,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546534,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546532,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546532,"type":106}
@nix {"action":"start","id":3920609356546535,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546535}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546533,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546534,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546532,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546532,"type":106}
@nix {"action":"stop","id":3920609356546534}
@nix {"action":"stop","id":3920609356546533}
@nix {"action":"stop","id":3920609356546532}
@nix {"action":"start","id":3920609356546536,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546537,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546538,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546537,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546538,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546536,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546536,"type":106}
@nix {"action":"start","id":3920609356546539,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546539}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546537,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546538,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546536,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546536,"type":106}
@nix {"action":"stop","id":3920609356546538}
@nix {"action":"stop","id":3920609356546537}
@nix {"action":"stop","id":3920609356546536}
@nix {"action":"start","id":3920609356546540,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546541,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546542,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546541,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546542,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546540,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546540,"type":106}
@nix {"action":"start","id":3920609356546543,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546543}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546541,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546542,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546540,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546540,"type":106}
@nix {"action":"stop","id":3920609356546542}
@nix {"action":"stop","id":3920609356546541}
@nix {"action":"stop","id":3920609356546540}
@nix {"action":"start","id":3920609356546544,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546545,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546546,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546545,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546546,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546544,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546544,"type":106}
@nix {"action":"start","id":3920609356546547,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546547}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546545,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546546,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546544,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546544,"type":106}
@nix {"action":"stop","id":3920609356546546}
@nix {"action":"stop","id":3920609356546545}
@nix {"action":"stop","id":3920609356546544}
@nix {"action":"start","id":3920609356546548,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546549,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546550,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546549,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546550,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546548,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546548,"type":106}
@nix {"action":"start","id":3920609356546551,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546551}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546549,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546550,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546548,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546548,"type":106}
@nix {"action":"stop","id":3920609356546550}
@nix {"action":"stop","id":3920609356546549}
@nix {"action":"stop","id":3920609356546548}
@nix {"action":"start","id":3920609356546552,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546553,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546554,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546553,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546554,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546552,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546552,"type":106}
@nix {"action":"start","id":3920609356546555,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546555}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546553,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546554,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546552,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546552,"type":106}
@nix {"action":"stop","id":3920609356546554}
@nix {"action":"stop","id":3920609356546553}
@nix {"action":"stop","id":3920609356546552}
@nix {"action":"start","id":3920609356546556,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546557,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546558,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546557,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546558,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546556,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546556,"type":106}
@nix {"action":"start","id":3920609356546559,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546559}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546557,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546558,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546556,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546556,"type":106}
@nix {"action":"stop","id":3920609356546558}
@nix {"action":"stop","id":3920609356546557}
@nix {"action":"stop","id":3920609356546556}
@nix {"action":"start","id":3920609356546560,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546561,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546562,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546561,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546562,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546560,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546560,"type":106}
@nix {"action":"start","id":3920609356546563,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546563}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546561,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546562,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546560,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546560,"type":106}
@nix {"action":"stop","id":3920609356546562}
@nix {"action":"stop","id":3920609356546561}
@nix {"action":"stop","id":3920609356546560}
@nix {"action":"start","id":3920609356546564,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546565,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546566,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546565,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546566,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546564,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546564,"type":106}
@nix {"action":"start","id":3920609356546567,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546567}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546565,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546566,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546564,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546564,"type":106}
@nix {"action":"stop","id":3920609356546566}
@nix {"action":"stop","id":3920609356546565}
@nix {"action":"stop","id":3920609356546564}
@nix {"action":"start","id":3920609356546568,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546569,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546570,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546569,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546570,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546568,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546568,"type":106}
@nix {"action":"start","id":3920609356546571,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546571}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546569,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546570,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546568,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546568,"type":106}
@nix {"action":"stop","id":3920609356546570}
@nix {"action":"stop","id":3920609356546569}
@nix {"action":"stop","id":3920609356546568}
@nix {"action":"start","id":3920609356546572,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546573,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546574,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546573,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546574,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546572,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546572,"type":106}
@nix {"action":"start","id":3920609356546575,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546575}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546573,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546574,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546572,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546572,"type":106}
@nix {"action":"stop","id":3920609356546574}
@nix {"action":"stop","id":3920609356546573}
@nix {"action":"stop","id":3920609356546572}
@nix {"action":"start","id":3920609356546576,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546577,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546578,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546577,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546578,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546576,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546576,"type":106}
@nix {"action":"start","id":3920609356546579,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546579}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546577,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546578,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546576,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546576,"type":106}
@nix {"action":"stop","id":3920609356546578}
@nix {"action":"stop","id":3920609356546577}
@nix {"action":"stop","id":3920609356546576}
@nix {"action":"start","id":3920609356546580,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546581,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546582,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546581,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546582,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546580,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546580,"type":106}
@nix {"action":"start","id":3920609356546583,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546583}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546581,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546582,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546580,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546580,"type":106}
@nix {"action":"stop","id":3920609356546582}
@nix {"action":"stop","id":3920609356546581}
@nix {"action":"stop","id":3920609356546580}
@nix {"action":"start","id":3920609356546584,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546585,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546586,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546585,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546586,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546584,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546584,"type":106}
@nix {"action":"start","id":3920609356546587,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546587}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546585,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546586,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546584,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546584,"type":106}
@nix {"action":"stop","id":3920609356546586}
@nix {"action":"stop","id":3920609356546585}
@nix {"action":"stop","id":3920609356546584}
@nix {"action":"start","id":3920609356546588,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546589,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546590,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546589,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546590,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546588,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546588,"type":106}
@nix {"action":"start","id":3920609356546591,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546591}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546589,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546590,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546588,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546588,"type":106}
@nix {"action":"stop","id":3920609356546590}
@nix {"action":"stop","id":3920609356546589}
@nix {"action":"stop","id":3920609356546588}
@nix {"action":"start","id":3920609356546592,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546593,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546594,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546593,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546594,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546592,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546592,"type":106}
@nix {"action":"start","id":3920609356546595,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546595}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546593,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546594,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546592,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546592,"type":106}
@nix {"action":"stop","id":3920609356546594}
@nix {"action":"stop","id":3920609356546593}
@nix {"action":"stop","id":3920609356546592}
@nix {"action":"start","id":3920609356546596,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546597,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546598,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546597,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546598,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546596,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546596,"type":106}
@nix {"action":"start","id":3920609356546599,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546599}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546597,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546598,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546596,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546596,"type":106}
@nix {"action":"stop","id":3920609356546598}
@nix {"action":"stop","id":3920609356546597}
@nix {"action":"stop","id":3920609356546596}
@nix {"action":"start","id":3920609356546600,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546601,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546602,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546601,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546602,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546600,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546600,"type":106}
@nix {"action":"start","id":3920609356546603,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546603}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546601,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546602,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546600,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546600,"type":106}
@nix {"action":"stop","id":3920609356546602}
@nix {"action":"stop","id":3920609356546601}
@nix {"action":"stop","id":3920609356546600}
@nix {"action":"start","id":3920609356546604,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546605,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546606,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546606,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546604,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546604,"type":106}
@nix {"action":"start","id":3920609356546607,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546607}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546606,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546604,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546604,"type":106}
@nix {"action":"stop","id":3920609356546606}
@nix {"action":"stop","id":3920609356546605}
@nix {"action":"stop","id":3920609356546604}
@nix {"action":"start","id":3920609356546608,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546609,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546610,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546609,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546610,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546608,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546608,"type":106}
@nix {"action":"start","id":3920609356546611,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546611}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546609,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546610,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546608,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546608,"type":106}
@nix {"action":"stop","id":3920609356546610}
@nix {"action":"stop","id":3920609356546609}
@nix {"action":"stop","id":3920609356546608}
@nix {"action":"start","id":3920609356546612,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":3920609356546613,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":3920609356546614,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"start","id":3920609356546615,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":3920609356546615}
@nix {"action":"result","fields":[0,2,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,3,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,4,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,5,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,6,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,7,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,8,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,9,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,8,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,7,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,6,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,5,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,4,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,3,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,2,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[0,1,0,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"start","fields":["/nix/store/xpni4zfrhvr63sr3lb64q3ccxa5yqkwc-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv","",1,1],"id":3920609356546616,"level":3,"parent":0,"text":"building '/nix/store/xpni4zfrhvr63sr3lb64q3ccxa5yqkwc-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv'","type":105}
@nix {"action":"result","fields":[0,1,1,0],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":["Running phase: unpackPhase"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["unpackPhase"],"id":3920609356546616,"type":104}
@nix {"action":"result","fields":["Running phase: patchPhase"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["patchPhase"],"id":3920609356546616,"type":104}
@nix {"action":"result","fields":["Running phase: updateAutotoolsGnuConfigScriptsPhase"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["updateAutotoolsGnuConfigScriptsPhase"],"id":3920609356546616,"type":104}
@nix {"action":"result","fields":["Running phase: configurePhase"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["configurePhase"],"id":3920609356546616,"type":104}
@nix {"action":"result","fields":["no configure script, doing nothing"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["Running phase: buildPhase"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["buildPhase"],"id":3920609356546616,"type":104}
@nix {"action":"result","fields":["\u001b[92mCompiling\u001b[0m prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["@cargo { \"type\":0, \"crate_name\":\"prettyplease\", \"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\" }"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["+++ /nix/store/7fy37ai6snpnkjqis926s8rg6mivblfg-prettyplease-0_2_37-script_build-dfa7ee66a4655c3f/build_script_build"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["+++ build_script_build_exit_value=0"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["+++ set +x -e"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["+++ /nix/store/2q06anqfbq2jy1mjaw2qn2zc1cqhx8bg-cargo-build_script_build-parser-0.1.0/bin/cargo-build_script_build-parser /nix/store/wmypzpfppbfmm3mbqpzig6fj8z91jvbp-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix/build_script_build.out --out-path /nix/store/wmypzpfppbfmm3mbqpzig6fj8z91jvbp-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix write-results"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["+++ build_parser_exit_value=1"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["+++ set +x -e"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["@cargo {\"type\":2,\"crate_name\":\"prettyplease\",\"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\",\"rustc_exit_code\":1,\"rustc_messages\":[\"    0    cargo:rerun-if-changed=build.rs\\n    1    cargo:rustc-check-cfg=cfg(exhaustive)\\n    2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\\n    3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\\n>   4    \\u001b[31mcargo:VERSION=0.2.37\\u001b[0m\\nError: \\\"Command: 'VERSION' on line: '4' not implemented yet!\\\"\\n\"]}"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["    0    cargo:rerun-if-changed=build.rs"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["    1    cargo:rustc-check-cfg=cfg(exhaustive)"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["    2    cargo:rustc-check-cfg=cfg(prettyplease_debug)"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["    3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":[">   4    \u001b[31mcargo:VERSION=0.2.37\u001b[0m"],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":["Error: \"Command: 'VERSION' on line: '4' not implemented yet!\""],"id":3920609356546616,"type":101}
@nix {"action":"result","fields":[0,0,0,1],"id":3920609356546613,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":3920609356546614,"type":105}
@nix {"action":"result","fields":[101,0],"id":3920609356546612,"type":106}
@nix {"action":"result","fields":[100,0],"id":3920609356546612,"type":106}
@nix {"action":"stop","id":3920609356546616}
@nix {"action":"stop","id":3920609356546614}
@nix {"action":"stop","id":3920609356546613}
@nix {"action":"stop","id":3920609356546612}
@nix {"action":"msg","column":null,"file":null,"level":0,"line":null,"msg":"\u001b[31;1merror:\u001b[0m\n       … while calling the '\u001b[35;1mderivationStrict\u001b[0m' builtin\n         \u001b[34;1mat \u001b[35;1m<nix/derivation-internal.nix>:37:12\u001b[0m:\n           36|\n           37|   strict = derivationStrict drvAttrs;\n             |            \u001b[31;1m^\u001b[0m\n           38|\n\n       … while evaluating derivation '\u001b[35;1mcreate-symlinks\u001b[0m'\n         whose name attribute is located at \u001b[35;1m/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/make-derivation.nix:480:13\u001b[0m\n\n       … while evaluating attribute '\u001b[35;1mtext\u001b[0m' of derivation '\u001b[35;1mcreate-symlinks\u001b[0m'\n         \u001b[34;1mat \u001b[35;1m/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/trivial-builders/default.nix:129:13\u001b[0m:\n          128|           inherit\n          129|             text\n             |             \u001b[31;1m^\u001b[0m\n          130|             executable\n\n       \u001b[35;1m(stack trace truncated; use '--show-trace' to show the full, detailed trace)\u001b[0m\n\n       \u001b[31;1merror:\u001b[0m builder for '\u001b[35;1m/nix/store/xpni4zfrhvr63sr3lb64q3ccxa5yqkwc-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m' failed with exit code 1;\n       last 21 log lines:\n       > Running phase: unpackPhase\n       > Running phase: patchPhase\n       > Running phase: updateAutotoolsGnuConfigScriptsPhase\n       > Running phase: configurePhase\n       > no configure script, doing nothing\n       > Running phase: buildPhase\n       > \u001b[92mCompiling\u001b[0m prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\n       > @cargo { \"type\":0, \"crate_name\":\"prettyplease\", \"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\" }\n       > +++ /nix/store/7fy37ai6snpnkjqis926s8rg6mivblfg-prettyplease-0_2_37-script_build-dfa7ee66a4655c3f/build_script_build\n       > +++ build_script_build_exit_value=0\n       > +++ set +x -e\n       > +++ /nix/store/2q06anqfbq2jy1mjaw2qn2zc1cqhx8bg-cargo-build_script_build-parser-0.1.0/bin/cargo-build_script_build-parser /nix/store/wmypzpfppbfmm3mbqpzig6fj8z91jvbp-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix/build_script_build.out --out-path /nix/store/wmypzpfppbfmm3mbqpzig6fj8z91jvbp-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix write-results\n       > +++ build_parser_exit_value=1\n       > +++ set +x -e\n       > @cargo {\"type\":2,\"crate_name\":\"prettyplease\",\"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\",\"rustc_exit_code\":1,\"rustc_messages\":[\"    0    cargo:rerun-if-changed=build.rs\\n    1    cargo:rustc-check-cfg=cfg(exhaustive)\\n    2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\\n    3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\\n>   4    \\u001b[31mcargo:VERSION=0.2.37\\u001b[0m\\nError: \\\"Command: 'VERSION' on line: '4' not implemented yet!\\\"\\n\"]}\n       >     0    cargo:rerun-if-changed=build.rs\n       >     1    cargo:rustc-check-cfg=cfg(exhaustive)\n       >     2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\n       >     3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\n       > >   4    \u001b[31mcargo:VERSION=0.2.37\u001b[0m\n       > Error: \"Command: 'VERSION' on line: '4' not implemented yet!\"\n       For full logs, run:\n         \u001b[1mnix log /nix/store/xpni4zfrhvr63sr3lb64q3ccxa5yqkwc-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m","raw_msg":"builder for '\u001b[35;1m/nix/store/xpni4zfrhvr63sr3lb64q3ccxa5yqkwc-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m' failed with exit code 1;\nlast 21 log lines:\n> Running phase: unpackPhase\n> Running phase: patchPhase\n> Running phase: updateAutotoolsGnuConfigScriptsPhase\n> Running phase: configurePhase\n> no configure script, doing nothing\n> Running phase: buildPhase\n> \u001b[92mCompiling\u001b[0m prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\n> @cargo { \"type\":0, \"crate_name\":\"prettyplease\", \"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\" }\n> +++ /nix/store/7fy37ai6snpnkjqis926s8rg6mivblfg-prettyplease-0_2_37-script_build-dfa7ee66a4655c3f/build_script_build\n> +++ build_script_build_exit_value=0\n> +++ set +x -e\n> +++ /nix/store/2q06anqfbq2jy1mjaw2qn2zc1cqhx8bg-cargo-build_script_build-parser-0.1.0/bin/cargo-build_script_build-parser /nix/store/wmypzpfppbfmm3mbqpzig6fj8z91jvbp-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix/build_script_build.out --out-path /nix/store/wmypzpfppbfmm3mbqpzig6fj8z91jvbp-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix write-results\n> +++ build_parser_exit_value=1\n> +++ set +x -e\n> @cargo {\"type\":2,\"crate_name\":\"prettyplease\",\"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\",\"rustc_exit_code\":1,\"rustc_messages\":[\"    0    cargo:rerun-if-changed=build.rs\\n    1    cargo:rustc-check-cfg=cfg(exhaustive)\\n    2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\\n    3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\\n>   4    \\u001b[31mcargo:VERSION=0.2.37\\u001b[0m\\nError: \\\"Command: 'VERSION' on line: '4' not implemented yet!\\\"\\n\"]}\n>     0    cargo:rerun-if-changed=build.rs\n>     1    cargo:rustc-check-cfg=cfg(exhaustive)\n>     2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\n>     3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\n> >   4    \u001b[31mcargo:VERSION=0.2.37\u001b[0m\n> Error: \"Command: 'VERSION' on line: '4' not implemented yet!\"\nFor full logs, run:\n  \u001b[1mnix log /nix/store/xpni4zfrhvr63sr3lb64q3ccxa5yqkwc-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m"}