summaryrefslogblamecommitdiffstats
path: root/boost-1.75-all-private.imp
blob: e80fff48e0b3694e217438822d468b884cf29282 (plain) (tree)
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
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507


















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                        
[
    # grep -r '^ *# *include' boost/ | grep -e "boost/[^:]*/detail/.*hp*:" -e "boost/[^:]*/impl/.*hp*:" | grep -e "\:.*/detail/" -e "\:.*/impl/" | perl -nle 'm/^([^:]+).*["<]([^>]+)[">]/ && print qq@    { include: ["<$2>", private, "<$1>", private ] },@' | grep -e '\["<boost/' | sort -u

    # remove circular dependencies:
    #   boost/contract/detail/checking.hpp --> boost/contract/detail/inlined/detail/checking.hpp
    #   boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp -> boost/numeric/odeint/integrate/detail/integrate_const.hpp
    #   boost/numeric/odeint/integrate/detail/integrate_const.hpp --> boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp
    #   boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp --> boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp
    #   boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp --> boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp
    #   boost/python/detail/type_list.hpp --> boost/python/detail/type_list_impl.hpp
    #   boost/python/detail/type_list_impl.hpp --> boost/python/detail/type_list.hpp
    #   boost/variant/detail/multivisitors_cpp14_based.hpp --> boost/variant/detail/multivisitors_cpp14_based.hpp

    # remove preprocessor purpose recursive includes:
    #   boost/preprocessor/iteration/detail/iter/limits/forward*_*.hpp --> boost/preprocessor/iteration/detail/iter/forward*.hpp
    #   boost/preprocessor/iteration/detail/iter/limits/reverse*_*.hpp --> boost/preprocessor/iteration/detail/iter/reverse*.hpp
    #

    #
    # grep -r '^ *# *include' boost/ | grep -e "boost/geometry/[^:]*/detail/.*hp*:" -e "boost/geometry/[^:]*/impl/.*hp*:" | grep -e "\:.*/geometry/util/" | perl -nle 'm/^([^:]+).*["<]([^>]+)[">]/ && print qq@    { include: ["<$2>", private, "<$1>", private ] },@' | grep -e '\["<boost/' | sort -u

    #
    # Note: <boost/geometry/util/*> is marked as 'private' in this mapping.
    #       Those headers seem referenced solely for internal usage. In fact,
    #       they have been undocumented in the official Boost.Geometry doc
    #       for a long time.
    #
    #       We *could* insist on marking them as 'public', but then these
    #       headers, for instance, will be suggested:
    #
    #         <boost/geometry/core/radius.hpp> // for get_radius
    #         <boost/geometry/util/math.hpp> // for sqr
    #         <boost/math/special_functions/fpclassify.hpp> // for isnan
    #
    #       We don't expect these headers to be suggested _even by IWYU_
    #       because Boost.Geometry is designed to rely on transitive includes
    #       on the application side, for the sake of strategy specialization.
    #         See: https://www.boost.org/libs/geometry/doc/html/geometry/design.html
    #
    #       In practice, it is very uncommon to include those headers when using
    #       Boost.Geometry on the application. Currently no examples/documentations
    #       suggest user to include those headers.
    #
    # Note: Boost.Geometry is currently under heavy redesign so the policy
    #       described above might change in the near future.
    #         See: https://github.com/boostorg/geometry/pull/726#issuecomment-680802837
    #

    { include: ["<boost/geometry/util/calculation_type.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/pointlike.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/cluster_exits.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/point_on_border.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/algorithms/detail/relate/result.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
    { include: ["<boost/geometry/util/condition.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/util/for_each_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/assign_values.hpp>", private ] },
    { include: ["<boost/geometry/util/has_nan_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/util/has_nan_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private ] },
    { include: ["<boost/geometry/util/has_nan_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private ] },
    { include: ["<boost/geometry/util/has_non_finite_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private ] },
    { include: ["<boost/geometry/util/is_inverse_spheroidal_coordinates.hpp>", private, "<boost/geometry/algorithms/detail/assign_values.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/azimuth.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/calculate_point_order.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/direction_code.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/envelope/intersects_antimeridian.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/extreme_points.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/get_max_size.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/max_interval_gap.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/turns/compare_turns.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/aasincos.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/adjlon.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/dms_parser.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/geocent.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_ell_set.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_fwd.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_gridinfo.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_inv.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_mlfn.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_phi2.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/pj_tsfn.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/srs/projections/impl/proj_mdist.hpp>", private ] },
    { include: ["<boost/geometry/util/math.hpp>", private, "<boost/geometry/views/detail/indexed_point_view.hpp>", private ] },
    { include: ["<boost/geometry/util/normalize_spheroidal_coordinates.hpp>", private, "<boost/geometry/algorithms/detail/direction_code.hpp>", private ] },
    { include: ["<boost/geometry/util/normalize_spheroidal_coordinates.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/util/normalize_spheroidal_coordinates.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/util/order_as_direction.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/util/order_as_direction.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/util/order_as_direction.hpp>", private, "<boost/geometry/views/detail/normalized_view.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/calculate_point_order.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/counting.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/intersection/interface.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/debug_print_boundary_points.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/single_geometry.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/sub_range.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/tupled_output.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/srs/projections/impl/pj_transform.hpp>", private ] },
    { include: ["<boost/geometry/util/range.hpp>", private, "<boost/geometry/views/detail/boundary_view/implementation.hpp>", private ] },
    { include: ["<boost/geometry/util/select_coordinate_type.hpp>", private, "<boost/geometry/algorithms/detail/direction_code.hpp>", private ] },
    { include: ["<boost/geometry/util/select_coordinate_type.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/util/select_coordinate_type.hpp>", private, "<boost/geometry/algorithms/detail/expand/indexed.hpp>", private ] },
    { include: ["<boost/geometry/util/select_coordinate_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/clip_linestring.hpp>", private ] },
    { include: ["<boost/geometry/util/select_coordinate_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_distance_measure.hpp>", private ] },
    { include: ["<boost/geometry/util/select_coordinate_type.hpp>", private, "<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private ] },
    { include: ["<boost/geometry/util/select_most_precise.hpp>", private, "<boost/geometry/algorithms/detail/envelope/interface.hpp>", private ] },
    { include: ["<boost/geometry/util/select_most_precise.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/util/sequence.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/util/sequence.hpp>", private, "<boost/geometry/algorithms/detail/relate/de9im.hpp>", private ] },
    { include: ["<boost/geometry/util/sequence.hpp>", private, "<boost/geometry/algorithms/detail/relate/interface.hpp>", private ] },
    { include: ["<boost/geometry/util/sequence.hpp>", private, "<boost/geometry/algorithms/detail/relate/result.hpp>", private ] },
    { include: ["<boost/geometry/util/sequence.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/util/tuples.hpp>", private, "<boost/geometry/algorithms/detail/relate/de9im.hpp>", private ] },
    { include: ["<boost/geometry/util/tuples.hpp>", private, "<boost/geometry/algorithms/detail/tupled_output.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/for_each_range.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/relate/interface.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/tupled_output.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits.hpp>", private, "<boost/geometry/algorithms/detail/within/multi_point.hpp>", private ] },
    { include: ["<boost/geometry/util/type_traits_std.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/value_type.hpp>", private ] },

    { include: ["<boost/accumulators/numeric/detail/function_n.hpp>", private, "<boost/accumulators/numeric/detail/function2.hpp>", private ] },
    { include: ["<boost/accumulators/numeric/detail/function_n.hpp>", private, "<boost/accumulators/numeric/detail/function3.hpp>", private ] },
    { include: ["<boost/accumulators/numeric/detail/function_n.hpp>", private, "<boost/accumulators/numeric/detail/function4.hpp>", private ] },
    { include: ["<boost/algorithm/searching/detail/debugging.hpp>", private, "<boost/algorithm/searching/detail/bm_traits.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/finder_regex.hpp>", private, "<boost/algorithm/string/detail/formatter_regex.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/find_format_store.hpp>", private, "<boost/algorithm/string/detail/find_format_all.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/find_format_store.hpp>", private, "<boost/algorithm/string/detail/find_format.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/replace_storage.hpp>", private, "<boost/algorithm/string/detail/find_format_all.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/replace_storage.hpp>", private, "<boost/algorithm/string/detail/find_format.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/sequence.hpp>", private, "<boost/algorithm/string/detail/replace_storage.hpp>", private ] },
    { include: ["<boost/algorithm/string/detail/util.hpp>", private, "<boost/algorithm/string/detail/formatter.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/alignment_of_clang.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/alignment_of_codegear.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/alignment_of_gcc.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/is_alignment_constant.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/max_objects.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/max_size.hpp>", private ] },
    { include: ["<boost/align/detail/integral_constant.hpp>", private, "<boost/align/detail/min_size.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/align_down.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_android.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_macos.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_mingw.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_msvc.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_new.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_posix.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/aligned_alloc_sunos.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/align.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/align_up.hpp>", private ] },
    { include: ["<boost/align/detail/is_alignment.hpp>", private, "<boost/align/detail/is_aligned.hpp>", private ] },
    { include: ["<boost/align/detail/max_size.hpp>", private, "<boost/align/detail/max_align.hpp>", private ] },
    { include: ["<boost/align/detail/min_size.hpp>", private, "<boost/align/detail/alignment_of.hpp>", private ] },
    { include: ["<boost/align/detail/min_size.hpp>", private, "<boost/align/detail/alignment_of_msvc.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/archive_serializer_map.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/basic_serializer_map.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/polymorphic_iarchive_route.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_prefix.hpp>", private, "<boost/archive/detail/polymorphic_oarchive_route.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/archive_serializer_map.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/basic_serializer_map.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/polymorphic_iarchive_route.hpp>", private ] },
    { include: ["<boost/archive/detail/abi_suffix.hpp>", private, "<boost/archive/detail/polymorphic_oarchive_route.hpp>", private ] },
    { include: ["<boost/archive/detail/archive_serializer_map.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/archive_serializer_map.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/archive_serializer_map.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/basic_serializer_map.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/auto_link_archive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/archive/detail/common_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_iarchive.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_iserializer.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_oarchive.hpp>", private, "<boost/archive/detail/common_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_oarchive.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_oserializer.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_pointer_iserializer.hpp>", private, "<boost/archive/detail/common_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_pointer_iserializer.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_pointer_oserializer.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_pointer_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/basic_serializer.hpp>", private, "<boost/archive/detail/basic_pointer_oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/check.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/check.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/common_iarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/common_oarchive.hpp>", private, "<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/auto_link_archive.hpp>", private ] },
    { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/auto_link_warchive.hpp>", private ] },
    { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/basic_iserializer.hpp>", private ] },
    { include: ["<boost/archive/detail/decl.hpp>", private, "<boost/archive/detail/utf8_codecvt_facet.hpp>", private ] },
    { include: ["<boost/archive/detail/helper_collection.hpp>", private, "<boost/archive/detail/basic_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/helper_collection.hpp>", private, "<boost/archive/detail/basic_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/helper_collection.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/interface_iarchive.hpp>", private, "<boost/archive/detail/common_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/interface_iarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/interface_oarchive.hpp>", private, "<boost/archive/detail/common_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/interface_oarchive.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/iserializer.hpp>", private, "<boost/archive/detail/interface_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/iserializer.hpp>", private, "<boost/mpi/detail/forward_skeleton_iarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/archive/detail/interface_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/oserializer.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
    { include: ["<boost/archive/detail/register_archive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/array_fwd.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
    { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
    { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
    { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
    { include: ["<boost/asio/detail/assert.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/execution/detail/as_invocable.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/atomic_count.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/base_from_completion_cond.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/bind_handler.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/blocking_executor_op.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/buffer_sequence_adapter.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/bulk_executor_op.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/call_stack.hpp>", private, "<boost/asio/detail/impl/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/call_stack.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/call_stack.hpp>", private, "<boost/asio/detail/thread_context.hpp>", private ] },
    { include: ["<boost/asio/detail/completion_handler.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/completion_handler.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/completion_handler.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/concurrency_hint.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/conditionally_enabled_event.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/conditionally_enabled_mutex.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/conditionally_enabled_mutex.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/conditionally_enabled_mutex.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/array_fwd.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/array.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/assert.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/base_from_completion_cond.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/chrono.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/concurrency_hint.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/conditionally_enabled_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/cstddef.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/cstdint.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/date_time_fwd.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/dependent_type.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/executor_function.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/functional.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/future.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/global.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_type_requirements.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/handler_work.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/io_object_impl.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/is_buffer_sequence.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/is_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/limits.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/memory.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/non_const_lvalue.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/noncopyable.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_global.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/old_win_sdk_compat.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/operation.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_global.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactor_fwd.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/recycling_allocator.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/scoped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_init.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/source_location.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_global.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/string_view.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/thread_group.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/throw_exception.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_scheduler_fwd.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/type_traits.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/variadic_templates.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_global.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/detail/work_dispatcher.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/execution/detail/as_invocable.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/execution/detail/as_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/execution/detail/as_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/execution/detail/bulk_sender.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/execution/detail/submit_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/execution/detail/void_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/co_spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/defer.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/detached.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/dispatch.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/post.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/use_awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/openssl_types.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/password_callback.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/verify_callback.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
    { include: ["<boost/asio/detail/config.hpp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/consuming_buffers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/chrono_time_traits.hpp>", private ] },
    { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/cstdint.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/date_time_fwd.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/dependent_type.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/descriptor_ops.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/descriptor_read_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/descriptor_write_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/dev_poll_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/dev_poll_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/epoll_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/epoll_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/eventfd_select_interrupter.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/event.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/event.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/event.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/executor_op.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/executor_op.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/executor_op.hpp>", private, "<boost/asio/impl/system_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/executor_op.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/fd_set_adapter.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/impl/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/fenced_block.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/gcc_arm_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/gcc_sync_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/gcc_x86_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/global.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/global.hpp>", private, "<boost/asio/impl/system_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/executor_function.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_alloc_helpers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_cont_helpers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/executor_function.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/handler_work.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/impl/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_invoke_helpers.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/detail/scheduler_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_tracking.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/execution_context.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_type_requirements.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/handler_work.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/hash_map.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/hash_map.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/buffer_sequence_adapter.ipp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/buffer_sequence_adapter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/descriptor_ops.ipp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/descriptor_ops.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/dev_poll_reactor.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/dev_poll_reactor.ipp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/dev_poll_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/epoll_reactor.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/epoll_reactor.ipp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/epoll_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/eventfd_select_interrupter.ipp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/eventfd_select_interrupter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/handler_tracking.ipp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/handler_tracking.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/kqueue_reactor.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/kqueue_reactor.ipp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/kqueue_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/null_event.ipp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/null_event.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/pipe_select_interrupter.ipp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/pipe_select_interrupter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_event.ipp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_event.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_mutex.ipp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_mutex.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_thread.ipp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_thread.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_tss_ptr.ipp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/posix_tss_ptr.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/reactive_descriptor_service.ipp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/reactive_descriptor_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/reactive_serial_port_service.ipp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/reactive_serial_port_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/reactive_socket_service_base.ipp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/reactive_socket_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/resolver_service_base.ipp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/resolver_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/scheduler.ipp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/scheduler.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/select_reactor.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/select_reactor.ipp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/select_reactor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/service_registry.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/service_registry.ipp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/service_registry.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/signal_set_service.ipp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/signal_set_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/socket_ops.ipp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/socket_ops.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/socket_select_interrupter.ipp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/socket_select_interrupter.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/strand_executor_service.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/strand_executor_service.ipp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/strand_executor_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/strand_service.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/strand_service.ipp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/strand_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/throw_error.ipp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/throw_error.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/timer_queue_ptime.ipp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/timer_queue_ptime.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/timer_queue_set.ipp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/timer_queue_set.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_event.ipp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_event.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_handle_service.ipp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_handle_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_io_context.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_io_context.ipp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_io_context.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_serial_port_service.ipp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_serial_port_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_socket_service_base.ipp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_iocp_socket_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_mutex.ipp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_mutex.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_object_handle_service.ipp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_object_handle_service.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winrt_ssocket_service_base.ipp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winrt_ssocket_service_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winrt_timer_scheduler.ipp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winrt_timer_scheduler.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winsock_init.ipp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/winsock_init.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_static_mutex.ipp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_static_mutex.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_thread.ipp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_thread.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_tss_ptr.ipp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/impl/win_tss_ptr.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/detail/keyword_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/kqueue_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/kqueue_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/limits.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/macos_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/executor_function.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/recycling_allocator.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/execution/detail/as_invocable.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/execution/detail/as_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
    { include: ["<boost/asio/detail/memory.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/conditionally_enabled_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/mutex.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/non_const_lvalue.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/concurrency_hint.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/conditionally_enabled_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/object_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/scoped_lock.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/noncopyable.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/detail/null_event.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/null_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
    { include: ["<boost/asio/detail/null_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/null_global.hpp>", private, "<boost/asio/detail/global.hpp>", private ] },
    { include: ["<boost/asio/detail/null_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/null_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/null_signal_blocker.hpp>", private, "<boost/asio/detail/signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/null_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/null_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/null_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/object_pool.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/object_pool.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/old_win_sdk_compat.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/operation.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/scheduler_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/scheduler_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/op_queue.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/pipe_select_interrupter.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/base_from_completion_cond.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/chrono_time_traits.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/conditionally_enabled_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/dependent_type.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/executor_function.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/handler_work.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/io_object_impl.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/is_buffer_sequence.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/is_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/non_const_lvalue.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/noncopyable.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_global.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/object_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/old_win_sdk_compat.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_global.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/recycling_allocator.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scheduler_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scheduler_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scoped_lock.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/scoped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_init.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_global.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/thread_context.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/thread_group.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_global.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/work_dispatcher.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/execution/detail/as_invocable.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/execution/detail/as_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/execution/detail/as_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/execution/detail/bulk_sender.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/execution/detail/submit_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/execution/detail/void_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/co_spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/defer.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/detached.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/dispatch.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/execution_context.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/post.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/serial_port_base.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/system_context.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/system_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/use_awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/address.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/address_v4.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/address_v6.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/basic_endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/network_v4.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ip/impl/network_v6.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/password_callback.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/verify_callback.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/pop_options.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_fd_set_adapter.hpp>", private, "<boost/asio/detail/fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_global.hpp>", private, "<boost/asio/detail/global.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_signal_blocker.hpp>", private, "<boost/asio/detail/signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/posix_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/base_from_completion_cond.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/buffered_stream_storage.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/buffer_resize_guard.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/chrono_time_traits.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/completion_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/conditionally_enabled_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/consuming_buffers.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/dependent_type.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/eventfd_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/executor_function.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_arm_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_hppa_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_sync_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/gcc_x86_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_cont_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_invoke_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/handler_work.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/impl/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/io_object_impl.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/is_buffer_sequence.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/is_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/keyword_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/macos_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/non_const_lvalue.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/noncopyable.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_event.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_global.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/null_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/object_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/old_win_sdk_compat.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/pipe_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_event.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_global.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_signal_blocker.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/posix_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/recycling_allocator.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scheduler_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scheduler_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scoped_lock.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/scoped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_init.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/socket_types.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/solaris_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_event.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_global.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/std_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/thread_context.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/thread_group.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/thread_info_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/throw_error.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_global.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_handle_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_async_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/winsock_init.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/work_dispatcher.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/detail/wrapped_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/execution/detail/as_invocable.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/execution/detail/as_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/execution/detail/as_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/execution/detail/bulk_sender.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/execution/detail/submit_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/execution/detail/void_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/buffered_write_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/co_spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/defer.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/detached.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/dispatch.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/execution_context.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/post.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/serial_port_base.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/system_context.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/system_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/use_awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/use_future.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/address.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/address_v4.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/address_v6.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/basic_endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/network_v4.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ip/impl/network_v6.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/password_callback.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/verify_callback.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/push_options.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_descriptor_service.hpp>", private, "<boost/asio/detail/reactive_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_null_buffers_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_null_buffers_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_null_buffers_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_accept_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_connect_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_recv_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_send_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_sendto_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_socket_service_base.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_wait_op.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactive_wait_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_fwd.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_fwd.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/reactive_descriptor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/descriptor_read_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/descriptor_write_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactive_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/reactor_op_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/reactor_op_queue.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/recycling_allocator.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/recycling_allocator.hpp>", private, "<boost/asio/detail/impl/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/recycling_allocator.hpp>", private, "<boost/asio/impl/executor.hpp>", private ] },
    { include: ["<boost/asio/detail/recycling_allocator.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/recycling_allocator.hpp>", private, "<boost/asio/impl/system_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/recycling_allocator.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/resolve_endpoint_op.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/resolve_op.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/resolve_op.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/resolve_op.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/resolve_query_op.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/resolver_service_base.hpp>", private, "<boost/asio/detail/resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/blocking_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/bulk_executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/executor_op.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/null_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/operation.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/scheduler_operation.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/conditionally_enabled_event.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/conditionally_enabled_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/null_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/null_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/posix_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/posix_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/std_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/std_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_lock.hpp>", private, "<boost/asio/detail/win_static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/strand_service.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/thread_group.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/scoped_ptr.hpp>", private, "<boost/asio/impl/execution_context.hpp>", private ] },
    { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/select_interrupter.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/select_reactor.hpp>", private, "<boost/asio/detail/reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/select_reactor.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/select_reactor.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/select_reactor.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/service_registry.hpp>", private, "<boost/asio/impl/execution_context.hpp>", private ] },
    { include: ["<boost/asio/detail/service_registry.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/signal_handler.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/signal_op.hpp>", private, "<boost/asio/detail/signal_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/signal_op.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_holder.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_sendto_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/socket_holder.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/win_iocp_wait_op.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/detail/winrt_utils.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_ops.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_select_interrupter.hpp>", private, "<boost/asio/detail/select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/buffer_sequence_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/descriptor_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/hash_map.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/io_control.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/local_free_on_block_exit.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/posix_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/reactive_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/reactive_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/socket_ops.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/socket_select_interrupter.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_event.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/detail/win_tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/socket_types.hpp>", private, "<boost/asio/ssl/detail/openssl_types.hpp>", private ] },
    { include: ["<boost/asio/detail/solaris_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/static_mutex.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/static_mutex.hpp>", private, "<boost/asio/detail/win_global.hpp>", private ] },
    { include: ["<boost/asio/detail/static_mutex.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/detail/std_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
    { include: ["<boost/asio/detail/std_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/std_global.hpp>", private, "<boost/asio/detail/global.hpp>", private ] },
    { include: ["<boost/asio/detail/std_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/std_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/std_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/string_view.hpp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_context.hpp>", private, "<boost/asio/detail/recycling_allocator.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_context.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_context.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_context.hpp>", private, "<boost/asio/impl/awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/thread_group.hpp>", private ] },
    { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/thread.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/detail/handler_alloc_helpers.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/detail/recycling_allocator.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/detail/scheduler_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/detail/win_iocp_thread_info.hpp>", private ] },
    { include: ["<boost/asio/detail/thread_info_base.hpp>", private, "<boost/asio/impl/awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/detail/null_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/detail/winapp_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/detail/wince_thread.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/connect.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/read_at.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/read.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/read_until.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/write_at.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/impl/write.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/address.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/address_v4.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/address_v6.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/basic_endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/network_v4.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ip/impl/network_v6.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_error.hpp>", private, "<boost/asio/ssl/impl/context.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/throw_exception.hpp>", private, "<boost/asio/ip/detail/socket_option.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/timer_queue_set.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_base.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue.hpp>", private, "<boost/asio/detail/timer_queue_ptime.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_ptime.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_queue_set.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_scheduler_fwd.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/timer_scheduler.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/tss_ptr.hpp>", private, "<boost/asio/detail/call_stack.hpp>", private ] },
    { include: ["<boost/asio/detail/tss_ptr.hpp>", private, "<boost/asio/detail/handler_tracking.hpp>", private ] },
    { include: ["<boost/asio/detail/tss_ptr.hpp>", private, "<boost/asio/detail/win_global.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/handler_work.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/io_object_impl.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/is_buffer_sequence.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/is_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/non_const_lvalue.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/service_registry.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/strand_executor_service.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/detail/work_dispatcher.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/execution/detail/as_invocable.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/execution/detail/as_operation.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/execution/detail/as_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/execution/detail/bulk_sender.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/execution/detail/submit_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/awaitable.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/spawn.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/system_executor.hpp>", private ] },
    { include: ["<boost/asio/detail/type_traits.hpp>", private, "<boost/asio/impl/thread_pool.hpp>", private ] },
    { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/execution/detail/submit_receiver.hpp>", private ] },
    { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/experimental/impl/as_single.hpp>", private ] },
    { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/impl/compose.hpp>", private ] },
    { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/impl/detached.hpp>", private ] },
    { include: ["<boost/asio/detail/variadic_templates.hpp>", private, "<boost/asio/impl/redirect_error.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_handler.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_handler.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/deadline_timer_service.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/dev_poll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/epoll_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/kqueue_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/select_reactor.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/timer_queue.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/wait_handler.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/wait_op.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/winapp_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/wince_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/win_event.hpp>", private, "<boost/asio/detail/event.hpp>", private ] },
    { include: ["<boost/asio/detail/win_fd_set_adapter.hpp>", private, "<boost/asio/detail/fd_set_adapter.hpp>", private ] },
    { include: ["<boost/asio/detail/win_fenced_block.hpp>", private, "<boost/asio/detail/fenced_block.hpp>", private ] },
    { include: ["<boost/asio/detail/win_global.hpp>", private, "<boost/asio/detail/global.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_handle_read_op.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_handle_service.hpp>", private, "<boost/asio/detail/win_iocp_serial_port_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_handle_write_op.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/resolve_endpoint_op.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/resolve_query_op.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/resolver_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/signal_set_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/win_iocp_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/win_object_handle_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_io_context.hpp>", private, "<boost/asio/detail/winrt_timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_null_buffers_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_operation.hpp>", private, "<boost/asio/detail/operation.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_operation.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_overlapped_op.hpp>", private, "<boost/asio/detail/win_iocp_overlapped_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_connect_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_recvfrom_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_recvmsg_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_recv_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_send_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_send_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_service_base.hpp>", private, "<boost/asio/detail/win_iocp_socket_accept_op.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_socket_service_base.hpp>", private, "<boost/asio/detail/win_iocp_socket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_thread_info.hpp>", private, "<boost/asio/detail/win_iocp_io_context.hpp>", private ] },
    { include: ["<boost/asio/detail/win_iocp_wait_op.hpp>", private, "<boost/asio/detail/win_iocp_socket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/win_mutex.hpp>", private, "<boost/asio/detail/mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_manager.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_manager.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_async_manager.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_resolve_op.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_socket_connect_op.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_socket_recv_op.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_async_op.hpp>", private, "<boost/asio/detail/winrt_socket_send_op.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_resolve_op.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_socket_connect_op.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_socket_recv_op.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_socket_send_op.hpp>", private, "<boost/asio/detail/winrt_ssocket_service_base.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_ssocket_service_base.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_timer_scheduler.hpp>", private, "<boost/asio/detail/timer_scheduler.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_utils.hpp>", private, "<boost/asio/detail/winrt_resolver_service.hpp>", private ] },
    { include: ["<boost/asio/detail/winrt_utils.hpp>", private, "<boost/asio/detail/winrt_ssocket_service.hpp>", private ] },
    { include: ["<boost/asio/detail/winsock_init.hpp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/detail/win_static_mutex.hpp>", private, "<boost/asio/detail/static_mutex.hpp>", private ] },
    { include: ["<boost/asio/detail/win_thread.hpp>", private, "<boost/asio/detail/thread.hpp>", private ] },
    { include: ["<boost/asio/detail/win_tss_ptr.hpp>", private, "<boost/asio/detail/tss_ptr.hpp>", private ] },
    { include: ["<boost/asio/detail/work_dispatcher.hpp>", private, "<boost/asio/impl/defer.hpp>", private ] },
    { include: ["<boost/asio/detail/work_dispatcher.hpp>", private, "<boost/asio/impl/dispatch.hpp>", private ] },
    { include: ["<boost/asio/detail/work_dispatcher.hpp>", private, "<boost/asio/impl/post.hpp>", private ] },
    { include: ["<boost/asio/execution/detail/as_invocable.hpp>", private, "<boost/asio/execution/detail/as_operation.hpp>", private ] },
    { include: ["<boost/asio/execution/impl/bad_executor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/execution/impl/receiver_invocation_error.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/generic/detail/impl/endpoint.ipp>", private, "<boost/asio/generic/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/generic/detail/impl/endpoint.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/error.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/execution_context.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/executor.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/handler_alloc_hook.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/io_context.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/multiple_exceptions.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/serial_port_base.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/system_context.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/impl/thread_pool.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/detail/impl/endpoint.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/detail/impl/endpoint.ipp>", private, "<boost/asio/ip/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/ip/impl/address.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/impl/address_v4.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/impl/address_v6.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/impl/host_name.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/impl/network_v4.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ip/impl/network_v6.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/local/detail/impl/endpoint.ipp>", private, "<boost/asio/impl/src.hpp>", private ] },
    { include: ["<boost/asio/local/detail/impl/endpoint.ipp>", private, "<boost/asio/local/detail/endpoint.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/buffered_handshake_op.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/handshake_op.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/read_op.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/shutdown_op.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/stream_core.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/engine.hpp>", private, "<boost/asio/ssl/detail/write_op.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/impl/engine.ipp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/impl/engine.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/impl/openssl_init.ipp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/impl/openssl_init.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/openssl_types.hpp>", private, "<boost/asio/ssl/detail/openssl_init.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/stream_core.hpp>", private, "<boost/asio/ssl/detail/io.hpp>", private ] },
    { include: ["<boost/asio/ssl/detail/verify_callback.hpp>", private, "<boost/asio/ssl/detail/engine.hpp>", private ] },
    { include: ["<boost/asio/ssl/impl/context.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ssl/impl/error.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ssl/impl/host_name_verification.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/asio/ssl/impl/rfc2818_verification.ipp>", private, "<boost/asio/ssl/impl/src.hpp>", private ] },
    { include: ["<boost/atomic/detail/addressof.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/addressof.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/aligned_variable.hpp>", private, "<boost/atomic/detail/atomic_flag_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/aligned_variable.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/aligned_variable.hpp>", private, "<boost/atomic/detail/once_flag.hpp>", private ] },
    { include: ["<boost/atomic/detail/aligned_variable.hpp>", private, "<boost/atomic/detail/storage_traits.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_cast.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_cast.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_cast.hpp>", private, "<boost/atomic/detail/bitwise_fp_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_cast.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_fp_cast.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_fp_cast.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_fp_cast.hpp>", private, "<boost/atomic/detail/extra_fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_fp_cast.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_fp_cast.hpp>", private, "<boost/atomic/detail/fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/bitwise_fp_cast.hpp>", private, "<boost/atomic/detail/fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/gcc_arm_asm_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/ops_gcc_aarch32_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/ops_gcc_aarch64_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/wait_caps_dragonfly_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/wait_caps_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/wait_caps_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/capabilities.hpp>", private, "<boost/atomic/detail/wait_caps_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/cas_based_exchange.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/cas_based_exchange.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/cas_based_exchange.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/addressof.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/aligned_variable.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/atomic_flag_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/bitwise_fp_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_arch_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/caps_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/cas_based_exchange.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/classify.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_operations_emulated_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_ops_cas_based.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_fp_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fence_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/float_sizes.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fp_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/gcc_arm_asm_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/gcc_atomic_memory_order_utils.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/interlocked.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/intptr.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/int_sizes.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/link.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/lock_pool.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/memory_order_utils.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/once_flag.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_aarch32_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_aarch64_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_arm_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_gcc_ppc_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/ops_msvc_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/pause.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/platform.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/storage_traits.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/string_ops.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/alignment_of.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/conditional.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/integral_constant.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_floating_point.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_function.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_iec559.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_integral.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_signed.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_trivially_copyable.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/is_trivially_default_constructible.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/make_signed.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/type_traits/make_unsigned.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_caps_dragonfly_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_caps_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_caps_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_caps_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_ops_dragonfly_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_ops_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_ops_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/config.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations_fwd.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations.hpp>", private, "<boost/atomic/detail/core_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_arch_operations.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_emulated_fwd.hpp>", private, "<boost/atomic/detail/core_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_emulated.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_emulated.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_fwd.hpp>", private, "<boost/atomic/detail/core_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_fwd.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_fwd.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_fwd.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations_fwd.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations.hpp>", private, "<boost/atomic/detail/atomic_flag_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_operations.hpp>", private, "<boost/atomic/detail/once_flag.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_ops_cas_based.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_ops_cas_based.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_ops_cas_based.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/core_ops_cas_based.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_fp_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_fp_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_fp_operations.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_fp_operations.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_fp_ops_emulated.hpp>", private, "<boost/atomic/detail/extra_fp_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_fp_ops_generic.hpp>", private, "<boost/atomic/detail/extra_fp_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations_fwd.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_operations.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_emulated.hpp>", private, "<boost/atomic/detail/extra_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/extra_ops_generic.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/fence_arch_operations.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/fence_arch_operations.hpp>", private, "<boost/atomic/detail/fence_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/fence_arch_operations.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/fence_arch_operations.hpp>", private, "<boost/atomic/detail/ops_gcc_arm_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/fence_operations_emulated.hpp>", private, "<boost/atomic/detail/fence_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/fence_operations.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/float_sizes.hpp>", private, "<boost/atomic/detail/bitwise_fp_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/float_sizes.hpp>", private, "<boost/atomic/detail/capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/float_sizes.hpp>", private, "<boost/atomic/detail/wait_capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/addressof.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/aligned_variable.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/atomic_flag_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/bitwise_fp_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/cas_based_exchange.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/classify.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_operations_emulated_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_ops_cas_based.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_fp_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fence_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fp_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/gcc_atomic_memory_order_utils.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/intptr.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/lock_pool.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/memory_order_utils.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/once_flag.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/ops_gcc_arm_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/ops_gcc_ppc_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/ops_msvc_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/pause.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/storage_traits.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_ops_dragonfly_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_ops_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_ops_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/footer.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/fp_operations_fwd.hpp>", private, "<boost/atomic/detail/fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/fp_operations_fwd.hpp>", private, "<boost/atomic/detail/fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/fp_operations.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/fp_operations.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/fp_ops_emulated.hpp>", private, "<boost/atomic/detail/fp_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/fp_ops_generic.hpp>", private, "<boost/atomic/detail/fp_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/futex.hpp>", private, "<boost/atomic/detail/platform.hpp>", private ] },
    { include: ["<boost/atomic/detail/futex.hpp>", private, "<boost/atomic/detail/wait_caps_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/futex.hpp>", private, "<boost/atomic/detail/wait_ops_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/gcc_arm_asm_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/gcc_arm_asm_common.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/gcc_arm_asm_common.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/gcc_atomic_memory_order_utils.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/gcc_atomic_memory_order_utils.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/addressof.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/aligned_variable.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/atomic_flag_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/bitwise_fp_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/cas_based_exchange.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/classify.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_operations_emulated_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_ops_cas_based.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_fp_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fence_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fp_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fp_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/gcc_atomic_memory_order_utils.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/intptr.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/lock_pool.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/memory_order_utils.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/once_flag.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/ops_gcc_arm_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/ops_gcc_ppc_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/ops_msvc_common.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/pause.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/storage_traits.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_operations_fwd.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_ops_dragonfly_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_ops_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_ops_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/header.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/integral_conversions.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/integral_conversions.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/integral_conversions.hpp>", private, "<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private ] },
    { include: ["<boost/atomic/detail/integral_conversions.hpp>", private, "<boost/atomic/detail/extra_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/interlocked.hpp>", private, "<boost/atomic/detail/fence_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/intptr.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/intptr.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/intptr.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/intptr.hpp>", private, "<boost/atomic/detail/futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/intptr.hpp>", private, "<boost/atomic/detail/lock_pool.hpp>", private ] },
    { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/caps_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/wait_capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/wait_caps_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/int_sizes.hpp>", private, "<boost/atomic/detail/wait_ops_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/link.hpp>", private, "<boost/atomic/detail/lock_pool.hpp>", private ] },
    { include: ["<boost/atomic/detail/link.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/lock_pool.hpp>", private, "<boost/atomic/detail/core_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/lock_pool.hpp>", private, "<boost/atomic/detail/fence_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/lock_pool.hpp>", private, "<boost/atomic/detail/wait_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/lock_pool.hpp>", private, "<boost/atomic/detail/wait_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/memory_order_utils.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/memory_order_utils.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/once_flag.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_aarch32_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_aarch32_common.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_aarch64_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_aarch64_common.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_arm_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_arm_common.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_ppc_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_gcc_ppc_common.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/fence_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/ops_msvc_common.hpp>", private, "<boost/atomic/detail/fence_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/pause.hpp>", private, "<boost/atomic/detail/wait_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/caps_arch_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/core_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/fence_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/fence_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/platform.hpp>", private, "<boost/atomic/detail/wait_capabilities.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_alpha.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_sparc.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_operations_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_ops_gcc_atomic.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_ops_linux_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extending_cas_based_arithmetic.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch32.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_aarch64.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_ppc.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/extra_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/storage_traits.hpp>", private, "<boost/atomic/detail/fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/string_ops.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/string_ops.hpp>", private, "<boost/atomic/detail/core_arch_ops_gcc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/string_ops.hpp>", private, "<boost/atomic/detail/storage_traits.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/alignment_of.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/alignment_of.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/alignment_of.hpp>", private, "<boost/atomic/detail/storage_traits.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/conditional.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/conditional.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/integral_constant.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/integral_constant.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/integral_constant.hpp>", private, "<boost/atomic/detail/bitwise_cast.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/integral_constant.hpp>", private, "<boost/atomic/detail/core_ops_gcc_sync.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/integral_constant.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_floating_point.hpp>", private, "<boost/atomic/detail/classify.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_function.hpp>", private, "<boost/atomic/detail/classify.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_iec559.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_integral.hpp>", private, "<boost/atomic/detail/classify.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_integral.hpp>", private, "<boost/atomic/detail/extra_fp_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_signed.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_signed.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_signed.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/is_trivially_default_constructible.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/make_signed.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_arm.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/make_signed.hpp>", private, "<boost/atomic/detail/core_arch_ops_msvc_x86.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/make_signed.hpp>", private, "<boost/atomic/detail/core_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/make_signed.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/type_traits/make_unsigned.hpp>", private, "<boost/atomic/detail/integral_conversions.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations_fwd.hpp>", private, "<boost/atomic/detail/wait_ops_dragonfly_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations_fwd.hpp>", private, "<boost/atomic/detail/wait_ops_emulated.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations_fwd.hpp>", private, "<boost/atomic/detail/wait_ops_freebsd_umtx.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations_fwd.hpp>", private, "<boost/atomic/detail/wait_ops_futex.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations_fwd.hpp>", private, "<boost/atomic/detail/wait_ops_generic.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations_fwd.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations.hpp>", private, "<boost/atomic/detail/atomic_flag_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations.hpp>", private, "<boost/atomic/detail/atomic_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_operations.hpp>", private, "<boost/atomic/detail/atomic_ref_impl.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_ops_emulated.hpp>", private, "<boost/atomic/detail/wait_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_ops_generic.hpp>", private, "<boost/atomic/detail/wait_operations.hpp>", private ] },
    { include: ["<boost/atomic/detail/wait_ops_generic.hpp>", private, "<boost/atomic/detail/wait_ops_windows.hpp>", private ] },
    { include: ["<boost/beast/core/detail/allocator.hpp>", private, "<boost/beast/core/impl/saved_handler.hpp>", private ] },
    { include: ["<boost/beast/core/detail/base64.hpp>", private, "<boost/beast/websocket/detail/hybi13.hpp>", private ] },
    { include: ["<boost/beast/core/detail/base64.ipp>", private, "<boost/beast/core/detail/base64.hpp>", private ] },
    { include: ["<boost/beast/core/detail/bind_continuation.hpp>", private, "<boost/beast/websocket/impl/close.hpp>", private ] },
    { include: ["<boost/beast/core/detail/bind_continuation.hpp>", private, "<boost/beast/websocket/impl/ping.hpp>", private ] },
    { include: ["<boost/beast/core/detail/bind_continuation.hpp>", private, "<boost/beast/websocket/impl/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/bind_continuation.hpp>", private, "<boost/beast/websocket/impl/teardown.hpp>", private ] },
    { include: ["<boost/beast/core/detail/bind_continuation.hpp>", private, "<boost/beast/websocket/impl/write.hpp>", private ] },
    { include: ["<boost/beast/core/detail/buffer.hpp>", private, "<boost/beast/http/impl/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/buffer.hpp>", private, "<boost/beast/websocket/impl/accept.hpp>", private ] },
    { include: ["<boost/beast/core/detail/buffer.hpp>", private, "<boost/beast/websocket/impl/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/buffers_ref.hpp>", private, "<boost/beast/http/impl/fields.hpp>", private ] },
    { include: ["<boost/beast/core/detail/buffers_ref.hpp>", private, "<boost/beast/http/impl/serializer.hpp>", private ] },
    { include: ["<boost/beast/core/detail/char_buffer.hpp>", private, "<boost/beast/http/detail/basic_parser.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/http/impl/fields.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/http/impl/file_body_win32.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/websocket/detail/impl_base.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/websocket/impl/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/websocket/impl/stream.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/core/detail/clamp.hpp>", private, "<boost/beast/websocket/impl/write.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/core/detail/bind_continuation.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/core/detail/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/core/detail/sha1.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/core/detail/temporary_buffer.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/http/impl/serializer.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/websocket/detail/mask.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/websocket/detail/prng.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/websocket/impl/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/config.hpp>", private, "<boost/beast/websocket/impl/write.hpp>", private ] },
    { include: ["<boost/beast/core/detail/impl/read.hpp>", private, "<boost/beast/core/detail/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/impl/temporary_buffer.ipp>", private, "<boost/beast/core/detail/temporary_buffer.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/core/detail/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/core/impl/buffered_read_stream.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/_experimental/http/impl/icy_stream.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/_experimental/test/impl/stream.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/http/impl/file_body_win32.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/http/impl/write.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/websocket/detail/type_traits.hpp>", private ] },
    { include: ["<boost/beast/core/detail/is_invocable.hpp>", private, "<boost/beast/websocket/impl/teardown.hpp>", private ] },
    { include: ["<boost/beast/core/detail/read.hpp>", private, "<boost/beast/http/impl/read.hpp>", private ] },
    { include: ["<boost/beast/core/detail/remap_post_to_defer.hpp>", private, "<boost/beast/core/detail/bind_continuation.hpp>", private ] },
    { include: ["<boost/beast/core/detail/service_base.hpp>", private, "<boost/beast/_experimental/test/impl/stream.hpp>", private ] },
    { include: ["<boost/beast/core/detail/service_base.hpp>", private, "<boost/beast/websocket/detail/service.hpp>", private ] },
    { include: ["<boost/beast/core/detail/sha1.ipp>", private, "<boost/beast/core/detail/sha1.hpp>", private ] },
    { include: ["<boost/beast/core/detail/static_string.hpp>", private, "<boost/beast/core/impl/static_string.hpp>", private ] },
    { include: ["<boost/beast/core/detail/static_string.hpp>", private, "<boost/beast/http/impl/fields.hpp>", private ] },
    { include: ["<boost/beast/core/detail/temporary_buffer.hpp>", private, "<boost/beast/http/impl/fields.hpp>", private ] },
    { include: ["<boost/beast/core/detail/tuple.hpp>", private, "<boost/beast/core/detail/bind_handler.hpp>", private ] },
    { include: ["<boost/beast/core/detail/tuple.hpp>", private, "<boost/beast/core/impl/buffers_cat.hpp>", private ] },
    { include: ["<boost/beast/core/detail/type_traits.hpp>", private, "<boost/beast/core/detail/variant.hpp>", private ] },
    { include: ["<boost/beast/core/detail/type_traits.hpp>", private, "<boost/beast/http/detail/type_traits.hpp>", private ] },
    { include: ["<boost/beast/core/detail/type_traits.hpp>", private, "<boost/beast/zlib/detail/inflate_stream.hpp>", private ] },
    { include: ["<boost/beast/core/detail/variant.hpp>", private, "<boost/beast/core/impl/buffers_cat.hpp>", private ] },
    { include: ["<boost/beast/core/detail/varint.hpp>", private, "<boost/beast/http/impl/chunk_encode.hpp>", private ] },
    { include: ["<boost/beast/http/detail/basic_parser.ipp>", private, "<boost/beast/http/detail/basic_parser.hpp>", private ] },
    { include: ["<boost/beast/http/detail/rfc7230.hpp>", private, "<boost/beast/http/detail/basic_parser.hpp>", private ] },
    { include: ["<boost/beast/http/detail/rfc7230.hpp>", private, "<boost/beast/http/impl/chunk_encode.hpp>", private ] },
    { include: ["<boost/beast/http/detail/rfc7230.hpp>", private, "<boost/beast/http/impl/rfc7230.hpp>", private ] },
    { include: ["<boost/beast/http/detail/rfc7230.ipp>", private, "<boost/beast/http/detail/rfc7230.hpp>", private ] },
    { include: ["<boost/beast/http/impl/fields.ipp>", private, "<boost/beast/http/impl/fields.hpp>", private ] },
    { include: ["<boost/beast/http/impl/rfc7230.ipp>", private, "<boost/beast/http/impl/rfc7230.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/frame.hpp>", private, "<boost/beast/websocket/detail/impl_base.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/frame.hpp>", private, "<boost/beast/websocket/impl/ping.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/frame.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/frame.hpp>", private, "<boost/beast/websocket/impl/write.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/hybi13.hpp>", private, "<boost/beast/websocket/impl/stream.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/hybi13.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/hybi13.ipp>", private, "<boost/beast/websocket/detail/hybi13.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/mask.hpp>", private, "<boost/beast/websocket/impl/close.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/mask.hpp>", private, "<boost/beast/websocket/impl/read.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/mask.hpp>", private, "<boost/beast/websocket/impl/stream.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/mask.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/mask.hpp>", private, "<boost/beast/websocket/impl/write.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/mask.ipp>", private, "<boost/beast/websocket/detail/mask.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/pmd_extension.hpp>", private, "<boost/beast/websocket/detail/impl_base.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/pmd_extension.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/pmd_extension.ipp>", private, "<boost/beast/websocket/detail/pmd_extension.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/prng.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/prng.ipp>", private, "<boost/beast/websocket/detail/prng.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/service.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/service.ipp>", private, "<boost/beast/websocket/detail/service.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/soft_mutex.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/type_traits.hpp>", private, "<boost/beast/websocket/impl/accept.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/type_traits.hpp>", private, "<boost/beast/websocket/impl/handshake.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/utf8_checker.hpp>", private, "<boost/beast/websocket/detail/frame.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/utf8_checker.hpp>", private, "<boost/beast/websocket/impl/stream_impl.hpp>", private ] },
    { include: ["<boost/beast/websocket/detail/utf8_checker.ipp>", private, "<boost/beast/websocket/detail/utf8_checker.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/accept.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/close.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/handshake.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/ping.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/read.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/stream.hpp>", private ] },
    { include: ["<boost/beast/websocket/impl/stream_impl.hpp>", private, "<boost/beast/websocket/impl/write.hpp>", private ] },
    { include: ["<boost/beast/zlib/detail/bitstream.hpp>", private, "<boost/beast/zlib/detail/inflate_stream.hpp>", private ] },
    { include: ["<boost/beast/zlib/detail/deflate_stream.ipp>", private, "<boost/beast/zlib/detail/deflate_stream.hpp>", private ] },
    { include: ["<boost/beast/zlib/detail/inflate_stream.ipp>", private, "<boost/beast/zlib/detail/inflate_stream.hpp>", private ] },
    { include: ["<boost/beast/zlib/detail/ranges.hpp>", private, "<boost/beast/zlib/detail/deflate_stream.hpp>", private ] },
    { include: ["<boost/beast/zlib/detail/ranges.hpp>", private, "<boost/beast/zlib/detail/inflate_stream.hpp>", private ] },
    { include: ["<boost/beast/zlib/detail/window.hpp>", private, "<boost/beast/zlib/detail/inflate_stream.hpp>", private ] },
    { include: ["<boost/bimap/detail/concept_tags.hpp>", private, "<boost/bimap/detail/is_set_type_of.hpp>", private ] },
    { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
    { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/detail/metadata_access_builder.hpp>", private ] },
    { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/detail/mutant.hpp>", private ] },
    { include: ["<boost/bimap/detail/debug/static_error.hpp>", private, "<boost/bimap/relation/detail/static_access_builder.hpp>", private ] },
    { include: ["<boost/bimap/detail/is_set_type_of.hpp>", private, "<boost/bimap/detail/manage_additional_parameters.hpp>", private ] },
    { include: ["<boost/bimap/detail/is_set_type_of.hpp>", private, "<boost/bimap/detail/manage_bimap_key.hpp>", private ] },
    { include: ["<boost/bimap/detail/manage_additional_parameters.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
    { include: ["<boost/bimap/detail/manage_bimap_key.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
    { include: ["<boost/bimap/detail/map_view_iterator.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
    { include: ["<boost/bimap/detail/map_view_iterator.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
    { include: ["<boost/bimap/detail/modifier_adaptor.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
    { include: ["<boost/bimap/detail/modifier_adaptor.hpp>", private, "<boost/bimap/detail/set_view_base.hpp>", private ] },
    { include: ["<boost/bimap/detail/set_view_iterator.hpp>", private, "<boost/bimap/detail/bimap_core.hpp>", private ] },
    { include: ["<boost/bimap/detail/set_view_iterator.hpp>", private, "<boost/bimap/detail/set_view_base.hpp>", private ] },
    { include: ["<boost/bimap/relation/detail/metadata_access_builder.hpp>", private, "<boost/bimap/detail/map_view_iterator.hpp>", private ] },
    { include: ["<boost/bimap/relation/detail/mutant.hpp>", private, "<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private ] },
    { include: ["<boost/bimap/relation/detail/static_access_builder.hpp>", private, "<boost/bimap/detail/map_view_iterator.hpp>", private ] },
    { include: ["<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private, "<boost/bimap/detail/map_view_base.hpp>", private ] },
    { include: ["<boost/bimap/relation/detail/to_mutable_relation_functor.hpp>", private, "<boost/bimap/detail/set_view_base.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/forward_declarations.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/is_invocable_impl.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/parameter_index_helper.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/qualifier_flags.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/sfinae_errors.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/config.hpp>", private, "<boost/callable_traits/detail/utility.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/default_callable_traits.hpp>", private, "<boost/callable_traits/detail/forward_declarations.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/default_callable_traits.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/default_callable_traits.hpp>", private, "<boost/callable_traits/detail/function_object.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/default_callable_traits.hpp>", private, "<boost/callable_traits/detail/pmd.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/default_callable_traits.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/forward_declarations.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/forward_declarations.hpp>", private, "<boost/callable_traits/detail/function_object.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/forward_declarations.hpp>", private, "<boost/callable_traits/detail/is_invocable_impl.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/forward_declarations.hpp>", private, "<boost/callable_traits/detail/pmd.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/forward_declarations.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/forward_declarations.hpp>", private, "<boost/callable_traits/detail/traits.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/function.hpp>", private, "<boost/callable_traits/detail/core.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/function.hpp>", private, "<boost/callable_traits/detail/pmd.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/function_object.hpp>", private, "<boost/callable_traits/detail/core.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/pmd.hpp>", private, "<boost/callable_traits/detail/core.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/pmf.hpp>", private, "<boost/callable_traits/detail/core.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/pmf.hpp>", private, "<boost/callable_traits/detail/function_object.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/polyfills/disjunction.hpp>", private, "<boost/callable_traits/detail/config.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/polyfills/make_index_sequence.hpp>", private, "<boost/callable_traits/detail/config.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/qualifier_flags.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/qualifier_flags.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/qualifier_flags.hpp>", private, "<boost/callable_traits/detail/set_function_qualifiers.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/qualifier_flags.hpp>", private, "<boost/callable_traits/detail/utility.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/set_function_qualifiers.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/set_function_qualifiers.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/sfinae_errors.hpp>", private, "<boost/callable_traits/detail/utility.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/traits.hpp>", private, "<boost/callable_traits/detail/core.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/traits.hpp>", private, "<boost/callable_traits/detail/pmd.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_2.hpp>", private, "<boost/callable_traits/detail/unguarded/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_3.hpp>", private, "<boost/callable_traits/detail/unguarded/function_2.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_ptr_2.hpp>", private, "<boost/callable_traits/detail/unguarded/function_ptr.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_ptr_3.hpp>", private, "<boost/callable_traits/detail/unguarded/function_ptr_2.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_ptr.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_ptr_varargs_2.hpp>", private, "<boost/callable_traits/detail/unguarded/function_ptr_varargs.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_ptr_varargs_3.hpp>", private, "<boost/callable_traits/detail/unguarded/function_ptr_varargs_2.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/function_ptr_varargs.hpp>", private, "<boost/callable_traits/detail/function.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_2.hpp>", private, "<boost/callable_traits/detail/unguarded/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_3.hpp>", private, "<boost/callable_traits/detail/unguarded/pmf_2.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_4.hpp>", private, "<boost/callable_traits/detail/unguarded/pmf_3.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_varargs_2.hpp>", private, "<boost/callable_traits/detail/unguarded/pmf_varargs.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_varargs_3.hpp>", private, "<boost/callable_traits/detail/unguarded/pmf_varargs_2.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_varargs_4.hpp>", private, "<boost/callable_traits/detail/unguarded/pmf_varargs_3.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/unguarded/pmf_varargs.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/utility.hpp>", private, "<boost/callable_traits/detail/core.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/utility.hpp>", private, "<boost/callable_traits/detail/function_object.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/utility.hpp>", private, "<boost/callable_traits/detail/is_invocable_impl.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/utility.hpp>", private, "<boost/callable_traits/detail/pmd.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/utility.hpp>", private, "<boost/callable_traits/detail/pmf.hpp>", private ] },
    { include: ["<boost/callable_traits/detail/utility.hpp>", private, "<boost/callable_traits/detail/traits.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/mac/chrono.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp>", private, "<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/mac/thread_clock.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/posix/chrono.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp>", private, "<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/posix/thread_clock.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/win/chrono.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/win/process_cpu_clocks.hpp>", private, "<boost/chrono/detail/inlined/process_cpu_clocks.hpp>", private ] },
    { include: ["<boost/chrono/detail/inlined/win/thread_clock.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
    { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/detail/inlined/chrono.hpp>", private ] },
    { include: ["<boost/chrono/detail/system.hpp>", private, "<boost/chrono/detail/inlined/thread_clock.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/merge_path.hpp>", private, "<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private, "<boost/compute/algorithm/detail/scan.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/scan_on_gpu.hpp>", private, "<boost/compute/algorithm/detail/scan.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/serial_reduce.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/algorithm/detail/serial_scan.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
    { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/serial_count_if.hpp>", private ] },
    { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private ] },
    { include: ["<boost/compute/container/detail/scalar.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private ] },
    { include: ["<boost/compute/detail/cl_versions.hpp>", private, "<boost/compute/detail/nvidia_compute_capability.hpp>", private ] },
    { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/detail/buffer_value.hpp>", private ] },
    { include: ["<boost/compute/detail/device_ptr.hpp>", private, "<boost/compute/detail/meta_kernel.hpp>", private ] },
    { include: ["<boost/compute/detail/getenv.hpp>", private, "<boost/compute/detail/path.hpp>", private ] },
    { include: ["<boost/compute/detail/global_static.hpp>", private, "<boost/compute/detail/parameter_cache.hpp>", private ] },
    { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/detail/device_ptr.hpp>", private ] },
    { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/detail/print_range.hpp>", private ] },
    { include: ["<boost/compute/detail/is_buffer_iterator.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
    { include: ["<boost/compute/detail/is_contiguous_iterator.hpp>", private, "<boost/compute/detail/iterator_traits.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_plus_distance.hpp>", private, "<boost/compute/algorithm/detail/copy_to_host.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/balanced_path.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/compact.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/inplace_reduce.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_path.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/radix_sort.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/scan_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/search_all.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_accumulate.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_count_if.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_merge.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/algorithm/detail/serial_scan.hpp>", private ] },
    { include: ["<boost/compute/detail/iterator_range_size.hpp>", private, "<boost/compute/detail/print_range.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/balanced_path.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/compact.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_threads.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_path.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_sort_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/merge_with_merge_path.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/scan_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/search_all.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_accumulate.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_count_if.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_find_extrema.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_merge.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce_by_key.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_reduce.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/algorithm/detail/serial_scan.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/functional/detail/unpack.hpp>", private ] },
    { include: ["<boost/compute/detail/meta_kernel.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/binary_find.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/find_extrema_with_reduce.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/find_if_with_atomics.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/radix_sort.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/parameter_cache.hpp>", private, "<boost/compute/algorithm/detail/scan_on_cpu.hpp>", private ] },
    { include: ["<boost/compute/detail/path.hpp>", private, "<boost/compute/detail/parameter_cache.hpp>", private ] },
    { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/algorithm/detail/reduce_by_key_with_scan.hpp>", private ] },
    { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/container/detail/scalar.hpp>", private ] },
    { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/detail/buffer_value.hpp>", private ] },
    { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/detail/device_ptr.hpp>", private ] },
    { include: ["<boost/compute/detail/read_write_single_value.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
    { include: ["<boost/compute/detail/sha1.hpp>", private, "<boost/compute/detail/meta_kernel.hpp>", private ] },
    { include: ["<boost/compute/detail/vendor.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
    { include: ["<boost/compute/detail/vendor.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/detail/work_size.hpp>", private, "<boost/compute/algorithm/detail/copy_on_device.hpp>", private ] },
    { include: ["<boost/compute/detail/work_size.hpp>", private, "<boost/compute/algorithm/detail/reduce_on_gpu.hpp>", private ] },
    { include: ["<boost/compute/functional/detail/nvidia_ballot.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private ] },
    { include: ["<boost/compute/functional/detail/nvidia_popcount.hpp>", private, "<boost/compute/algorithm/detail/count_if_with_ballot.hpp>", private ] },
    { include: ["<boost/compute/iterator/detail/get_base_iterator_buffer.hpp>", private, "<boost/compute/iterator/detail/swizzle_iterator.hpp>", private ] },
    { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/borland.hpp>", private ] },
    { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/general.hpp>", private ] },
    { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/has_constraints.hpp>", private ] },
    { include: ["<boost/concept/detail/backward_compatibility.hpp>", private, "<boost/concept/detail/msvc.hpp>", private ] },
    { include: ["<boost/concept/detail/concept_def.hpp>", private, "<boost/icl/detail/concept_check.hpp>", private ] },
    { include: ["<boost/concept/detail/concept_undef.hpp>", private, "<boost/icl/detail/concept_check.hpp>", private ] },
    { include: ["<boost/concept/detail/has_constraints.hpp>", private, "<boost/concept/detail/general.hpp>", private ] },
    { include: ["<boost/concept/detail/has_constraints.hpp>", private, "<boost/concept/detail/msvc.hpp>", private ] },
    { include: ["<boost/config/detail/posix_features.hpp>", private, "<boost/config/detail/select_platform_config.hpp>", private ] },
    { include: ["<boost/container/detail/adaptive_node_pool_impl.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/adaptive_node_pool_impl.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/addressof.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/addressof.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/algorithm.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/allocation_type.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/allocator_version_traits.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/alloc_helpers.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/alloc_lib.h>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
    { include: ["<boost/container/detail/auto_link.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
    { include: ["<boost/container/detail/block_list.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
    { include: ["<boost/container/detail/compare_functors.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/allocation_type.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/function_detector.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/guards_dended.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/math_functions.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/mutex.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/next_capacity.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pair_key_mapped_of_value.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pool_common.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/singleton.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/thread_mutex.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/value_init.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
    { include: ["<boost/container/detail/config_begin.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/allocation_type.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/function_detector.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/guards_dended.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/math_functions.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/mutex.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/next_capacity.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pair_key_mapped_of_value.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pool_common.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/singleton.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/thread_mutex.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/value_init.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
    { include: ["<boost/container/detail/config_end.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/container/detail/construct_in_place.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
    { include: ["<boost/container/detail/construct_in_place.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/container_rebind.hpp>", private, "<boost/container/detail/container_or_allocator_rebind.hpp>", private ] },
    { include: ["<boost/container/detail/copy_move_algo.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
    { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/destroyers.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/dlmalloc.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
    { include: ["<boost/container/detail/is_container.hpp>", private, "<boost/container/detail/container_or_allocator_rebind.hpp>", private ] },
    { include: ["<boost/container/detail/is_container.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/is_contiguous_container.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/is_sorted.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/container/detail/iterator.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/construct_in_place.hpp>", private ] },
    { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/iterators.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/math_functions.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/math_functions.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/minimal_char_traits_header.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/container/detail/min_max.hpp>", private, "<boost/container/detail/next_capacity.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/iterator.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/mpl.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
    { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/container/detail/multiallocation_chain.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/container/detail/mutex.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/mutex.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/node_alloc_holder.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/node_pool_impl.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/node_pool_impl.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/pair.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/container/detail/placement_new.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/container/detail/pool_common_alloc.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/pool_common_alloc.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/pool_common.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/pool_common.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/pool_common.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
    { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/std_fwd.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/transform_iterator.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/container/detail/transform_iterator.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/container/detail/type_traits.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/construct_in_place.hpp>", private ] },
    { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/value_init.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/variadic_templates_tools.hpp>", private, "<boost/interprocess/detail/variadic_templates_tools.hpp>", private ] },
    { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
    { include: ["<boost/container/detail/version_type.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/allocation_type.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/allocator_version_traits.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/compare_functors.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/dlmalloc.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/guards_dended.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/math_functions.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/mutex.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/next_capacity.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/node_pool.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pair_key_mapped_of_value.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pool_common_alloc.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pool_common.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/pool_resource.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/singleton.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/thread_mutex.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/value_init.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/variadic_templates_tools.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/container/detail/version_type.hpp>", private ] },
    { include: ["<boost/container/detail/workaround.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/container_hash/detail/float_functions.hpp>", private, "<boost/container_hash/detail/hash_float.hpp>", private ] },
    { include: ["<boost/container_hash/detail/limits.hpp>", private, "<boost/container_hash/detail/hash_float.hpp>", private ] },
    { include: ["<boost/context/detail/apply.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/apply.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/disable_overload.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/externc.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/fcontext.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/index_sequence.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/invoke.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/prefetch.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/context/detail/tuple.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine2/detail/config.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine2/detail/decay_copy.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/context/detail/config.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
    { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/coroutine2/detail/disable_overload.hpp>", private ] },
    { include: ["<boost/context/detail/disable_overload.hpp>", private, "<boost/fiber/detail/disable_overload.hpp>", private ] },
    { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/context/detail/exception.hpp>", private ] },
    { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/coroutine_context.hpp>", private ] },
    { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/trampoline.hpp>", private ] },
    { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/trampoline_pull.hpp>", private ] },
    { include: ["<boost/context/detail/fcontext.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
    { include: ["<boost/context/detail/index_sequence.hpp>", private, "<boost/context/detail/apply.hpp>", private ] },
    { include: ["<boost/context/detail/index_sequence.hpp>", private, "<boost/context/detail/tuple.hpp>", private ] },
    { include: ["<boost/context/detail/invoke.hpp>", private, "<boost/context/detail/apply.hpp>", private ] },
    { include: ["<boost/context/detail/invoke.hpp>", private, "<boost/coroutine2/detail/wrap.hpp>", private ] },
    { include: ["<boost/contract/detail/checking.hpp>", private, "<boost/contract/detail/check.hpp>", private ] },
    { include: ["<boost/contract/detail/checking.hpp>", private, "<boost/contract/detail/operation/constructor.hpp>", private ] },
    { include: ["<boost/contract/detail/checking.hpp>", private, "<boost/contract/detail/operation/destructor.hpp>", private ] },
    { include: ["<boost/contract/detail/checking.hpp>", private, "<boost/contract/detail/operation/function.hpp>", private ] },
    { include: ["<boost/contract/detail/checking.hpp>", private, "<boost/contract/detail/operation/public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/checking.hpp>", private, "<boost/contract/detail/operation/static_public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_base.hpp>", private, "<boost/contract/detail/condition/cond_post.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_inv.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_inv.hpp>", private, "<boost/contract/detail/operation/constructor.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_inv.hpp>", private, "<boost/contract/detail/operation/destructor.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_inv.hpp>", private, "<boost/contract/detail/operation/static_public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_post.hpp>", private, "<boost/contract/detail/condition/cond_inv.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_post.hpp>", private, "<boost/contract/detail/operation/function.hpp>", private ] },
    { include: ["<boost/contract/detail/condition/cond_subcontracting.hpp>", private, "<boost/contract/detail/operation/public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/config.hpp>", private, "<boost/contract/detail/name.hpp>", private ] },
    { include: ["<boost/contract/detail/debug.hpp>", private, "<boost/contract/detail/auto_ptr.hpp>", private ] },
    { include: ["<boost/contract/detail/debug.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/decl.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/declspec.hpp>", private, "<boost/contract/detail/checking.hpp>", private ] },
    { include: ["<boost/contract/detail/declspec.hpp>", private, "<boost/contract/detail/inlined/core/exception.hpp>", private ] },
    { include: ["<boost/contract/detail/declspec.hpp>", private, "<boost/contract/detail/inlined/detail/checking.hpp>", private ] },
    { include: ["<boost/contract/detail/declspec.hpp>", private, "<boost/contract/detail/inlined/old.hpp>", private ] },
    { include: ["<boost/contract/detail/exception.hpp>", private, "<boost/contract/detail/operation/constructor.hpp>", private ] },
    { include: ["<boost/contract/detail/exception.hpp>", private, "<boost/contract/detail/operation/destructor.hpp>", private ] },
    { include: ["<boost/contract/detail/exception.hpp>", private, "<boost/contract/detail/operation/function.hpp>", private ] },
    { include: ["<boost/contract/detail/exception.hpp>", private, "<boost/contract/detail/operation/public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/exception.hpp>", private, "<boost/contract/detail/operation/static_public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/inlined/core/exception.hpp>", private, "<boost/contract/detail/inlined.hpp>", private ] },
    { include: ["<boost/contract/detail/inlined/detail/checking.hpp>", private, "<boost/contract/detail/checking.hpp>", private ] },
    { include: ["<boost/contract/detail/inlined/detail/checking.hpp>", private, "<boost/contract/detail/inlined.hpp>", private ] },
    { include: ["<boost/contract/detail/inlined/old.hpp>", private, "<boost/contract/detail/inlined.hpp>", private ] },
    { include: ["<boost/contract/detail/name.hpp>", private, "<boost/contract/detail/check.hpp>", private ] },
    { include: ["<boost/contract/detail/name.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/name.hpp>", private, "<boost/contract/detail/operator_safe_bool.hpp>", private ] },
    { include: ["<boost/contract/detail/name.hpp>", private, "<boost/contract/detail/type_traits/mirror.hpp>", private ] },
    { include: ["<boost/contract/detail/none.hpp>", private, "<boost/contract/detail/condition/cond_post.hpp>", private ] },
    { include: ["<boost/contract/detail/none.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/none.hpp>", private, "<boost/contract/detail/operation/constructor.hpp>", private ] },
    { include: ["<boost/contract/detail/none.hpp>", private, "<boost/contract/detail/operation/destructor.hpp>", private ] },
    { include: ["<boost/contract/detail/none.hpp>", private, "<boost/contract/detail/operation/static_public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/none.hpp>", private, "<boost/contract/detail/type_traits/member_function_types.hpp>", private ] },
    { include: ["<boost/contract/detail/noop.hpp>", private, "<boost/contract/detail/assert.hpp>", private ] },
    { include: ["<boost/contract/detail/operator_safe_bool.hpp>", private, "<boost/contract/detail/auto_ptr.hpp>", private ] },
    { include: ["<boost/contract/detail/preprocessor/keyword/utility/is.hpp>", private, "<boost/contract/detail/preprocessor/keyword/private.hpp>", private ] },
    { include: ["<boost/contract/detail/preprocessor/keyword/utility/is.hpp>", private, "<boost/contract/detail/preprocessor/keyword/protected.hpp>", private ] },
    { include: ["<boost/contract/detail/preprocessor/keyword/utility/is.hpp>", private, "<boost/contract/detail/preprocessor/keyword/public.hpp>", private ] },
    { include: ["<boost/contract/detail/preprocessor/keyword/utility/is.hpp>", private, "<boost/contract/detail/preprocessor/keyword/virtual.hpp>", private ] },
    { include: ["<boost/contract/detail/static_local_var.hpp>", private, "<boost/contract/detail/checking.hpp>", private ] },
    { include: ["<boost/contract/detail/static_local_var.hpp>", private, "<boost/contract/detail/inlined/core/exception.hpp>", private ] },
    { include: ["<boost/contract/detail/tvariadic.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/tvariadic.hpp>", private, "<boost/contract/detail/decl.hpp>", private ] },
    { include: ["<boost/contract/detail/tvariadic.hpp>", private, "<boost/contract/detail/operation/public_function.hpp>", private ] },
    { include: ["<boost/contract/detail/type_traits/member_function_types.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/contract/detail/type_traits/optional.hpp>", private, "<boost/contract/detail/condition/cond_post.hpp>", private ] },
    { include: ["<boost/contract/detail/type_traits/optional.hpp>", private, "<boost/contract/detail/condition/cond_subcontracting.hpp>", private ] },
    { include: ["<boost/convert/detail/char.hpp>", private, "<boost/convert/detail/range.hpp>", private ] },
    { include: ["<boost/convert/detail/config.hpp>", private, "<boost/convert/detail/char.hpp>", private ] },
    { include: ["<boost/convert/detail/config.hpp>", private, "<boost/convert/detail/is_converter.hpp>", private ] },
    { include: ["<boost/convert/detail/config.hpp>", private, "<boost/convert/detail/is_fun.hpp>", private ] },
    { include: ["<boost/convert/detail/has_member.hpp>", private, "<boost/convert/detail/is_callable.hpp>", private ] },
    { include: ["<boost/convert/detail/has_member.hpp>", private, "<boost/convert/detail/is_fun.hpp>", private ] },
    { include: ["<boost/convert/detail/has_member.hpp>", private, "<boost/convert/detail/range.hpp>", private ] },
    { include: ["<boost/convert/detail/is_callable.hpp>", private, "<boost/convert/detail/is_converter.hpp>", private ] },
    { include: ["<boost/convert/detail/range.hpp>", private, "<boost/convert/detail/is_string.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/disable_overload.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/pull_coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/push_coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/state.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/config.hpp>", private, "<boost/coroutine2/detail/wrap.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/disable_overload.hpp>", private, "<boost/coroutine2/detail/pull_coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/disable_overload.hpp>", private, "<boost/coroutine2/detail/push_coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/pull_control_block_cc.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/pull_control_block_cc.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/pull_coroutine.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/pull_coroutine.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/push_control_block_cc.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/push_control_block_cc.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/push_coroutine.hpp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/push_coroutine.ipp>", private, "<boost/coroutine2/detail/coroutine.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/state.hpp>", private, "<boost/coroutine2/detail/pull_control_block_cc.hpp>", private ] },
    { include: ["<boost/coroutine2/detail/state.hpp>", private, "<boost/coroutine2/detail/push_control_block_cc.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/coroutine_context.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/preallocated.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/trampoline.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/trampoline_pull.hpp>", private ] },
    { include: ["<boost/coroutine/detail/config.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/data.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/setup.hpp>", private ] },
    { include: ["<boost/coroutine/detail/coroutine_context.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/data.hpp>", private, "<boost/coroutine/detail/trampoline.hpp>", private ] },
    { include: ["<boost/coroutine/detail/data.hpp>", private, "<boost/coroutine/detail/trampoline_pull.hpp>", private ] },
    { include: ["<boost/coroutine/detail/data.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/parameters.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/setup.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/flags.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
    { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/parameters.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
    { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/coroutine_context.hpp>", private ] },
    { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
    { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/preallocated.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/pull_coroutine_impl.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/pull_coroutine_impl.hpp>", private, "<boost/coroutine/detail/pull_coroutine_synthesized.hpp>", private ] },
    { include: ["<boost/coroutine/detail/push_coroutine_impl.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/push_coroutine_impl.hpp>", private, "<boost/coroutine/detail/push_coroutine_synthesized.hpp>", private ] },
    { include: ["<boost/coroutine/detail/setup.hpp>", private, "<boost/coroutine/detail/trampoline_push.hpp>", private ] },
    { include: ["<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
    { include: ["<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
    { include: ["<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_call.hpp>", private ] },
    { include: ["<boost/coroutine/detail/symmetric_coroutine_yield.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/trampoline.hpp>", private, "<boost/coroutine/detail/symmetric_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/trampoline_pull.hpp>", private, "<boost/coroutine/detail/pull_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/trampoline_pull.hpp>", private, "<boost/coroutine/detail/pull_coroutine_object.hpp>", private ] },
    { include: ["<boost/coroutine/detail/trampoline_push.hpp>", private, "<boost/coroutine/detail/push_coroutine_impl.hpp>", private ] },
    { include: ["<boost/coroutine/detail/trampoline_push.hpp>", private, "<boost/coroutine/detail/push_coroutine_object.hpp>", private ] },
    { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/detail/memory.hpp>", private ] },
    { include: ["<boost/detail/allocator_utilities.hpp>", private, "<boost/statechart/detail/state_base.hpp>", private ] },
    { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/asio/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/serialization/detail/shared_ptr_nmt_132.hpp>", private ] },
    { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private ] },
    { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/statechart/detail/counted_base.hpp>", private ] },
    { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/xpressive/detail/utility/counted_base.hpp>", private ] },
    { include: ["<boost/detail/atomic_count.hpp>", private, "<boost/xpressive/detail/utility/tracking_ptr.hpp>", private ] },
    { include: ["<boost/detail/basic_pointerbuf.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
    { include: ["<boost/detail/binary_search.hpp>", private, "<boost/python/suite/indexing/detail/indexing_suite_detail.hpp>", private ] },
    { include: ["<boost/detail/container_fwd.hpp>", private, "<boost/lambda/detail/operator_return_type_traits.hpp>", private ] },
    { include: ["<boost/detail/fenv.hpp>", private, "<boost/numeric/interval/detail/c99sub_rounding_control.hpp>", private ] },
    { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/iterator/detail/facade_iterator_category.hpp>", private ] },
    { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
    { include: ["<boost/detail/indirect_traits.hpp>", private, "<boost/python/detail/indirect_traits.hpp>", private ] },
    { include: ["<boost/detail/interlocked.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
    { include: ["<boost/detail/interlocked.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
    { include: ["<boost/detail/is_incrementable.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/detail/is_xxx.hpp>", private, "<boost/python/detail/is_xxx.hpp>", private ] },
    { include: ["<boost/detail/lcast_precision.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
    { include: ["<boost/detail/lcast_precision.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/flyweight/detail/recursive_lw_mutex.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/math/quadrature/detail/exp_sinh_detail.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/math/quadrature/detail/sinh_sinh_detail.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/math/quadrature/detail/tanh_sinh_detail.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/math/special_functions/detail/bernoulli_details.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
    { include: ["<boost/detail/lightweight_mutex.hpp>", private, "<boost/serialization/detail/shared_count_132.hpp>", private ] },
    { include: ["<boost/detail/quick_allocator.hpp>", private, "<boost/serialization/detail/shared_count_132.hpp>", private ] },
    { include: ["<boost/detail/reference_content.hpp>", private, "<boost/optional/detail/old_optional_implementation.hpp>", private ] },
    { include: ["<boost/detail/reference_content.hpp>", private, "<boost/variant/detail/initializer.hpp>", private ] },
    { include: ["<boost/detail/scoped_enum_emulation.hpp>", private, "<boost/spirit/home/support/detail/scoped_enum_emulation.hpp>", private ] },
    { include: ["<boost/detail/select_type.hpp>", private, "<boost/unordered/detail/implementation.hpp>", private ] },
    { include: ["<boost/detail/templated_streams.hpp>", private, "<boost/variant/detail/variant_io.hpp>", private ] },
    { include: ["<boost/detail/utf8_codecvt_facet.hpp>", private, "<boost/archive/detail/utf8_codecvt_facet.hpp>", private ] },
    { include: ["<boost/detail/utf8_codecvt_facet.hpp>", private, "<boost/filesystem/detail/utf8_codecvt_facet.hpp>", private ] },
    { include: ["<boost/detail/utf8_codecvt_facet.hpp>", private, "<boost/program_options/detail/utf8_codecvt_facet.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/archive/detail/iserializer.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/archive/detail/oserializer.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/archive/impl/basic_xml_grammar.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/context/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/contract/detail/operator_safe_bool.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/coroutine2/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/coroutine/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/dynamic_bitset/detail/dynamic_bitset.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/fiber/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/flyweight/detail/default_value_policy.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/flyweight/detail/flyweight_core.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/flyweight/detail/not_placeholder_expr.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/format/detail/config_macros.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/function_types/detail/cv_traits.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/container/vector/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/adjacency_list.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/adj_list_edge_iterator.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/read_graphviz_new.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/graph/detail/read_graphviz_spirit.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/adapter/mode_adapter.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/add_facet.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/codecvt_helper.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/codecvt.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/disable_warnings.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/dyn_link.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/overload_resolution.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/config/wide_streams.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/default_arg.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/double_object.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/execute.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/forward.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/ios.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/is_dereferenceable.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iostreams/detail/wrap_unwrap.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iterator/detail/config_def.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/iterator/detail/enable_if.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/lambda/detail/lambda_functors.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/lexical_cast/detail/inf_nan.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/lexical_cast/detail/lcast_unsigned_converters.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/access_specifier.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/allocator_traits.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/base_type.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/is_function.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/node_handle.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/promotes_arg.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/multi_index/detail/unbounded.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/optional/detail/experimental_traits.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/optional/detail/optional_config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/poly_collection/detail/functional.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/poly_collection/detail/is_constructible.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/poly_collection/detail/packed_segment.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/poly_collection/detail/stride_iterator.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/poly_collection/detail/type_info_map.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/program_options/detail/cmdline.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/program_options/detail/config_file.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/program_options/detail/convert.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/proto/detail/as_expr.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/destroy.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/enable_if.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/python/detail/string_literal.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/random/detail/operators.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/serialization/detail/shared_ptr_132.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/signals2/detail/auto_buffer.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/support/detail/lexer/parser/tokeniser/num_token.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/spirit/home/support/detail/what_function.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/statechart/detail/rtti_policy.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/statechart/detail/state_base.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/test/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/thread/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/tuple/detail/tuple_basic.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/type_erasure/detail/adapt_to_vtable.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/variant/detail/config.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/variant/detail/move.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/xpressive/detail/utility/literals.hpp>", private ] },
    { include: ["<boost/detail/workaround.hpp>", private, "<boost/xpressive/detail/utility/tracking_ptr.hpp>", private ] },
    { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
    { include: ["<boost/dll/detail/aggressive_ptr_cast.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
    { include: ["<boost/dll/detail/demangling/demangle_symbol.hpp>", private, "<boost/dll/detail/demangling/mangled_storage_base.hpp>", private ] },
    { include: ["<boost/dll/detail/demangling/itanium.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
    { include: ["<boost/dll/detail/demangling/mangled_storage_base.hpp>", private, "<boost/dll/detail/demangling/itanium.hpp>", private ] },
    { include: ["<boost/dll/detail/demangling/mangled_storage_base.hpp>", private, "<boost/dll/detail/demangling/msvc.hpp>", private ] },
    { include: ["<boost/dll/detail/demangling/msvc.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
    { include: ["<boost/dll/detail/get_mem_fn_type.hpp>", private, "<boost/dll/detail/ctor_dtor.hpp>", private ] },
    { include: ["<boost/dll/detail/posix/path_from_handle.hpp>", private, "<boost/dll/detail/posix/shared_library_impl.hpp>", private ] },
    { include: ["<boost/dll/detail/posix/program_location_impl.hpp>", private, "<boost/dll/detail/posix/path_from_handle.hpp>", private ] },
    { include: ["<boost/dll/detail/posix/program_location_impl.hpp>", private, "<boost/dll/detail/posix/shared_library_impl.hpp>", private ] },
    { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/posix/path_from_handle.hpp>", private ] },
    { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/posix/program_location_impl.hpp>", private ] },
    { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/windows/path_from_handle.hpp>", private ] },
    { include: ["<boost/dll/detail/system_error.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
    { include: ["<boost/dll/detail/windows/path_from_handle.hpp>", private, "<boost/dll/detail/windows/shared_library_impl.hpp>", private ] },
    { include: ["<boost/endian/detail/endian_reverse.hpp>", private, "<boost/endian/detail/endian_load.hpp>", private ] },
    { include: ["<boost/endian/detail/endian_reverse.hpp>", private, "<boost/endian/detail/endian_store.hpp>", private ] },
    { include: ["<boost/endian/detail/integral_by_size.hpp>", private, "<boost/endian/detail/endian_load.hpp>", private ] },
    { include: ["<boost/endian/detail/integral_by_size.hpp>", private, "<boost/endian/detail/endian_reverse.hpp>", private ] },
    { include: ["<boost/endian/detail/integral_by_size.hpp>", private, "<boost/endian/detail/endian_store.hpp>", private ] },
    { include: ["<boost/endian/detail/intrinsic.hpp>", private, "<boost/endian/detail/endian_reverse.hpp>", private ] },
    { include: ["<boost/endian/detail/is_scoped_enum.hpp>", private, "<boost/endian/detail/endian_reverse.hpp>", private ] },
    { include: ["<boost/endian/detail/is_trivially_copyable.hpp>", private, "<boost/endian/detail/endian_load.hpp>", private ] },
    { include: ["<boost/endian/detail/is_trivially_copyable.hpp>", private, "<boost/endian/detail/endian_store.hpp>", private ] },
    { include: ["<boost/endian/detail/order.hpp>", private, "<boost/endian/detail/endian_load.hpp>", private ] },
    { include: ["<boost/endian/detail/order.hpp>", private, "<boost/endian/detail/endian_store.hpp>", private ] },
    { include: ["<boost/exception/detail/clone_current_exception.hpp>", private, "<boost/exception/detail/exception_ptr.hpp>", private ] },
    { include: ["<boost/exception/detail/type_info.hpp>", private, "<boost/exception/detail/exception_ptr.hpp>", private ] },
    { include: ["<boost/exception/detail/type_info.hpp>", private, "<boost/exception/detail/object_hex_dump.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/context_spinlock_queue.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/context_spmc_queue.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/convert.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/cpu_relax.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/data.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/decay_copy.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/disable_overload.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/is_all_same.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/rtm.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_rtm.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas_futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/spinlock_ttas.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/detail/thread_barrier.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/shared_state.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/shared_state_object.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/task_base.hpp>", private ] },
    { include: ["<boost/fiber/detail/config.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
    { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_rtm.hpp>", private ] },
    { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private ] },
    { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas_futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/cpu_relax.hpp>", private, "<boost/fiber/detail/spinlock_ttas.hpp>", private ] },
    { include: ["<boost/fiber/detail/futex.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/futex.hpp>", private, "<boost/fiber/detail/spinlock_ttas_futex.hpp>", private ] },
    { include: ["<boost/fiber/detail/rtm.hpp>", private, "<boost/fiber/detail/spinlock_rtm.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/detail/context_spinlock_queue.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock.hpp>", private, "<boost/fiber/detail/data.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_rtm.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_status.hpp>", private, "<boost/fiber/detail/spinlock_rtm.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_status.hpp>", private, "<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_status.hpp>", private, "<boost/fiber/detail/spinlock_ttas.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_ttas_adaptive_futex.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_ttas_adaptive.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_ttas_futex.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
    { include: ["<boost/fiber/detail/spinlock_ttas.hpp>", private, "<boost/fiber/detail/spinlock.hpp>", private ] },
    { include: ["<boost/fiber/future/detail/shared_state.hpp>", private, "<boost/fiber/future/detail/shared_state_object.hpp>", private ] },
    { include: ["<boost/fiber/future/detail/shared_state.hpp>", private, "<boost/fiber/future/detail/task_base.hpp>", private ] },
    { include: ["<boost/fiber/future/detail/task_base.hpp>", private, "<boost/fiber/future/detail/task_object.hpp>", private ] },
    { include: ["<boost/flyweight/detail/dyn_perfect_fwd.hpp>", private, "<boost/flyweight/detail/perfect_fwd.hpp>", private ] },
    { include: ["<boost/flyweight/detail/is_placeholder_expr.hpp>", private, "<boost/flyweight/detail/nested_xxx_if_not_ph.hpp>", private ] },
    { include: ["<boost/flyweight/detail/perfect_fwd.hpp>", private, "<boost/flyweight/detail/default_value_policy.hpp>", private ] },
    { include: ["<boost/flyweight/detail/perfect_fwd.hpp>", private, "<boost/flyweight/detail/flyweight_core.hpp>", private ] },
    { include: ["<boost/flyweight/detail/pp_perfect_fwd.hpp>", private, "<boost/flyweight/detail/perfect_fwd.hpp>", private ] },
    { include: ["<boost/flyweight/detail/value_tag.hpp>", private, "<boost/flyweight/detail/default_value_policy.hpp>", private ] },
    { include: ["<boost/format/detail/config_macros.hpp>", private, "<boost/format/detail/compat_workarounds.hpp>", private ] },
    { include: ["<boost/format/detail/workarounds_gcc-2_95.hpp>", private, "<boost/format/detail/config_macros.hpp>", private ] },
    { include: ["<boost/format/detail/workarounds_stlport.hpp>", private, "<boost/format/detail/config_macros.hpp>", private ] },
    { include: ["<boost/function/detail/maybe_include.hpp>", private, "<boost/function/detail/function_iterate.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity10_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity20_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity10_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity20_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity20_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity30_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity20_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity30_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity30_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity40_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity30_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity40_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity40_0.hpp>", private, "<boost/function_types/detail/classifier_impl/arity50_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/classifier_impl/arity40_1.hpp>", private, "<boost/function_types/detail/classifier_impl/arity50_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity10_0.hpp>", private, "<boost/function_types/detail/components_impl/arity20_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity10_1.hpp>", private, "<boost/function_types/detail/components_impl/arity20_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity20_0.hpp>", private, "<boost/function_types/detail/components_impl/arity30_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity20_1.hpp>", private, "<boost/function_types/detail/components_impl/arity30_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity30_0.hpp>", private, "<boost/function_types/detail/components_impl/arity40_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity30_1.hpp>", private, "<boost/function_types/detail/components_impl/arity40_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity40_0.hpp>", private, "<boost/function_types/detail/components_impl/arity50_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/components_impl/arity40_1.hpp>", private, "<boost/function_types/detail/components_impl/arity50_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/cv_traits.hpp>", private, "<boost/function_types/detail/synthesize.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/aliases_def.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/aliases_def.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/aliases_def.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/aliases_undef.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/aliases_undef.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/aliases_undef.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_tags/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/def.hpp>", private, "<boost/function_types/detail/pp_variate_loop/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_cc_loop/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_loop.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/encoding/undef.hpp>", private, "<boost/function_types/detail/pp_variate_loop/master.hpp>", private ] },
    { include: ["<boost/function_types/detail/pp_loop.hpp>", private, "<boost/function_types/detail/classifier.hpp>", private ] },
    { include: ["<boost/function_types/detail/pp_loop.hpp>", private, "<boost/function_types/detail/synthesize.hpp>", private ] },
    { include: ["<boost/function_types/detail/pp_retag_default_cc/master.hpp>", private, "<boost/function_types/detail/retag_default_cc.hpp>", private ] },
    { include: ["<boost/function_types/detail/pp_retag_default_cc/preprocessed.hpp>", private, "<boost/function_types/detail/retag_default_cc.hpp>", private ] },
    { include: ["<boost/function_types/detail/retag_default_cc.hpp>", private, "<boost/function_types/detail/synthesize.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity10_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity20_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity10_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity20_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity20_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity30_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity20_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity30_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity30_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity40_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity30_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity40_1.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity40_0.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity50_0.hpp>", private ] },
    { include: ["<boost/function_types/detail/synthesize_impl/arity40_1.hpp>", private, "<boost/function_types/detail/synthesize_impl/arity50_1.hpp>", private ] },
    { include: ["<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/boost_tuple/detail/build_cons.hpp>", private, "<boost/fusion/adapted/boost_tuple/detail/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/adapted/std_array/detail/array_size.hpp>", private, "<boost/fusion/adapted/std_array/detail/end_impl.hpp>", private ] },
    { include: ["<boost/fusion/adapted/std_array/detail/array_size.hpp>", private, "<boost/fusion/adapted/std_array/detail/size_impl.hpp>", private ] },
    { include: ["<boost/fusion/adapted/std_tuple/detail/build_std_tuple.hpp>", private, "<boost/fusion/adapted/std_tuple/detail/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_auto.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_assoc_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_is_tpl.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/adapt_is_tpl.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/define_struct.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct_inline.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/fusion/adapted/adt/detail/extension.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/extension.hpp>", private, "<boost/spirit/home/qi/detail/assign_to.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/namespace.hpp>", private, "<boost/fusion/adapted/struct/detail/define_struct.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/namespace.hpp>", private, "<boost/fusion/adapted/struct/detail/proxy_type.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/preprocessor/is_seq.hpp>", private, "<boost/fusion/adapted/adt/detail/adapt_base_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/adapted/struct/detail/preprocessor/is_seq.hpp>", private, "<boost/fusion/adapted/struct/detail/adapt_base_attr_filler.hpp>", private ] },
    { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip10.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
    { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip20.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
    { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip30.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
    { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip40.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
    { include: ["<boost/fusion/algorithm/transformation/detail/preprocessed/zip50.hpp>", private, "<boost/fusion/algorithm/transformation/detail/preprocessed/zip.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/at_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/begin_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/as_deque.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/build_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/deque_forward_ctor.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/deque_initial_size.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/deque_keyed_values_call.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/as_deque.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/as_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque10_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque20_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque30_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque40_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque50_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_fwd.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_initial_size.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_initial_size.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values10.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values20.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values30.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values40.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values50.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/end_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/is_sequence_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/keyed_element.hpp>", private, "<boost/fusion/container/deque/detail/value_at_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/deque/detail/value_at_impl.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/deque_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_deque_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/list_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_list_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_deque.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_deque.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_list.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_list.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_map.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_map.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_set.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_set.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/make_vector.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/map_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie10.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie20.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie30.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie40.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie50.hpp>", private, "<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/generation/detail/preprocessed/vector_tie.hpp>", private, "<boost/fusion/container/generation/detail/pp_vector_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/build_cons.hpp>", private, "<boost/fusion/container/list/detail/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/list_forward_ctor.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/list_to_cons_call.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private, "<boost/fusion/container/list/detail/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list10_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list10.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list20_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list20.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list30_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list30.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list40_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list40.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list50_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list50.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_fwd.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons10.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons20.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons30.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons40.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons50.hpp>", private, "<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/cpp03/preprocessed/list_to_cons.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/container/list/detail/reverse_cons.hpp>", private, "<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/at_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/begin_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/convert_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/deref_data_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/deref_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/end_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/key_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/generation/detail/pp_map_tie.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/map_forward_ctor.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map10.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map20.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map30.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map40.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map50.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/as_map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/as_map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map10_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map10.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map20_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map20.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map30_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map30.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map40_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map40.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map50_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map50.hpp>", private, "<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map_fwd.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/preprocessed/map.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/value_at_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/value_of_data_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/value_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/key_of_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/value_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/container/map/detail/cpp03/value_of_impl.hpp>", private, "<boost/fusion/container/map/detail/cpp03/value_of_data_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/as_set.hpp>", private, "<boost/fusion/container/set/detail/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/begin_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/as_set.hpp>", private, "<boost/fusion/container/set/detail/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set10.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set20.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set30.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set40.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set50.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/as_set.hpp>", private, "<boost/fusion/container/set/detail/cpp03/as_set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set10_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set10.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set20_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set20.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set30_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set30.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set40_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set40.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set50_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set50.hpp>", private, "<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set_fwd.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/preprocessed/set.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/cpp03/set_forward_ctor.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/deref_data_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/deref_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/deref_impl.hpp>", private, "<boost/fusion/container/set/detail/deref_data_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/end_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/key_of_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/value_of_data_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/value_of_data_impl.hpp>", private, "<boost/fusion/container/set/detail/key_of_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/set/detail/value_of_impl.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/as_vector.hpp>", private, "<boost/fusion/container/vector/detail/convert_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/begin_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/detail/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/container/vector/detail/value_at_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/config.hpp>", private, "<boost/fusion/view/nview/detail/nview_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/as_vector.hpp>", private, "<boost/fusion/container/vector/detail/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/limits.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/map/detail/cpp03/limits.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/set/detail/cpp03/limits.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private, "<boost/fusion/tuple/detail/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/as_vector.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector10_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector20_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector30_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector40_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector50_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_chooser.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/preprocessed/vvector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/preprocessed/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/value_at_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector10_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector20_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector30_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector40_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector50_fwd.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_fwd.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector_forward_ctor.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/cpp03/vector_n_chooser.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/end_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/deref_impl.hpp>", private ] },
    { include: ["<boost/fusion/container/vector/detail/value_at_impl.hpp>", private, "<boost/fusion/container/vector/detail/value_of_impl.hpp>", private ] },
    { include: ["<boost/fusion/iterator/detail/adapt_deref_traits.hpp>", private, "<boost/fusion/view/filter_view/detail/deref_impl.hpp>", private ] },
    { include: ["<boost/fusion/iterator/detail/adapt_deref_traits.hpp>", private, "<boost/fusion/view/joint_view/detail/deref_impl.hpp>", private ] },
    { include: ["<boost/fusion/iterator/detail/adapt_value_traits.hpp>", private, "<boost/fusion/view/filter_view/detail/value_of_impl.hpp>", private ] },
    { include: ["<boost/fusion/iterator/detail/adapt_value_traits.hpp>", private, "<boost/fusion/view/joint_view/detail/value_of_impl.hpp>", private ] },
    { include: ["<boost/fusion/iterator/detail/segmented_equal_to.hpp>", private, "<boost/fusion/iterator/detail/segmented_iterator.hpp>", private ] },
    { include: ["<boost/fusion/iterator/detail/segment_sequence.hpp>", private, "<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private ] },
    { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_begin.hpp>", private ] },
    { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp>", private ] },
    { include: ["<boost/fusion/sequence/intrinsic/detail/segmented_end_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_end.hpp>", private ] },
    { include: ["<boost/fusion/sequence/io/detail/manip.hpp>", private, "<boost/fusion/sequence/io/detail/in.hpp>", private ] },
    { include: ["<boost/fusion/sequence/io/detail/manip.hpp>", private, "<boost/fusion/sequence/io/detail/out.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/adapted/std_tuple/detail/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/algorithm/query/detail/count.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/detail/deque_keyed_values.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/deque/detail/keyed_element.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/detail/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/detail/list_to_cons.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/list/detail/value_at_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/at_key_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/cpp03/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/cpp03/deref_data_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/cpp03/map.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/map/detail/map_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/at_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector10.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector20.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector30.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector40.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector50.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/access.hpp>", private, "<boost/fusion/container/vector/detail/deref_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_deque.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_list.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_map.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_set.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/container/generation/detail/pp_make_vector.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/functional/generation/detail/gen_make_adapter.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/as_fusion_element.hpp>", private, "<boost/fusion/tuple/detail/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/deque/detail/cpp03/deque.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/list/detail/cpp03/list.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/set/detail/cpp03/set.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/enabler.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/vector.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/adapted/std_tuple/detail/build_std_tuple.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/container/set/detail/as_set.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/fusion/container/vector/detail/as_vector.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/index_sequence.hpp>", private, "<boost/phoenix/core/detail/index_sequence.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/is_native_fusion_sequence.hpp>", private, "<boost/fusion/support/detail/is_mpl_sequence.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/mpl_iterator_category.hpp>", private, "<boost/fusion/adapted/mpl/detail/category_of_impl.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/pp_round.hpp>", private, "<boost/fusion/container/list/detail/cpp03/limits.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/pp_round.hpp>", private, "<boost/fusion/container/vector/detail/cpp03/limits.hpp>", private ] },
    { include: ["<boost/fusion/support/detail/segmented_fold_until_impl.hpp>", private, "<boost/fusion/sequence/intrinsic/detail/segmented_begin_impl.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple10.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple20.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple30.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple40.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple50.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/make_tuple.hpp>", private, "<boost/fusion/tuple/detail/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple10_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple10.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple20_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple20.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple30_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple30.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple40_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple40.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple50_fwd.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple50.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_fwd.hpp>", private, "<boost/fusion/tuple/detail/tuple_fwd.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple.hpp>", private, "<boost/fusion/tuple/detail/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie10.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie20.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie30.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie40.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie50.hpp>", private, "<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/preprocessed/tuple_tie.hpp>", private, "<boost/fusion/tuple/detail/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/tuple_expand.hpp>", private, "<boost/fusion/tuple/detail/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/tuple_fwd.hpp>", private, "<boost/fusion/tuple/detail/tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/tuple.hpp>", private, "<boost/fusion/tuple/detail/make_tuple.hpp>", private ] },
    { include: ["<boost/fusion/tuple/detail/tuple.hpp>", private, "<boost/fusion/tuple/detail/tuple_tie.hpp>", private ] },
    { include: ["<boost/fusion/view/iterator_range/detail/segmented_iterator_range.hpp>", private, "<boost/fusion/view/iterator_range/detail/segments_impl.hpp>", private ] },
    { include: ["<boost/fusion/view/nview/detail/cpp03/nview_impl.hpp>", private, "<boost/fusion/view/nview/detail/nview_impl.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/detail/extreme_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/segment.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/algorithms/detail/assign_box_corners.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/assign_values.hpp>", private, "<boost/geometry/algorithms/detail/assign_indexed_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/azimuth.hpp>", private, "<boost/geometry/algorithms/detail/course.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/piece_border.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_box.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/piece_border.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/piece_border.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/turn_in_original_visitor.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/check_iterator_range.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/closest_feature/geometry_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/closest_feature/point_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/closest_feature/range_to_range.hpp>", private, "<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/convert_point_to_point.hpp>", private, "<boost/geometry/algorithms/detail/point_on_border.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/covered_by/interface.hpp>", private, "<boost/geometry/algorithms/detail/covered_by/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/covered_by/interface.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/remove.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/direction_code.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/direction_code.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/direction_code.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/direction_code.hpp>", private, "<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/algorithms/detail/within/multi_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/box_box.hpp>", private, "<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private, "<boost/geometry/algorithms/detail/intersects/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersects/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/multirange_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/buffer/turn_in_piece_visitor.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_box.hpp>", private, "<boost/geometry/algorithms/detail/within/multi_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/box_to_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/detail/distance/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/default_strategies.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/implementation.hpp>", private, "<boost/geometry/algorithms/detail/comparable_distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/interface.hpp>", private, "<boost/geometry/algorithms/detail/comparable_distance/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/is_comparable.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/iterator_selector.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/iterator_selector.hpp>", private, "<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/linear_to_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>", private, "<boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private, "<boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/range_to_geometry_rtree.hpp>", private, "<boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>", private, "<boost/geometry/algorithms/detail/distance/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/areal.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/box.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/initialize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/linear.hpp>", private, "<boost/geometry/algorithms/detail/envelope/areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/linear.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/multipoint.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/range.hpp>", private, "<boost/geometry/algorithms/detail/envelope/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/envelope/segment.hpp>", private, "<boost/geometry/algorithms/detail/envelope/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/interface.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/distance/segment_to_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/segment.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/point_on_border.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/equals/point_point.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/box.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/box.hpp>", private, "<boost/geometry/algorithms/detail/expand/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/algorithms/detail/buffer/piece_border.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/algorithms/detail/within/multi_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/indexed.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/point.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/point.hpp>", private, "<boost/geometry/algorithms/detail/expand/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/segment.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/expand/segment.hpp>", private, "<boost/geometry/algorithms/detail/expand/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/extreme_points.hpp>", private, "<boost/geometry/multi/algorithms/detail/extreme_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/algorithms/detail/touches/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/for_each_range.hpp>", private, "<boost/geometry/multi/algorithms/detail/for_each_range.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private, "<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/counting.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/extreme_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/interior_iterator.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersection/areal_areal.hpp>", private, "<boost/geometry/algorithms/detail/intersection/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersection/box_box.hpp>", private, "<boost/geometry/algorithms/detail/intersection/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersection/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersection/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersection/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersection/box_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersection/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersection/multi.hpp>", private, "<boost/geometry/algorithms/detail/intersection/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/intersects/interface.hpp>", private, "<boost/geometry/algorithms/detail/intersects/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/always_simple.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/debug_print_boundary_points.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/failure_policy.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/failure_policy.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/failure_policy.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/multipoint.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_simple/multipoint.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/box.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/complement_graph.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/debug_complement_graph.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/complement_graph.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/debug_complement_graph.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/debug_validity_phase.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/debug_validity_phase.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/multipoint.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/pointlike.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/segment.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/pointlike.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/is_valid/segment.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/make/make.hpp>", private, "<boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/make/make.hpp>", private, "<boost/geometry/algorithms/detail/direction_code.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/make/make.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_distance_measure.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/max_interval_gap.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/multi_modify.hpp>", private, "<boost/geometry/multi/algorithms/detail/modify.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/multi_modify_with_predicate.hpp>", private, "<boost/geometry/multi/algorithms/detail/modify_with_predicate.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/multi_sum.hpp>", private, "<boost/geometry/multi/algorithms/detail/multi_sum.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/segment_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/envelope/intersects_antimeridian.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/normalize.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/not.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/not.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/num_distinct_consecutive_points.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/num_distinct_consecutive_points.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlaps/interface.hpp>", private, "<boost/geometry/algorithms/detail/overlaps/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/overlay/clip_linestring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/append_no_duplicates.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/check_enrich.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/clip_linestring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_exits.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/convert_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/copy_segment_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/copy_segments.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/debug_print_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/cluster_exits.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/debug_turn.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/print_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/relate/turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/do_reverse.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/follow.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/follow.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_distance_measure.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_intersection_points.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/add_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/get_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_for_endpoint.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private, "<boost/geometry/algorithms/detail/relate/turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_la.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turn_info_ll.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/handle_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/inconsistent_turns_exception.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/intersection_box_box.hpp>", private, "<boost/geometry/algorithms/detail/intersection/box_box.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/intersection_box_box.hpp>", private, "<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private, "<boost/geometry/algorithms/detail/intersection/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/needs_self_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private, "<boost/geometry/algorithms/detail/touches/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/check_enrich.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/cluster_exits.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/is_self_turn.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/overlay_type.hpp>", private, "<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/range_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_as_subrange.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_as_subrange.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private, "<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/intersects/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/algorithms/detail/touches/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private, "<boost/geometry/multi/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/less_by_segment_ratio.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/print_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/traverse.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_policies.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/has_self_intersections.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_valid_self_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/is_acceptable_turn.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/backtrack_check_si.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/handle_colocations.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/sort_by_side.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/stream_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_ring_creator.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/compare_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/filter_continue_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private, "<boost/geometry/algorithms/detail/turns/print_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/visit_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/debug_turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/overlay/visit_info.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/multipolygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/assign_parents.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/pointlike_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/partition.hpp>", private, "<boost/geometry/algorithms/detail/within/multi_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_spikes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private, "<boost/geometry/algorithms/detail/overlay/append_no_dups_or_spikes.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/polygon.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/overlay/ring_properties.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/algorithms/detail/within/within_no_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/point_on_border.hpp>", private, "<boost/geometry/multi/algorithms/detail/point_on_border.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turn_info_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/overlay/overlay.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/point_is_spike_or_equal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/recalculate.hpp>", private, "<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/de9im.hpp>", private, "<boost/geometry/algorithms/detail/relate/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/follow_helpers.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/implementation.hpp>", private, "<boost/geometry/algorithms/detail/relation/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/disjoint/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/interface.hpp>", private, "<boost/geometry/algorithms/detail/relation/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/point_point.hpp>", private, "<boost/geometry/algorithms/detail/relate/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/detail/overlaps/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/relate_impl.hpp>", private, "<boost/geometry/algorithms/detail/touches/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/de9im.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/result.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/topology_check.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/relate/turns.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrich_intersection_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_ring.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/select_rings.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/overlay/traversal_switch_detector.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/ring_identifier.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/range_by_section.hpp>", private, "<boost/geometry/multi/algorithms/detail/sections/range_by_section.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/algorithms/detail/intersection/multi.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private, "<boost/geometry/multi/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/section_box_policies.hpp>", private, "<boost/geometry/algorithms/detail/overlay/self_turn_points.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private, "<boost/geometry/algorithms/detail/buffer/get_piece_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sections/section_functions.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/is_simple/linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/complement_graph.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/cluster_exits.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/cluster_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segment_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/copy_segments.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/enrichment_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/segment_identifier.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/turn_info.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/ring_identifier.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/signed_size_type.hpp>", private, "<boost/geometry/algorithms/detail/sections/sectionalize.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/single_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/single_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/single_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/areal_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/boundary_checker.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sub_range.hpp>", private, "<boost/geometry/algorithms/detail/touches/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/sweep.hpp>", private, "<boost/geometry/algorithms/detail/max_interval_gap.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/throw_on_empty_input.hpp>", private, "<boost/geometry/algorithms/detail/distance/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/touches/interface.hpp>", private, "<boost/geometry/algorithms/detail/touches/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/tupled_output.hpp>", private, "<boost/geometry/algorithms/detail/intersection/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/tupled_output.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/tupled_output.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/turns/compare_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/turns/debug_turn.hpp>", private, "<boost/geometry/algorithms/detail/overlay/follow_linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/turns/filter_continue_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/turns/remove_duplicate_turns.hpp>", private, "<boost/geometry/algorithms/detail/overlay/linear_linear.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/implementation.hpp>", private, "<boost/geometry/algorithms/detail/covered_by/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/interface.hpp>", private, "<boost/geometry/algorithms/detail/covered_by/interface.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/interface.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/multi_point.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/multi_point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_geometry.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/relate/point_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/within/implementation.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/within/multi_point.hpp>", private ] },
    { include: ["<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private, "<boost/geometry/algorithms/detail/within/within_no_turns.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/bounds.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/bounds.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/bounds.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/bounds.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/comparable_distance_far.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/comparable_distance_near.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/algorithms/union_content.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/insert.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/content.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/diff_abs.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/diff_abs.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_far.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/diff_abs.hpp>", private, "<boost/geometry/index/detail/algorithms/minmaxdist.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/intersection_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/margin.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/nth_element.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/nth_element.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/nth_element.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/path_intersection.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/segment_intersection.hpp>", private, "<boost/geometry/index/detail/algorithms/path_intersection.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/smallest_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/minmaxdist.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_centroid.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_far.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/comparable_distance_near.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/sum_for_indexable.hpp>", private, "<boost/geometry/index/detail/algorithms/minmaxdist.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/union_content.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/union_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/algorithms/union_content.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/assert.hpp>", private, "<boost/geometry/index/detail/exception.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/assert.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/algorithms/bounds.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/bounded_view.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/exception.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/is_bounding_geometry.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private, "<boost/geometry/index/detail/rtree/linear/linear.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/concept.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/utilities/are_boxes_ok.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/utilities/are_counts_ok.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/node.hpp>", private, "<boost/geometry/index/detail/rtree/utilities/are_levels_ok.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/pairs.hpp>", private, "<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/pairs.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/scoped_deallocator.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp>", private, "<boost/geometry/index/detail/rtree/pack_create.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/copy.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/variant_dynamic.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/variant_static.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/node/variant_visitor.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/quadratic.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/rstar/insert.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/rstar.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/destroy.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/destroy.hpp>", private, "<boost/geometry/index/detail/rtree/node/subtree_destroyer.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/destroy.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/remove.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/insert.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/linear/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/quadratic/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/choose_next_node.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/rstar/redistribute_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/rtree/visitors/is_leaf.hpp>", private, "<boost/geometry/index/detail/rtree/visitors/remove.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/tags.hpp>", private, "<boost/geometry/index/detail/distance_predicates.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/tags.hpp>", private, "<boost/geometry/index/detail/predicates.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/varray_detail.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/varray.hpp>", private, "<boost/geometry/index/detail/rtree/node/node_elements.hpp>", private ] },
    { include: ["<boost/geometry/index/detail/varray.hpp>", private, "<boost/geometry/index/detail/rtree/node/node.hpp>", private ] },
    { include: ["<boost/geometry/io/wkt/detail/prefix.hpp>", private, "<boost/geometry/multi/io/wkt/detail/prefix.hpp>", private ] },
    { include: ["<boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp>", private, "<boost/geometry/iterators/detail/point_iterator/iterator_type.hpp>", private ] },
    { include: ["<boost/geometry/iterators/detail/point_iterator/inner_range_type.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private ] },
    { include: ["<boost/geometry/iterators/detail/point_iterator/value_type.hpp>", private, "<boost/geometry/iterators/detail/point_iterator/iterator_type.hpp>", private ] },
    { include: ["<boost/geometry/iterators/detail/segment_iterator/range_segment_iterator.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private ] },
    { include: ["<boost/geometry/iterators/detail/segment_iterator/value_type.hpp>", private, "<boost/geometry/iterators/detail/segment_iterator/iterator_type.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/adjlon.hpp>", private, "<boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/adjlon.hpp>", private, "<boost/geometry/srs/projections/impl/pj_fwd.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/adjlon.hpp>", private, "<boost/geometry/srs/projections/impl/pj_inv.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/base_dynamic.hpp>", private, "<boost/geometry/srs/projections/impl/factory_entry.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/dms_parser.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/dms_parser.hpp>", private, "<boost/geometry/srs/projections/impl/pj_param.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/function_overloads.hpp>", private, "<boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/geocent.hpp>", private, "<boost/geometry/srs/projections/impl/pj_transform.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp>", private, "<boost/geometry/srs/projections/impl/pj_transform.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_datum_set.hpp>", private, "<boost/geometry/srs/projections/impl/pj_ell_set.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_datum_set.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_datums.hpp>", private, "<boost/geometry/srs/projections/impl/pj_datum_set.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_datums.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_ellps.hpp>", private, "<boost/geometry/srs/projections/impl/pj_ell_set.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_ell_set.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_fwd.hpp>", private, "<boost/geometry/srs/projections/impl/base_static.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_gridinfo.hpp>", private, "<boost/geometry/srs/projections/impl/pj_gridlist.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_gridlist.hpp>", private, "<boost/geometry/srs/projections/impl/pj_apply_gridshift.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_inv.hpp>", private, "<boost/geometry/srs/projections/impl/base_static.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_param.hpp>", private, "<boost/geometry/srs/projections/impl/pj_datum_set.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_param.hpp>", private, "<boost/geometry/srs/projections/impl/pj_ell_set.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_param.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_strerrno.hpp>", private, "<boost/geometry/srs/projections/impl/aasincos.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_strerrno.hpp>", private, "<boost/geometry/srs/projections/impl/pj_gridlist.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_strerrno.hpp>", private, "<boost/geometry/srs/projections/impl/pj_mlfn.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_strerrno.hpp>", private, "<boost/geometry/srs/projections/impl/pj_phi2.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_strerrno.hpp>", private, "<boost/geometry/srs/projections/impl/proj_mdist.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/pj_units.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/base_dynamic.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_datum_set.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_fwd.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_init.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_param.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_transform.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_units.hpp>", private ] },
    { include: ["<boost/geometry/srs/projections/impl/projects.hpp>", private, "<boost/geometry/srs/projections/impl/pj_zpoly1.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/boundary_view.hpp>", private, "<boost/geometry/algorithms/detail/overlay/intersection_insert.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/boundary_view/implementation.hpp>", private, "<boost/geometry/views/detail/boundary_view.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/boundary_view/interface.hpp>", private, "<boost/geometry/views/detail/boundary_view.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/boundary_view/interface.hpp>", private, "<boost/geometry/views/detail/boundary_view/implementation.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/range_of_boxes.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/equals/implementation.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/expand_by_epsilon.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/indexed_point_view.hpp>", private, "<boost/geometry/algorithms/detail/is_valid/has_invalid_coordinate.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffered_piece_collection.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/buffer/buffer_inserter.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/equals/collect_vectors.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/relate/linear_areal.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/normalized_view.hpp>", private, "<boost/geometry/algorithms/detail/within/point_in_geometry.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/algorithms/detail/overlay/get_turns.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/multi/views/detail/range_type.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/range_type.hpp>", private, "<boost/geometry/views/detail/normalized_view.hpp>", private ] },
    { include: ["<boost/geometry/views/detail/two_dimensional_view.hpp>", private, "<boost/geometry/algorithms/detail/envelope/transform_units.hpp>", private ] },
    { include: ["<boost/gil/detail/mp11.hpp>", private, "<boost/gil/extension/io/png/detail/write.hpp>", private ] },
    { include: ["<boost/gil/detail/mp11.hpp>", private, "<boost/gil/extension/io/pnm/detail/write.hpp>", private ] },
    { include: ["<boost/gil/detail/mp11.hpp>", private, "<boost/gil/extension/io/tiff/detail/device.hpp>", private ] },
    { include: ["<boost/gil/detail/mp11.hpp>", private, "<boost/gil/extension/io/tiff/detail/is_allowed.hpp>", private ] },
    { include: ["<boost/gil/detail/mp11.hpp>", private, "<boost/gil/extension/io/tiff/detail/writer_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/bmp/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/bmp/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/bmp/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/bmp/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/bmp/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/bmp/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/bmp/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/bmp/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/bmp/detail/writer_backend.hpp>", private, "<boost/gil/extension/io/bmp/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/base.hpp>", private, "<boost/gil/extension/io/jpeg/detail/reader_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/base.hpp>", private, "<boost/gil/extension/io/jpeg/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/base.hpp>", private, "<boost/gil/extension/io/jpeg/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/base.hpp>", private, "<boost/gil/extension/io/jpeg/detail/writer_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/jpeg/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/jpeg/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/jpeg/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/supported_types.hpp>", private, "<boost/gil/extension/io/jpeg/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/jpeg/detail/writer_backend.hpp>", private, "<boost/gil/extension/io/jpeg/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/base.hpp>", private, "<boost/gil/extension/io/png/detail/reader_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/base.hpp>", private, "<boost/gil/extension/io/png/detail/writer_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/png/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/png/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/png/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/png/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/supported_types.hpp>", private, "<boost/gil/extension/io/png/detail/reader_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/supported_types.hpp>", private, "<boost/gil/extension/io/png/detail/writer_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/png/detail/writer_backend.hpp>", private, "<boost/gil/extension/io/png/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/pnm/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/pnm/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/pnm/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/pnm/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/pnm/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/pnm/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/pnm/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/pnm/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/pnm/detail/writer_backend.hpp>", private, "<boost/gil/extension/io/pnm/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/raw/detail/device.hpp>", private, "<boost/gil/extension/io/raw/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/raw/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/raw/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/raw/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/raw/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/targa/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/targa/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/targa/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/targa/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/targa/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/targa/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/targa/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/targa/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/targa/detail/writer_backend.hpp>", private, "<boost/gil/extension/io/targa/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/device.hpp>", private, "<boost/gil/extension/io/tiff/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/device.hpp>", private, "<boost/gil/extension/io/tiff/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/device.hpp>", private, "<boost/gil/extension/io/tiff/detail/write.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/device.hpp>", private, "<boost/gil/extension/io/tiff/detail/writer_backend.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/tiff/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/is_allowed.hpp>", private, "<boost/gil/extension/io/tiff/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/log.hpp>", private, "<boost/gil/extension/io/tiff/detail/device.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/tiff/detail/read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/reader_backend.hpp>", private, "<boost/gil/extension/io/tiff/detail/scanline_read.hpp>", private ] },
    { include: ["<boost/gil/extension/io/tiff/detail/writer_backend.hpp>", private, "<boost/gil/extension/io/tiff/detail/write.hpp>", private ] },
    { include: ["<boost/graph/detail/adj_list_edge_iterator.hpp>", private, "<boost/graph/detail/adjacency_list.hpp>", private ] },
    { include: ["<boost/graph/detail/histogram_sort.hpp>", private, "<boost/graph/detail/compressed_sparse_row_struct.hpp>", private ] },
    { include: ["<boost/graph/detail/indexed_properties.hpp>", private, "<boost/graph/detail/compressed_sparse_row_struct.hpp>", private ] },
    { include: ["<boost/graph/detail/shadow_iterator.hpp>", private, "<boost/graph/detail/permutation.hpp>", private ] },
    { include: ["<boost/graph/parallel/detail/untracked_pair.hpp>", private, "<boost/graph/parallel/detail/property_holders.hpp>", private ] },
    { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/detail/array.hpp>", private ] },
    { include: ["<boost/hana/detail/algorithm.hpp>", private, "<boost/hana/detail/unpack_flatten.hpp>", private ] },
    { include: ["<boost/hana/detail/array.hpp>", private, "<boost/hana/detail/unpack_flatten.hpp>", private ] },
    { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/detail/create.hpp>", private ] },
    { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/detail/index_if.hpp>", private ] },
    { include: ["<boost/hana/detail/decay.hpp>", private, "<boost/hana/detail/std_common_type.hpp>", private ] },
    { include: ["<boost/hana/detail/fast_and.hpp>", private, "<boost/hana/detail/has_duplicates.hpp>", private ] },
    { include: ["<boost/hana/detail/intrinsics.hpp>", private, "<boost/hana/detail/ebo.hpp>", private ] },
    { include: ["<boost/hana/detail/nested_by_fwd.hpp>", private, "<boost/hana/detail/nested_by.hpp>", private ] },
    { include: ["<boost/hana/detail/nested_than_fwd.hpp>", private, "<boost/hana/detail/nested_than.hpp>", private ] },
    { include: ["<boost/hana/detail/nested_to_fwd.hpp>", private, "<boost/hana/detail/nested_to.hpp>", private ] },
    { include: ["<boost/hana/detail/operators/adl.hpp>", private, "<boost/hana/detail/integral_constant.hpp>", private ] },
    { include: ["<boost/hana/detail/preprocessor.hpp>", private, "<boost/hana/detail/struct_macros.hpp>", private ] },
    { include: ["<boost/hana/detail/std_common_type.hpp>", private, "<boost/hana/detail/concepts.hpp>", private ] },
    { include: ["<boost/hana/detail/variadic/at.hpp>", private, "<boost/hana/detail/variadic/reverse_apply/flat.hpp>", private ] },
    { include: ["<boost/hana/detail/variadic/reverse_apply/unrolled.hpp>", private, "<boost/hana/detail/variadic/reverse_apply.hpp>", private ] },
    { include: ["<boost/hana/detail/variadic/split_at.hpp>", private, "<boost/hana/detail/variadic/take.hpp>", private ] },
    { include: ["<boost/hana/detail/void_t.hpp>", private, "<boost/hana/detail/concepts.hpp>", private ] },
    { include: ["<boost/hana/detail/void_t.hpp>", private, "<boost/hana/detail/has_common_embedding.hpp>", private ] },
    { include: ["<boost/heap/detail/ordered_adaptor_iterator.hpp>", private, "<boost/heap/detail/mutable_heap.hpp>", private ] },
    { include: ["<boost/heap/detail/tree_iterator.hpp>", private, "<boost/heap/detail/ordered_adaptor_iterator.hpp>", private ] },
    { include: ["<boost/histogram/detail/argument_traits.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/histogram/detail/axes.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/histogram/detail/axes.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/axes.hpp>", private, "<boost/histogram/detail/mutex_base.hpp>", private ] },
    { include: ["<boost/histogram/detail/detect.hpp>", private, "<boost/histogram/detail/common_type.hpp>", private ] },
    { include: ["<boost/histogram/detail/detect.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/detect.hpp>", private, "<boost/histogram/detail/operators.hpp>", private ] },
    { include: ["<boost/histogram/detail/fill.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/linearize.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/histogram/detail/linearize.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/make_default.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/make_default.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/histogram/detail/nonmember_container_access.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/nonmember_container_access.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/nonmember_container_access.hpp>", private, "<boost/histogram/detail/span.hpp>", private ] },
    { include: ["<boost/histogram/detail/operators.hpp>", private, "<boost/histogram/detail/large_int.hpp>", private ] },
    { include: ["<boost/histogram/detail/optional_index.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/optional_index.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/histogram/detail/optional_index.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/optional_index.hpp>", private, "<boost/histogram/detail/linearize.hpp>", private ] },
    { include: ["<boost/histogram/detail/priority.hpp>", private, "<boost/histogram/detail/accumulator_traits.hpp>", private ] },
    { include: ["<boost/histogram/detail/priority.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/priority.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/histogram/detail/priority.hpp>", private, "<boost/histogram/detail/relaxed_equal.hpp>", private ] },
    { include: ["<boost/histogram/detail/relaxed_equal.hpp>", private, "<boost/histogram/detail/index_translator.hpp>", private ] },
    { include: ["<boost/histogram/detail/relaxed_tuple_size.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/relaxed_tuple_size.hpp>", private, "<boost/histogram/detail/index_translator.hpp>", private ] },
    { include: ["<boost/histogram/detail/safe_comparison.hpp>", private, "<boost/histogram/detail/large_int.hpp>", private ] },
    { include: ["<boost/histogram/detail/span.hpp>", private, "<boost/histogram/detail/array_wrapper.hpp>", private ] },
    { include: ["<boost/histogram/detail/span.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/span.hpp>", private, "<boost/histogram/detail/reduce_command.hpp>", private ] },
    { include: ["<boost/histogram/detail/static_if.hpp>", private, "<boost/histogram/detail/array_wrapper.hpp>", private ] },
    { include: ["<boost/histogram/detail/static_if.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/static_if.hpp>", private, "<boost/histogram/detail/fill_n.hpp>", private ] },
    { include: ["<boost/histogram/detail/static_if.hpp>", private, "<boost/histogram/detail/variant_proxy.hpp>", private ] },
    { include: ["<boost/histogram/detail/sub_array.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/try_cast.hpp>", private, "<boost/histogram/detail/axes.hpp>", private ] },
    { include: ["<boost/histogram/detail/tuple_slice.hpp>", private, "<boost/histogram/detail/fill.hpp>", private ] },
    { include: ["<boost/hof/detail/and.hpp>", private, "<boost/hof/detail/can_be_called.hpp>", private ] },
    { include: ["<boost/hof/detail/and.hpp>", private, "<boost/hof/detail/delegate.hpp>", private ] },
    { include: ["<boost/hof/detail/and.hpp>", private, "<boost/hof/detail/result_of.hpp>", private ] },
    { include: ["<boost/hof/detail/can_be_called.hpp>", private, "<boost/hof/detail/result_of.hpp>", private ] },
    { include: ["<boost/hof/detail/delegate.hpp>", private, "<boost/hof/detail/callable_base.hpp>", private ] },
    { include: ["<boost/hof/detail/delegate.hpp>", private, "<boost/hof/detail/compressed_pair.hpp>", private ] },
    { include: ["<boost/hof/detail/delegate.hpp>", private, "<boost/hof/detail/make.hpp>", private ] },
    { include: ["<boost/hof/detail/forward.hpp>", private, "<boost/hof/detail/compressed_pair.hpp>", private ] },
    { include: ["<boost/hof/detail/forward.hpp>", private, "<boost/hof/detail/delegate.hpp>", private ] },
    { include: ["<boost/hof/detail/forward.hpp>", private, "<boost/hof/detail/unpack_tuple.hpp>", private ] },
    { include: ["<boost/hof/detail/holder.hpp>", private, "<boost/hof/detail/can_be_called.hpp>", private ] },
    { include: ["<boost/hof/detail/holder.hpp>", private, "<boost/hof/detail/delegate.hpp>", private ] },
    { include: ["<boost/hof/detail/holder.hpp>", private, "<boost/hof/detail/intrinsics.hpp>", private ] },
    { include: ["<boost/hof/detail/holder.hpp>", private, "<boost/hof/detail/join.hpp>", private ] },
    { include: ["<boost/hof/detail/holder.hpp>", private, "<boost/hof/detail/result_of.hpp>", private ] },
    { include: ["<boost/hof/detail/holder.hpp>", private, "<boost/hof/detail/result_type.hpp>", private ] },
    { include: ["<boost/hof/detail/intrinsics.hpp>", private, "<boost/hof/detail/and.hpp>", private ] },
    { include: ["<boost/hof/detail/intrinsics.hpp>", private, "<boost/hof/detail/delegate.hpp>", private ] },
    { include: ["<boost/hof/detail/intrinsics.hpp>", private, "<boost/hof/detail/static_const_var.hpp>", private ] },
    { include: ["<boost/hof/detail/join.hpp>", private, "<boost/hof/detail/make.hpp>", private ] },
    { include: ["<boost/hof/detail/move.hpp>", private, "<boost/hof/detail/compressed_pair.hpp>", private ] },
    { include: ["<boost/hof/detail/move.hpp>", private, "<boost/hof/detail/make.hpp>", private ] },
    { include: ["<boost/hof/detail/noexcept.hpp>", private, "<boost/hof/detail/delegate.hpp>", private ] },
    { include: ["<boost/hof/detail/result_of.hpp>", private, "<boost/hof/detail/callable_base.hpp>", private ] },
    { include: ["<boost/hof/detail/seq.hpp>", private, "<boost/hof/detail/unpack_tuple.hpp>", private ] },
    { include: ["<boost/hof/detail/using.hpp>", private, "<boost/hof/detail/and.hpp>", private ] },
    { include: ["<boost/hof/detail/using.hpp>", private, "<boost/hof/detail/can_be_called.hpp>", private ] },
    { include: ["<boost/hof/detail/using.hpp>", private, "<boost/hof/detail/delegate.hpp>", private ] },
    { include: ["<boost/icl/detail/associated_value.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/design_config.hpp>", private, "<boost/icl/detail/associated_value.hpp>", private ] },
    { include: ["<boost/icl/detail/element_comparer.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/element_comparer.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/interval_subset_comparer.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/interval_subset_comparer.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/mapped_reference.hpp>", private, "<boost/icl/detail/element_iterator.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/element_comparer.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_morphism.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/interval_subset_comparer.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/map_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/set_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/notate.hpp>", private, "<boost/icl/detail/subset_comparer.hpp>", private ] },
    { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/interval_map_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/interval_set_algo.hpp>", private ] },
    { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/interval_subset_comparer.hpp>", private ] },
    { include: ["<boost/icl/detail/relation_state.hpp>", private, "<boost/icl/detail/subset_comparer.hpp>", private ] },
    { include: ["<boost/icl/detail/set_algo.hpp>", private, "<boost/icl/detail/map_algo.hpp>", private ] },
    { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/allocators/detail/allocator_common.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/allocators/detail/node_tools.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/atomic.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/cast_tags.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/allocators/detail/node_tools.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/min_max.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/type_traits.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/common_algorithms.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_begin.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/allocators/detail/node_tools.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/min_max.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/type_traits.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/common_algorithms.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
    { include: ["<boost/interprocess/detail/config_end.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
    { include: ["<boost/interprocess/detail/file_locking_helpers.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/in_place_interface.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/interprocess/detail/in_place_interface.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/intermodule_singleton_common.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/intermodule_singleton_common.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/intermodule_singleton.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/interprocess_tester.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/managed_global_memory.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/managed_memory_impl.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/math_functions.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
    { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/min_max.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/interprocess/detail/mpl.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
    { include: ["<boost/interprocess/detail/multi_segment_services.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/multi_segment_services.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/nothrow.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_file_functions.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/os_thread_functions.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/posix_time_types_wrk.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
    { include: ["<boost/interprocess/detail/segment_manager_helper.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/shared_dir_helpers.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/simple_swap.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/managed_open_or_create_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/interprocess/detail/utilities.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/variadic_templates_tools.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/win32_api.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/allocators/detail/node_tools.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/file_locking_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/in_place_interface.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/intermodule_singleton_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/intersegment_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/managed_global_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/min_max.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/os_thread_functions.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/pointer_type.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/portable_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/shared_dir_helpers.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/utilities.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/win32_api.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/windows_intermodule_singleton.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/detail/xsi_shared_memory_file_wrapper.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/common_algorithms.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
    { include: ["<boost/interprocess/detail/workaround.hpp>", private, "<boost/interprocess/sync/detail/locks.hpp>", private ] },
    { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/allocators/detail/adaptive_node_pool.hpp>", private ] },
    { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/allocators/detail/allocator_common.hpp>", private ] },
    { include: ["<boost/interprocess/mem_algo/detail/mem_algo_common.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/interprocess/smart_ptr/detail/bad_weak_ptr.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/interprocess/smart_ptr/detail/sp_counted_base_atomic.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/interprocess/smart_ptr/detail/sp_counted_base.hpp>", private, "<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/interprocess/smart_ptr/detail/sp_counted_impl.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/interprocess/sync/detail/common_algorithms.hpp>", private, "<boost/interprocess/detail/robust_emulation.hpp>", private ] },
    { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/detail/condition_algorithm_8a.hpp>", private ] },
    { include: ["<boost/interprocess/sync/detail/locks.hpp>", private, "<boost/interprocess/sync/detail/condition_any_algorithm.hpp>", private ] },
    { include: ["<boost/intrusive/detail/algorithm.hpp>", private, "<boost/container/detail/algorithm.hpp>", private ] },
    { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/any_node_and_algorithms.hpp>", private ] },
    { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/common_slist_algorithms.hpp>", private ] },
    { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
    { include: ["<boost/intrusive/detail/algo_type.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
    { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/common_slist_algorithms.hpp>", private ] },
    { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
    { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/hashtable_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/assert.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
    { include: ["<boost/intrusive/detail/bstree_algorithms_base.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/mpl.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/parent_from_member.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/slist_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/tree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_begin.hpp>", private, "<boost/intrusive/detail/uncast.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/mpl.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/parent_from_member.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/slist_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/tree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/config_end.hpp>", private, "<boost/intrusive/detail/uncast.hpp>", private ] },
    { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/container/detail/compare_functors.hpp>", private ] },
    { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/detail/key_nodeptr_comp.hpp>", private ] },
    { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
    { include: ["<boost/intrusive/detail/ebo_functor_holder.hpp>", private, "<boost/intrusive/detail/tree_value_compare.hpp>", private ] },
    { include: ["<boost/intrusive/detail/function_detector.hpp>", private, "<boost/intrusive/detail/is_stateful_value_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/has_member_function_callable_with.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/intrusive/detail/has_member_function_callable_with.hpp>", private, "<boost/container/detail/is_container.hpp>", private ] },
    { include: ["<boost/intrusive/detail/has_member_function_callable_with.hpp>", private, "<boost/container/detail/is_contiguous_container.hpp>", private ] },
    { include: ["<boost/intrusive/detail/hook_traits.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iiterator.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iiterator.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iiterator.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/is_stateful_value_traits.hpp>", private, "<boost/intrusive/detail/node_to_value.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/container/detail/iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/iterator.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_less_equal_header.hpp>", private, "<boost/interprocess/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/detail/managed_memory_impl.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/detail/managed_multi_shared_memory.hpp>", private ] },
    { include: ["<boost/intrusive/detail/minimal_pair_header.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/any_node_and_algorithms.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/get_value_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/hashtable_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/is_stateful_value_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/key_nodeptr_comp.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/math.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/node_cloner_disposer.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/node_to_value.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/tree_value_compare.hpp>", private ] },
    { include: ["<boost/intrusive/detail/mpl.hpp>", private, "<boost/intrusive/detail/uncast.hpp>", private ] },
    { include: ["<boost/intrusive/detail/node_holder.hpp>", private, "<boost/intrusive/detail/generic_hook.hpp>", private ] },
    { include: ["<boost/intrusive/detail/node_holder.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/parent_from_member.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/reverse_iterator.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/std_fwd.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/tree_node.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/tree_value_compare.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/intrusive/detail/tree_value_compare.hpp>", private, "<boost/intrusive/detail/key_nodeptr_comp.hpp>", private ] },
    { include: ["<boost/intrusive/detail/uncast.hpp>", private, "<boost/intrusive/detail/bstree_algorithms_base.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/any_node_and_algorithms.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/avltree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/default_header_holder.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/ebo_functor_holder.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/equal_to_value.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/exception_disposer.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/hashtable_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/iiterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/list_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/list_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/parent_from_member.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/rbtree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/simple_disposers.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/size_holder.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/slist_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/slist_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/transform_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/tree_iterator.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/tree_node.hpp>", private ] },
    { include: ["<boost/intrusive/detail/workaround.hpp>", private, "<boost/intrusive/detail/tree_value_compare.hpp>", private ] },
    { include: ["<boost/iostreams/detail/access_control.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/concept_adapter.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/device_adapter.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/filter_adapter.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/mode_adapter.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/output_iterator_adapter.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/range_adapter.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
    { include: ["<boost/iostreams/detail/adapter/range_adapter.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/bool_trait_def.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
    { include: ["<boost/iostreams/detail/broken_overload_resolution/forward.hpp>", private, "<boost/iostreams/detail/broken_overload_resolution/stream_buffer.hpp>", private ] },
    { include: ["<boost/iostreams/detail/broken_overload_resolution/forward.hpp>", private, "<boost/iostreams/detail/broken_overload_resolution/stream.hpp>", private ] },
    { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
    { include: ["<boost/iostreams/detail/buffer.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/adapter/device_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/adapter/filter_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/call_traits.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/counted_array.hpp>", private ] },
    { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/char_traits.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/codecvt.hpp>", private, "<boost/iostreams/detail/codecvt_helper.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/codecvt.hpp>", private, "<boost/iostreams/detail/codecvt_holder.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/disable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/is_iterator_range.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/enable_warnings.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/gcc.hpp>", private, "<boost/iostreams/detail/config/overload_resolution.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/gcc.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/detail/execute.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/limits.hpp>", private, "<boost/iostreams/detail/forward.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/overload_resolution.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/unreachable_return.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/char_traits.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/config/codecvt.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/fstream.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/ios.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/iostream.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/path.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/wide_streams.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/absolute_path.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/config/rtl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/file_handle.hpp>", private ] },
    { include: ["<boost/iostreams/detail/config/windows_posix.hpp>", private, "<boost/iostreams/detail/system_failure.hpp>", private ] },
    { include: ["<boost/iostreams/detail/current_directory.hpp>", private, "<boost/iostreams/detail/absolute_path.hpp>", private ] },
    { include: ["<boost/iostreams/detail/dispatch.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/double_object.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/double_object.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
    { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/enable_if_stream.hpp>", private, "<boost/iostreams/detail/wrap_unwrap.hpp>", private ] },
    { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/adapter/range_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/error.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/execute.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/functional.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/device_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/direct_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/filter_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/mode_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/adapter/non_blocking_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/buffer.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/config/fpos.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/counted_array.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/error.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/functional.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/ios.hpp>", private, "<boost/iostreams/detail/system_failure.hpp>", private ] },
    { include: ["<boost/iostreams/detail/is_dereferenceable.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/is_iterator_range.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/optional.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/optional.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/push.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/push_params.hpp>", private, "<boost/iostreams/detail/forward.hpp>", private ] },
    { include: ["<boost/iostreams/detail/push_params.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
    { include: ["<boost/iostreams/detail/resolve.hpp>", private, "<boost/iostreams/detail/push.hpp>", private ] },
    { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/access_control.hpp>", private ] },
    { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/dispatch.hpp>", private ] },
    { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iostreams/detail/select.hpp>", private, "<boost/iostreams/detail/restrict_impl.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/adapter/concept_adapter.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/direct_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/streambuf/linked_streambuf.hpp>", private, "<boost/iostreams/detail/streambuf/indirect_streambuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/system_failure.hpp>", private, "<boost/iostreams/detail/current_directory.hpp>", private ] },
    { include: ["<boost/iostreams/detail/template_params.hpp>", private, "<boost/iostreams/detail/bool_trait_def.hpp>", private ] },
    { include: ["<boost/iostreams/detail/translate_int_type.hpp>", private, "<boost/iostreams/detail/streambuf/chainbuf.hpp>", private ] },
    { include: ["<boost/iostreams/detail/wrap_unwrap.hpp>", private, "<boost/iostreams/detail/resolve.hpp>", private ] },
    { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/detail/enable_if.hpp>", private ] },
    { include: ["<boost/iterator/detail/config_def.hpp>", private, "<boost/iterator/detail/facade_iterator_category.hpp>", private ] },
    { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/detail/enable_if.hpp>", private ] },
    { include: ["<boost/iterator/detail/config_undef.hpp>", private, "<boost/iterator/detail/facade_iterator_category.hpp>", private ] },
    { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/bimap/detail/map_view_iterator.hpp>", private ] },
    { include: ["<boost/iterator/detail/enable_if.hpp>", private, "<boost/bimap/detail/set_view_iterator.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/array.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/buffer.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/default_resource.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/handler.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/ryu/detail/common.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/ryu/detail/d2s_full_table.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/ryu/detail/d2s.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/ryu/detail/d2s_intrinsics.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/ryu/detail/digit_table.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/ryu/ryu.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/sse2.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/stack.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/string_impl.hpp>", private ] },
    { include: ["<boost/json/detail/config.hpp>", private, "<boost/json/detail/value_traits.hpp>", private ] },
    { include: ["<boost/json/detail/except.hpp>", private, "<boost/json/impl/array.hpp>", private ] },
    { include: ["<boost/json/detail/ryu/detail/common.hpp>", private, "<boost/json/detail/ryu/detail/d2s.hpp>", private ] },
    { include: ["<boost/json/detail/ryu/detail/common.hpp>", private, "<boost/json/detail/ryu/detail/d2s_intrinsics.hpp>", private ] },
    { include: ["<boost/json/detail/ryu/detail/d2s_full_table.hpp>", private, "<boost/json/detail/ryu/detail/d2s.hpp>", private ] },
    { include: ["<boost/json/detail/ryu/detail/d2s_intrinsics.hpp>", private, "<boost/json/detail/ryu/detail/d2s.hpp>", private ] },
    { include: ["<boost/json/detail/utf8.hpp>", private, "<boost/json/detail/sse2.hpp>", private ] },
    { include: ["<boost/json/detail/value.hpp>", private, "<boost/json/detail/string_impl.hpp>", private ] },
    { include: ["<boost/json/detail/value_traits.hpp>", private, "<boost/json/detail/value_from.hpp>", private ] },
    { include: ["<boost/json/detail/value_traits.hpp>", private, "<boost/json/detail/value_to.hpp>", private ] },
    { include: ["<boost/lambda/detail/is_instance_of.hpp>", private, "<boost/lambda/detail/operator_return_type_traits.hpp>", private ] },
    { include: ["<boost/lambda/detail/is_instance_of.hpp>", private, "<boost/lambda/detail/operators.hpp>", private ] },
    { include: ["<boost/lambda/detail/lambda_fwd.hpp>", private, "<boost/lambda/detail/lambda_functor_base.hpp>", private ] },
    { include: ["<boost/lambda/detail/lambda_traits.hpp>", private, "<boost/lambda/detail/lambda_functor_base.hpp>", private ] },
    { include: ["<boost/leaf/detail/config.hpp>", private, "<boost/leaf/detail/optional.hpp>", private ] },
    { include: ["<boost/leaf/detail/mp11.hpp>", private, "<boost/leaf/detail/function_traits.hpp>", private ] },
    { include: ["<boost/leaf/detail/optional.hpp>", private, "<boost/leaf/detail/print.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/inf_nan.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/is_character.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/lcast_char_constants.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/lcast_char_constants.hpp>", private, "<boost/lexical_cast/detail/inf_nan.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/lcast_char_constants.hpp>", private, "<boost/lexical_cast/detail/lcast_unsigned_converters.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/lcast_unsigned_converters.hpp>", private, "<boost/lexical_cast/detail/converter_lexical_streams.hpp>", private ] },
    { include: ["<boost/lexical_cast/detail/widest_char.hpp>", private, "<boost/lexical_cast/detail/converter_lexical.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/const.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const_bind.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/default.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/register.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/return.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/this.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/add.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/void.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/default.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/register.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/return.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/this.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/void.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/auto.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/bind.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/const.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/default.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/inline.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/recursive.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/register.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/return.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/this.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/thisunderscore.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/facility/remove.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/void.hpp>", private ] },
    { include: ["<boost/local_function/detail/preprocessor/keyword/void.hpp>", private, "<boost/local_function/detail/preprocessor/void_list.hpp>", private ] },
    { include: ["<boost/lockfree/detail/atomic.hpp>", private, "<boost/lockfree/detail/freelist.hpp>", private ] },
    { include: ["<boost/lockfree/detail/parameter.hpp>", private, "<boost/lockfree/detail/freelist.hpp>", private ] },
    { include: ["<boost/lockfree/detail/prefix.hpp>", private, "<boost/lockfree/detail/tagged_ptr.hpp>", private ] },
    { include: ["<boost/lockfree/detail/tagged_ptr_dcas.hpp>", private, "<boost/lockfree/detail/tagged_ptr.hpp>", private ] },
    { include: ["<boost/lockfree/detail/tagged_ptr.hpp>", private, "<boost/lockfree/detail/freelist.hpp>", private ] },
    { include: ["<boost/lockfree/detail/tagged_ptr_ptrcompression.hpp>", private, "<boost/lockfree/detail/tagged_ptr.hpp>", private ] },
    { include: ["<boost/log/detail/allocator_traits.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
    { include: ["<boost/log/detail/attachable_sstream_buf.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
    { include: ["<boost/log/detail/attr_output_terminal.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
    { include: ["<boost/log/detail/cleanup_scope_guard.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/allocator_traits.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/asio_fwd.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attachable_sstream_buf.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attribute_get_value_impl.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attribute_predicate.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/cleanup_scope_guard.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/copy_cv.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/custom_terminal_spec.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/date_time_fmt_gen_traits_fwd.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/date_time_format_parser.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/deduce_char_type.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/default_attribute_names.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/embedded_string_type.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/event.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/fake_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/function_traits.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/id.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/is_character_type.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/is_ostream.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/locking_ptr.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/locks.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/native_typeof.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/pause.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/pp_identity.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/setup_config.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/sfinae_tools.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/singleton.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/snprintf.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/tagged_integer.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/thread_specific.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/trivial_keyword.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/config.hpp>", private, "<boost/log/detail/value_ref_visitation.hpp>", private ] },
    { include: ["<boost/log/detail/copy_cv.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/custom_terminal_spec.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/date_time_format_parser.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/allocator_traits.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attachable_sstream_buf.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attribute_get_value_impl.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attribute_predicate.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/cleanup_scope_guard.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/copy_cv.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/custom_terminal_spec.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/date_time_format_parser.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/deduce_char_type.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/default_attribute_names.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/embedded_string_type.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/event.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/fake_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/function_traits.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/id.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/is_character_type.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/is_ostream.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/locking_ptr.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/locks.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/pause.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/sfinae_tools.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/singleton.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/snprintf.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/tagged_integer.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/thread_specific.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/trivial_keyword.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/footer.hpp>", private, "<boost/log/detail/value_ref_visitation.hpp>", private ] },
    { include: ["<boost/log/detail/generate_overloads.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/allocator_traits.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attachable_sstream_buf.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attribute_get_value_impl.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attribute_predicate.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attr_output_impl.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/attr_output_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/cleanup_scope_guard.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/copy_cv.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/custom_terminal_spec.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/date_time_format_parser.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/decomposed_time.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/deduce_char_type.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/default_attribute_names.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/embedded_string_type.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/event.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/fake_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/format.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/function_traits.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/id.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/is_character_type.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/is_ostream.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/light_rw_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/locking_ptr.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/locks.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/pause.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/sfinae_tools.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/singleton.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/snprintf.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/tagged_integer.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/threadsafe_queue.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/thread_specific.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/timestamp.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/trivial_keyword.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/unary_function_terminal.hpp>", private ] },
    { include: ["<boost/log/detail/header.hpp>", private, "<boost/log/detail/value_ref_visitation.hpp>", private ] },
    { include: ["<boost/log/detail/id.hpp>", private, "<boost/log/detail/process_id.hpp>", private ] },
    { include: ["<boost/log/detail/id.hpp>", private, "<boost/log/detail/thread_id.hpp>", private ] },
    { include: ["<boost/log/detail/is_character_type.hpp>", private, "<boost/log/detail/code_conversion.hpp>", private ] },
    { include: ["<boost/log/detail/is_character_type.hpp>", private, "<boost/log/detail/c_str.hpp>", private ] },
    { include: ["<boost/log/detail/is_character_type.hpp>", private, "<boost/log/detail/sink_init_helpers.hpp>", private ] },
    { include: ["<boost/log/detail/pause.hpp>", private, "<boost/log/detail/adaptive_mutex.hpp>", private ] },
    { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/detail/light_function.hpp>", private ] },
    { include: ["<boost/log/detail/sfinae_tools.hpp>", private, "<boost/log/detail/parameter_tools.hpp>", private ] },
    { include: ["<boost/log/detail/timestamp.hpp>", private, "<boost/log/detail/enqueued_record.hpp>", private ] },
    { include: ["<boost/math/bindings/detail/big_lanczos.hpp>", private, "<boost/multiprecision/detail/big_lanczos.hpp>", private ] },
    { include: ["<boost/math/distributions/detail/hypergeometric_pdf.hpp>", private, "<boost/math/distributions/detail/hypergeometric_cdf.hpp>", private ] },
    { include: ["<boost/math/distributions/detail/hypergeometric_pdf.hpp>", private, "<boost/math/distributions/detail/hypergeometric_quantile.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/airy_ai_bi_zero.hpp>", private, "<boost/math/special_functions/detail/bessel_jy_zero.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_j0.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_j0.hpp>", private, "<boost/math/special_functions/detail/bessel_y0.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_j1.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_j1.hpp>", private, "<boost/math/special_functions/detail/bessel_y1.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_jy_asym.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_jy_asym.hpp>", private, "<boost/math/special_functions/detail/bessel_jy.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_jy.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_jy_series.hpp>", private, "<boost/math/special_functions/detail/bessel_jn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_jy_series.hpp>", private, "<boost/math/special_functions/detail/bessel_jy.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_jy_series.hpp>", private, "<boost/math/special_functions/detail/bessel_yn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_k0.hpp>", private, "<boost/math/special_functions/detail/bessel_kn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_k1.hpp>", private, "<boost/math/special_functions/detail/bessel_kn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_y0.hpp>", private, "<boost/math/special_functions/detail/bessel_yn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/bessel_y1.hpp>", private, "<boost/math/special_functions/detail/bessel_yn.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/hypergeometric_1F1_bessel.hpp>", private, "<boost/math/special_functions/detail/hypergeometric_1F1_large_abz.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/hypergeometric_pFq_checked_series.hpp>", private, "<boost/math/special_functions/detail/hypergeometric_1F1_bessel.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/hypergeometric_pFq_checked_series.hpp>", private, "<boost/math/special_functions/detail/hypergeometric_1F1_recurrence.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/hypergeometric_series.hpp>", private, "<boost/math/special_functions/detail/hypergeometric_1F1_large_abz.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/hypergeometric_series.hpp>", private, "<boost/math/special_functions/detail/hypergeometric_pFq_checked_series.hpp>", private ] },
    { include: ["<boost/math/special_functions/detail/t_distribution_inv.hpp>", private, "<boost/math/special_functions/detail/ibeta_inverse.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/at_c.hpp>", private, "<boost/metaparse/v1/impl/at_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/concat.hpp>", private, "<boost/metaparse/v1/cpp11/impl/string.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/is_none_c_impl.hpp>", private, "<boost/metaparse/v1/cpp11/impl/is_none_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/nth_of_c_skip_remaining.hpp>", private, "<boost/metaparse/v1/cpp11/impl/nth_of_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/or_c.hpp>", private, "<boost/metaparse/v1/cpp11/impl/any_of_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/push_front_c.hpp>", private, "<boost/metaparse/v1/cpp11/impl/pop_back.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp11/impl/size.hpp>", private, "<boost/metaparse/v1/cpp11/impl/pop_back.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/at_c.hpp>", private, "<boost/metaparse/v1/impl/at_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/later_result.hpp>", private, "<boost/metaparse/v1/cpp98/impl/one_of_fwd_op.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/nth_of_c_impl.hpp>", private, "<boost/metaparse/v1/cpp98/impl/nth_of_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/one_of_fwd_op.hpp>", private, "<boost/metaparse/v1/cpp98/impl/one_of.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/push_front_c.hpp>", private, "<boost/metaparse/v1/cpp98/impl/pop_back.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/sequence_impl.hpp>", private, "<boost/metaparse/v1/cpp98/impl/sequence.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/size.hpp>", private, "<boost/metaparse/v1/cpp98/impl/pop_back.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/size.hpp>", private, "<boost/metaparse/v1/cpp98/impl/push_back_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/skip_seq.hpp>", private, "<boost/metaparse/v1/cpp98/impl/nth_of_c_impl.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/update_c.hpp>", private, "<boost/metaparse/v1/cpp98/impl/pop_back.hpp>", private ] },
    { include: ["<boost/metaparse/v1/cpp98/impl/update_c.hpp>", private, "<boost/metaparse/v1/cpp98/impl/push_back_c.hpp>", private ] },
    { include: ["<boost/metaparse/v1/impl/apply_parser.hpp>", private, "<boost/metaparse/v1/cpp98/impl/sequence_impl.hpp>", private ] },
    { include: ["<boost/metaparse/v1/impl/at_c.hpp>", private, "<boost/metaparse/v1/impl/string_iterator.hpp>", private ] },
    { include: ["<boost/metaparse/v1/impl/fwd/iterate_impl.hpp>", private, "<boost/metaparse/v1/impl/iterate_impl_unchecked.hpp>", private ] },
    { include: ["<boost/metaparse/v1/impl/iterate_impl_unchecked.hpp>", private, "<boost/metaparse/v1/impl/iterate_impl.hpp>", private ] },
    { include: ["<boost/metaparse/v1/impl/string_iterator_tag.hpp>", private, "<boost/metaparse/v1/impl/string_iterator.hpp>", private ] },
    { include: ["<boost/move/algo/detail/basic_op.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/move/algo/detail/basic_op.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
    { include: ["<boost/move/algo/detail/heap_sort.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/algo/detail/heap_sort.hpp>", private, "<boost/move/algo/detail/pdqsort.hpp>", private ] },
    { include: ["<boost/move/algo/detail/insertion_sort.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/algo/detail/insertion_sort.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/algo/detail/insertion_sort.hpp>", private, "<boost/move/algo/detail/pdqsort.hpp>", private ] },
    { include: ["<boost/move/algo/detail/is_sorted.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/algo/detail/is_sorted.hpp>", private, "<boost/move/algo/detail/heap_sort.hpp>", private ] },
    { include: ["<boost/move/algo/detail/merge.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/algo/detail/merge.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/algo/detail/merge_sort.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/algo/detail/pdqsort.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/detail/heap_sort.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/algo/detail/pdqsort.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/config_begin.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/detail/heap_sort.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/algo/detail/pdqsort.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/config_end.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
    { include: ["<boost/move/detail/destruct_n.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/move/detail/destruct_n.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
    { include: ["<boost/move/detail/destruct_n.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/dispatch_uses_allocator.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/flat_tree.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/guards_dended.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/iterators.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/pair.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/geometry/index/detail/varray_detail.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/geometry/index/detail/varray.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/interprocess/detail/named_proxy.hpp>", private ] },
    { include: ["<boost/move/detail/fwd_macros.hpp>", private, "<boost/intrusive/detail/has_member_function_callable_with.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/advanced_insert_int.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/copy_move_algo.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/iterator_to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_to_raw_pointer.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/basic_op.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/heap_sort.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/merge.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/algo/detail/pdqsort.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/detail/iterator_to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/iterator_traits.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/move/detail/meta_utils_core.hpp>", private, "<boost/intrusive/detail/iterator.hpp>", private ] },
    { include: ["<boost/move/detail/meta_utils_core.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
    { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/detail/reverse_iterator.hpp>", private ] },
    { include: ["<boost/move/detail/meta_utils.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
    { include: ["<boost/move/detail/move_helpers.hpp>", private, "<boost/container/detail/tree.hpp>", private ] },
    { include: ["<boost/move/detail/placement_new.hpp>", private, "<boost/intrusive/detail/array_initializer.hpp>", private ] },
    { include: ["<boost/move/detail/placement_new.hpp>", private, "<boost/move/algo/detail/insertion_sort.hpp>", private ] },
    { include: ["<boost/move/detail/pointer_element.hpp>", private, "<boost/move/detail/iterator_to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/pointer_element.hpp>", private, "<boost/move/detail/to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/reverse_iterator.hpp>", private, "<boost/move/algo/detail/adaptive_sort_merge.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/container/detail/std_fwd.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/interprocess/detail/std_fwd.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/intrusive/detail/std_fwd.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_begin.hpp>", private, "<boost/move/detail/iterator_traits.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/container/detail/std_fwd.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/interprocess/detail/std_fwd.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/intrusive/detail/std_fwd.hpp>", private ] },
    { include: ["<boost/move/detail/std_ns_end.hpp>", private, "<boost/move/detail/iterator_traits.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/adaptive_node_pool_impl.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/destroyers.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/multiallocation_chain.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/node_alloc_holder.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/container/detail/node_pool_impl.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/intrusive/detail/default_header_holder.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/intrusive/detail/hook_traits.hpp>", private ] },
    { include: ["<boost/move/detail/to_raw_pointer.hpp>", private, "<boost/move/detail/iterator_to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/block_list.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/block_slist.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/mpl.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/container/detail/type_traits.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/detail/os_file_functions.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/detail/segment_manager_helper.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/interprocess/mem_algo/detail/simple_seq_fit_impl.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/intrusive/detail/mpl.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/move/detail/iterator_traits.hpp>", private ] },
    { include: ["<boost/move/detail/type_traits.hpp>", private, "<boost/move/detail/move_helpers.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/algo/detail/heap_sort.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/algo/detail/merge_sort.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/algo/detail/pdqsort.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/fwd_macros.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/meta_utils.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/pointer_element.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/to_raw_pointer.hpp>", private ] },
    { include: ["<boost/move/detail/workaround.hpp>", private, "<boost/move/detail/type_traits.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_append.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_copy_if.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_count.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_fold.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_map_find.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_plus.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_remove_if.hpp>", private ] },
    { include: ["<boost/mp11/detail/config.hpp>", private, "<boost/mp11/detail/mp_with_index.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_append.hpp>", private, "<boost/mp11/detail/mp_copy_if.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_append.hpp>", private, "<boost/mp11/detail/mp_remove_if.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_fold.hpp>", private, "<boost/mp11/detail/mp_min_element.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_list.hpp>", private, "<boost/mp11/detail/mp_append.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_list.hpp>", private, "<boost/mp11/detail/mp_copy_if.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_list.hpp>", private, "<boost/mp11/detail/mp_remove_if.hpp>", private ] },
    { include: ["<boost/mp11/detail/mp_plus.hpp>", private, "<boost/mp11/detail/mp_count.hpp>", private ] },
    { include: ["<boost/mpi/detail/antiques.hpp>", private, "<boost/mpi/detail/mpi_datatype_primitive.hpp>", private ] },
    { include: ["<boost/mpi/detail/antiques.hpp>", private, "<boost/mpi/detail/packed_iprimitive.hpp>", private ] },
    { include: ["<boost/mpi/detail/antiques.hpp>", private, "<boost/mpi/detail/packed_oprimitive.hpp>", private ] },
    { include: ["<boost/mpi/detail/forward_skeleton_oarchive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/mpi/detail/ignore_oprimitive.hpp>", private, "<boost/mpi/detail/text_skeleton_oarchive.hpp>", private ] },
    { include: ["<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
    { include: ["<boost/mpi/detail/ignore_skeleton_oarchive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
    { include: ["<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private, "<boost/mpi/detail/mpi_datatype_cache.hpp>", private ] },
    { include: ["<boost/mpi/detail/mpi_datatype_primitive.hpp>", private, "<boost/mpi/detail/content_oarchive.hpp>", private ] },
    { include: ["<boost/mpi/detail/mpi_datatype_primitive.hpp>", private, "<boost/mpi/detail/mpi_datatype_oarchive.hpp>", private ] },
    { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/access_specifier.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
    { include: ["<boost/multi_index/detail/adl_swap.hpp>", private, "<boost/multi_index/detail/auto_space.hpp>", private ] },
    { include: ["<boost/multi_index/detail/adl_swap.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/auto_space.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/bucket_array.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/copy_map.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/hash_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/node_handle.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/ord_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/rnd_index_loader.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/rnd_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private ] },
    { include: ["<boost/multi_index/detail/allocator_traits.hpp>", private, "<boost/multi_index/detail/seq_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/bucket_array.hpp>", private ] },
    { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/copy_map.hpp>", private ] },
    { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/index_loader.hpp>", private ] },
    { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/index_matcher.hpp>", private ] },
    { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/rnd_index_loader.hpp>", private ] },
    { include: ["<boost/multi_index/detail/auto_space.hpp>", private, "<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private ] },
    { include: ["<boost/multi_index/detail/bidir_node_iterator.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/copy_map.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/define_if_constexpr_macro.hpp>", private, "<boost/multi_index/detail/node_handle.hpp>", private ] },
    { include: ["<boost/multi_index/detail/define_if_constexpr_macro.hpp>", private, "<boost/multi_index/detail/undef_if_constexpr_macro.hpp>", private ] },
    { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/do_not_copy_elements_tag.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/duplicates_iterator.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/hash_index_node.hpp>", private, "<boost/multi_index/detail/bucket_array.hpp>", private ] },
    { include: ["<boost/multi_index/detail/header_holder.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/archive_constructed.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/index_node_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/node_handle.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ignore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
    { include: ["<boost/multi_index/detail/index_base.hpp>", private, "<boost/multi_index/detail/base_type.hpp>", private ] },
    { include: ["<boost/multi_index/detail/index_loader.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/index_matcher.hpp>", private, "<boost/multi_index/detail/index_saver.hpp>", private ] },
    { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
    { include: ["<boost/multi_index/detail/index_node_base.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/index_saver.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/is_index_list.hpp>", private, "<boost/multi_index/detail/base_type.hpp>", private ] },
    { include: ["<boost/multi_index/detail/is_index_list.hpp>", private, "<boost/multi_index/detail/node_type.hpp>", private ] },
    { include: ["<boost/multi_index/detail/is_transparent.hpp>", private, "<boost/multi_index/detail/promotes_arg.hpp>", private ] },
    { include: ["<boost/multi_index/detail/iter_adaptor.hpp>", private, "<boost/multi_index/detail/safe_mode.hpp>", private ] },
    { include: ["<boost/multi_index/detail/modify_key_adaptor.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/node_handle.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/node_handle.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/node_type.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ord_index_impl_fwd.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ord_index_node.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/ord_index_ops.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/promotes_arg.hpp>", private, "<boost/multi_index/detail/ord_index_ops.hpp>", private ] },
    { include: ["<boost/multi_index/detail/promotes_arg.hpp>", private, "<boost/multi_index/detail/rnk_index_ops.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/copy_map.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/hash_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/index_loader.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/index_matcher.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/ord_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/rnd_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/raw_ptr.hpp>", private, "<boost/multi_index/detail/seq_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/archive_constructed.hpp>", private ] },
    { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/index_node_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/node_handle.hpp>", private ] },
    { include: ["<boost/multi_index/detail/restore_wstrict_aliasing.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
    { include: ["<boost/multi_index/detail/rnd_index_node.hpp>", private, "<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private ] },
    { include: ["<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private, "<boost/multi_index/detail/rnd_index_loader.hpp>", private ] },
    { include: ["<boost/multi_index/detail/rnd_index_ptr_array.hpp>", private, "<boost/multi_index/detail/rnd_index_ops.hpp>", private ] },
    { include: ["<boost/multi_index/detail/safe_mode.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/scope_guard.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/seq_index_node.hpp>", private, "<boost/multi_index/detail/seq_index_ops.hpp>", private ] },
    { include: ["<boost/multi_index/detail/uintptr_type.hpp>", private, "<boost/multi_index/detail/ord_index_node.hpp>", private ] },
    { include: ["<boost/multi_index/detail/unbounded.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/undef_if_constexpr_macro.hpp>", private, "<boost/multi_index/detail/node_handle.hpp>", private ] },
    { include: ["<boost/multi_index/detail/value_compare.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/detail/allocator_traits.hpp>", private ] },
    { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/detail/index_base.hpp>", private ] },
    { include: ["<boost/multi_index/detail/vartempl_support.hpp>", private, "<boost/multi_index/detail/ord_index_impl.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/default_ops.hpp>", private, "<boost/multiprecision/detail/generic_interconvert.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/digits.hpp>", private, "<boost/multiprecision/detail/precision.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/et_ops.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/functions/constants.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/functions/pow.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/functions/trig.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/min_max.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/no_et_ops.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/number_base.hpp>", private, "<boost/multiprecision/detail/default_ops.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/number_base.hpp>", private, "<boost/multiprecision/detail/precision.hpp>", private ] },
    { include: ["<boost/multiprecision/detail/rebind.hpp>", private, "<boost/multiprecision/detail/dynamic_array.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/conversion_traits.hpp>", private, "<boost/numeric/conversion/detail/converter.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/int_float_mixture.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/int_float_mixture.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/is_subranged.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/converter.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/int_float_mixture.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/sign_mixture.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/meta.hpp>", private, "<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp>", private, "<boost/numeric/conversion/detail/numeric_cast_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp>", private, "<boost/numeric/conversion/detail/numeric_cast_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/sign_mixture.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/sign_mixture.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private, "<boost/numeric/conversion/detail/conversion_traits.hpp>", private ] },
    { include: ["<boost/numeric/conversion/detail/udt_builtin_mixture.hpp>", private, "<boost/numeric/conversion/detail/is_subranged.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/bcc_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/bugs.hpp>", private, "<boost/numeric/interval/detail/division.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/c99sub_rounding_control.hpp>", private, "<boost/numeric/interval/detail/c99_rounding_control.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/c99sub_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/detail/division.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/interval_prototype.hpp>", private, "<boost/numeric/interval/detail/test_input.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/msvc_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/test_input.hpp>", private, "<boost/numeric/interval/detail/division.hpp>", private ] },
    { include: ["<boost/numeric/interval/detail/x86gcc_rounding_control.hpp>", private, "<boost/numeric/interval/detail/x86_rounding_control.hpp>", private ] },
    { include: ["<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/adaptive_iterator_impl.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/const_step_iterator_impl.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/n_step_iterator_impl.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private, "<boost/numeric/odeint/iterator/impl/times_iterator_impl.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/integrate/detail/functors.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_times.hpp>", private ] },
    { include: ["<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private ] },
    { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_call_algebra.hpp>", private, "<boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp>", private ] },
    { include: ["<boost/numeric/odeint/stepper/detail/generic_rk_operations.hpp>", private, "<boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp>", private ] },
    { include: ["<boost/numeric/odeint/stepper/detail/pid_step_adjuster_coefficients.hpp>", private, "<boost/numeric/odeint/stepper/detail/pid_step_adjuster.hpp>", private ] },
    { include: ["<boost/numeric/odeint/stepper/detail/rotating_buffer.hpp>", private, "<boost/numeric/odeint/stepper/detail/adaptive_adams_coefficients.hpp>", private ] },
    { include: ["<boost/numeric/odeint/stepper/detail/rotating_buffer.hpp>", private, "<boost/numeric/odeint/stepper/detail/pid_step_adjuster.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_const.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/integrate/detail/integrate_times.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp>", private ] },
    { include: ["<boost/numeric/odeint/util/detail/less_with_sign.hpp>", private, "<boost/numeric/odeint/iterator/integrate/detail/integrate_times.hpp>", private ] },
    { include: ["<boost/numeric/ublas/detail/definitions.hpp>", private, "<boost/numeric/ublas/detail/config.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/argument_specs.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/arity_range.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/argument_specs.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/argument_specs.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/specification.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/argument_specs.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/split_args.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/arity_range.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/for_each.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/flatten.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_cast.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_name.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_name.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_name.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/function_name.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/specification.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp>", private ] },
    { include: ["<boost/parameter/aux_/preprocessor/impl/split_args.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp>", private ] },
    { include: ["<boost/pfr/detail/cast_to_layout_compatible.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/cast_to_layout_compatible.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/core17_generated.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/core.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/detectors.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/fields_count.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/for_each_field_impl.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/functional.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/io.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/make_flat_tuple_of_references.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/make_integer_sequence.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/offset_based_getter.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/sequence_tuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/size_array.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/stdtuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/tie_from_structure_tuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/config.hpp>", private, "<boost/pfr/detail/unsafe_declval.hpp>", private ] },
    { include: ["<boost/pfr/detail/core14_classic.hpp>", private, "<boost/pfr/detail/core.hpp>", private ] },
    { include: ["<boost/pfr/detail/core14_loophole.hpp>", private, "<boost/pfr/detail/core.hpp>", private ] },
    { include: ["<boost/pfr/detail/core17_generated.hpp>", private, "<boost/pfr/detail/core17.hpp>", private ] },
    { include: ["<boost/pfr/detail/core17.hpp>", private, "<boost/pfr/detail/core.hpp>", private ] },
    { include: ["<boost/pfr/detail/core.hpp>", private, "<boost/pfr/detail/tie_from_structure_tuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/fields_count.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/fields_count.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/fields_count.hpp>", private, "<boost/pfr/detail/core17.hpp>", private ] },
    { include: ["<boost/pfr/detail/for_each_field_impl.hpp>", private, "<boost/pfr/detail/core17.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_flat_tuple_of_references.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_flat_tuple_of_references.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_integer_sequence.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_integer_sequence.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_integer_sequence.hpp>", private, "<boost/pfr/detail/fields_count.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_integer_sequence.hpp>", private, "<boost/pfr/detail/make_flat_tuple_of_references.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_integer_sequence.hpp>", private, "<boost/pfr/detail/sequence_tuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/make_integer_sequence.hpp>", private, "<boost/pfr/detail/tie_from_structure_tuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/offset_based_getter.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/offset_based_getter.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/cast_to_layout_compatible.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/core17.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/for_each_field_impl.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/make_flat_tuple_of_references.hpp>", private ] },
    { include: ["<boost/pfr/detail/rvalue_t.hpp>", private, "<boost/pfr/detail/offset_based_getter.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/core17_generated.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/for_each_field_impl.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/functional.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/io.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/make_flat_tuple_of_references.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/offset_based_getter.hpp>", private ] },
    { include: ["<boost/pfr/detail/sequence_tuple.hpp>", private, "<boost/pfr/detail/stdtuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/size_array.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/size_t_.hpp>", private, "<boost/pfr/detail/core14_classic.hpp>", private ] },
    { include: ["<boost/pfr/detail/size_t_.hpp>", private, "<boost/pfr/detail/core17_generated.hpp>", private ] },
    { include: ["<boost/pfr/detail/size_t_.hpp>", private, "<boost/pfr/detail/fields_count.hpp>", private ] },
    { include: ["<boost/pfr/detail/size_t_.hpp>", private, "<boost/pfr/detail/offset_based_getter.hpp>", private ] },
    { include: ["<boost/pfr/detail/stdtuple.hpp>", private, "<boost/pfr/detail/tie_from_structure_tuple.hpp>", private ] },
    { include: ["<boost/pfr/detail/unsafe_declval.hpp>", private, "<boost/pfr/detail/core14_loophole.hpp>", private ] },
    { include: ["<boost/pfr/detail/unsafe_declval.hpp>", private, "<boost/pfr/detail/fields_count.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/member_function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_function_object.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/bind_member_function.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_10.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_20.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_30.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_40.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr_50.hpp>", private, "<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/bind/detail/cpp03/preprocessed/member_function_ptr.hpp>", private, "<boost/phoenix/bind/detail/cpp03/member_function_ptr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/function_eval_expr.hpp>", private, "<boost/phoenix/core/detail/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/function_eval.hpp>", private, "<boost/phoenix/core/detail/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_operator.hpp>", private, "<boost/phoenix/core/detail/cpp03/actor_operator.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/actor_result_of.hpp>", private, "<boost/phoenix/core/detail/cpp03/actor_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/argument_no_predefined_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/argument_predefined_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/argument.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/call.hpp>", private, "<boost/phoenix/core/detail/cpp03/call.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/expression.hpp>", private, "<boost/phoenix/core/detail/cpp03/expression.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_10.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_20.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_30.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_40.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr_50.hpp>", private, "<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval_expr.hpp>", private, "<boost/phoenix/core/detail/cpp03/function_eval_expr.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/cpp03/preprocessed/function_eval.hpp>", private, "<boost/phoenix/core/detail/cpp03/function_eval.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/function_eval.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/function_eval.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_function_object.hpp>", private ] },
    { include: ["<boost/phoenix/core/detail/function_eval.hpp>", private, "<boost/phoenix/bind/detail/cpp03/bind_member_function.hpp>", private ] },
    { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_10.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
    { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_20.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
    { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_30.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
    { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_40.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
    { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator_50.hpp>", private, "<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private ] },
    { include: ["<boost/phoenix/function/detail/cpp03/preprocessed/function_operator.hpp>", private, "<boost/phoenix/function/detail/cpp03/function_operator.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_eval.hpp>", private, "<boost/phoenix/object/detail/cpp03/construct_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct_expr.hpp>", private, "<boost/phoenix/object/detail/cpp03/construct_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/construct.hpp>", private, "<boost/phoenix/object/detail/cpp03/construct.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_eval.hpp>", private, "<boost/phoenix/object/detail/cpp03/new_eval.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_10.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_20.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_30.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_40.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr_50.hpp>", private, "<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new_expr.hpp>", private, "<boost/phoenix/object/detail/cpp03/new_expr.hpp>", private ] },
    { include: ["<boost/phoenix/object/detail/cpp03/preprocessed/new.hpp>", private, "<boost/phoenix/object/detail/cpp03/new.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_result_of.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_eval_result_of.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_expr.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_expr.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_10.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_20.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_30.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_40.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen_50.hpp>", private, "<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private ] },
    { include: ["<boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_gen.hpp>", private, "<boost/phoenix/operator/detail/cpp03/mem_fun_ptr_gen.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/local_gen.hpp>", private, "<boost/phoenix/scope/detail/cpp03/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_10.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_20.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_30.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_40.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic_50.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/dynamic.hpp>", private, "<boost/phoenix/scope/detail/cpp03/dynamic.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_10.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_20.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_30.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_40.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda_50.hpp>", private, "<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/scope/detail/cpp03/preprocessed/lambda.hpp>", private, "<boost/phoenix/scope/detail/cpp03/lambda.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/catch_push_back.hpp>", private, "<boost/phoenix/statement/detail/catch_push_back.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/switch_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/switch_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/switch_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/switch_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/switch_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/switch.hpp>", private, "<boost/phoenix/statement/detail/switch.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_eval.hpp>", private, "<boost/phoenix/statement/detail/try_catch_eval.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_10.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_20.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_30.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_40.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression_50.hpp>", private, "<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private ] },
    { include: ["<boost/phoenix/statement/detail/preprocessed/try_catch_expression.hpp>", private, "<boost/phoenix/statement/detail/try_catch_expression.hpp>", private ] },
    { include: ["<boost/phoenix/support/detail/iterate_define.hpp>", private, "<boost/phoenix/support/detail/iterate.hpp>", private ] },
    { include: ["<boost/phoenix/support/detail/iterate_undef.hpp>", private, "<boost/phoenix/support/detail/iterate.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/allocator_adaptor.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/any_iterator.hpp>", private, "<boost/poly_collection/detail/any_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/callable_wrapper.hpp>", private, "<boost/poly_collection/detail/function_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/callable_wrapper_iterator.hpp>", private, "<boost/poly_collection/detail/function_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/functional.hpp>", private, "<boost/poly_collection/detail/type_restitution.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_acceptable.hpp>", private, "<boost/poly_collection/detail/any_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_acceptable.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_constructible.hpp>", private, "<boost/poly_collection/detail/allocator_adaptor.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_constructible.hpp>", private, "<boost/poly_collection/detail/iterator_impl.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_constructible.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_constructible.hpp>", private, "<boost/poly_collection/detail/value_holder.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_equality_comparable.hpp>", private, "<boost/poly_collection/detail/is_nothrow_eq_comparable.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_equality_comparable.hpp>", private, "<boost/poly_collection/detail/value_holder.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_final.hpp>", private, "<boost/poly_collection/detail/base_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_final.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_invocable.hpp>", private, "<boost/poly_collection/detail/callable_wrapper.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_invocable.hpp>", private, "<boost/poly_collection/detail/function_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/is_nothrow_eq_comparable.hpp>", private, "<boost/poly_collection/detail/value_holder.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/iterator_impl.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/iterator_traits.hpp>", private, "<boost/poly_collection/detail/iterator_impl.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/iterator_traits.hpp>", private, "<boost/poly_collection/detail/segment_split.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/iterator_traits.hpp>", private, "<boost/poly_collection/detail/type_restitution.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/packed_segment.hpp>", private, "<boost/poly_collection/detail/base_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/segment_backend.hpp>", private, "<boost/poly_collection/detail/any_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/segment_backend.hpp>", private, "<boost/poly_collection/detail/function_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/segment_backend.hpp>", private, "<boost/poly_collection/detail/packed_segment.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/segment_backend.hpp>", private, "<boost/poly_collection/detail/split_segment.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/segment.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/split_segment.hpp>", private, "<boost/poly_collection/detail/any_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/split_segment.hpp>", private, "<boost/poly_collection/detail/function_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/stride_iterator.hpp>", private, "<boost/poly_collection/detail/base_model.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/type_info_map.hpp>", private, "<boost/poly_collection/detail/poly_collection.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/value_holder.hpp>", private, "<boost/poly_collection/detail/packed_segment.hpp>", private ] },
    { include: ["<boost/poly_collection/detail/value_holder.hpp>", private, "<boost/poly_collection/detail/split_segment.hpp>", private ] },
    { include: ["<boost/preprocessor/arithmetic/detail/maximum_number.hpp>", private, "<boost/preprocessor/arithmetic/detail/is_maximum_number.hpp>", private ] },
    { include: ["<boost/preprocessor/control/detail/edg/limits/while_1024.hpp>", private, "<boost/preprocessor/control/detail/edg/while.hpp>", private ] },
    { include: ["<boost/preprocessor/control/detail/edg/limits/while_256.hpp>", private, "<boost/preprocessor/control/detail/edg/while.hpp>", private ] },
    { include: ["<boost/preprocessor/control/detail/edg/limits/while_512.hpp>", private, "<boost/preprocessor/control/detail/edg/while.hpp>", private ] },
    { include: ["<boost/preprocessor/control/detail/limits/while_1024.hpp>", private, "<boost/preprocessor/control/detail/while.hpp>", private ] },
    { include: ["<boost/preprocessor/control/detail/limits/while_256.hpp>", private, "<boost/preprocessor/control/detail/while.hpp>", private ] },
    { include: ["<boost/preprocessor/control/detail/limits/while_512.hpp>", private, "<boost/preprocessor/control/detail/while.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/auto_rec.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/check.hpp>", private, "<boost/preprocessor/detail/is_binary.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/check.hpp>", private, "<boost/preprocessor/detail/is_nullary.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/check.hpp>", private, "<boost/preprocessor/detail/is_unary.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/dmc/auto_rec.hpp>", private, "<boost/preprocessor/detail/auto_rec.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/tti/detail/dmacro_fun_template.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/is_binary.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/local_function/detail/preprocessor/keyword/facility/is.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/proto/detail/remove_typename.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/is_unary.hpp>", private, "<boost/range/detail/microsoft.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/limits/auto_rec_1024.hpp>", private, "<boost/preprocessor/detail/auto_rec.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/limits/auto_rec_256.hpp>", private, "<boost/preprocessor/detail/auto_rec.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/limits/auto_rec_512.hpp>", private, "<boost/preprocessor/detail/auto_rec.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/split.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/flatten.hpp>", private ] },
    { include: ["<boost/preprocessor/detail/split.hpp>", private, "<boost/parameter/aux_/preprocessor/impl/for_each.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/lower1.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward1.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/lower2.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward2.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/lower3.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward3.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/lower4.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward4.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/lower5.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward5.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/upper1.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward1.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/upper2.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward2.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/upper3.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward3.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/upper4.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward4.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/bounds/upper5.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward5.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/finish.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/iter/reverse1.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward1.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/iter/reverse2.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward2.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/iter/reverse3.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward3.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/iter/reverse4.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward4.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/iter/reverse5.hpp>", private, "<boost/preprocessor/iteration/detail/iter/forward5.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/limits/local_1024.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/limits/local_256.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/limits/local_512.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp>", private, "<boost/preprocessor/iteration/detail/rlocal.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/limits/rlocal_256.hpp>", private, "<boost/preprocessor/iteration/detail/rlocal.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/limits/rlocal_512.hpp>", private, "<boost/preprocessor/iteration/detail/rlocal.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/rlocal.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
    { include: ["<boost/preprocessor/iteration/detail/start.hpp>", private, "<boost/preprocessor/iteration/detail/local.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp>", private, "<boost/preprocessor/list/detail/edg/fold_left.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp>", private, "<boost/preprocessor/list/detail/edg/fold_left.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp>", private, "<boost/preprocessor/list/detail/edg/fold_left.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp>", private, "<boost/preprocessor/list/detail/edg/fold_right.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp>", private, "<boost/preprocessor/list/detail/edg/fold_right.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp>", private, "<boost/preprocessor/list/detail/edg/fold_right.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/limits/fold_left_1024.hpp>", private, "<boost/preprocessor/list/detail/fold_left.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/limits/fold_left_256.hpp>", private, "<boost/preprocessor/list/detail/fold_left.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/limits/fold_left_512.hpp>", private, "<boost/preprocessor/list/detail/fold_left.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/limits/fold_right_1024.hpp>", private, "<boost/preprocessor/list/detail/fold_right.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/limits/fold_right_256.hpp>", private, "<boost/preprocessor/list/detail/fold_right.hpp>", private ] },
    { include: ["<boost/preprocessor/list/detail/limits/fold_right_512.hpp>", private, "<boost/preprocessor/list/detail/fold_right.hpp>", private ] },
    { include: ["<boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp>", private, "<boost/preprocessor/repetition/detail/edg/for.hpp>", private ] },
    { include: ["<boost/preprocessor/repetition/detail/edg/limits/for_256.hpp>", private, "<boost/preprocessor/repetition/detail/edg/for.hpp>", private ] },
    { include: ["<boost/preprocessor/repetition/detail/edg/limits/for_512.hpp>", private, "<boost/preprocessor/repetition/detail/edg/for.hpp>", private ] },
    { include: ["<boost/preprocessor/repetition/detail/limits/for_1024.hpp>", private, "<boost/preprocessor/repetition/detail/for.hpp>", private ] },
    { include: ["<boost/preprocessor/repetition/detail/limits/for_256.hpp>", private, "<boost/preprocessor/repetition/detail/for.hpp>", private ] },
    { include: ["<boost/preprocessor/repetition/detail/limits/for_512.hpp>", private, "<boost/preprocessor/repetition/detail/for.hpp>", private ] },
    { include: ["<boost/preprocessor/seq/detail/limits/split_1024.hpp>", private, "<boost/preprocessor/seq/detail/split.hpp>", private ] },
    { include: ["<boost/preprocessor/seq/detail/limits/split_256.hpp>", private, "<boost/preprocessor/seq/detail/split.hpp>", private ] },
    { include: ["<boost/preprocessor/seq/detail/limits/split_512.hpp>", private, "<boost/preprocessor/seq/detail/split.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower1.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower2.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower3.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower4.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/lower5.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper1.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper2.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper3.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper4.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/bounds/upper5.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/finish.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/iteration/detail/start.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/counter.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot1.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot2.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot3.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot4.hpp>", private ] },
    { include: ["<boost/preprocessor/slot/detail/shared.hpp>", private, "<boost/preprocessor/slot/detail/slot5.hpp>", private ] },
    { include: ["<boost/preprocessor/variadic/detail/is_single_return.hpp>", private, "<boost/preprocessor/seq/detail/binary_transform.hpp>", private ] },
    { include: ["<boost/process/detail/basic_cmd.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
    { include: ["<boost/process/detail/child_decl.hpp>", private, "<boost/process/detail/posix/executor.hpp>", private ] },
    { include: ["<boost/process/detail/child_decl.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/handler.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/cmd.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/compare_handles.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/env_init.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/environment.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/group_handle.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/is_running.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/search_path.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/shell_path.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/terminate.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/wait_for_exit.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/posix/wait_group.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/throw_on_error.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/async.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/decl.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/error.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/traits/group.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/compare_handles.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/env_init.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/environment.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/is_running.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/search_path.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/shell_path.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/terminate.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/wait_for_exit.hpp>", private ] },
    { include: ["<boost/process/detail/config.hpp>", private, "<boost/process/detail/windows/wait_group.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/posix/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/posix/handler.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/posix/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/throw_on_error.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/close_in.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/close_out.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/env_init.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/handler.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/io_context_ref.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/pipe_in.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/pipe_out.hpp>", private ] },
    { include: ["<boost/process/detail/handler_base.hpp>", private, "<boost/process/detail/windows/show_window.hpp>", private ] },
    { include: ["<boost/process/detail/handler.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
    { include: ["<boost/process/detail/posix/asio_fwd.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
    { include: ["<boost/process/detail/posix/asio_fwd.hpp>", private, "<boost/process/detail/used_handles.hpp>", private ] },
    { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
    { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/posix/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/posix/io_context_ref.hpp>", private ] },
    { include: ["<boost/process/detail/posix/async_handler.hpp>", private, "<boost/process/detail/posix/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/posix/basic_cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/posix/basic_pipe.hpp>", private, "<boost/process/detail/posix/async_pipe.hpp>", private ] },
    { include: ["<boost/process/detail/posix/basic_pipe.hpp>", private, "<boost/process/detail/posix/executor.hpp>", private ] },
    { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/group_handle.hpp>", private ] },
    { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/is_running.hpp>", private ] },
    { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/terminate.hpp>", private ] },
    { include: ["<boost/process/detail/posix/child_handle.hpp>", private, "<boost/process/detail/posix/wait_for_exit.hpp>", private ] },
    { include: ["<boost/process/detail/posix/cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/posix/cmd.hpp>", private, "<boost/process/detail/posix/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/posix/compare_handles.hpp>", private, "<boost/process/detail/posix/basic_pipe.hpp>", private ] },
    { include: ["<boost/process/detail/posix/executor.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
    { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/file_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/file_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/null_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/file_descriptor.hpp>", private, "<boost/process/detail/posix/null_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/group_handle.hpp>", private, "<boost/process/detail/posix/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/posix/group_handle.hpp>", private, "<boost/process/detail/posix/wait_group.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/handler.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/async_handler.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/async_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/close_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/close_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/cmd.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/env_init.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/fd.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/file_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/file_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/handles.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/io_context_ref.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/null_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/null_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/pipe_in.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/pipe_out.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/signal.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/start_dir.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/posix/use_vfork.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handler.hpp>", private, "<boost/process/detail/traits/decl.hpp>", private ] },
    { include: ["<boost/process/detail/posix/handles.hpp>", private, "<boost/process/detail/used_handles.hpp>", private ] },
    { include: ["<boost/process/detail/posix/is_running.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/posix/is_running.hpp>", private, "<boost/process/detail/posix/io_context_ref.hpp>", private ] },
    { include: ["<boost/process/detail/posix/on_exit.hpp>", private, "<boost/process/detail/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/posix/sigchld_service.hpp>", private, "<boost/process/detail/posix/io_context_ref.hpp>", private ] },
    { include: ["<boost/process/detail/posix/terminate.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/posix/use_vfork.hpp>", private, "<boost/process/detail/posix/executor.hpp>", private ] },
    { include: ["<boost/process/detail/posix/wait_for_exit.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/traits/async.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
    { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
    { include: ["<boost/process/detail/traits/cmd_or_exe.hpp>", private, "<boost/process/detail/traits/wchar_t.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/async.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/cmd_or_exe.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/env.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/error.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/group.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
    { include: ["<boost/process/detail/traits/decl.hpp>", private, "<boost/process/detail/traits/wchar_t.hpp>", private ] },
    { include: ["<boost/process/detail/traits/env.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
    { include: ["<boost/process/detail/traits/env.hpp>", private, "<boost/process/detail/traits/wchar_t.hpp>", private ] },
    { include: ["<boost/process/detail/traits/error.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
    { include: ["<boost/process/detail/traits.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
    { include: ["<boost/process/detail/traits.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
    { include: ["<boost/process/detail/traits/wchar_t.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/traits/wchar_t.hpp>", private, "<boost/process/detail/traits.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/async_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/close_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/close_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/fd.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/file_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/file_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/null_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/null_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/posix/pipe_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/pipe_in.hpp>", private ] },
    { include: ["<boost/process/detail/used_handles.hpp>", private, "<boost/process/detail/windows/pipe_out.hpp>", private ] },
    { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
    { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/used_handles.hpp>", private ] },
    { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/windows/asio_fwd.hpp>", private, "<boost/process/detail/windows/async_out.hpp>", private ] },
    { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/async_handler.hpp>", private ] },
    { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/windows/async_in.hpp>", private ] },
    { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/windows/io_context_ref.hpp>", private ] },
    { include: ["<boost/process/detail/windows/async_handler.hpp>", private, "<boost/process/detail/windows/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/windows/basic_cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/windows/basic_pipe.hpp>", private, "<boost/process/detail/windows/async_pipe.hpp>", private ] },
    { include: ["<boost/process/detail/windows/child_handle.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/windows/child_handle.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
    { include: ["<boost/process/detail/windows/child_handle.hpp>", private, "<boost/process/detail/windows/wait_for_exit.hpp>", private ] },
    { include: ["<boost/process/detail/windows/cmd.hpp>", private, "<boost/process/detail/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/windows/compare_handles.hpp>", private, "<boost/process/detail/windows/basic_pipe.hpp>", private ] },
    { include: ["<boost/process/detail/windows/executor.hpp>", private, "<boost/process/detail/execute_impl.hpp>", private ] },
    { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/file_in.hpp>", private ] },
    { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/file_out.hpp>", private ] },
    { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/null_in.hpp>", private ] },
    { include: ["<boost/process/detail/windows/file_descriptor.hpp>", private, "<boost/process/detail/windows/null_out.hpp>", private ] },
    { include: ["<boost/process/detail/windows/group_handle.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/windows/group_handle.hpp>", private, "<boost/process/detail/windows/wait_group.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/handler.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/traits/decl.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/async_handler.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/basic_cmd.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/group_ref.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/handles.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handler.hpp>", private, "<boost/process/detail/windows/start_dir.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handles.hpp>", private, "<boost/process/detail/used_handles.hpp>", private ] },
    { include: ["<boost/process/detail/windows/handle_workaround.hpp>", private, "<boost/process/detail/windows/handles.hpp>", private ] },
    { include: ["<boost/process/detail/windows/is_running.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/windows/is_running.hpp>", private, "<boost/process/detail/windows/executor.hpp>", private ] },
    { include: ["<boost/process/detail/windows/job_workaround.hpp>", private, "<boost/process/detail/windows/group_handle.hpp>", private ] },
    { include: ["<boost/process/detail/windows/on_exit.hpp>", private, "<boost/process/detail/on_exit.hpp>", private ] },
    { include: ["<boost/process/detail/windows/terminate.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/process/detail/windows/wait_for_exit.hpp>", private, "<boost/process/detail/child_decl.hpp>", private ] },
    { include: ["<boost/program_options/detail/convert.hpp>", private, "<boost/program_options/detail/config_file.hpp>", private ] },
    { include: ["<boost/program_options/detail/convert.hpp>", private, "<boost/program_options/detail/parsers.hpp>", private ] },
    { include: ["<boost/property_map/parallel/detail/untracked_pair.hpp>", private, "<boost/graph/parallel/detail/untracked_pair.hpp>", private ] },
    { include: ["<boost/property_tree/detail/file_parser_error.hpp>", private, "<boost/property_tree/detail/info_parser_error.hpp>", private ] },
    { include: ["<boost/property_tree/detail/file_parser_error.hpp>", private, "<boost/property_tree/detail/xml_parser_error.hpp>", private ] },
    { include: ["<boost/property_tree/detail/info_parser_error.hpp>", private, "<boost/property_tree/detail/info_parser_read.hpp>", private ] },
    { include: ["<boost/property_tree/detail/info_parser_utils.hpp>", private, "<boost/property_tree/detail/info_parser_read.hpp>", private ] },
    { include: ["<boost/property_tree/detail/info_parser_utils.hpp>", private, "<boost/property_tree/detail/info_parser_write.hpp>", private ] },
    { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_utils.hpp>", private ] },
    { include: ["<boost/property_tree/detail/ptree_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_writer_settings.hpp>", private ] },
    { include: ["<boost/property_tree/detail/rapidxml.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
    { include: ["<boost/property_tree/detail/xml_parser_error.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
    { include: ["<boost/property_tree/detail/xml_parser_error.hpp>", private, "<boost/property_tree/detail/xml_parser_utils.hpp>", private ] },
    { include: ["<boost/property_tree/detail/xml_parser_flags.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
    { include: ["<boost/property_tree/detail/xml_parser_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_read_rapidxml.hpp>", private ] },
    { include: ["<boost/property_tree/detail/xml_parser_utils.hpp>", private, "<boost/property_tree/detail/xml_parser_write.hpp>", private ] },
    { include: ["<boost/property_tree/detail/xml_parser_writer_settings.hpp>", private, "<boost/property_tree/detail/xml_parser_utils.hpp>", private ] },
    { include: ["<boost/property_tree/json_parser/detail/narrow_encoding.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
    { include: ["<boost/property_tree/json_parser/detail/parser.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
    { include: ["<boost/property_tree/json_parser/detail/standard_callbacks.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
    { include: ["<boost/property_tree/json_parser/detail/wide_encoding.hpp>", private, "<boost/property_tree/json_parser/detail/read.hpp>", private ] },
    { include: ["<boost/proto/context/detail/preprocessed/callable_eval.hpp>", private, "<boost/proto/context/detail/callable_eval.hpp>", private ] },
    { include: ["<boost/proto/context/detail/preprocessed/default_eval.hpp>", private, "<boost/proto/context/detail/default_eval.hpp>", private ] },
    { include: ["<boost/proto/context/detail/preprocessed/null_eval.hpp>", private, "<boost/proto/context/detail/null_eval.hpp>", private ] },
    { include: ["<boost/proto/detail/any.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
    { include: ["<boost/proto/detail/class_member_traits.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
    { include: ["<boost/proto/detail/decltype.hpp>", private, "<boost/phoenix/bind/detail/member_variable.hpp>", private ] },
    { include: ["<boost/proto/detail/deduce_domain_n.hpp>", private, "<boost/proto/detail/deduce_domain.hpp>", private ] },
    { include: ["<boost/proto/detail/ignore_unused.hpp>", private, "<boost/xpressive/detail/utility/ignore_unused.hpp>", private ] },
    { include: ["<boost/proto/detail/is_noncopyable.hpp>", private, "<boost/proto/detail/poly_function.hpp>", private ] },
    { include: ["<boost/proto/detail/memfun_funop.hpp>", private, "<boost/proto/detail/decltype.hpp>", private ] },
    { include: ["<boost/proto/detail/poly_function_funop.hpp>", private, "<boost/proto/detail/poly_function.hpp>", private ] },
    { include: ["<boost/proto/detail/poly_function_traits.hpp>", private, "<boost/proto/detail/poly_function.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/and_n.hpp>", private, "<boost/proto/detail/and_n.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/args.hpp>", private, "<boost/proto/detail/args.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/basic_expr.hpp>", private, "<boost/proto/detail/basic_expr.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/class_member_traits.hpp>", private, "<boost/proto/detail/class_member_traits.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/deduce_domain_n.hpp>", private, "<boost/proto/detail/deduce_domain_n.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/deep_copy.hpp>", private, "<boost/proto/detail/deep_copy.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/expr.hpp>", private, "<boost/proto/detail/expr.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/expr_variadic.hpp>", private, "<boost/proto/detail/expr.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/extends_funop_const.hpp>", private, "<boost/proto/detail/extends_funop_const.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/extends_funop.hpp>", private, "<boost/proto/detail/extends_funop.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/funop.hpp>", private, "<boost/proto/detail/funop.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/generate_by_value.hpp>", private, "<boost/proto/detail/generate_by_value.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/lambda_matches.hpp>", private, "<boost/proto/detail/lambda_matches.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/make_expr_funop.hpp>", private, "<boost/proto/detail/make_expr_funop.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/make_expr.hpp>", private, "<boost/proto/detail/make_expr.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/make_expr_.hpp>", private, "<boost/proto/detail/make_expr_.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/matches_.hpp>", private, "<boost/proto/detail/matches_.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/memfun_funop.hpp>", private, "<boost/proto/detail/memfun_funop.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/or_n.hpp>", private, "<boost/proto/detail/or_n.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/poly_function_funop.hpp>", private, "<boost/proto/detail/poly_function_funop.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/poly_function_traits.hpp>", private, "<boost/proto/detail/poly_function_traits.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/template_arity_helper.hpp>", private, "<boost/proto/detail/template_arity_helper.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/traits.hpp>", private, "<boost/proto/detail/traits.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/unpack_expr_.hpp>", private, "<boost/proto/detail/unpack_expr_.hpp>", private ] },
    { include: ["<boost/proto/detail/preprocessed/vararg_matches_impl.hpp>", private, "<boost/proto/detail/vararg_matches_impl.hpp>", private ] },
    { include: ["<boost/proto/detail/template_arity_helper.hpp>", private, "<boost/proto/detail/template_arity.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/expand_pack.hpp>", private, "<boost/proto/transform/detail/pack.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/pack_impl.hpp>", private, "<boost/proto/transform/detail/pack.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/call.hpp>", private, "<boost/proto/transform/detail/call.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/construct_funop.hpp>", private, "<boost/proto/transform/detail/construct_funop.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/construct_pod_funop.hpp>", private, "<boost/proto/transform/detail/construct_pod_funop.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/default_function_impl.hpp>", private, "<boost/proto/transform/detail/default_function_impl.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/expand_pack.hpp>", private, "<boost/proto/transform/detail/expand_pack.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/fold_impl.hpp>", private, "<boost/proto/transform/detail/fold_impl.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/lazy.hpp>", private, "<boost/proto/transform/detail/lazy.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/make_gcc_workaround.hpp>", private, "<boost/proto/transform/detail/make_gcc_workaround.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/make.hpp>", private, "<boost/proto/transform/detail/make.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/pack_impl.hpp>", private, "<boost/proto/transform/detail/pack_impl.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/pass_through_impl.hpp>", private, "<boost/proto/transform/detail/pass_through_impl.hpp>", private ] },
    { include: ["<boost/proto/transform/detail/preprocessed/when.hpp>", private, "<boost/proto/transform/detail/when.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/default_deleter.hpp>", private, "<boost/ptr_container/detail/static_move_ptr.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/is_convertible.hpp>", private, "<boost/ptr_container/detail/static_move_ptr.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/move.hpp>", private, "<boost/ptr_container/detail/static_move_ptr.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/ptr_container_disable_deprecated.hpp>", private, "<boost/ptr_container/detail/associative_ptr_container.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/ptr_container_disable_deprecated.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/reversible_ptr_container.hpp>", private, "<boost/ptr_container/detail/associative_ptr_container.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/reversible_ptr_container.hpp>", private, "<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/scoped_deleter.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/serialize_xml_names.hpp>", private, "<boost/ptr_container/detail/serialize_ptr_map_adapter.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/serialize_xml_names.hpp>", private, "<boost/ptr_container/detail/serialize_reversible_cont.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/static_move_ptr.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
    { include: ["<boost/ptr_container/detail/throw_exception.hpp>", private, "<boost/ptr_container/detail/reversible_ptr_container.hpp>", private ] },
    { include: ["<boost/python/detail/config.hpp>", private, "<boost/python/detail/exception_handler.hpp>", private ] },
    { include: ["<boost/python/detail/config.hpp>", private, "<boost/python/detail/prefix.hpp>", private ] },
    { include: ["<boost/python/detail/config.hpp>", private, "<boost/python/detail/scope.hpp>", private ] },
    { include: ["<boost/python/detail/copy_ctor_mutates_rhs.hpp>", private, "<boost/python/detail/value_arg.hpp>", private ] },
    { include: ["<boost/python/detail/cv_category.hpp>", private, "<boost/python/detail/unwind_type.hpp>", private ] },
    { include: ["<boost/python/detail/defaults_gen.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
    { include: ["<boost/python/detail/def_helper_fwd.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
    { include: ["<boost/python/detail/exception_handler.hpp>", private, "<boost/python/detail/translate_exception.hpp>", private ] },
    { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/decorated_type_id.hpp>", private ] },
    { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
    { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/signature.hpp>", private ] },
    { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/unwind_type.hpp>", private ] },
    { include: ["<boost/python/detail/indirect_traits.hpp>", private, "<boost/python/detail/value_arg.hpp>", private ] },
    { include: ["<boost/python/detail/invoke.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
    { include: ["<boost/python/detail/is_auto_ptr.hpp>", private, "<boost/python/detail/copy_ctor_mutates_rhs.hpp>", private ] },
    { include: ["<boost/python/detail/is_shared_ptr.hpp>", private, "<boost/python/detail/value_is_shared_ptr.hpp>", private ] },
    { include: ["<boost/python/detail/is_wrapper.hpp>", private, "<boost/python/detail/unwrap_wrapper.hpp>", private ] },
    { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/detail/is_auto_ptr.hpp>", private ] },
    { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/detail/is_shared_ptr.hpp>", private ] },
    { include: ["<boost/python/detail/is_xxx.hpp>", private, "<boost/python/detail/value_is_xxx.hpp>", private ] },
    { include: ["<boost/python/detail/make_keyword_range_fn.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
    { include: ["<boost/python/detail/none.hpp>", private, "<boost/python/detail/invoke.hpp>", private ] },
    { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/detail/def_helper_fwd.hpp>", private ] },
    { include: ["<boost/python/detail/not_specified.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/aix_init_module.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/invoke.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/is_wrapper.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/none.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/nullary_function_adaptor.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/sfinae.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/unwrap_wrapper.hpp>", private ] },
    { include: ["<boost/python/detail/prefix.hpp>", private, "<boost/python/detail/wrapper_base.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/defaults_gen.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/invoke.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/result.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/signature.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/target.hpp>", private ] },
    { include: ["<boost/python/detail/preprocessor.hpp>", private, "<boost/python/detail/type_list.hpp>", private ] },
    { include: ["<boost/python/detail/python22_fixed.h>", private, "<boost/python/detail/wrap_python.hpp>", private ] },
    { include: ["<boost/python/detail/scope.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
    { include: ["<boost/python/detail/sfinae.hpp>", private, "<boost/python/detail/enable_if.hpp>", private ] },
    { include: ["<boost/python/detail/signature.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/borrowed_ptr.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/caller.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/convertible.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/cv_category.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/decorated_type_id.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/defaults_def.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/def_helper.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/destroy.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/pointee.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/result.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/string_literal.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/translate_exception.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/unwind_type.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/value_is_xxx.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/void_ptr.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/detail/wrapper_base.hpp>", private ] },
    { include: ["<boost/python/detail/type_traits.hpp>", private, "<boost/python/suite/indexing/detail/indexing_suite_detail.hpp>", private ] },
    { include: ["<boost/python/detail/value_is_xxx.hpp>", private, "<boost/python/detail/value_is_shared_ptr.hpp>", private ] },
    { include: ["<boost/python/detail/wrap_python.hpp>", private, "<boost/python/detail/prefix.hpp>", private ] },
    { include: ["<boost/qvm/detail/determinant_impl.hpp>", private, "<boost/qvm/detail/cofactor_impl.hpp>", private ] },
    { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/detail/operators.hpp>", private ] },
    { include: ["<boost/random/detail/config.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
    { include: ["<boost/random/detail/const_mod.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
    { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/const_mod.hpp>", private ] },
    { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/large_arithmetic.hpp>", private ] },
    { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/qrng_base.hpp>", private ] },
    { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
    { include: ["<boost/random/detail/disable_warnings.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
    { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/const_mod.hpp>", private ] },
    { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/large_arithmetic.hpp>", private ] },
    { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/qrng_base.hpp>", private ] },
    { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
    { include: ["<boost/random/detail/enable_warnings.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
    { include: ["<boost/random/detail/generator_bits.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
    { include: ["<boost/random/detail/generator_bits.hpp>", private, "<boost/random/detail/uniform_int_float.hpp>", private ] },
    { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/detail/int_float_pair.hpp>", private ] },
    { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/detail/large_arithmetic.hpp>", private ] },
    { include: ["<boost/random/detail/integer_log2.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
    { include: ["<boost/random/detail/large_arithmetic.hpp>", private, "<boost/random/detail/const_mod.hpp>", private ] },
    { include: ["<boost/random/detail/operators.hpp>", private, "<boost/random/detail/qrng_base.hpp>", private ] },
    { include: ["<boost/random/detail/qrng_base.hpp>", private, "<boost/random/detail/gray_coded_qrng.hpp>", private ] },
    { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/detail/int_float_pair.hpp>", private ] },
    { include: ["<boost/random/detail/signed_unsigned_tools.hpp>", private, "<boost/random/detail/seed_impl.hpp>", private ] },
    { include: ["<boost/range/detail/any_iterator_buffer.hpp>", private, "<boost/range/detail/any_iterator.hpp>", private ] },
    { include: ["<boost/range/detail/any_iterator_buffer.hpp>", private, "<boost/range/detail/any_iterator_interface.hpp>", private ] },
    { include: ["<boost/range/detail/any_iterator_interface.hpp>", private, "<boost/range/detail/any_iterator.hpp>", private ] },
    { include: ["<boost/range/detail/any_iterator_interface.hpp>", private, "<boost/range/detail/any_iterator_wrapper.hpp>", private ] },
    { include: ["<boost/range/detail/any_iterator_wrapper.hpp>", private, "<boost/range/detail/any_iterator.hpp>", private ] },
    { include: ["<boost/range/detail/collection_traits_detail.hpp>", private, "<boost/range/detail/collection_traits.hpp>", private ] },
    { include: ["<boost/range/detail/combine_no_rvalue.hpp>", private, "<boost/range/detail/combine_cxx03.hpp>", private ] },
    { include: ["<boost/range/detail/combine_rvalue.hpp>", private, "<boost/range/detail/combine_cxx03.hpp>", private ] },
    { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/difference_type.hpp>", private ] },
    { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/empty.hpp>", private ] },
    { include: ["<boost/range/detail/common.hpp>", private, "<boost/range/detail/implementation_help.hpp>", private ] },
    { include: ["<boost/range/detail/demote_iterator_traversal_tag.hpp>", private, "<boost/range/detail/join_iterator.hpp>", private ] },
    { include: ["<boost/range/detail/sfinae.hpp>", private, "<boost/range/detail/common.hpp>", private ] },
    { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/detail/mpl/gcd.hpp>", private ] },
    { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/detail/mpl/lcm.hpp>", private ] },
    { include: ["<boost/ratio/detail/mpl/abs.hpp>", private, "<boost/ratio/detail/overflow_helpers.hpp>", private ] },
    { include: ["<boost/ratio/detail/mpl/sign.hpp>", private, "<boost/ratio/detail/overflow_helpers.hpp>", private ] },
    { include: ["<boost/ratio/detail/overflow_helpers.hpp>", private, "<boost/chrono/detail/is_evenly_divisible_by.hpp>", private ] },
    { include: ["<boost/serialization/detail/shared_count_132.hpp>", private, "<boost/serialization/detail/shared_ptr_132.hpp>", private ] },
    { include: ["<boost/serialization/detail/shared_ptr_nmt_132.hpp>", private, "<boost/serialization/detail/shared_ptr_132.hpp>", private ] },
    { include: ["<boost/signals2/detail/auto_buffer.hpp>", private, "<boost/signals2/detail/slot_call_iterator.hpp>", private ] },
    { include: ["<boost/signals2/detail/scope_guard.hpp>", private, "<boost/signals2/detail/auto_buffer.hpp>", private ] },
    { include: ["<boost/signals2/detail/signals_common.hpp>", private, "<boost/signals2/detail/tracked_objects_visitor.hpp>", private ] },
    { include: ["<boost/signals2/detail/signals_common_macros.hpp>", private, "<boost/signals2/detail/preprocessed_arg_type.hpp>", private ] },
    { include: ["<boost/signals2/detail/unique_lock.hpp>", private, "<boost/signals2/detail/slot_call_iterator.hpp>", private ] },
    { include: ["<boost/signals2/detail/variadic_arg_type.hpp>", private, "<boost/signals2/detail/variadic_slot_invoker.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_gcc.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_gcc_x86.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_nt.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_pt.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_spin.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_std_atomic.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_sync.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/atomic_count_win32.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/lightweight_mutex.hpp>", private, "<boost/smart_ptr/detail/quick_allocator.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/local_counted_base.hpp>", private, "<boost/smart_ptr/detail/local_sp_deleter.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/lwm_pthreads.hpp>", private, "<boost/smart_ptr/detail/lightweight_mutex.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/lwm_std_mutex.hpp>", private, "<boost/smart_ptr/detail/lightweight_mutex.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/lwm_win32_cs.hpp>", private, "<boost/smart_ptr/detail/lightweight_mutex.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/quick_allocator.hpp>", private, "<boost/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/shared_count.hpp>", private, "<boost/smart_ptr/detail/local_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_aix.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base.hpp>", private, "<boost/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_nt.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_pt.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_spin.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_sync.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_counted_impl.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_disable_deprecated.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp>", private, "<boost/smart_ptr/detail/atomic_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_gcc_arm.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_gcc_atomic.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock.hpp>", private, "<boost/smart_ptr/detail/spinlock_pool.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_nt.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_pool.hpp>", private, "<boost/smart_ptr/detail/atomic_count_spin.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_pool.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_spin.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_pt.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_std_atomic.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_sync.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/spinlock_w32.hpp>", private, "<boost/smart_ptr/detail/spinlock.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_interlocked.hpp>", private, "<boost/smart_ptr/detail/atomic_count_win32.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_interlocked.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_interlocked.hpp>", private, "<boost/smart_ptr/detail/spinlock_w32.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/detail/shared_count.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_nt.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_noexcept.hpp>", private, "<boost/smart_ptr/detail/sp_counted_impl.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/atomic_count_gcc_x86.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_obsolete.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_thread_pause.hpp>", private, "<boost/smart_ptr/detail/sp_thread_yield.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_thread_pause.hpp>", private, "<boost/smart_ptr/detail/yield_k.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_thread_sleep.hpp>", private, "<boost/smart_ptr/detail/yield_k.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_thread_yield.hpp>", private, "<boost/smart_ptr/detail/sp_thread_sleep.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_aix.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_nt.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_pt.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_spin.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_sync.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_typeinfo_.hpp>", private, "<boost/smart_ptr/detail/sp_counted_base_w32.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_win32_sleep.hpp>", private, "<boost/smart_ptr/detail/sp_thread_sleep.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/sp_win32_sleep.hpp>", private, "<boost/smart_ptr/detail/sp_thread_yield.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_gcc_arm.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_gcc_atomic.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_std_atomic.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_sync.hpp>", private ] },
    { include: ["<boost/smart_ptr/detail/yield_k.hpp>", private, "<boost/smart_ptr/detail/spinlock_w32.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/float_sort.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/integer_sort.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/constants.hpp>", private, "<boost/sort/spreadsort/detail/string_sort.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/integer_sort.hpp>", private, "<boost/sort/spreadsort/detail/float_sort.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private, "<boost/sort/spreadsort/detail/float_sort.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private, "<boost/sort/spreadsort/detail/integer_sort.hpp>", private ] },
    { include: ["<boost/sort/spreadsort/detail/spreadsort_common.hpp>", private, "<boost/sort/spreadsort/detail/string_sort.hpp>", private ] },
    { include: ["<boost/spirit/fusion/detail/access.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
    { include: ["<boost/spirit/fusion/detail/config.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
    { include: ["<boost/spirit/fusion/iterator/detail/iterator_base.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
    { include: ["<boost/spirit/fusion/sequence/detail/sequence_base.hpp>", private, "<boost/xpressive/detail/utility/cons.hpp>", private ] },
    { include: ["<boost/spirit/home/classic/utility/impl/chset/basic_chset.ipp>", private, "<boost/spirit/home/classic/utility/impl/chset/basic_chset.hpp>", private ] },
    { include: ["<boost/spirit/home/classic/utility/impl/chset/range_run.hpp>", private, "<boost/spirit/home/classic/utility/impl/chset/basic_chset.hpp>", private ] },
    { include: ["<boost/spirit/home/classic/utility/impl/chset/range_run.ipp>", private, "<boost/spirit/home/classic/utility/impl/chset/range_run.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/detail/extract_from.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/attributes.hpp>", private, "<boost/spirit/home/karma/detail/pass_container.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/detail/string_compare.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/detail/string_generate.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/generate_to.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/detail/generate.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/output_iterator.hpp>", private, "<boost/spirit/home/karma/detail/generate_to.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/detail/string_generate.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/detail/bool_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/karma/stream/detail/format_manip.hpp>", private, "<boost/spirit/home/karma/stream/detail/format_manip_auto.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/detail/alternative_function.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/assign_to.hpp>", private, "<boost/spirit/home/qi/detail/string_parse.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/detail/alternative_function.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/detail/assign_to.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/detail/pass_container.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/numeric/detail/numeric_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/attributes.hpp>", private, "<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/detail/construct.hpp>", private, "<boost/spirit/home/qi/detail/assign_to.hpp>", private ] },
    { include: ["<boost/spirit/home/qi/stream/detail/match_manip.hpp>", private, "<boost/spirit/home/qi/stream/detail/match_manip_auto.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/karma/detail/alternative_function.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/hold_any.hpp>", private, "<boost/spirit/home/karma/detail/pass_container.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/pow10.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/pow10.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/pow10.hpp>", private, "<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/sign.hpp>", private, "<boost/spirit/home/karma/numeric/detail/numeric_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/sign.hpp>", private, "<boost/spirit/home/karma/numeric/detail/real_utils.hpp>", private ] },
    { include: ["<boost/spirit/home/support/detail/sign.hpp>", private, "<boost/spirit/home/qi/numeric/detail/real_impl.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/fixed_size_queue.hpp>", private, "<boost/spirit/home/support/iterators/detail/fixed_size_queue_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private, "<boost/spirit/home/support/iterators/detail/buffering_input_iterator_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/buffering_input_iterator_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/buf_id_check_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/first_owner_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/fixed_size_queue_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/functor_input_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/input_iterator_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/istream_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/lex_input_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/no_check_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/ref_counted_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/split_functor_input_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/support/iterators/detail/multi_pass.hpp>", private, "<boost/spirit/home/support/iterators/detail/split_std_deque_policy.hpp>", private ] },
    { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/detail/alternative.hpp>", private ] },
    { include: ["<boost/spirit/home/x3/core/detail/parse_into_container.hpp>", private, "<boost/spirit/home/x3/operator/detail/sequence.hpp>", private ] },
    { include: ["<boost/spirit/home/x3/nonterminal/detail/transform_attribute.hpp>", private, "<boost/spirit/home/x3/nonterminal/detail/rule.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/location_from_symbol.hpp>", private, "<boost/stacktrace/detail/libbacktrace_impls.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/pop_options.h>", private, "<boost/stacktrace/detail/frame_decl.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/push_options.h>", private, "<boost/stacktrace/detail/frame_decl.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/to_dec_array.hpp>", private, "<boost/stacktrace/detail/addr2line_impls.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/to_dec_array.hpp>", private, "<boost/stacktrace/detail/libbacktrace_impls.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/to_hex_array.hpp>", private, "<boost/stacktrace/detail/addr2line_impls.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/to_hex_array.hpp>", private, "<boost/stacktrace/detail/libbacktrace_impls.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/try_dec_convert.hpp>", private, "<boost/stacktrace/detail/addr2line_impls.hpp>", private ] },
    { include: ["<boost/stacktrace/detail/void_ptr_cast.hpp>", private, "<boost/stacktrace/detail/frame_decl.hpp>", private ] },
    { include: ["<boost/statechart/detail/avoid_unused_warning.hpp>", private, "<boost/statechart/detail/memory.hpp>", private ] },
    { include: ["<boost/statechart/detail/counted_base.hpp>", private, "<boost/statechart/detail/state_base.hpp>", private ] },
    { include: ["<boost/statechart/detail/state_base.hpp>", private, "<boost/statechart/detail/leaf_state.hpp>", private ] },
    { include: ["<boost/statechart/detail/state_base.hpp>", private, "<boost/statechart/detail/node_state.hpp>", private ] },
    { include: ["<boost/system/detail/cerrno.hpp>", private, "<boost/system/detail/errc.hpp>", private ] },
    { include: ["<boost/system/detail/config.hpp>", private, "<boost/system/detail/error_category.hpp>", private ] },
    { include: ["<boost/system/detail/config.hpp>", private, "<boost/system/detail/error_code.hpp>", private ] },
    { include: ["<boost/system/detail/config.hpp>", private, "<boost/system/detail/error_condition.hpp>", private ] },
    { include: ["<boost/system/detail/config.hpp>", private, "<boost/system/detail/generic_category.hpp>", private ] },
    { include: ["<boost/system/detail/config.hpp>", private, "<boost/system/detail/system_category.hpp>", private ] },
    { include: ["<boost/system/detail/enable_if.hpp>", private, "<boost/system/detail/error_code.hpp>", private ] },
    { include: ["<boost/system/detail/enable_if.hpp>", private, "<boost/system/detail/error_condition.hpp>", private ] },
    { include: ["<boost/system/detail/errc.hpp>", private, "<boost/system/detail/is_generic_value.hpp>", private ] },
    { include: ["<boost/system/detail/errc.hpp>", private, "<boost/system/detail/system_category_condition_win32.hpp>", private ] },
    { include: ["<boost/system/detail/error_category.hpp>", private, "<boost/system/detail/error_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/error_category.hpp>", private, "<boost/system/detail/error_code.hpp>", private ] },
    { include: ["<boost/system/detail/error_category.hpp>", private, "<boost/system/detail/error_condition.hpp>", private ] },
    { include: ["<boost/system/detail/error_category.hpp>", private, "<boost/system/detail/generic_category.hpp>", private ] },
    { include: ["<boost/system/detail/error_category.hpp>", private, "<boost/system/detail/system_category.hpp>", private ] },
    { include: ["<boost/system/detail/error_category.hpp>", private, "<boost/system/detail/to_std_category.hpp>", private ] },
    { include: ["<boost/system/detail/error_code.hpp>", private, "<boost/system/detail/error_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/error_code.hpp>", private, "<boost/system/detail/to_std_category.hpp>", private ] },
    { include: ["<boost/system/detail/error_condition.hpp>", private, "<boost/system/detail/error_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/error_condition.hpp>", private, "<boost/system/detail/error_code.hpp>", private ] },
    { include: ["<boost/system/detail/error_condition.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/error_condition.hpp>", private, "<boost/system/detail/to_std_category.hpp>", private ] },
    { include: ["<boost/system/detail/generic_category.hpp>", private, "<boost/system/detail/error_condition.hpp>", private ] },
    { include: ["<boost/system/detail/generic_category.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/generic_category.hpp>", private, "<boost/system/detail/to_std_category.hpp>", private ] },
    { include: ["<boost/system/detail/generic_category_message.hpp>", private, "<boost/system/detail/generic_category.hpp>", private ] },
    { include: ["<boost/system/detail/generic_category_message.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/is_generic_value.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/system_category_condition_win32.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/system_category.hpp>", private, "<boost/system/detail/error_code.hpp>", private ] },
    { include: ["<boost/system/detail/system_category.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/system_category_message_win32.hpp>", private, "<boost/system/detail/system_category_impl.hpp>", private ] },
    { include: ["<boost/system/detail/to_std_category.hpp>", private, "<boost/system/detail/error_category_impl.hpp>", private ] },
    { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/detail/log_level.hpp>", private ] },
    { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tools/detail/fwd.hpp>", private ] },
    { include: ["<boost/test/detail/config.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/detail/global_typedef.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/detail/throw_exception.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/fwd.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/indirections.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/it_pair.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
    { include: ["<boost/test/detail/enable_warnings.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
    { include: ["<boost/test/detail/global_typedef.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/detail/global_typedef.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/detail/throw_exception.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/fwd.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/indirections.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/it_pair.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/print_helper.hpp>", private ] },
    { include: ["<boost/test/detail/suppress_warnings.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/indirections.hpp>", private ] },
    { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/fwd.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/bitwise_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/lexicographic_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/per_element_manip.hpp>", private ] },
    { include: ["<boost/test/tools/detail/indirections.hpp>", private, "<boost/test/tools/detail/tolerance_manip.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/log/detail/config.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_deque_base.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/counter.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/force_cast.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/lockable_wrapper.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/log.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/move.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/platform_time.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/singleton.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/thread_interruption.hpp>", private ] },
    { include: ["<boost/thread/detail/config.hpp>", private, "<boost/thread/detail/tss_hooks.hpp>", private ] },
    { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/detail/counter.hpp>", private ] },
    { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/detail/move.hpp>", private ] },
    { include: ["<boost/thread/detail/delete.hpp>", private, "<boost/thread/detail/thread_interruption.hpp>", private ] },
    { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
    { include: ["<boost/thread/detail/invoke.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/is_convertible.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/make_tuple_indices.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
    { include: ["<boost/thread/detail/make_tuple_indices.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/memory.hpp>", private, "<boost/thread/detail/function_wrapper.hpp>", private ] },
    { include: ["<boost/thread/detail/memory.hpp>", private, "<boost/thread/detail/nullary_function.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_deque_base.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/concurrent_queues/detail/sync_queue_base.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/function_wrapper.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/invoke.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/is_convertible.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/nullary_function.hpp>", private ] },
    { include: ["<boost/thread/detail/move.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/detail/config.hpp>", private ] },
    { include: ["<boost/thread/detail/platform.hpp>", private, "<boost/thread/detail/thread_heap_alloc.hpp>", private ] },
    { include: ["<boost/thread/detail/platform_time.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/thread_heap_alloc.hpp>", private, "<boost/thread/detail/thread.hpp>", private ] },
    { include: ["<boost/thread/detail/thread_safety.hpp>", private, "<boost/thread/detail/config.hpp>", private ] },
    { include: ["<boost/thread/detail/variadic_footer.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
    { include: ["<boost/thread/detail/variadic_header.hpp>", private, "<boost/thread/detail/invoker.hpp>", private ] },
    { include: ["<boost/thread/executors/detail/priority_executor_base.hpp>", private, "<boost/thread/executors/detail/scheduled_executor_base.hpp>", private ] },
    { include: ["<boost/tti/detail/dcomp_mem_fun.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dcomp_mem_fun_template.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dclass.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/denum.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dtype.hpp>", private ] },
    { include: ["<boost/tti/detail/ddeftype.hpp>", private, "<boost/tti/detail/dunion.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dclass.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/denum.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dfunction_template.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dmem_type.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dstatic_mem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dtemplate.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dtemplate_params.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dtype.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dunion.hpp>", private ] },
    { include: ["<boost/tti/detail/denclosing_type.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
    { include: ["<boost/tti/detail/dftclass.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dftclass.hpp>", private, "<boost/tti/detail/dcomp_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dftclass.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/dlambda.hpp>", private, "<boost/tti/detail/dclass.hpp>", private ] },
    { include: ["<boost/tti/detail/dlambda.hpp>", private, "<boost/tti/detail/denum.hpp>", private ] },
    { include: ["<boost/tti/detail/dlambda.hpp>", private, "<boost/tti/detail/dtype.hpp>", private ] },
    { include: ["<boost/tti/detail/dlambda.hpp>", private, "<boost/tti/detail/dunion.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_fve.hpp>", private, "<boost/tti/detail/dmacro_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dcomp_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dstatic_mem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dmacro_sunfix.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dmem_data.hpp>", private, "<boost/tti/detail/ddata.hpp>", private ] },
    { include: ["<boost/tti/detail/dmem_fun.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
    { include: ["<boost/tti/detail/dmem_fun.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/dmem_fun_template.hpp>", private, "<boost/tti/detail/dfunction_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dmetafunc.hpp>", private, "<boost/tti/detail/dlambda.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dcomp_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dstatic_mem_data.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dnullptr.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dplaceholder.hpp>", private, "<boost/tti/detail/dlambda.hpp>", private ] },
    { include: ["<boost/tti/detail/dptmf.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dptmf.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_function_tags.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_function_tags.hpp>", private, "<boost/tti/detail/dfunction_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_function_tags.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_function_tags.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_function_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_function_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_mem_data.hpp>", private, "<boost/tti/detail/ddata.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_mem_fun.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
    { include: ["<boost/tti/detail/dstatic_mem_fun_template.hpp>", private, "<boost/tti/detail/dfunction_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dtemplate.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
    { include: ["<boost/tti/detail/dtemplate_params.hpp>", private, "<boost/tti/detail/dvm_template_params.hpp>", private ] },
    { include: ["<boost/tti/detail/dtfunction.hpp>", private, "<boost/tti/detail/dfunction.hpp>", private ] },
    { include: ["<boost/tti/detail/dtfunction.hpp>", private, "<boost/tti/detail/dfunction_template.hpp>", private ] },
    { include: ["<boost/tti/detail/dtfunction.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/tti/detail/dtfunction.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/adapt_to_vtable.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/any_base.hpp>", private, "<boost/type_erasure/detail/access.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/const.hpp>", private, "<boost/type_erasure/detail/member11.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/detail/check_map.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/get_placeholders.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/get_signature.hpp>", private, "<boost/type_erasure/detail/adapt_to_vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/macro.hpp>", private, "<boost/type_erasure/detail/member11.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/meta.hpp>", private, "<boost/type_erasure/detail/get_placeholders.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/meta.hpp>", private, "<boost/type_erasure/detail/normalize_deduced.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/meta.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/meta.hpp>", private, "<boost/type_erasure/detail/rebind_placeholders.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/normalize_deduced.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/detail/check_map.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/normalize.hpp>", private, "<boost/type_erasure/detail/instantiate.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/instantiate.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/normalize.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/rebind_placeholders.hpp>", private, "<boost/type_erasure/detail/vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/detail/access.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/storage.hpp>", private, "<boost/type_erasure/detail/adapt_to_vtable.hpp>", private ] },
    { include: ["<boost/type_erasure/detail/vtable.hpp>", private, "<boost/type_erasure/detail/dynamic_vtable.hpp>", private ] },
    { include: ["<boost/type_traits/detail/common_arithmetic_type.hpp>", private, "<boost/type_traits/detail/common_type_impl.hpp>", private ] },
    { include: ["<boost/type_traits/detail/composite_member_pointer_type.hpp>", private, "<boost/type_traits/detail/common_type_impl.hpp>", private ] },
    { include: ["<boost/type_traits/detail/composite_pointer_type.hpp>", private, "<boost/type_traits/detail/common_type_impl.hpp>", private ] },
    { include: ["<boost/type_traits/detail/composite_pointer_type.hpp>", private, "<boost/type_traits/detail/composite_member_pointer_type.hpp>", private ] },
    { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/detail/has_binary_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/detail/has_postfix_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/detail/has_prefix_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/detail/is_likely_lambda.hpp>", private ] },
    { include: ["<boost/type_traits/detail/config.hpp>", private, "<boost/type_traits/detail/is_mem_fun_pointer_tester.hpp>", private ] },
    { include: ["<boost/type_traits/detail/is_function_msvc10_fix.hpp>", private, "<boost/type_traits/detail/is_function_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/is_function_ptr_helper.hpp>", private, "<boost/type_traits/detail/is_function_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/is_function_ptr_tester.hpp>", private, "<boost/type_traits/detail/is_function_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/is_likely_lambda.hpp>", private, "<boost/type_traits/detail/has_binary_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/is_mem_fun_pointer_impl.hpp>", private, "<boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/is_mem_fun_pointer_tester.hpp>", private, "<boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/template_arity_spec.hpp>", private, "<boost/type_traits/detail/bool_trait_def.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/convert/detail/has_member.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/iostreams/detail/bool_trait_def.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/range/detail/sfinae.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dcomp_mem_fun.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dcomp_mem_fun_template.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dmem_data.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dmem_fun.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dmem_fun_template.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dstatic_mem_data.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/tti/detail/dstatic_mem_fun_template.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/has_binary_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/has_postfix_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/has_prefix_operator.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/is_function_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/is_function_ptr_tester.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp>", private ] },
    { include: ["<boost/type_traits/detail/yes_no_type.hpp>", private, "<boost/type_traits/detail/is_mem_fun_pointer_tester.hpp>", private ] },
    { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
    { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/dimension_impl.hpp>", private ] },
    { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/linear_algebra.hpp>", private ] },
    { include: ["<boost/units/detail/dimension_list.hpp>", private, "<boost/units/detail/sort.hpp>", private ] },
    { include: ["<boost/units/detail/heterogeneous_conversion.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
    { include: ["<boost/units/detail/linear_algebra.hpp>", private, "<boost/units/detail/heterogeneous_conversion.hpp>", private ] },
    { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
    { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/detail/static_rational_power.hpp>", private ] },
    { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/detail/unscale.hpp>", private ] },
    { include: ["<boost/units/detail/one.hpp>", private, "<boost/units/systems/detail/constants.hpp>", private ] },
    { include: ["<boost/units/detail/push_front_if.hpp>", private, "<boost/units/detail/dimension_impl.hpp>", private ] },
    { include: ["<boost/units/detail/push_front_if.hpp>", private, "<boost/units/detail/push_front_or_add.hpp>", private ] },
    { include: ["<boost/units/detail/push_front_or_add.hpp>", private, "<boost/units/detail/dimension_impl.hpp>", private ] },
    { include: ["<boost/units/detail/sort.hpp>", private, "<boost/units/detail/linear_algebra.hpp>", private ] },
    { include: ["<boost/units/detail/static_rational_power.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
    { include: ["<boost/units/detail/unscale.hpp>", private, "<boost/units/detail/conversion_impl.hpp>", private ] },
    { include: ["<boost/unordered/detail/fwd.hpp>", private, "<boost/unordered/detail/implementation.hpp>", private ] },
    { include: ["<boost/unordered/detail/implementation.hpp>", private, "<boost/unordered/detail/map.hpp>", private ] },
    { include: ["<boost/unordered/detail/implementation.hpp>", private, "<boost/unordered/detail/set.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_arc4random.ipp>", private, "<boost/uuid/detail/random_provider_include_platform.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_bcrypt.ipp>", private, "<boost/uuid/detail/random_provider_include_platform.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_detect_platform.hpp>", private, "<boost/uuid/detail/random_provider.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_getentropy.ipp>", private, "<boost/uuid/detail/random_provider_include_platform.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_getrandom.ipp>", private, "<boost/uuid/detail/random_provider_include_platform.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_include_platform.hpp>", private, "<boost/uuid/detail/random_provider.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_posix.ipp>", private, "<boost/uuid/detail/random_provider_include_platform.hpp>", private ] },
    { include: ["<boost/uuid/detail/random_provider_wincrypt.ipp>", private, "<boost/uuid/detail/random_provider_include_platform.hpp>", private ] },
    { include: ["<boost/uuid/detail/sha1.hpp>", private, "<boost/compute/detail/sha1.hpp>", private ] },
    { include: ["<boost/variant/detail/apply_visitor_binary.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
    { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/detail/apply_visitor_binary.hpp>", private ] },
    { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
    { include: ["<boost/variant/detail/apply_visitor_unary.hpp>", private, "<boost/variant/detail/multivisitors_cpp11_based.hpp>", private ] },
    { include: ["<boost/variant/detail/backup_holder.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
    { include: ["<boost/variant/detail/cast_storage.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
    { include: ["<boost/variant/detail/enable_recursive_fwd.hpp>", private, "<boost/variant/detail/enable_recursive.hpp>", private ] },
    { include: ["<boost/variant/detail/forced_return.hpp>", private, "<boost/variant/detail/visitation_impl.hpp>", private ] },
    { include: ["<boost/variant/detail/hash_variant.hpp>", private, "<boost/variant/detail/std_hash.hpp>", private ] },
    { include: ["<boost/variant/detail/has_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_binary.hpp>", private ] },
    { include: ["<boost/variant/detail/has_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_delayed.hpp>", private ] },
    { include: ["<boost/variant/detail/has_result_type.hpp>", private, "<boost/variant/detail/apply_visitor_unary.hpp>", private ] },
    { include: ["<boost/variant/detail/move.hpp>", private, "<boost/variant/detail/initializer.hpp>", private ] },
    { include: ["<boost/variant/detail/substitute_fwd.hpp>", private, "<boost/variant/detail/substitute.hpp>", private ] },
    { include: ["<boost/variant/detail/substitute.hpp>", private, "<boost/variant/detail/enable_recursive.hpp>", private ] },
    { include: ["<boost/vmd/detail/adjust_tuple_type.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
    { include: ["<boost/vmd/detail/array.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/data_equal_common.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private ] },
    { include: ["<boost/vmd/detail/data_equal.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
    { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
    { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
    { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/parens_split.hpp>", private ] },
    { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/empty_result.hpp>", private, "<boost/vmd/detail/tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_common.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/data_equal_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/equal_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/equal_type.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier_concat.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier_concat.hpp>", private, "<boost/vmd/detail/is_general_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier_concat.hpp>", private, "<boost/vmd/detail/is_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier.hpp>", private, "<boost/vmd/detail/is_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier_type.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier_type.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/identifier_type.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/identifier_concat.hpp>", private ] },
    { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/identifier_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/match_identifier_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/idprefix.hpp>", private, "<boost/vmd/detail/match_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/is_array.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_array_common.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_empty_tuple.hpp>", private, "<boost/vmd/detail/is_array_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_entire.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_entire.hpp>", private, "<boost/vmd/detail/is_seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_entire.hpp>", private, "<boost/vmd/detail/is_tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_identifier.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_identifier.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_list.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/is_type_type.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/list.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_identifier_common.hpp>", private, "<boost/vmd/detail/match_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_identifier_common.hpp>", private, "<boost/vmd/detail/match_single_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_identifier.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_identifier.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/equal_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/equal_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/is_type_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/match_single_identifier.hpp>", private, "<boost/vmd/detail/modifiers.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/mods.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/only_after.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_arity.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/modifiers.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/only_after.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/parens.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/mods.hpp>", private, "<boost/vmd/detail/tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/nil_registration.hpp>", private, "<boost/vmd/detail/is_list.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/is_entire.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/is_identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_arity.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/not_empty.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/number_registration.hpp>", private, "<boost/vmd/detail/identifier_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/number_registration.hpp>", private, "<boost/vmd/detail/is_number.hpp>", private ] },
    { include: ["<boost/vmd/detail/only_after.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens_common.hpp>", private, "<boost/vmd/detail/parens.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens_common.hpp>", private, "<boost/vmd/detail/parens_split.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/identifier.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/list.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens.hpp>", private, "<boost/vmd/detail/tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens_split.hpp>", private, "<boost/vmd/detail/is_tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/parens_split.hpp>", private, "<boost/vmd/detail/parens.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_10.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_11.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_12.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_13.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_14.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_15.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_16.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_1.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_2.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_3.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_4.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_5.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_6.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_7.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_8.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_9.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/data_equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_10.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_11.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_12.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_13.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_14.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_15.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_16.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_1.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_2.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_3.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_4.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_5.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_6.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_7.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_8.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_9.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/data_equal/data_equal_headers.hpp>", private, "<boost/vmd/detail/recurse/data_equal/data_equal_specific.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_10.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_11.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_12.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_13.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_14.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_15.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_16.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_1.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_2.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_3.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_4.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_5.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_6.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_7.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_8.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_9.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/equal.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_10.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_11.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_12.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_13.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_14.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_15.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_16.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_1.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_2.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_3.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_4.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_5.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_6.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_7.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_8.hpp>", private ] },
    { include: ["<boost/vmd/detail/recurse/equal/equal_headers.hpp>", private, "<boost/vmd/detail/recurse/equal/equal_9.hpp>", private ] },
    { include: ["<boost/vmd/detail/seq.hpp>", private, "<boost/vmd/detail/is_seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/seq.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_common.hpp>", private, "<boost/vmd/detail/sequence_elem.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_arity.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_array.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_list.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_seq.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_to_tuple.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_elem.hpp>", private, "<boost/vmd/detail/sequence_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_to_array.hpp>", private, "<boost/vmd/detail/sequence_size.hpp>", private ] },
    { include: ["<boost/vmd/detail/sequence_to_tuple.hpp>", private, "<boost/vmd/detail/sequence_enum.hpp>", private ] },
    { include: ["<boost/vmd/detail/tuple.hpp>", private, "<boost/vmd/detail/array.hpp>", private ] },
    { include: ["<boost/vmd/detail/tuple.hpp>", private, "<boost/vmd/detail/sequence_common.hpp>", private ] },
    { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/adjust_tuple_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/equal_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/identifier_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/is_type.hpp>", private ] },
    { include: ["<boost/vmd/detail/type_registration.hpp>", private, "<boost/vmd/detail/is_type_type.hpp>", private ] },
    { include: ["<boost/winapi/detail/footer.hpp>", private, "<boost/winapi/detail/cast_ptr.hpp>", private ] },
    { include: ["<boost/winapi/detail/header.hpp>", private, "<boost/winapi/detail/cast_ptr.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/access.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/access.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/action.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/action.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/adaptor.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/adaptor.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/adaptor.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/finder.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/flow_control.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/icase.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/linker.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/list.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matchers.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private, "<boost/xpressive/detail/core/matchers.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/optimize.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/peeker.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/peeker.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/peeker.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/quant_style.hpp>", private, "<boost/xpressive/detail/static/placeholders.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/optimize.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/static/placeholders.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/regex_impl.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/state.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/sub_match_impl.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/sub_match_impl.hpp>", private, "<boost/xpressive/detail/core/sub_match_vector.hpp>", private ] },
    { include: ["<boost/xpressive/detail/core/sub_match_vector.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/access.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/action.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/adaptor.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/any_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_line_base.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/epsilon_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/keeper_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/optional_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/predicate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/range_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/regex_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/set_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/matcher/true_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/quant_style.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/results_cache.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/core/sub_match_vector.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/dynamic/sequence.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/is_pure.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/modifier.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_independent.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_inverse.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_marker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_modifier.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_sequence.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/type_traits.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/static/width_of.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/utility/boyer_moore.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/detail/utility/chset/chset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/detail_fwd.hpp>", private, "<boost/xpressive/traits/detail/c_ctype.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/dynamic.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/access.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/adaptor.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/matchable.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/parser_enum.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/parser_enum.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/sequence.hpp>", private, "<boost/xpressive/detail/dynamic/dynamic.hpp>", private ] },
    { include: ["<boost/xpressive/detail/dynamic/sequence.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/grammar.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/is_pure.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/modifier.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/placeholders.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/placeholders.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_independent.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_inverse.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_marker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_modifier.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_sequence.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/static.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_action.hpp>", private, "<boost/xpressive/detail/core/matcher/action_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_action.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_independent.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_inverse.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_marker.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_matcher.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_modifier.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_quantifier.hpp>", private, "<boost/xpressive/detail/static/transforms/as_action.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_sequence.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transforms/as_set.hpp>", private, "<boost/xpressive/detail/static/grammar.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/transmogrify.hpp>", private, "<boost/xpressive/detail/static/visitor.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/type_traits.hpp>", private, "<boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/type_traits.hpp>", private, "<boost/xpressive/detail/static/width_of.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/visitor.hpp>", private, "<boost/xpressive/detail/static/compile.hpp>", private ] },
    { include: ["<boost/xpressive/detail/static/width_of.hpp>", private, "<boost/xpressive/detail/static/is_pure.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/utility/chset/chset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/algorithm.hpp>", private, "<boost/xpressive/detail/utility/traits_utils.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/any.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/boyer_moore.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/chset/basic_chset.ipp>", private, "<boost/xpressive/detail/utility/chset/chset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/chset/basic_chset.ipp>", private, "<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/chset/chset.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/chset/chset.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/chset/range_run.ipp>", private, "<boost/xpressive/detail/utility/chset/basic_chset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/cons.hpp>", private, "<boost/xpressive/detail/static/transforms/as_alternate.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/counted_base.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/counted_base.hpp>", private, "<boost/xpressive/detail/dynamic/matchable.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/dont_care.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private, "<boost/xpressive/detail/core/finder.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private, "<boost/xpressive/detail/core/matcher/alternate_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/hash_peek_bitset.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/flow_control.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/icase.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/matcher/assert_word_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/dynamic/parser.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/ignore_unused.hpp>", private, "<boost/xpressive/detail/utility/algorithm.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/literals.hpp>", private, "<boost/xpressive/detail/dynamic/parse_charset.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/literals.hpp>", private, "<boost/xpressive/detail/dynamic/parser_traits.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/never_true.hpp>", private, "<boost/xpressive/detail/core/linker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/never_true.hpp>", private, "<boost/xpressive/detail/core/peeker.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/save_restore.hpp>", private, "<boost/xpressive/detail/core/matcher/lookahead_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/save_restore.hpp>", private, "<boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/sequence_stack.hpp>", private, "<boost/xpressive/detail/core/state.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/symbols.hpp>", private, "<boost/xpressive/detail/core/matcher/attr_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/tracking_ptr.hpp>", private, "<boost/xpressive/detail/core/regex_impl.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/literal_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/mark_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/core/matcher/string_matcher.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/static/transforms/as_set.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/traits_utils.hpp>", private, "<boost/xpressive/detail/static/transmogrify.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/width.hpp>", private, "<boost/xpressive/detail/core/quant_style.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/width.hpp>", private, "<boost/xpressive/detail/dynamic/sequence.hpp>", private ] },
    { include: ["<boost/xpressive/detail/utility/width.hpp>", private, "<boost/xpressive/detail/static/static.hpp>", private ] },
]