blob: 48f4b6b93a87a609dee7d65c7152543f09440b7c (
plain)
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
|
./etc/X11/xenodm/pixmaps/OpenBSD_15bpp.xpm
./etc/X11/xenodm/pixmaps/OpenBSD_1bpp.xpm
./etc/X11/xenodm/pixmaps/OpenBSD_4bpp.xpm
./etc/X11/xenodm/pixmaps/OpenBSD_8bpp.xpm
./usr/X11R6/bin/gccmakedep
./usr/X11R6/bin/startx
./usr/X11R6/bin/x11perfcomp
./usr/X11R6/include/GL/glxint.h
./usr/X11R6/include/GL/glxmd.h
./usr/X11R6/include/GL/glxproto.h
./usr/X11R6/include/GL/glxtokens.h
./usr/X11R6/include/GL/internal/glcore.h
./usr/X11R6/include/X11/CallbackI.h
./usr/X11R6/include/X11/Composite.h
./usr/X11R6/include/X11/CompositeP.h
./usr/X11R6/include/X11/ConstrainP.h
./usr/X11R6/include/X11/Constraint.h
./usr/X11R6/include/X11/ConvertI.h
./usr/X11R6/include/X11/Core.h
./usr/X11R6/include/X11/CoreP.h
./usr/X11R6/include/X11/CreateI.h
./usr/X11R6/include/X11/DECkeysym.h
./usr/X11R6/include/X11/EventI.h
./usr/X11R6/include/X11/HPkeysym.h
./usr/X11R6/include/X11/HookObjI.h
./usr/X11R6/include/X11/ICE
./usr/X11R6/include/X11/ICE/ICE.h
./usr/X11R6/include/X11/ICE/ICEconn.h
./usr/X11R6/include/X11/ICE/ICElib.h
./usr/X11R6/include/X11/ICE/ICEmsg.h
./usr/X11R6/include/X11/ICE/ICEproto.h
./usr/X11R6/include/X11/ICE/ICEutil.h
./usr/X11R6/include/X11/ImUtil.h
./usr/X11R6/include/X11/InitialI.h
./usr/X11R6/include/X11/Intrinsic.h
./usr/X11R6/include/X11/IntrinsicI.h
./usr/X11R6/include/X11/IntrinsicP.h
./usr/X11R6/include/X11/Object.h
./usr/X11R6/include/X11/ObjectP.h
./usr/X11R6/include/X11/PassivGraI.h
./usr/X11R6/include/X11/RectObj.h
./usr/X11R6/include/X11/RectObjP.h
./usr/X11R6/include/X11/ResConfigP.h
./usr/X11R6/include/X11/ResourceI.h
./usr/X11R6/include/X11/SM
./usr/X11R6/include/X11/SM/SM.h
./usr/X11R6/include/X11/SM/SMlib.h
./usr/X11R6/include/X11/SM/SMproto.h
./usr/X11R6/include/X11/SelectionI.h
./usr/X11R6/include/X11/Shell.h
./usr/X11R6/include/X11/ShellI.h
./usr/X11R6/include/X11/ShellP.h
./usr/X11R6/include/X11/StringDefs.h
./usr/X11R6/include/X11/Sunkeysym.h
./usr/X11R6/include/X11/ThreadsI.h
./usr/X11R6/include/X11/TranslateI.h
./usr/X11R6/include/X11/VarargsI.h
./usr/X11R6/include/X11/Vendor.h
./usr/X11R6/include/X11/VendorP.h
./usr/X11R6/include/X11/X.h
./usr/X11R6/include/X11/XF86keysym.h
./usr/X11R6/include/X11/XKBlib.h
./usr/X11R6/include/X11/XWDFile.h
./usr/X11R6/include/X11/Xalloca.h
./usr/X11R6/include/X11/Xarch.h
./usr/X11R6/include/X11/Xatom.h
./usr/X11R6/include/X11/Xauth.h
./usr/X11R6/include/X11/Xaw
./usr/X11R6/include/X11/Xaw/AllWidgets.h
./usr/X11R6/include/X11/Xaw/AsciiSink.h
./usr/X11R6/include/X11/Xaw/AsciiSinkP.h
./usr/X11R6/include/X11/Xaw/AsciiSrc.h
./usr/X11R6/include/X11/Xaw/AsciiSrcP.h
./usr/X11R6/include/X11/Xaw/AsciiText.h
./usr/X11R6/include/X11/Xaw/AsciiTextP.h
./usr/X11R6/include/X11/Xaw/Box.h
./usr/X11R6/include/X11/Xaw/BoxP.h
./usr/X11R6/include/X11/Xaw/Cardinals.h
./usr/X11R6/include/X11/Xaw/Command.h
./usr/X11R6/include/X11/Xaw/CommandP.h
./usr/X11R6/include/X11/Xaw/Dialog.h
./usr/X11R6/include/X11/Xaw/DialogP.h
./usr/X11R6/include/X11/Xaw/Form.h
./usr/X11R6/include/X11/Xaw/FormP.h
./usr/X11R6/include/X11/Xaw/Grip.h
./usr/X11R6/include/X11/Xaw/GripP.h
./usr/X11R6/include/X11/Xaw/Label.h
./usr/X11R6/include/X11/Xaw/LabelP.h
./usr/X11R6/include/X11/Xaw/List.h
./usr/X11R6/include/X11/Xaw/ListP.h
./usr/X11R6/include/X11/Xaw/MenuButtoP.h
./usr/X11R6/include/X11/Xaw/MenuButton.h
./usr/X11R6/include/X11/Xaw/MultiSink.h
./usr/X11R6/include/X11/Xaw/MultiSinkP.h
./usr/X11R6/include/X11/Xaw/MultiSrc.h
./usr/X11R6/include/X11/Xaw/MultiSrcP.h
./usr/X11R6/include/X11/Xaw/Paned.h
./usr/X11R6/include/X11/Xaw/PanedP.h
./usr/X11R6/include/X11/Xaw/Panner.h
./usr/X11R6/include/X11/Xaw/PannerP.h
./usr/X11R6/include/X11/Xaw/Porthole.h
./usr/X11R6/include/X11/Xaw/PortholeP.h
./usr/X11R6/include/X11/Xaw/Repeater.h
./usr/X11R6/include/X11/Xaw/RepeaterP.h
./usr/X11R6/include/X11/Xaw/Reports.h
./usr/X11R6/include/X11/Xaw/Scrollbar.h
./usr/X11R6/include/X11/Xaw/ScrollbarP.h
./usr/X11R6/include/X11/Xaw/Simple.h
./usr/X11R6/include/X11/Xaw/SimpleMenP.h
./usr/X11R6/include/X11/Xaw/SimpleMenu.h
./usr/X11R6/include/X11/Xaw/SimpleP.h
./usr/X11R6/include/X11/Xaw/Sme.h
./usr/X11R6/include/X11/Xaw/SmeBSB.h
./usr/X11R6/include/X11/Xaw/SmeBSBP.h
./usr/X11R6/include/X11/Xaw/SmeLine.h
./usr/X11R6/include/X11/Xaw/SmeLineP.h
./usr/X11R6/include/X11/Xaw/SmeP.h
./usr/X11R6/include/X11/Xaw/StripCharP.h
./usr/X11R6/include/X11/Xaw/StripChart.h
./usr/X11R6/include/X11/Xaw/Template.c
./usr/X11R6/include/X11/Xaw/Template.h
./usr/X11R6/include/X11/Xaw/TemplateP.h
./usr/X11R6/include/X11/Xaw/Text.h
./usr/X11R6/include/X11/Xaw/TextP.h
./usr/X11R6/include/X11/Xaw/TextSink.h
./usr/X11R6/include/X11/Xaw/TextSinkP.h
./usr/X11R6/include/X11/Xaw/TextSrc.h
./usr/X11R6/include/X11/Xaw/TextSrcP.h
./usr/X11R6/include/X11/Xaw/Tip.h
./usr/X11R6/include/X11/Xaw/TipP.h
./usr/X11R6/include/X11/Xaw/Toggle.h
./usr/X11R6/include/X11/Xaw/ToggleP.h
./usr/X11R6/include/X11/Xaw/Tree.h
./usr/X11R6/include/X11/Xaw/TreeP.h
./usr/X11R6/include/X11/Xaw/VendorEP.h
./usr/X11R6/include/X11/Xaw/Viewport.h
./usr/X11R6/include/X11/Xaw/ViewportP.h
./usr/X11R6/include/X11/Xaw/XawImP.h
./usr/X11R6/include/X11/Xaw/XawInit.h
./usr/X11R6/include/X11/Xcms.h
./usr/X11R6/include/X11/Xcursor
./usr/X11R6/include/X11/Xcursor/Xcursor.h
./usr/X11R6/include/X11/Xdefs.h
./usr/X11R6/include/X11/Xdmcp.h
./usr/X11R6/include/X11/Xft
./usr/X11R6/include/X11/Xft/Xft.h
./usr/X11R6/include/X11/Xft/XftCompat.h
./usr/X11R6/include/X11/Xfuncproto.h
./usr/X11R6/include/X11/Xfuncs.h
./usr/X11R6/include/X11/Xlib-xcb.h
./usr/X11R6/include/X11/Xlib.h
./usr/X11R6/include/X11/XlibConf.h
./usr/X11R6/include/X11/Xlibint.h
./usr/X11R6/include/X11/Xlocale.h
./usr/X11R6/include/X11/Xmd.h
./usr/X11R6/include/X11/Xmu
./usr/X11R6/include/X11/Xmu/Atoms.h
./usr/X11R6/include/X11/Xmu/CharSet.h
./usr/X11R6/include/X11/Xmu/CloseHook.h
./usr/X11R6/include/X11/Xmu/Converters.h
./usr/X11R6/include/X11/Xmu/CurUtil.h
./usr/X11R6/include/X11/Xmu/CvtCache.h
./usr/X11R6/include/X11/Xmu/DisplayQue.h
./usr/X11R6/include/X11/Xmu/Drawing.h
./usr/X11R6/include/X11/Xmu/Editres.h
./usr/X11R6/include/X11/Xmu/EditresP.h
./usr/X11R6/include/X11/Xmu/Error.h
./usr/X11R6/include/X11/Xmu/ExtAgent.h
./usr/X11R6/include/X11/Xmu/Initer.h
./usr/X11R6/include/X11/Xmu/Lookup.h
./usr/X11R6/include/X11/Xmu/Misc.h
./usr/X11R6/include/X11/Xmu/StdCmap.h
./usr/X11R6/include/X11/Xmu/StdSel.h
./usr/X11R6/include/X11/Xmu/SysUtil.h
./usr/X11R6/include/X11/Xmu/WhitePoint.h
./usr/X11R6/include/X11/Xmu/WidgetNode.h
./usr/X11R6/include/X11/Xmu/WinUtil.h
./usr/X11R6/include/X11/Xmu/Xct.h
./usr/X11R6/include/X11/Xmu/Xmu.h
./usr/X11R6/include/X11/Xos.h
./usr/X11R6/include/X11/Xos_r.h
./usr/X11R6/include/X11/Xosdefs.h
./usr/X11R6/include/X11/Xpoll.h
./usr/X11R6/include/X11/Xproto.h
./usr/X11R6/include/X11/Xprotostr.h
./usr/X11R6/include/X11/Xregion.h
./usr/X11R6/include/X11/Xresource.h
./usr/X11R6/include/X11/Xthreads.h
./usr/X11R6/include/X11/Xtos.h
./usr/X11R6/include/X11/Xtrans
./usr/X11R6/include/X11/Xtrans/Xtrans.c
./usr/X11R6/include/X11/Xtrans/Xtrans.h
./usr/X11R6/include/X11/Xtrans/Xtransint.h
./usr/X11R6/include/X11/Xtrans/Xtranslcl.c
./usr/X11R6/include/X11/Xtrans/Xtranssock.c
./usr/X11R6/include/X11/Xtrans/Xtransutil.c
./usr/X11R6/include/X11/Xtrans/transport.c
./usr/X11R6/include/X11/Xutil.h
./usr/X11R6/include/X11/Xw32defs.h
./usr/X11R6/include/X11/Xwindows.h
./usr/X11R6/include/X11/Xwinsock.h
./usr/X11R6/include/X11/ap_keysym.h
./usr/X11R6/include/X11/bitmaps
./usr/X11R6/include/X11/bitmaps/1x1
./usr/X11R6/include/X11/bitmaps/2x2
./usr/X11R6/include/X11/bitmaps/Dashes
./usr/X11R6/include/X11/bitmaps/Down
./usr/X11R6/include/X11/bitmaps/Excl
./usr/X11R6/include/X11/bitmaps/FlipHoriz
./usr/X11R6/include/X11/bitmaps/FlipVert
./usr/X11R6/include/X11/bitmaps/Fold
./usr/X11R6/include/X11/bitmaps/Left
./usr/X11R6/include/X11/bitmaps/Right
./usr/X11R6/include/X11/bitmaps/RotateLeft
./usr/X11R6/include/X11/bitmaps/RotateRight
./usr/X11R6/include/X11/bitmaps/Stipple
./usr/X11R6/include/X11/bitmaps/Term
./usr/X11R6/include/X11/bitmaps/Up
./usr/X11R6/include/X11/bitmaps/black
./usr/X11R6/include/X11/bitmaps/black6
./usr/X11R6/include/X11/bitmaps/box6
./usr/X11R6/include/X11/bitmaps/boxes
./usr/X11R6/include/X11/bitmaps/calculator
./usr/X11R6/include/X11/bitmaps/ccode.icon
./usr/X11R6/include/X11/bitmaps/cntr_ptr
./usr/X11R6/include/X11/bitmaps/cntr_ptrmsk
./usr/X11R6/include/X11/bitmaps/cross_weave
./usr/X11R6/include/X11/bitmaps/default.xbm
./usr/X11R6/include/X11/bitmaps/dimple1
./usr/X11R6/include/X11/bitmaps/dimple3
./usr/X11R6/include/X11/bitmaps/dot
./usr/X11R6/include/X11/bitmaps/dropbar7
./usr/X11R6/include/X11/bitmaps/dropbar8
./usr/X11R6/include/X11/bitmaps/escherknot
./usr/X11R6/include/X11/bitmaps/flagdown
./usr/X11R6/include/X11/bitmaps/flagup
./usr/X11R6/include/X11/bitmaps/flipped_gray
./usr/X11R6/include/X11/bitmaps/fvwm.bitmap
./usr/X11R6/include/X11/bitmaps/gray
./usr/X11R6/include/X11/bitmaps/gray1
./usr/X11R6/include/X11/bitmaps/gray3
./usr/X11R6/include/X11/bitmaps/grid16
./usr/X11R6/include/X11/bitmaps/grid2
./usr/X11R6/include/X11/bitmaps/grid4
./usr/X11R6/include/X11/bitmaps/grid8
./usr/X11R6/include/X11/bitmaps/hcode.icon
./usr/X11R6/include/X11/bitmaps/hlines2
./usr/X11R6/include/X11/bitmaps/hlines3
./usr/X11R6/include/X11/bitmaps/icon
./usr/X11R6/include/X11/bitmaps/keyboard16
./usr/X11R6/include/X11/bitmaps/left_ptr
./usr/X11R6/include/X11/bitmaps/left_ptrmsk
./usr/X11R6/include/X11/bitmaps/letters
./usr/X11R6/include/X11/bitmaps/light_gray
./usr/X11R6/include/X11/bitmaps/mailempty
./usr/X11R6/include/X11/bitmaps/mailemptymsk
./usr/X11R6/include/X11/bitmaps/mailfull
./usr/X11R6/include/X11/bitmaps/mailfullmsk
./usr/X11R6/include/X11/bitmaps/mensetmanus
./usr/X11R6/include/X11/bitmaps/menu10
./usr/X11R6/include/X11/bitmaps/menu12
./usr/X11R6/include/X11/bitmaps/menu16
./usr/X11R6/include/X11/bitmaps/menu6
./usr/X11R6/include/X11/bitmaps/menu8
./usr/X11R6/include/X11/bitmaps/noletters
./usr/X11R6/include/X11/bitmaps/ocode.icon
./usr/X11R6/include/X11/bitmaps/opendot
./usr/X11R6/include/X11/bitmaps/opendotMask
./usr/X11R6/include/X11/bitmaps/plaid
./usr/X11R6/include/X11/bitmaps/prog.icon
./usr/X11R6/include/X11/bitmaps/right_ptr
./usr/X11R6/include/X11/bitmaps/right_ptrmsk
./usr/X11R6/include/X11/bitmaps/root_weave
./usr/X11R6/include/X11/bitmaps/scales
./usr/X11R6/include/X11/bitmaps/sipb
./usr/X11R6/include/X11/bitmaps/star
./usr/X11R6/include/X11/bitmaps/starMask
./usr/X11R6/include/X11/bitmaps/stipple
./usr/X11R6/include/X11/bitmaps/target
./usr/X11R6/include/X11/bitmaps/terminal
./usr/X11R6/include/X11/bitmaps/tie_fighter
./usr/X11R6/include/X11/bitmaps/vlines2
./usr/X11R6/include/X11/bitmaps/vlines3
./usr/X11R6/include/X11/bitmaps/weird_size
./usr/X11R6/include/X11/bitmaps/wide_weave
./usr/X11R6/include/X11/bitmaps/wingdogs
./usr/X11R6/include/X11/bitmaps/woman
./usr/X11R6/include/X11/bitmaps/xfd_icon
./usr/X11R6/include/X11/bitmaps/xlogo11
./usr/X11R6/include/X11/bitmaps/xlogo16
./usr/X11R6/include/X11/bitmaps/xlogo32
./usr/X11R6/include/X11/bitmaps/xlogo64
./usr/X11R6/include/X11/bitmaps/xsnow
./usr/X11R6/include/X11/cursorfont.h
./usr/X11R6/include/X11/extensions
./usr/X11R6/include/X11/extensions/EVI.h
./usr/X11R6/include/X11/extensions/EVIproto.h
./usr/X11R6/include/X11/extensions/MITMisc.h
./usr/X11R6/include/X11/extensions/XEVI.h
./usr/X11R6/include/X11/extensions/XI.h
./usr/X11R6/include/X11/extensions/XI2.h
./usr/X11R6/include/X11/extensions/XI2proto.h
./usr/X11R6/include/X11/extensions/XInput.h
./usr/X11R6/include/X11/extensions/XInput2.h
./usr/X11R6/include/X11/extensions/XIproto.h
./usr/X11R6/include/X11/extensions/XKB.h
./usr/X11R6/include/X11/extensions/XKBbells.h
./usr/X11R6/include/X11/extensions/XKBconfig.h
./usr/X11R6/include/X11/extensions/XKBfile.h
./usr/X11R6/include/X11/extensions/XKBgeom.h
./usr/X11R6/include/X11/extensions/XKBproto.h
./usr/X11R6/include/X11/extensions/XKBrules.h
./usr/X11R6/include/X11/extensions/XKBsrv.h
./usr/X11R6/include/X11/extensions/XKBstr.h
./usr/X11R6/include/X11/extensions/XKM.h
./usr/X11R6/include/X11/extensions/XKMformat.h
./usr/X11R6/include/X11/extensions/XLbx.h
./usr/X11R6/include/X11/extensions/XRes.h
./usr/X11R6/include/X11/extensions/XResproto.h
./usr/X11R6/include/X11/extensions/XShm.h
./usr/X11R6/include/X11/extensions/XTest.h
./usr/X11R6/include/X11/extensions/Xag.h
./usr/X11R6/include/X11/extensions/Xcomposite.h
./usr/X11R6/include/X11/extensions/Xcup.h
./usr/X11R6/include/X11/extensions/Xdamage.h
./usr/X11R6/include/X11/extensions/Xdbe.h
./usr/X11R6/include/X11/extensions/Xext.h
./usr/X11R6/include/X11/extensions/Xfixes.h
./usr/X11R6/include/X11/extensions/Xge.h
./usr/X11R6/include/X11/extensions/Xinerama.h
./usr/X11R6/include/X11/extensions/Xpresent.h
./usr/X11R6/include/X11/extensions/Xrandr.h
./usr/X11R6/include/X11/extensions/Xrender.h
./usr/X11R6/include/X11/extensions/Xv.h
./usr/X11R6/include/X11/extensions/XvMC.h
./usr/X11R6/include/X11/extensions/XvMClib.h
./usr/X11R6/include/X11/extensions/XvMCproto.h
./usr/X11R6/include/X11/extensions/Xvlib.h
./usr/X11R6/include/X11/extensions/Xvproto.h
./usr/X11R6/include/X11/extensions/Xxf86dga.h
./usr/X11R6/include/X11/extensions/ag.h
./usr/X11R6/include/X11/extensions/agproto.h
./usr/X11R6/include/X11/extensions/bigreqsproto.h
./usr/X11R6/include/X11/extensions/bigreqstr.h
./usr/X11R6/include/X11/extensions/composite.h
./usr/X11R6/include/X11/extensions/compositeproto.h
./usr/X11R6/include/X11/extensions/cup.h
./usr/X11R6/include/X11/extensions/cupproto.h
./usr/X11R6/include/X11/extensions/damageproto.h
./usr/X11R6/include/X11/extensions/damagewire.h
./usr/X11R6/include/X11/extensions/dbe.h
./usr/X11R6/include/X11/extensions/dbeproto.h
./usr/X11R6/include/X11/extensions/dmx.h
./usr/X11R6/include/X11/extensions/dmxproto.h
./usr/X11R6/include/X11/extensions/dpms.h
./usr/X11R6/include/X11/extensions/dpmsconst.h
./usr/X11R6/include/X11/extensions/dpmsproto.h
./usr/X11R6/include/X11/extensions/dri2proto.h
./usr/X11R6/include/X11/extensions/dri2tokens.h
./usr/X11R6/include/X11/extensions/dri3proto.h
./usr/X11R6/include/X11/extensions/extutil.h
./usr/X11R6/include/X11/extensions/ge.h
./usr/X11R6/include/X11/extensions/geproto.h
./usr/X11R6/include/X11/extensions/lbx.h
./usr/X11R6/include/X11/extensions/lbxproto.h
./usr/X11R6/include/X11/extensions/mitmiscconst.h
./usr/X11R6/include/X11/extensions/mitmiscproto.h
./usr/X11R6/include/X11/extensions/multibuf.h
./usr/X11R6/include/X11/extensions/multibufconst.h
./usr/X11R6/include/X11/extensions/multibufproto.h
./usr/X11R6/include/X11/extensions/panoramiXext.h
./usr/X11R6/include/X11/extensions/panoramiXproto.h
./usr/X11R6/include/X11/extensions/presentproto.h
./usr/X11R6/include/X11/extensions/presenttokens.h
./usr/X11R6/include/X11/extensions/randr.h
./usr/X11R6/include/X11/extensions/randrproto.h
./usr/X11R6/include/X11/extensions/record.h
./usr/X11R6/include/X11/extensions/recordconst.h
./usr/X11R6/include/X11/extensions/recordproto.h
./usr/X11R6/include/X11/extensions/recordstr.h
./usr/X11R6/include/X11/extensions/render.h
./usr/X11R6/include/X11/extensions/renderproto.h
./usr/X11R6/include/X11/extensions/saver.h
./usr/X11R6/include/X11/extensions/saverproto.h
./usr/X11R6/include/X11/extensions/scrnsaver.h
./usr/X11R6/include/X11/extensions/secur.h
./usr/X11R6/include/X11/extensions/security.h
./usr/X11R6/include/X11/extensions/securproto.h
./usr/X11R6/include/X11/extensions/shape.h
./usr/X11R6/include/X11/extensions/shapeconst.h
./usr/X11R6/include/X11/extensions/shapeproto.h
./usr/X11R6/include/X11/extensions/shm.h
./usr/X11R6/include/X11/extensions/shmproto.h
./usr/X11R6/include/X11/extensions/sync.h
./usr/X11R6/include/X11/extensions/syncconst.h
./usr/X11R6/include/X11/extensions/syncproto.h
./usr/X11R6/include/X11/extensions/vldXvMC.h
./usr/X11R6/include/X11/extensions/xcmiscproto.h
./usr/X11R6/include/X11/extensions/xcmiscstr.h
./usr/X11R6/include/X11/extensions/xf86bigfont.h
./usr/X11R6/include/X11/extensions/xf86bigfproto.h
./usr/X11R6/include/X11/extensions/xf86bigfstr.h
./usr/X11R6/include/X11/extensions/xf86dga.h
./usr/X11R6/include/X11/extensions/xf86dga1.h
./usr/X11R6/include/X11/extensions/xf86dga1const.h
./usr/X11R6/include/X11/extensions/xf86dga1proto.h
./usr/X11R6/include/X11/extensions/xf86dga1str.h
./usr/X11R6/include/X11/extensions/xf86dgaconst.h
./usr/X11R6/include/X11/extensions/xf86dgaproto.h
./usr/X11R6/include/X11/extensions/xf86dgastr.h
./usr/X11R6/include/X11/extensions/xf86vm.h
./usr/X11R6/include/X11/extensions/xf86vmode.h
./usr/X11R6/include/X11/extensions/xf86vmproto.h
./usr/X11R6/include/X11/extensions/xf86vmstr.h
./usr/X11R6/include/X11/extensions/xfixesproto.h
./usr/X11R6/include/X11/extensions/xfixeswire.h
./usr/X11R6/include/X11/extensions/xtestconst.h
./usr/X11R6/include/X11/extensions/xtestext1.h
./usr/X11R6/include/X11/extensions/xtestext1const.h
./usr/X11R6/include/X11/extensions/xtestext1proto.h
./usr/X11R6/include/X11/extensions/xtestproto.h
./usr/X11R6/include/X11/fonts
./usr/X11R6/include/X11/fonts/FS.h
./usr/X11R6/include/X11/fonts/FSproto.h
./usr/X11R6/include/X11/fonts/font.h
./usr/X11R6/include/X11/fonts/fontenc.h
./usr/X11R6/include/X11/fonts/fontproto.h
./usr/X11R6/include/X11/fonts/fontstruct.h
./usr/X11R6/include/X11/fonts/fsmasks.h
./usr/X11R6/include/X11/fonts/libxfont2.h
./usr/X11R6/include/X11/keysym.h
./usr/X11R6/include/X11/keysymdef.h
./usr/X11R6/include/X11/pixmaps
./usr/X11R6/include/X11/pixmaps/Jlock.xpm
./usr/X11R6/include/X11/pixmaps/Jnews.xpm
./usr/X11R6/include/X11/pixmaps/Jrecycle.xpm
./usr/X11R6/include/X11/pixmaps/Jxlock.xpm
./usr/X11R6/include/X11/pixmaps/Monitor.xpm
./usr/X11R6/include/X11/pixmaps/Mosaic.xpm
./usr/X11R6/include/X11/pixmaps/arrdown2.xpm
./usr/X11R6/include/X11/pixmaps/arrows2.xpm
./usr/X11R6/include/X11/pixmaps/arrup2.xpm
./usr/X11R6/include/X11/pixmaps/bomb.xpm
./usr/X11R6/include/X11/pixmaps/button-close.xpm
./usr/X11R6/include/X11/pixmaps/button-horiz.xpm
./usr/X11R6/include/X11/pixmaps/button-max.xpm
./usr/X11R6/include/X11/pixmaps/button-vert.xpm
./usr/X11R6/include/X11/pixmaps/button.xpm
./usr/X11R6/include/X11/pixmaps/clamp.xpm
./usr/X11R6/include/X11/pixmaps/colormap.xpm
./usr/X11R6/include/X11/pixmaps/datebook.xpm
./usr/X11R6/include/X11/pixmaps/desk.xpm
./usr/X11R6/include/X11/pixmaps/dialog_box.xpm
./usr/X11R6/include/X11/pixmaps/doomface.xpm
./usr/X11R6/include/X11/pixmaps/editres.xpm
./usr/X11R6/include/X11/pixmaps/eps.xpm
./usr/X11R6/include/X11/pixmaps/exit.xpm
./usr/X11R6/include/X11/pixmaps/flow_chart.xpm
./usr/X11R6/include/X11/pixmaps/folder2.xpm
./usr/X11R6/include/X11/pixmaps/folders.xpm
./usr/X11R6/include/X11/pixmaps/fvwm.xpm
./usr/X11R6/include/X11/pixmaps/fvwm2.xpm
./usr/X11R6/include/X11/pixmaps/fvwm2_big.xpm
./usr/X11R6/include/X11/pixmaps/fvwm3.xpm
./usr/X11R6/include/X11/pixmaps/gnu-animal.xpm
./usr/X11R6/include/X11/pixmaps/graphs.xpm
./usr/X11R6/include/X11/pixmaps/jball.xpm
./usr/X11R6/include/X11/pixmaps/jbomb.xpm
./usr/X11R6/include/X11/pixmaps/jbook1.xpm
./usr/X11R6/include/X11/pixmaps/jbook2.xpm
./usr/X11R6/include/X11/pixmaps/jcalc.xpm
./usr/X11R6/include/X11/pixmaps/jclock.xpm
./usr/X11R6/include/X11/pixmaps/jf.xpm
./usr/X11R6/include/X11/pixmaps/jgraph.xpm
./usr/X11R6/include/X11/pixmaps/jline.xpm
./usr/X11R6/include/X11/pixmaps/jlower.xpm
./usr/X11R6/include/X11/pixmaps/jmag.xpm
./usr/X11R6/include/X11/pixmaps/jmail.xpm
./usr/X11R6/include/X11/pixmaps/jmove.xpm
./usr/X11R6/include/X11/pixmaps/jpaint.xpm
./usr/X11R6/include/X11/pixmaps/jraise.xpm
./usr/X11R6/include/X11/pixmaps/jresize.xpm
./usr/X11R6/include/X11/pixmaps/jterm.xpm
./usr/X11R6/include/X11/pixmaps/jwindow.xpm
./usr/X11R6/include/X11/pixmaps/jx.xpm
./usr/X11R6/include/X11/pixmaps/mag_glass.xpm
./usr/X11R6/include/X11/pixmaps/mail1.xpm
./usr/X11R6/include/X11/pixmaps/mail2.xpm
./usr/X11R6/include/X11/pixmaps/map.xpm
./usr/X11R6/include/X11/pixmaps/math4.xpm
./usr/X11R6/include/X11/pixmaps/mini.audiovol.xpm
./usr/X11R6/include/X11/pixmaps/mini.blah.xpm
./usr/X11R6/include/X11/pixmaps/mini.bomb.xpm
./usr/X11R6/include/X11/pixmaps/mini.checkmark.xpm
./usr/X11R6/include/X11/pixmaps/mini.cut.xpm
./usr/X11R6/include/X11/pixmaps/mini.destroy.xpm
./usr/X11R6/include/X11/pixmaps/mini.directory.xpm
./usr/X11R6/include/X11/pixmaps/mini.dirlink.xpm
./usr/X11R6/include/X11/pixmaps/mini.excl.xpm
./usr/X11R6/include/X11/pixmaps/mini.exit.xpm
./usr/X11R6/include/X11/pixmaps/mini.eye.xpm
./usr/X11R6/include/X11/pixmaps/mini.file.xpm
./usr/X11R6/include/X11/pixmaps/mini.filelink.xpm
./usr/X11R6/include/X11/pixmaps/mini.fvwm.xpm
./usr/X11R6/include/X11/pixmaps/mini.iconify.xpm
./usr/X11R6/include/X11/pixmaps/mini.letter.xpm
./usr/X11R6/include/X11/pixmaps/mini.lower.xpm
./usr/X11R6/include/X11/pixmaps/mini.maximize-horiz.xpm
./usr/X11R6/include/X11/pixmaps/mini.maximize-vert.xpm
./usr/X11R6/include/X11/pixmaps/mini.maximize.xpm
./usr/X11R6/include/X11/pixmaps/mini.maximize2.xpm
./usr/X11R6/include/X11/pixmaps/mini.move.xpm
./usr/X11R6/include/X11/pixmaps/mini.netscape.xpm
./usr/X11R6/include/X11/pixmaps/mini.rainbow.xpm
./usr/X11R6/include/X11/pixmaps/mini.raise.xpm
./usr/X11R6/include/X11/pixmaps/mini.refresh.xpm
./usr/X11R6/include/X11/pixmaps/mini.resize.xpm
./usr/X11R6/include/X11/pixmaps/mini.resize2.xpm
./usr/X11R6/include/X11/pixmaps/mini.stick.xpm
./usr/X11R6/include/X11/pixmaps/mini.stick2.xpm
./usr/X11R6/include/X11/pixmaps/mini.stickpressed.xpm
./usr/X11R6/include/X11/pixmaps/mini.winXX-close.xpm
./usr/X11R6/include/X11/pixmaps/mini.winXX-maximize.xpm
./usr/X11R6/include/X11/pixmaps/mini.winXX-minimize.xpm
./usr/X11R6/include/X11/pixmaps/mini.xarchie.xpm
./usr/X11R6/include/X11/pixmaps/mini.xbiff.xpm
./usr/X11R6/include/X11/pixmaps/mini.xboing.xpm
./usr/X11R6/include/X11/pixmaps/mini.xlock.xpm
./usr/X11R6/include/X11/pixmaps/mini.xmag.xpm
./usr/X11R6/include/X11/pixmaps/mini.xman.xpm
./usr/X11R6/include/X11/pixmaps/mini.xpaint.xpm
./usr/X11R6/include/X11/pixmaps/mini.xpm
./usr/X11R6/include/X11/pixmaps/mini.xterm.xpm
./usr/X11R6/include/X11/pixmaps/mini.zircon.xpm
./usr/X11R6/include/X11/pixmaps/page.xpm
./usr/X11R6/include/X11/pixmaps/page2.xpm
./usr/X11R6/include/X11/pixmaps/ps.xpm
./usr/X11R6/include/X11/pixmaps/question.xpm
./usr/X11R6/include/X11/pixmaps/rbomb.xpm
./usr/X11R6/include/X11/pixmaps/rcalc.xpm
./usr/X11R6/include/X11/pixmaps/rterm.xpm
./usr/X11R6/include/X11/pixmaps/side.fvwm2.xpm
./usr/X11R6/include/X11/pixmaps/term.xpm
./usr/X11R6/include/X11/pixmaps/tiff2.xpm
./usr/X11R6/include/X11/pixmaps/toolbox.xpm
./usr/X11R6/include/X11/pixmaps/unknown1.xpm
./usr/X11R6/include/X11/pixmaps/wierd_page3.xpm
./usr/X11R6/include/X11/pixmaps/word_processor.xpm
./usr/X11R6/include/X11/pixmaps/world.xpm
./usr/X11R6/include/X11/pixmaps/xcalc.xpm
./usr/X11R6/include/X11/pixmaps/xemacs.xpm
./usr/X11R6/include/X11/pixmaps/xlock.xpm
./usr/X11R6/include/X11/pixmaps/xman.xpm
./usr/X11R6/include/X11/pixmaps/xpaint.xpm
./usr/X11R6/include/X11/pixmaps/xterm-axp.xpm
./usr/X11R6/include/X11/pixmaps/xterm-blank.xpm
./usr/X11R6/include/X11/pixmaps/xterm-color_32x32.xpm
./usr/X11R6/include/X11/pixmaps/xterm-color_48x48.xpm
./usr/X11R6/include/X11/pixmaps/xterm-dec.xpm
./usr/X11R6/include/X11/pixmaps/xterm-linux.xpm
./usr/X11R6/include/X11/pixmaps/xterm-sgi.xpm
./usr/X11R6/include/X11/pixmaps/xterm-sol.xpm
./usr/X11R6/include/X11/pixmaps/xterm-sun.xpm
./usr/X11R6/include/X11/pixmaps/xterm.xpm
./usr/X11R6/include/X11/pixmaps/xterm_32x32.xpm
./usr/X11R6/include/X11/pixmaps/xterm_48x48.xpm
./usr/X11R6/include/X11/pixmaps/xv.xpm
./usr/X11R6/include/X11/pixmaps/xv2.xpm
./usr/X11R6/include/X11/xpm.h
./usr/X11R6/include/fontconfig
./usr/X11R6/include/fontconfig/fcfreetype.h
./usr/X11R6/include/fontconfig/fcprivate.h
./usr/X11R6/include/fontconfig/fontconfig.h
./usr/X11R6/include/freetype2
./usr/X11R6/include/freetype2/freetype
./usr/X11R6/include/freetype2/freetype/config
./usr/X11R6/include/freetype2/freetype/config/ftconfig.h
./usr/X11R6/include/freetype2/freetype/config/ftheader.h
./usr/X11R6/include/freetype2/freetype/config/ftmodule.h
./usr/X11R6/include/freetype2/freetype/config/ftoption.h
./usr/X11R6/include/freetype2/freetype/config/ftstdlib.h
./usr/X11R6/include/freetype2/freetype/config/integer-types.h
./usr/X11R6/include/freetype2/freetype/config/mac-support.h
./usr/X11R6/include/freetype2/freetype/config/public-macros.h
./usr/X11R6/include/freetype2/freetype/freetype.h
./usr/X11R6/include/freetype2/freetype/ftadvanc.h
./usr/X11R6/include/freetype2/freetype/ftbbox.h
./usr/X11R6/include/freetype2/freetype/ftbdf.h
./usr/X11R6/include/freetype2/freetype/ftbitmap.h
./usr/X11R6/include/freetype2/freetype/ftbzip2.h
./usr/X11R6/include/freetype2/freetype/ftcache.h
./usr/X11R6/include/freetype2/freetype/ftchapters.h
./usr/X11R6/include/freetype2/freetype/ftcid.h
./usr/X11R6/include/freetype2/freetype/ftcolor.h
./usr/X11R6/include/freetype2/freetype/ftdriver.h
./usr/X11R6/include/freetype2/freetype/fterrdef.h
./usr/X11R6/include/freetype2/freetype/fterrors.h
./usr/X11R6/include/freetype2/freetype/ftfntfmt.h
./usr/X11R6/include/freetype2/freetype/ftgasp.h
./usr/X11R6/include/freetype2/freetype/ftglyph.h
./usr/X11R6/include/freetype2/freetype/ftgxval.h
./usr/X11R6/include/freetype2/freetype/ftgzip.h
./usr/X11R6/include/freetype2/freetype/ftimage.h
./usr/X11R6/include/freetype2/freetype/ftincrem.h
./usr/X11R6/include/freetype2/freetype/ftlcdfil.h
./usr/X11R6/include/freetype2/freetype/ftlist.h
./usr/X11R6/include/freetype2/freetype/ftlogging.h
./usr/X11R6/include/freetype2/freetype/ftlzw.h
./usr/X11R6/include/freetype2/freetype/ftmac.h
./usr/X11R6/include/freetype2/freetype/ftmm.h
./usr/X11R6/include/freetype2/freetype/ftmodapi.h
./usr/X11R6/include/freetype2/freetype/ftmoderr.h
./usr/X11R6/include/freetype2/freetype/ftotval.h
./usr/X11R6/include/freetype2/freetype/ftoutln.h
./usr/X11R6/include/freetype2/freetype/ftparams.h
./usr/X11R6/include/freetype2/freetype/ftpfr.h
./usr/X11R6/include/freetype2/freetype/ftrender.h
./usr/X11R6/include/freetype2/freetype/ftsizes.h
./usr/X11R6/include/freetype2/freetype/ftsnames.h
./usr/X11R6/include/freetype2/freetype/ftstroke.h
./usr/X11R6/include/freetype2/freetype/ftsynth.h
./usr/X11R6/include/freetype2/freetype/ftsystem.h
./usr/X11R6/include/freetype2/freetype/fttrigon.h
./usr/X11R6/include/freetype2/freetype/fttypes.h
./usr/X11R6/include/freetype2/freetype/ftwinfnt.h
./usr/X11R6/include/freetype2/freetype/t1tables.h
./usr/X11R6/include/freetype2/freetype/ttnameid.h
./usr/X11R6/include/freetype2/freetype/tttables.h
./usr/X11R6/include/freetype2/freetype/tttags.h
./usr/X11R6/include/freetype2/ft2build.h
./usr/X11R6/include/libxcvt/libxcvt.h
./usr/X11R6/include/libxcvt/libxcvt_mode.h
./usr/X11R6/include/pciaccess.h
./usr/X11R6/include/xcb/bigreq.h
./usr/X11R6/include/xcb/composite.h
./usr/X11R6/include/xcb/damage.h
./usr/X11R6/include/xcb/dpms.h
./usr/X11R6/include/xcb/dri2.h
./usr/X11R6/include/xcb/dri3.h
./usr/X11R6/include/xcb/glx.h
./usr/X11R6/include/xcb/present.h
./usr/X11R6/include/xcb/randr.h
./usr/X11R6/include/xcb/record.h
./usr/X11R6/include/xcb/render.h
./usr/X11R6/include/xcb/res.h
./usr/X11R6/include/xcb/screensaver.h
./usr/X11R6/include/xcb/shape.h
./usr/X11R6/include/xcb/shm.h
./usr/X11R6/include/xcb/sync.h
./usr/X11R6/include/xcb/xc_misc.h
./usr/X11R6/include/xcb/xcb.h
./usr/X11R6/include/xcb/xcb_atom.h
./usr/X11R6/include/xcb/xcb_aux.h
./usr/X11R6/include/xcb/xcb_bitops.h
./usr/X11R6/include/xcb/xcb_cursor.h
./usr/X11R6/include/xcb/xcb_event.h
./usr/X11R6/include/xcb/xcb_ewmh.h
./usr/X11R6/include/xcb/xcb_icccm.h
./usr/X11R6/include/xcb/xcb_image.h
./usr/X11R6/include/xcb/xcb_keysyms.h
./usr/X11R6/include/xcb/xcb_pixel.h
./usr/X11R6/include/xcb/xcb_renderutil.h
./usr/X11R6/include/xcb/xcb_util.h
./usr/X11R6/include/xcb/xcb_xrm.h
./usr/X11R6/include/xcb/xcbext.h
./usr/X11R6/include/xcb/xf86dri.h
./usr/X11R6/include/xcb/xfixes.h
./usr/X11R6/include/xcb/xinerama.h
./usr/X11R6/include/xcb/xinput.h
./usr/X11R6/include/xcb/xkb.h
./usr/X11R6/include/xcb/xproto.h
./usr/X11R6/include/xcb/xtest.h
./usr/X11R6/include/xcb/xv.h
./usr/X11R6/include/xcb/xvmc.h
./usr/X11R6/lib/X11/x11perfcomp
./usr/X11R6/lib/X11/x11perfcomp/Xmark
./usr/X11R6/lib/X11/x11perfcomp/fillblnk
./usr/X11R6/lib/X11/x11perfcomp/perfboth
./usr/X11R6/lib/X11/x11perfcomp/perfratio
./usr/X11R6/lib/X11/xedit
./usr/X11R6/lib/X11/xedit/lisp
./usr/X11R6/lib/X11/xedit/lisp/indent.lsp
./usr/X11R6/lib/X11/xedit/lisp/lisp.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes
./usr/X11R6/lib/X11/xedit/lisp/progmodes/auto.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/c.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/html.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/imake.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/lisp.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/make.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/man.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/patch.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/perl.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/python.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/rpm.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/sgml.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/sh.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/xconf.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/xlog.lsp
./usr/X11R6/lib/X11/xedit/lisp/progmodes/xrdb.lsp
./usr/X11R6/lib/X11/xedit/lisp/syntax.lsp
./usr/X11R6/lib/X11/xedit/lisp/xedit.lsp
./usr/X11R6/lib/pkgconfig
./usr/X11R6/lib/pkgconfig/bigreqsproto.pc
./usr/X11R6/lib/pkgconfig/compositeproto.pc
./usr/X11R6/lib/pkgconfig/damageproto.pc
./usr/X11R6/lib/pkgconfig/dmxproto.pc
./usr/X11R6/lib/pkgconfig/dpmsproto.pc
./usr/X11R6/lib/pkgconfig/dri2proto.pc
./usr/X11R6/lib/pkgconfig/dri3proto.pc
./usr/X11R6/lib/pkgconfig/fixesproto.pc
./usr/X11R6/lib/pkgconfig/fontconfig.pc
./usr/X11R6/lib/pkgconfig/fontenc.pc
./usr/X11R6/lib/pkgconfig/fontsproto.pc
./usr/X11R6/lib/pkgconfig/fontutil.pc
./usr/X11R6/lib/pkgconfig/freetype2.pc
./usr/X11R6/lib/pkgconfig/glproto.pc
./usr/X11R6/lib/pkgconfig/ice.pc
./usr/X11R6/lib/pkgconfig/inputproto.pc
./usr/X11R6/lib/pkgconfig/kbproto.pc
./usr/X11R6/lib/pkgconfig/pciaccess.pc
./usr/X11R6/lib/pkgconfig/randrproto.pc
./usr/X11R6/lib/pkgconfig/recordproto.pc
./usr/X11R6/lib/pkgconfig/renderproto.pc
./usr/X11R6/lib/pkgconfig/resourceproto.pc
./usr/X11R6/lib/pkgconfig/scrnsaverproto.pc
./usr/X11R6/lib/pkgconfig/sm.pc
./usr/X11R6/lib/pkgconfig/videoproto.pc
./usr/X11R6/lib/pkgconfig/x11.pc
./usr/X11R6/lib/pkgconfig/xau.pc
./usr/X11R6/lib/pkgconfig/xaw7.pc
./usr/X11R6/lib/pkgconfig/xbitmaps.pc
./usr/X11R6/lib/pkgconfig/xcmiscproto.pc
./usr/X11R6/lib/pkgconfig/xcomposite.pc
./usr/X11R6/lib/pkgconfig/xcursor.pc
./usr/X11R6/lib/pkgconfig/xdamage.pc
./usr/X11R6/lib/pkgconfig/xdmcp.pc
./usr/X11R6/lib/pkgconfig/xext.pc
./usr/X11R6/lib/pkgconfig/xextproto.pc
./usr/X11R6/lib/pkgconfig/xf86bigfontproto.pc
./usr/X11R6/lib/pkgconfig/xf86dgaproto.pc
./usr/X11R6/lib/pkgconfig/xf86vidmodeproto.pc
./usr/X11R6/lib/pkgconfig/xfixes.pc
./usr/X11R6/lib/pkgconfig/xfont2.pc
./usr/X11R6/lib/pkgconfig/xft.pc
./usr/X11R6/lib/pkgconfig/xi.pc
./usr/X11R6/lib/pkgconfig/xinerama.pc
./usr/X11R6/lib/pkgconfig/xineramaproto.pc
./usr/X11R6/lib/pkgconfig/xkbcomp.pc
./usr/X11R6/lib/pkgconfig/xkbfile.pc
./usr/X11R6/lib/pkgconfig/xkeyboard-config.pc
./usr/X11R6/lib/pkgconfig/xmu.pc
./usr/X11R6/lib/pkgconfig/xmuu.pc
./usr/X11R6/lib/pkgconfig/xorg-macros.pc
./usr/X11R6/lib/pkgconfig/xpm.pc
./usr/X11R6/lib/pkgconfig/xpresent.pc
./usr/X11R6/lib/pkgconfig/xproto.pc
./usr/X11R6/lib/pkgconfig/xrandr.pc
./usr/X11R6/lib/pkgconfig/xrender.pc
./usr/X11R6/lib/pkgconfig/xres.pc
./usr/X11R6/lib/pkgconfig/xscrnsaver.pc
./usr/X11R6/lib/pkgconfig/xt.pc
./usr/X11R6/lib/pkgconfig/xtrans.pc
./usr/X11R6/lib/pkgconfig/xtst.pc
./usr/X11R6/lib/pkgconfig/xv.pc
./usr/X11R6/lib/pkgconfig/xvmc.pc
./usr/X11R6/lib/pkgconfig/xxf86dga.pc
./usr/X11R6/lib/pkgconfig/xxf86vm.pc
./usr/X11R6/man/man1/FvwmAuto.1
./usr/X11R6/man/man1/FvwmBacker.1
./usr/X11R6/man/man1/FvwmBanner.1
./usr/X11R6/man/man1/FvwmButtons.1
./usr/X11R6/man/man1/FvwmCpp.1
./usr/X11R6/man/man1/FvwmForm.1
./usr/X11R6/man/man1/FvwmIconBox.1
./usr/X11R6/man/man1/FvwmIconMan.1
./usr/X11R6/man/man1/FvwmIdent.1
./usr/X11R6/man/man1/FvwmM4.1
./usr/X11R6/man/man1/FvwmPager.1
./usr/X11R6/man/man1/FvwmRearrange.1
./usr/X11R6/man/man1/FvwmSave.1
./usr/X11R6/man/man1/FvwmSaveDesk.1
./usr/X11R6/man/man1/FvwmScroll.1
./usr/X11R6/man/man1/FvwmTalk.1
./usr/X11R6/man/man1/FvwmWinList.1
./usr/X11R6/man/man1/Xmark.1
./usr/X11R6/man/man1/appres.1
./usr/X11R6/man/man1/atobm.1
./usr/X11R6/man/man1/bdftopcf.1
./usr/X11R6/man/man1/beforelight.1
./usr/X11R6/man/man1/bitmap.1
./usr/X11R6/man/man1/bmtoa.1
./usr/X11R6/man/man1/cvt.1
./usr/X11R6/man/man1/cwm.1
./usr/X11R6/man/man1/cxpm.1
./usr/X11R6/man/man1/editres.1
./usr/X11R6/man/man1/fc-cache.1
./usr/X11R6/man/man1/fc-cat.1
./usr/X11R6/man/man1/fc-conflist.1
./usr/X11R6/man/man1/fc-list.1
./usr/X11R6/man/man1/fc-match.1
./usr/X11R6/man/man1/fc-pattern.1
./usr/X11R6/man/man1/fc-query.1
./usr/X11R6/man/man1/fc-scan.1
./usr/X11R6/man/man1/fc-validate.1
./usr/X11R6/man/man1/fonttosfnt.1
./usr/X11R6/man/man1/fvwm.1
./usr/X11R6/man/man1/gccmakedep.1
./usr/X11R6/man/man1/iceauth.1
./usr/X11R6/man/man1/ico.1
./usr/X11R6/man/man1/listres.1
./usr/X11R6/man/man1/luit.1
./usr/X11R6/man/man1/makedepend.1
./usr/X11R6/man/man1/mkfontdir.1
./usr/X11R6/man/man1/mkfontscale.1
./usr/X11R6/man/man1/oclock.1
./usr/X11R6/man/man1/resize.1
./usr/X11R6/man/man1/sessreg.1
./usr/X11R6/man/man1/setxkbmap.1
./usr/X11R6/man/man1/showrgb.1
./usr/X11R6/man/man1/smproxy.1
./usr/X11R6/man/man1/ssh-askpass.1
./usr/X11R6/man/man1/startx.1
./usr/X11R6/man/man1/sxpm.1
./usr/X11R6/man/man1/twm.1
./usr/X11R6/man/man1/video.1
./usr/X11R6/man/man1/viewres.1
./usr/X11R6/man/man1/x11perf.1
./usr/X11R6/man/man1/x11perfcomp.1
./usr/X11R6/man/man1/xauth.1
./usr/X11R6/man/man1/xbacklight.1
./usr/X11R6/man/man1/xbiff.1
./usr/X11R6/man/man1/xcalc.1
./usr/X11R6/man/man1/xclipboard.1
./usr/X11R6/man/man1/xclock.1
./usr/X11R6/man/man1/xcmsdb.1
./usr/X11R6/man/man1/xcompmgr.1
./usr/X11R6/man/man1/xconsole.1
./usr/X11R6/man/man1/xcutsel.1
./usr/X11R6/man/man1/xdpr.1
./usr/X11R6/man/man1/xdpyinfo.1
./usr/X11R6/man/man1/xedit.1
./usr/X11R6/man/man1/xenodm.1
./usr/X11R6/man/man1/xev.1
./usr/X11R6/man/man1/xeyes.1
./usr/X11R6/man/man1/xfd.1
./usr/X11R6/man/man1/xfontsel.1
./usr/X11R6/man/man1/xgamma.1
./usr/X11R6/man/man1/xgc.1
./usr/X11R6/man/man1/xhost.1
./usr/X11R6/man/man1/xidle.1
./usr/X11R6/man/man1/xinit.1
./usr/X11R6/man/man1/xinput.1
./usr/X11R6/man/man1/xkbbell.1
./usr/X11R6/man/man1/xkbcomp.1
./usr/X11R6/man/man1/xkbevd.1
./usr/X11R6/man/man1/xkbprint.1
./usr/X11R6/man/man1/xkbvleds.1
./usr/X11R6/man/man1/xkbwatch.1
./usr/X11R6/man/man1/xkill.1
./usr/X11R6/man/man1/xload.1
./usr/X11R6/man/man1/xlock.1
./usr/X11R6/man/man1/xlogo.1
./usr/X11R6/man/man1/xlsatoms.1
./usr/X11R6/man/man1/xlsclients.1
./usr/X11R6/man/man1/xlsfonts.1
./usr/X11R6/man/man1/xmag.1
./usr/X11R6/man/man1/xmessage.1
./usr/X11R6/man/man1/xmodmap.1
./usr/X11R6/man/man1/xmore.1
./usr/X11R6/man/man1/xpmroot.1
./usr/X11R6/man/man1/xpr.1
./usr/X11R6/man/man1/xprop.1
./usr/X11R6/man/man1/xrandr.1
./usr/X11R6/man/man1/xrdb.1
./usr/X11R6/man/man1/xrefresh.1
./usr/X11R6/man/man1/xset.1
./usr/X11R6/man/man1/xsetroot.1
./usr/X11R6/man/man1/xsm.1
./usr/X11R6/man/man1/xterm.1
./usr/X11R6/man/man1/xtsscale.1
./usr/X11R6/man/man1/xvctl.1
./usr/X11R6/man/man1/xvidtune.1
./usr/X11R6/man/man1/xvinfo.1
./usr/X11R6/man/man1/xwd.1
./usr/X11R6/man/man1/xwininfo.1
./usr/X11R6/man/man1/xwud.1
./usr/X11R6/man/man3/AllPlanes.3
./usr/X11R6/man/man3/BitmapBitOrder.3
./usr/X11R6/man/man3/BitmapPad.3
./usr/X11R6/man/man3/BitmapUnit.3
./usr/X11R6/man/man3/BlackPixel.3
./usr/X11R6/man/man3/BlackPixelOfScreen.3
./usr/X11R6/man/man3/CellsOfScreen.3
./usr/X11R6/man/man3/ClientWhitePointOfCCC.3
./usr/X11R6/man/man3/ConnectionNumber.3
./usr/X11R6/man/man3/DBE.3
./usr/X11R6/man/man3/DPMSCapable.3
./usr/X11R6/man/man3/DPMSDisable.3
./usr/X11R6/man/man3/DPMSEnable.3
./usr/X11R6/man/man3/DPMSForceLevel.3
./usr/X11R6/man/man3/DPMSGetTimeouts.3
./usr/X11R6/man/man3/DPMSGetVersion.3
./usr/X11R6/man/man3/DPMSInfo.3
./usr/X11R6/man/man3/DPMSQueryExtension.3
./usr/X11R6/man/man3/DPMSSetTimeouts.3
./usr/X11R6/man/man3/DefaultColormap.3
./usr/X11R6/man/man3/DefaultColormapOfScreen.3
./usr/X11R6/man/man3/DefaultDepth.3
./usr/X11R6/man/man3/DefaultDepthOfScreen.3
./usr/X11R6/man/man3/DefaultGC.3
./usr/X11R6/man/man3/DefaultGCOfScreen.3
./usr/X11R6/man/man3/DefaultRootWindow.3
./usr/X11R6/man/man3/DefaultScreen.3
./usr/X11R6/man/man3/DefaultScreenOfDisplay.3
./usr/X11R6/man/man3/DefaultVisual.3
./usr/X11R6/man/man3/DefaultVisualOfScreen.3
./usr/X11R6/man/man3/DisplayCells.3
./usr/X11R6/man/man3/DisplayHeight.3
./usr/X11R6/man/man3/DisplayHeightMM.3
./usr/X11R6/man/man3/DisplayOfCCC.3
./usr/X11R6/man/man3/DisplayOfScreen.3
./usr/X11R6/man/man3/DisplayPlanes.3
./usr/X11R6/man/man3/DisplayString.3
./usr/X11R6/man/man3/DisplayWidth.3
./usr/X11R6/man/man3/DisplayWidthMM.3
./usr/X11R6/man/man3/DoesBackingStore.3
./usr/X11R6/man/man3/DoesSaveUnders.3
./usr/X11R6/man/man3/EventMaskOfScreen.3
./usr/X11R6/man/man3/FcAtomicCreate.3
./usr/X11R6/man/man3/FcAtomicDeleteNew.3
./usr/X11R6/man/man3/FcAtomicDestroy.3
./usr/X11R6/man/man3/FcAtomicLock.3
./usr/X11R6/man/man3/FcAtomicNewFile.3
./usr/X11R6/man/man3/FcAtomicOrigFile.3
./usr/X11R6/man/man3/FcAtomicReplaceOrig.3
./usr/X11R6/man/man3/FcAtomicUnlock.3
./usr/X11R6/man/man3/FcBlanksAdd.3
./usr/X11R6/man/man3/FcBlanksCreate.3
./usr/X11R6/man/man3/FcBlanksDestroy.3
./usr/X11R6/man/man3/FcBlanksIsMember.3
./usr/X11R6/man/man3/FcCacheCopySet.3
./usr/X11R6/man/man3/FcCacheCreateTagFile.3
./usr/X11R6/man/man3/FcCacheDir.3
./usr/X11R6/man/man3/FcCacheNumFont.3
./usr/X11R6/man/man3/FcCacheNumSubdir.3
./usr/X11R6/man/man3/FcCacheSubdir.3
./usr/X11R6/man/man3/FcCharSetAddChar.3
./usr/X11R6/man/man3/FcCharSetCopy.3
./usr/X11R6/man/man3/FcCharSetCount.3
./usr/X11R6/man/man3/FcCharSetCoverage.3
./usr/X11R6/man/man3/FcCharSetCreate.3
./usr/X11R6/man/man3/FcCharSetDelChar.3
./usr/X11R6/man/man3/FcCharSetDestroy.3
./usr/X11R6/man/man3/FcCharSetEqual.3
./usr/X11R6/man/man3/FcCharSetFirstPage.3
./usr/X11R6/man/man3/FcCharSetHasChar.3
./usr/X11R6/man/man3/FcCharSetIntersect.3
./usr/X11R6/man/man3/FcCharSetIntersectCount.3
./usr/X11R6/man/man3/FcCharSetIsSubset.3
./usr/X11R6/man/man3/FcCharSetMerge.3
./usr/X11R6/man/man3/FcCharSetNew.3
./usr/X11R6/man/man3/FcCharSetNextPage.3
./usr/X11R6/man/man3/FcCharSetSubtract.3
./usr/X11R6/man/man3/FcCharSetSubtractCount.3
./usr/X11R6/man/man3/FcCharSetUnion.3
./usr/X11R6/man/man3/FcConfigAppFontAddDir.3
./usr/X11R6/man/man3/FcConfigAppFontAddFile.3
./usr/X11R6/man/man3/FcConfigAppFontClear.3
./usr/X11R6/man/man3/FcConfigBuildFonts.3
./usr/X11R6/man/man3/FcConfigCreate.3
./usr/X11R6/man/man3/FcConfigDestroy.3
./usr/X11R6/man/man3/FcConfigEnableHome.3
./usr/X11R6/man/man3/FcConfigFilename.3
./usr/X11R6/man/man3/FcConfigGetBlanks.3
./usr/X11R6/man/man3/FcConfigGetCache.3
./usr/X11R6/man/man3/FcConfigGetCacheDirs.3
./usr/X11R6/man/man3/FcConfigGetConfigDirs.3
./usr/X11R6/man/man3/FcConfigGetConfigFiles.3
./usr/X11R6/man/man3/FcConfigGetCurrent.3
./usr/X11R6/man/man3/FcConfigGetFilename.3
./usr/X11R6/man/man3/FcConfigGetFontDirs.3
./usr/X11R6/man/man3/FcConfigGetFonts.3
./usr/X11R6/man/man3/FcConfigGetRescanInterval.3
./usr/X11R6/man/man3/FcConfigGetSysRoot.3
./usr/X11R6/man/man3/FcConfigHome.3
./usr/X11R6/man/man3/FcConfigParseAndLoad.3
./usr/X11R6/man/man3/FcConfigReference.3
./usr/X11R6/man/man3/FcConfigSetCurrent.3
./usr/X11R6/man/man3/FcConfigSetRescanInterval.3
./usr/X11R6/man/man3/FcConfigSetSysRoot.3
./usr/X11R6/man/man3/FcConfigSubstitute.3
./usr/X11R6/man/man3/FcConfigSubstituteWithPat.3
./usr/X11R6/man/man3/FcConfigUptoDate.3
./usr/X11R6/man/man3/FcDefaultSubstitute.3
./usr/X11R6/man/man3/FcDirCacheClean.3
./usr/X11R6/man/man3/FcDirCacheLoad.3
./usr/X11R6/man/man3/FcDirCacheLoadFile.3
./usr/X11R6/man/man3/FcDirCacheRead.3
./usr/X11R6/man/man3/FcDirCacheRescan.3
./usr/X11R6/man/man3/FcDirCacheUnlink.3
./usr/X11R6/man/man3/FcDirCacheUnload.3
./usr/X11R6/man/man3/FcDirCacheValid.3
./usr/X11R6/man/man3/FcDirSave.3
./usr/X11R6/man/man3/FcDirScan.3
./usr/X11R6/man/man3/FcFileIsDir.3
./usr/X11R6/man/man3/FcFileScan.3
./usr/X11R6/man/man3/FcFini.3
./usr/X11R6/man/man3/FcFontList.3
./usr/X11R6/man/man3/FcFontMatch.3
./usr/X11R6/man/man3/FcFontRenderPrepare.3
./usr/X11R6/man/man3/FcFontSetAdd.3
./usr/X11R6/man/man3/FcFontSetCreate.3
./usr/X11R6/man/man3/FcFontSetDestroy.3
./usr/X11R6/man/man3/FcFontSetList.3
./usr/X11R6/man/man3/FcFontSetMatch.3
./usr/X11R6/man/man3/FcFontSetPrint.3
./usr/X11R6/man/man3/FcFontSetSort.3
./usr/X11R6/man/man3/FcFontSetSortDestroy.3
./usr/X11R6/man/man3/FcFontSort.3
./usr/X11R6/man/man3/FcFreeTypeCharIndex.3
./usr/X11R6/man/man3/FcFreeTypeCharSet.3
./usr/X11R6/man/man3/FcFreeTypeCharSetAndSpacing.3
./usr/X11R6/man/man3/FcFreeTypeQuery.3
./usr/X11R6/man/man3/FcFreeTypeQueryFace.3
./usr/X11R6/man/man3/FcGetDefaultLangs.3
./usr/X11R6/man/man3/FcGetLangs.3
./usr/X11R6/man/man3/FcGetVersion.3
./usr/X11R6/man/man3/FcInit.3
./usr/X11R6/man/man3/FcInitBringUptoDate.3
./usr/X11R6/man/man3/FcInitLoadConfig.3
./usr/X11R6/man/man3/FcInitLoadConfigAndFonts.3
./usr/X11R6/man/man3/FcInitReinitialize.3
./usr/X11R6/man/man3/FcIsLower.3
./usr/X11R6/man/man3/FcIsUpper.3
./usr/X11R6/man/man3/FcLangGetCharSet.3
./usr/X11R6/man/man3/FcLangNormalize.3
./usr/X11R6/man/man3/FcLangSetAdd.3
./usr/X11R6/man/man3/FcLangSetCompare.3
./usr/X11R6/man/man3/FcLangSetContains.3
./usr/X11R6/man/man3/FcLangSetCopy.3
./usr/X11R6/man/man3/FcLangSetCreate.3
./usr/X11R6/man/man3/FcLangSetDel.3
./usr/X11R6/man/man3/FcLangSetDestroy.3
./usr/X11R6/man/man3/FcLangSetEqual.3
./usr/X11R6/man/man3/FcLangSetGetLangs.3
./usr/X11R6/man/man3/FcLangSetHasLang.3
./usr/X11R6/man/man3/FcLangSetHash.3
./usr/X11R6/man/man3/FcLangSetSubtract.3
./usr/X11R6/man/man3/FcLangSetUnion.3
./usr/X11R6/man/man3/FcMatrixCopy.3
./usr/X11R6/man/man3/FcMatrixEqual.3
./usr/X11R6/man/man3/FcMatrixInit.3
./usr/X11R6/man/man3/FcMatrixMultiply.3
./usr/X11R6/man/man3/FcMatrixRotate.3
./usr/X11R6/man/man3/FcMatrixScale.3
./usr/X11R6/man/man3/FcMatrixShear.3
./usr/X11R6/man/man3/FcNameConstant.3
./usr/X11R6/man/man3/FcNameGetConstant.3
./usr/X11R6/man/man3/FcNameGetObjectType.3
./usr/X11R6/man/man3/FcNameParse.3
./usr/X11R6/man/man3/FcNameRegisterConstants.3
./usr/X11R6/man/man3/FcNameRegisterObjectTypes.3
./usr/X11R6/man/man3/FcNameUnparse.3
./usr/X11R6/man/man3/FcNameUnregisterConstants.3
./usr/X11R6/man/man3/FcNameUnregisterObjectTypes.3
./usr/X11R6/man/man3/FcObjectSetAdd.3
./usr/X11R6/man/man3/FcObjectSetBuild.3
./usr/X11R6/man/man3/FcObjectSetCreate.3
./usr/X11R6/man/man3/FcObjectSetDestroy.3
./usr/X11R6/man/man3/FcPatternAdd-Type.3
./usr/X11R6/man/man3/FcPatternAdd.3
./usr/X11R6/man/man3/FcPatternAddWeak.3
./usr/X11R6/man/man3/FcPatternBuild.3
./usr/X11R6/man/man3/FcPatternCreate.3
./usr/X11R6/man/man3/FcPatternDel.3
./usr/X11R6/man/man3/FcPatternDestroy.3
./usr/X11R6/man/man3/FcPatternDuplicate.3
./usr/X11R6/man/man3/FcPatternEqual.3
./usr/X11R6/man/man3/FcPatternEqualSubset.3
./usr/X11R6/man/man3/FcPatternFilter.3
./usr/X11R6/man/man3/FcPatternFormat.3
./usr/X11R6/man/man3/FcPatternGet-Type.3
./usr/X11R6/man/man3/FcPatternGet.3
./usr/X11R6/man/man3/FcPatternHash.3
./usr/X11R6/man/man3/FcPatternPrint.3
./usr/X11R6/man/man3/FcPatternReference.3
./usr/X11R6/man/man3/FcPatternRemove.3
./usr/X11R6/man/man3/FcRangeCopy.3
./usr/X11R6/man/man3/FcRangeCreateDouble.3
./usr/X11R6/man/man3/FcRangeCreateInteger.3
./usr/X11R6/man/man3/FcRangeDestroy.3
./usr/X11R6/man/man3/FcRangeGetDouble.3
./usr/X11R6/man/man3/FcStrBasename.3
./usr/X11R6/man/man3/FcStrBuildFilename.3
./usr/X11R6/man/man3/FcStrCmp.3
./usr/X11R6/man/man3/FcStrCmpIgnoreCase.3
./usr/X11R6/man/man3/FcStrCopy.3
./usr/X11R6/man/man3/FcStrCopyFilename.3
./usr/X11R6/man/man3/FcStrDirname.3
./usr/X11R6/man/man3/FcStrDowncase.3
./usr/X11R6/man/man3/FcStrFree.3
./usr/X11R6/man/man3/FcStrListCreate.3
./usr/X11R6/man/man3/FcStrListDone.3
./usr/X11R6/man/man3/FcStrListFirst.3
./usr/X11R6/man/man3/FcStrListNext.3
./usr/X11R6/man/man3/FcStrPlus.3
./usr/X11R6/man/man3/FcStrSetAdd.3
./usr/X11R6/man/man3/FcStrSetAddFilename.3
./usr/X11R6/man/man3/FcStrSetCreate.3
./usr/X11R6/man/man3/FcStrSetDel.3
./usr/X11R6/man/man3/FcStrSetDestroy.3
./usr/X11R6/man/man3/FcStrSetEqual.3
./usr/X11R6/man/man3/FcStrSetMember.3
./usr/X11R6/man/man3/FcStrStr.3
./usr/X11R6/man/man3/FcStrStrIgnoreCase.3
./usr/X11R6/man/man3/FcToLower.3
./usr/X11R6/man/man3/FcUcs4ToUtf8.3
./usr/X11R6/man/man3/FcUtf16Len.3
./usr/X11R6/man/man3/FcUtf16ToUcs4.3
./usr/X11R6/man/man3/FcUtf8Len.3
./usr/X11R6/man/man3/FcUtf8ToUcs4.3
./usr/X11R6/man/man3/FcValueDestroy.3
./usr/X11R6/man/man3/FcValueEqual.3
./usr/X11R6/man/man3/FcValuePrint.3
./usr/X11R6/man/man3/FcValueSave.3
./usr/X11R6/man/man3/FcWeightFromOpenType.3
./usr/X11R6/man/man3/FcWeightToOpenType.3
./usr/X11R6/man/man3/GLwCreateMDrawingArea.3
./usr/X11R6/man/man3/GLwDrawingArea.3
./usr/X11R6/man/man3/GLwDrawingAreaMakeCurrent.3
./usr/X11R6/man/man3/GLwDrawingAreaSwapBuffers.3
./usr/X11R6/man/man3/GLwMDrawingArea.3
./usr/X11R6/man/man3/HeightMMOfScreen.3
./usr/X11R6/man/man3/HeightOfScreen.3
./usr/X11R6/man/man3/ImageByteOrder.3
./usr/X11R6/man/man3/IsCursorKey.3
./usr/X11R6/man/man3/IsFunctionKey.3
./usr/X11R6/man/man3/IsKeypadKey.3
./usr/X11R6/man/man3/IsMiscFunctionKey.3
./usr/X11R6/man/man3/IsModifierKey.3
./usr/X11R6/man/man3/IsPFKey.3
./usr/X11R6/man/man3/IsPrivateKeypadKey.3
./usr/X11R6/man/man3/LastKnownRequestProcessed.3
./usr/X11R6/man/man3/MaxCmapsOfScreen.3
./usr/X11R6/man/man3/MenuPopdown.3
./usr/X11R6/man/man3/MenuPopup.3
./usr/X11R6/man/man3/MinCmapsOfScreen.3
./usr/X11R6/man/man3/NextRequest.3
./usr/X11R6/man/man3/PlanesOfScreen.3
./usr/X11R6/man/man3/ProtocolRevision.3
./usr/X11R6/man/man3/ProtocolVersion.3
./usr/X11R6/man/man3/QLength.3
./usr/X11R6/man/man3/RootWindow.3
./usr/X11R6/man/man3/RootWindowOfScreen.3
./usr/X11R6/man/man3/ScreenCount.3
./usr/X11R6/man/man3/ScreenNumberOfCCC.3
./usr/X11R6/man/man3/ScreenOfDisplay.3
./usr/X11R6/man/man3/ScreenWhitePointOfCCC.3
./usr/X11R6/man/man3/ServerVendor.3
./usr/X11R6/man/man3/VendorRelease.3
./usr/X11R6/man/man3/VisualOfCCC.3
./usr/X11R6/man/man3/WhitePixel.3
./usr/X11R6/man/man3/WhitePixelOfScreen.3
./usr/X11R6/man/man3/WidthMMOfScreen.3
./usr/X11R6/man/man3/WidthOfScreen.3
./usr/X11R6/man/man3/XActivateScreenSaver.3
./usr/X11R6/man/man3/XAddConnectionWatch.3
./usr/X11R6/man/man3/XAddHost.3
./usr/X11R6/man/man3/XAddHosts.3
./usr/X11R6/man/man3/XAddPixel.3
./usr/X11R6/man/man3/XAddToSaveSet.3
./usr/X11R6/man/man3/XAllocClassHint.3
./usr/X11R6/man/man3/XAllocColor.3
./usr/X11R6/man/man3/XAllocColorCells.3
./usr/X11R6/man/man3/XAllocColorPlanes.3
./usr/X11R6/man/man3/XAllocIconSize.3
./usr/X11R6/man/man3/XAllocNamedColor.3
./usr/X11R6/man/man3/XAllocSizeHints.3
./usr/X11R6/man/man3/XAllocStandardColormap.3
./usr/X11R6/man/man3/XAllocWMHints.3
./usr/X11R6/man/man3/XAllowDeviceEvents.3
./usr/X11R6/man/man3/XAllowEvents.3
./usr/X11R6/man/man3/XAnyEvent.3
./usr/X11R6/man/man3/XArc.3
./usr/X11R6/man/man3/XAutoRepeatOff.3
./usr/X11R6/man/man3/XAutoRepeatOn.3
./usr/X11R6/man/man3/XBaseFontNameListOfFontSet.3
./usr/X11R6/man/man3/XBell.3
./usr/X11R6/man/man3/XButtonEvent.3
./usr/X11R6/man/man3/XChangeActivePointerGrab.3
./usr/X11R6/man/man3/XChangeDeviceControl.3
./usr/X11R6/man/man3/XChangeDeviceDontPropagateList.3
./usr/X11R6/man/man3/XChangeDeviceKeyMapping.3
./usr/X11R6/man/man3/XChangeDeviceProperty.3
./usr/X11R6/man/man3/XChangeFeedbackControl.3
./usr/X11R6/man/man3/XChangeGC.3
./usr/X11R6/man/man3/XChangeKeyboardControl.3
./usr/X11R6/man/man3/XChangeKeyboardDevice.3
./usr/X11R6/man/man3/XChangeKeyboardMapping.3
./usr/X11R6/man/man3/XChangePointerControl.3
./usr/X11R6/man/man3/XChangePointerDevice.3
./usr/X11R6/man/man3/XChangeProperty.3
./usr/X11R6/man/man3/XChangeSaveSet.3
./usr/X11R6/man/man3/XChangeWindowAttributes.3
./usr/X11R6/man/man3/XChar2b.3
./usr/X11R6/man/man3/XCharStruct.3
./usr/X11R6/man/man3/XCheckIfEvent.3
./usr/X11R6/man/man3/XCheckMaskEvent.3
./usr/X11R6/man/man3/XCheckTypedEvent.3
./usr/X11R6/man/man3/XCheckTypedWindowEvent.3
./usr/X11R6/man/man3/XCheckWindowEvent.3
./usr/X11R6/man/man3/XCirculateEvent.3
./usr/X11R6/man/man3/XCirculateRequestEvent.3
./usr/X11R6/man/man3/XCirculateSubwindows.3
./usr/X11R6/man/man3/XCirculateSubwindowsDown.3
./usr/X11R6/man/man3/XCirculateSubwindowsUp.3
./usr/X11R6/man/man3/XClassHint.3
./usr/X11R6/man/man3/XClearArea.3
./usr/X11R6/man/man3/XClearWindow.3
./usr/X11R6/man/man3/XClientMessageEvent.3
./usr/X11R6/man/man3/XClipBox.3
./usr/X11R6/man/man3/XCloseDevice.3
./usr/X11R6/man/man3/XCloseDisplay.3
./usr/X11R6/man/man3/XCloseIM.3
./usr/X11R6/man/man3/XCloseOM.3
./usr/X11R6/man/man3/XColor.3
./usr/X11R6/man/man3/XColormapEvent.3
./usr/X11R6/man/man3/XCompose.3
./usr/X11R6/man/man3/XCompositeCreateRegionFromBorderClip.3
./usr/X11R6/man/man3/XCompositeGetOverlayWindow.3
./usr/X11R6/man/man3/XCompositeNameWindowPixmap.3
./usr/X11R6/man/man3/XCompositeQueryExtension.3
./usr/X11R6/man/man3/XCompositeQueryVersion.3
./usr/X11R6/man/man3/XCompositeRedirectSubwindows.3
./usr/X11R6/man/man3/XCompositeRedirectWindow.3
./usr/X11R6/man/man3/XCompositeReleaseOverlayWindow.3
./usr/X11R6/man/man3/XCompositeUnredirectSubwindows.3
./usr/X11R6/man/man3/XCompositeUnredirectWindow.3
./usr/X11R6/man/man3/XCompositeVersion.3
./usr/X11R6/man/man3/XConfigureEvent.3
./usr/X11R6/man/man3/XConfigureRequestEvent.3
./usr/X11R6/man/man3/XConfigureWindow.3
./usr/X11R6/man/man3/XContextDependentDrawing.3
./usr/X11R6/man/man3/XContextualDrawing.3
./usr/X11R6/man/man3/XConvertCase.3
./usr/X11R6/man/man3/XConvertSelection.3
./usr/X11R6/man/man3/XCopyArea.3
./usr/X11R6/man/man3/XCopyColormapAndFree.3
./usr/X11R6/man/man3/XCopyGC.3
./usr/X11R6/man/man3/XCopyPlane.3
./usr/X11R6/man/man3/XCreateBitmapFromData.3
./usr/X11R6/man/man3/XCreateColormap.3
./usr/X11R6/man/man3/XCreateFontCursor.3
./usr/X11R6/man/man3/XCreateFontSet.3
./usr/X11R6/man/man3/XCreateGC.3
./usr/X11R6/man/man3/XCreateGlyphCursor.3
./usr/X11R6/man/man3/XCreateIC.3
./usr/X11R6/man/man3/XCreateImage.3
./usr/X11R6/man/man3/XCreateOC.3
./usr/X11R6/man/man3/XCreatePixmap.3
./usr/X11R6/man/man3/XCreatePixmapCursor.3
./usr/X11R6/man/man3/XCreatePixmapFromBitmapData.3
./usr/X11R6/man/man3/XCreateRegion.3
./usr/X11R6/man/man3/XCreateSimpleWindow.3
./usr/X11R6/man/man3/XCreateWindow.3
./usr/X11R6/man/man3/XCreateWindowEvent.3
./usr/X11R6/man/man3/XCrossingEvent.3
./usr/X11R6/man/man3/XDefaultString.3
./usr/X11R6/man/man3/XDefineCursor.3
./usr/X11R6/man/man3/XDeleteContext.3
./usr/X11R6/man/man3/XDeleteDeviceProperty.3
./usr/X11R6/man/man3/XDeleteModifiermapEntry.3
./usr/X11R6/man/man3/XDeleteProperty.3
./usr/X11R6/man/man3/XDestroyIC.3
./usr/X11R6/man/man3/XDestroyImage.3
./usr/X11R6/man/man3/XDestroyOC.3
./usr/X11R6/man/man3/XDestroyRegion.3
./usr/X11R6/man/man3/XDestroySubwindows.3
./usr/X11R6/man/man3/XDestroyWindow.3
./usr/X11R6/man/man3/XDestroyWindowEvent.3
./usr/X11R6/man/man3/XDeviceBell.3
./usr/X11R6/man/man3/XDeviceTimeCoord.3
./usr/X11R6/man/man3/XDirectionalDependentDrawing.3
./usr/X11R6/man/man3/XDisableAccessControl.3
./usr/X11R6/man/man3/XDisplayKeycodes.3
./usr/X11R6/man/man3/XDisplayMotionBufferSize.3
./usr/X11R6/man/man3/XDisplayName.3
./usr/X11R6/man/man3/XDisplayOfIM.3
./usr/X11R6/man/man3/XDisplayOfOM.3
./usr/X11R6/man/man3/XDrawArc.3
./usr/X11R6/man/man3/XDrawArcs.3
./usr/X11R6/man/man3/XDrawImageString.3
./usr/X11R6/man/man3/XDrawImageString16.3
./usr/X11R6/man/man3/XDrawLine.3
./usr/X11R6/man/man3/XDrawLines.3
./usr/X11R6/man/man3/XDrawPoint.3
./usr/X11R6/man/man3/XDrawPoints.3
./usr/X11R6/man/man3/XDrawRectangle.3
./usr/X11R6/man/man3/XDrawRectangles.3
./usr/X11R6/man/man3/XDrawSegments.3
./usr/X11R6/man/man3/XDrawString.3
./usr/X11R6/man/man3/XDrawString16.3
./usr/X11R6/man/man3/XDrawText.3
./usr/X11R6/man/man3/XDrawText16.3
./usr/X11R6/man/man3/XEmptyRegion.3
./usr/X11R6/man/man3/XEnableAccessControl.3
./usr/X11R6/man/man3/XEqualRegion.3
./usr/X11R6/man/man3/XErrorEvent.3
./usr/X11R6/man/man3/XEvent.3
./usr/X11R6/man/man3/XEventsQueued.3
./usr/X11R6/man/man3/XExposeEvent.3
./usr/X11R6/man/man3/XExtendedMaxRequestSize.3
./usr/X11R6/man/man3/XExtentsOfFontSet.3
./usr/X11R6/man/man3/XF86VidModeAddModeLine.3
./usr/X11R6/man/man3/XFetchBuffer.3
./usr/X11R6/man/man3/XFetchBytes.3
./usr/X11R6/man/man3/XFetchName.3
./usr/X11R6/man/man3/XFillArc.3
./usr/X11R6/man/man3/XFillArcs.3
./usr/X11R6/man/man3/XFillPolygon.3
./usr/X11R6/man/man3/XFillRectangle.3
./usr/X11R6/man/man3/XFillRectangles.3
./usr/X11R6/man/man3/XFilterEvent.3
./usr/X11R6/man/man3/XFindContext.3
./usr/X11R6/man/man3/XFlush.3
./usr/X11R6/man/man3/XFocusChangeEvent.3
./usr/X11R6/man/man3/XFontProp.3
./usr/X11R6/man/man3/XFontSetExtents.3
./usr/X11R6/man/man3/XFontStruct.3
./usr/X11R6/man/man3/XFontsOfFontSet.3
./usr/X11R6/man/man3/XForceScreenSaver.3
./usr/X11R6/man/man3/XFree.3
./usr/X11R6/man/man3/XFreeColormap.3
./usr/X11R6/man/man3/XFreeColors.3
./usr/X11R6/man/man3/XFreeCursor.3
./usr/X11R6/man/man3/XFreeDeviceList.3
./usr/X11R6/man/man3/XFreeEventData.3
./usr/X11R6/man/man3/XFreeExtensionList.3
./usr/X11R6/man/man3/XFreeFont.3
./usr/X11R6/man/man3/XFreeFontInfo.3
./usr/X11R6/man/man3/XFreeFontNames.3
./usr/X11R6/man/man3/XFreeFontPath.3
./usr/X11R6/man/man3/XFreeFontSet.3
./usr/X11R6/man/man3/XFreeGC.3
./usr/X11R6/man/man3/XFreeModifiermap.3
./usr/X11R6/man/man3/XFreePixmap.3
./usr/X11R6/man/man3/XFreeStringList.3
./usr/X11R6/man/man3/XGCValues.3
./usr/X11R6/man/man3/XGContextFromGC.3
./usr/X11R6/man/man3/XGenericEventCookie.3
./usr/X11R6/man/man3/XGetAtomName.3
./usr/X11R6/man/man3/XGetAtomNames.3
./usr/X11R6/man/man3/XGetClassHint.3
./usr/X11R6/man/man3/XGetCommand.3
./usr/X11R6/man/man3/XGetDeviceButtonMapping.3
./usr/X11R6/man/man3/XGetDeviceControl.3
./usr/X11R6/man/man3/XGetDeviceDontPropagateList.3
./usr/X11R6/man/man3/XGetDeviceFocus.3
./usr/X11R6/man/man3/XGetDeviceKeyMapping.3
./usr/X11R6/man/man3/XGetDeviceModifierMapping.3
./usr/X11R6/man/man3/XGetDeviceMotionEvents.3
./usr/X11R6/man/man3/XGetDeviceProperty.3
./usr/X11R6/man/man3/XGetErrorDatabaseText.3
./usr/X11R6/man/man3/XGetErrorText.3
./usr/X11R6/man/man3/XGetEventData.3
./usr/X11R6/man/man3/XGetExtensionVersion.3
./usr/X11R6/man/man3/XGetFeedbackControl.3
./usr/X11R6/man/man3/XGetFontPath.3
./usr/X11R6/man/man3/XGetFontProperty.3
./usr/X11R6/man/man3/XGetGCValues.3
./usr/X11R6/man/man3/XGetGeometry.3
./usr/X11R6/man/man3/XGetICValues.3
./usr/X11R6/man/man3/XGetIMValues.3
./usr/X11R6/man/man3/XGetIconName.3
./usr/X11R6/man/man3/XGetIconSizes.3
./usr/X11R6/man/man3/XGetImage.3
./usr/X11R6/man/man3/XGetInputFocus.3
./usr/X11R6/man/man3/XGetKeyboardControl.3
./usr/X11R6/man/man3/XGetKeyboardMapping.3
./usr/X11R6/man/man3/XGetModifierMapping.3
./usr/X11R6/man/man3/XGetMotionEvents.3
./usr/X11R6/man/man3/XGetOCValues.3
./usr/X11R6/man/man3/XGetOMValues.3
./usr/X11R6/man/man3/XGetPixel.3
./usr/X11R6/man/man3/XGetPointerControl.3
./usr/X11R6/man/man3/XGetPointerMapping.3
./usr/X11R6/man/man3/XGetRGBColormaps.3
./usr/X11R6/man/man3/XGetScreenSaver.3
./usr/X11R6/man/man3/XGetSelectedExtensionEvents.3
./usr/X11R6/man/man3/XGetSelectionOwner.3
./usr/X11R6/man/man3/XGetSubImage.3
./usr/X11R6/man/man3/XGetTextProperty.3
./usr/X11R6/man/man3/XGetTransientForHint.3
./usr/X11R6/man/man3/XGetVisualInfo.3
./usr/X11R6/man/man3/XGetWMClientMachine.3
./usr/X11R6/man/man3/XGetWMColormapWindows.3
./usr/X11R6/man/man3/XGetWMHints.3
./usr/X11R6/man/man3/XGetWMIconName.3
./usr/X11R6/man/man3/XGetWMName.3
./usr/X11R6/man/man3/XGetWMNormalHints.3
./usr/X11R6/man/man3/XGetWMProtocols.3
./usr/X11R6/man/man3/XGetWMSizeHints.3
./usr/X11R6/man/man3/XGetWindowAttributes.3
./usr/X11R6/man/man3/XGetWindowProperty.3
./usr/X11R6/man/man3/XGetXCBConnection.3
./usr/X11R6/man/man3/XGrabButton.3
./usr/X11R6/man/man3/XGrabDevice.3
./usr/X11R6/man/man3/XGrabDeviceButton.3
./usr/X11R6/man/man3/XGrabDeviceKey.3
./usr/X11R6/man/man3/XGrabKey.3
./usr/X11R6/man/man3/XGrabKeyboard.3
./usr/X11R6/man/man3/XGrabPointer.3
./usr/X11R6/man/man3/XGrabServer.3
./usr/X11R6/man/man3/XGraphicsExposeEvent.3
./usr/X11R6/man/man3/XGravityEvent.3
./usr/X11R6/man/man3/XHostAddress.3
./usr/X11R6/man/man3/XIAllowEvents.3
./usr/X11R6/man/man3/XIBarrierReleasePointer.3
./usr/X11R6/man/man3/XIBarrierReleasePointers.3
./usr/X11R6/man/man3/XIChangeHierarchy.3
./usr/X11R6/man/man3/XIChangeProperty.3
./usr/X11R6/man/man3/XIDefineCursor.3
./usr/X11R6/man/man3/XIDeleteProperty.3
./usr/X11R6/man/man3/XIFreeDeviceInfo.3
./usr/X11R6/man/man3/XIGetClientPointer.3
./usr/X11R6/man/man3/XIGetFocus.3
./usr/X11R6/man/man3/XIGetProperty.3
./usr/X11R6/man/man3/XIGetSelectedEvents.3
./usr/X11R6/man/man3/XIGrabButton.3
./usr/X11R6/man/man3/XIGrabDevice.3
./usr/X11R6/man/man3/XIGrabEnter.3
./usr/X11R6/man/man3/XIGrabFocusIn.3
./usr/X11R6/man/man3/XIGrabKeycode.3
./usr/X11R6/man/man3/XIGrabTouchBegin.3
./usr/X11R6/man/man3/XIListProperties.3
./usr/X11R6/man/man3/XIMOfIC.3
./usr/X11R6/man/man3/XIQueryDevice.3
./usr/X11R6/man/man3/XIQueryPointer.3
./usr/X11R6/man/man3/XIQueryVersion.3
./usr/X11R6/man/man3/XISelectEvents.3
./usr/X11R6/man/man3/XISetClientPointer.3
./usr/X11R6/man/man3/XISetFocus.3
./usr/X11R6/man/man3/XIUndefineCursor.3
./usr/X11R6/man/man3/XIUngrabButton.3
./usr/X11R6/man/man3/XIUngrabDevice.3
./usr/X11R6/man/man3/XIUngrabEnter.3
./usr/X11R6/man/man3/XIUngrabFocusIn.3
./usr/X11R6/man/man3/XIUngrabKeycode.3
./usr/X11R6/man/man3/XIUngrabTouchBegin.3
./usr/X11R6/man/man3/XIWarpPointer.3
./usr/X11R6/man/man3/XIconSize.3
./usr/X11R6/man/man3/XIconifyWindow.3
./usr/X11R6/man/man3/XIfEvent.3
./usr/X11R6/man/man3/XInitImage.3
./usr/X11R6/man/man3/XInitThreads.3
./usr/X11R6/man/man3/XInsertModifiermapEntry.3
./usr/X11R6/man/man3/XInstallColormap.3
./usr/X11R6/man/man3/XInternAtom.3
./usr/X11R6/man/man3/XInternAtoms.3
./usr/X11R6/man/man3/XInternalConnectionNumbers.3
./usr/X11R6/man/man3/XIntersectRegion.3
./usr/X11R6/man/man3/XKeyEvent.3
./usr/X11R6/man/man3/XKeyboardControl.3
./usr/X11R6/man/man3/XKeycodeToKeysym.3
./usr/X11R6/man/man3/XKeymapEvent.3
./usr/X11R6/man/man3/XKeysymToKeycode.3
./usr/X11R6/man/man3/XKeysymToString.3
./usr/X11R6/man/man3/XKillClient.3
./usr/X11R6/man/man3/XListDepths.3
./usr/X11R6/man/man3/XListDeviceProperties.3
./usr/X11R6/man/man3/XListExtensions.3
./usr/X11R6/man/man3/XListFonts.3
./usr/X11R6/man/man3/XListFontsWithInfo.3
./usr/X11R6/man/man3/XListHosts.3
./usr/X11R6/man/man3/XListInputDevices.3
./usr/X11R6/man/man3/XListInstalledColormaps.3
./usr/X11R6/man/man3/XListPixmapFormats.3
./usr/X11R6/man/man3/XListProperties.3
./usr/X11R6/man/man3/XLoadFont.3
./usr/X11R6/man/man3/XLoadQueryFont.3
./usr/X11R6/man/man3/XLocaleOfFontSet.3
./usr/X11R6/man/man3/XLocaleOfIM.3
./usr/X11R6/man/man3/XLocaleOfOM.3
./usr/X11R6/man/man3/XLockDisplay.3
./usr/X11R6/man/man3/XLookupColor.3
./usr/X11R6/man/man3/XLookupKeysym.3
./usr/X11R6/man/man3/XLookupString.3
./usr/X11R6/man/man3/XLowerWindow.3
./usr/X11R6/man/man3/XMapEvent.3
./usr/X11R6/man/man3/XMapRaised.3
./usr/X11R6/man/man3/XMapRequestEvent.3
./usr/X11R6/man/man3/XMapSubwindows.3
./usr/X11R6/man/man3/XMapWindow.3
./usr/X11R6/man/man3/XMappingEvent.3
./usr/X11R6/man/man3/XMaskEvent.3
./usr/X11R6/man/man3/XMatchVisualInfo.3
./usr/X11R6/man/man3/XMaxRequestSize.3
./usr/X11R6/man/man3/XModifierKeymap.3
./usr/X11R6/man/man3/XMotionEvent.3
./usr/X11R6/man/man3/XMoveResizeWindow.3
./usr/X11R6/man/man3/XMoveWindow.3
./usr/X11R6/man/man3/XNewModifiermap.3
./usr/X11R6/man/man3/XNextEvent.3
./usr/X11R6/man/man3/XNoExposeEvent.3
./usr/X11R6/man/man3/XNoOp.3
./usr/X11R6/man/man3/XOMOfOC.3
./usr/X11R6/man/man3/XOffsetRegion.3
./usr/X11R6/man/man3/XOpenDevice.3
./usr/X11R6/man/man3/XOpenDisplay.3
./usr/X11R6/man/man3/XOpenIM.3
./usr/X11R6/man/man3/XOpenOM.3
./usr/X11R6/man/man3/XParseColor.3
./usr/X11R6/man/man3/XParseGeometry.3
./usr/X11R6/man/man3/XPeekEvent.3
./usr/X11R6/man/man3/XPeekIfEvent.3
./usr/X11R6/man/man3/XPending.3
./usr/X11R6/man/man3/XPixmapFormatValues.3
./usr/X11R6/man/man3/XPoint.3
./usr/X11R6/man/man3/XPointInRegion.3
./usr/X11R6/man/man3/XPolygonRegion.3
./usr/X11R6/man/man3/XProcessInternalConnection.3
./usr/X11R6/man/man3/XPropertyEvent.3
./usr/X11R6/man/man3/XPutBackEvent.3
./usr/X11R6/man/man3/XPutImage.3
./usr/X11R6/man/man3/XPutPixel.3
./usr/X11R6/man/man3/XQueryBestCursor.3
./usr/X11R6/man/man3/XQueryBestSize.3
./usr/X11R6/man/man3/XQueryBestStipple.3
./usr/X11R6/man/man3/XQueryBestTile.3
./usr/X11R6/man/man3/XQueryColor.3
./usr/X11R6/man/man3/XQueryColors.3
./usr/X11R6/man/man3/XQueryDeviceState.3
./usr/X11R6/man/man3/XQueryExtension.3
./usr/X11R6/man/man3/XQueryFont.3
./usr/X11R6/man/man3/XQueryKeymap.3
./usr/X11R6/man/man3/XQueryPointer.3
./usr/X11R6/man/man3/XQueryTextExtents.3
./usr/X11R6/man/man3/XQueryTextExtents16.3
./usr/X11R6/man/man3/XQueryTree.3
./usr/X11R6/man/man3/XRRConfigCurrentConfiguration.3
./usr/X11R6/man/man3/XRRConfigCurrentRate.3
./usr/X11R6/man/man3/XRRConfigRates.3
./usr/X11R6/man/man3/XRRConfigRotations.3
./usr/X11R6/man/man3/XRRConfigSizes.3
./usr/X11R6/man/man3/XRRConfigTimes.3
./usr/X11R6/man/man3/XRRFreeScreenConfigInfo.3
./usr/X11R6/man/man3/XRRGetScreenInfo.3
./usr/X11R6/man/man3/XRRQueryExtension.3
./usr/X11R6/man/man3/XRRQueryVersion.3
./usr/X11R6/man/man3/XRRRootToScreen.3
./usr/X11R6/man/man3/XRRSelectInput.3
./usr/X11R6/man/man3/XRRSetScreenConfig.3
./usr/X11R6/man/man3/XRRSetScreenConfigAndRate.3
./usr/X11R6/man/man3/XRaiseWindow.3
./usr/X11R6/man/man3/XReadBitmapFile.3
./usr/X11R6/man/man3/XReadBitmapFileData.3
./usr/X11R6/man/man3/XRebindKeysym.3
./usr/X11R6/man/man3/XRecolorCursor.3
./usr/X11R6/man/man3/XReconfigureWMWindow.3
./usr/X11R6/man/man3/XRectInRegion.3
./usr/X11R6/man/man3/XRectangle.3
./usr/X11R6/man/man3/XRefreshKeyboardMapping.3
./usr/X11R6/man/man3/XRegisterIMInstantiateCallback.3
./usr/X11R6/man/man3/XRemoveConnectionWatch.3
./usr/X11R6/man/man3/XRemoveFromSaveSet.3
./usr/X11R6/man/man3/XRemoveHost.3
./usr/X11R6/man/man3/XRemoveHosts.3
./usr/X11R6/man/man3/XReparentEvent.3
./usr/X11R6/man/man3/XReparentWindow.3
./usr/X11R6/man/man3/XRes.3
./usr/X11R6/man/man3/XResQueryClientPixmapBytes.3
./usr/X11R6/man/man3/XResQueryClientResources.3
./usr/X11R6/man/man3/XResQueryClients.3
./usr/X11R6/man/man3/XResQueryExtension.3
./usr/X11R6/man/man3/XResQueryVersion.3
./usr/X11R6/man/man3/XResetScreenSaver.3
./usr/X11R6/man/man3/XResizeRequestEvent.3
./usr/X11R6/man/man3/XResizeWindow.3
./usr/X11R6/man/man3/XResourceManagerString.3
./usr/X11R6/man/man3/XRestackWindows.3
./usr/X11R6/man/man3/XRotateBuffers.3
./usr/X11R6/man/man3/XRotateWindowProperties.3
./usr/X11R6/man/man3/XSaveContext.3
./usr/X11R6/man/man3/XScreenNumberOfScreen.3
./usr/X11R6/man/man3/XScreenResourceString.3
./usr/X11R6/man/man3/XScreenSaver.3
./usr/X11R6/man/man3/XScreenSaverAllocInfo.3
./usr/X11R6/man/man3/XScreenSaverGetRegistered.3
./usr/X11R6/man/man3/XScreenSaverQueryExtension.3
./usr/X11R6/man/man3/XScreenSaverQueryInfo.3
./usr/X11R6/man/man3/XScreenSaverQueryVersion.3
./usr/X11R6/man/man3/XScreenSaverRegister.3
./usr/X11R6/man/man3/XScreenSaverSelectInput.3
./usr/X11R6/man/man3/XScreenSaverSetAttributes.3
./usr/X11R6/man/man3/XScreenSaverSuspend.3
./usr/X11R6/man/man3/XScreenSaverUnregister.3
./usr/X11R6/man/man3/XScreenSaverUnsetAttributes.3
./usr/X11R6/man/man3/XSegment.3
./usr/X11R6/man/man3/XSelectExtensionEvent.3
./usr/X11R6/man/man3/XSelectInput.3
./usr/X11R6/man/man3/XSelectionClearEvent.3
./usr/X11R6/man/man3/XSelectionEvent.3
./usr/X11R6/man/man3/XSelectionRequestEvent.3
./usr/X11R6/man/man3/XSendEvent.3
./usr/X11R6/man/man3/XSendExtensionEvent.3
./usr/X11R6/man/man3/XSetAccessControl.3
./usr/X11R6/man/man3/XSetAfterFunction.3
./usr/X11R6/man/man3/XSetArcMode.3
./usr/X11R6/man/man3/XSetBackground.3
./usr/X11R6/man/man3/XSetClassHint.3
./usr/X11R6/man/man3/XSetClipMask.3
./usr/X11R6/man/man3/XSetClipOrigin.3
./usr/X11R6/man/man3/XSetClipRectangles.3
./usr/X11R6/man/man3/XSetCloseDownMode.3
./usr/X11R6/man/man3/XSetCommand.3
./usr/X11R6/man/man3/XSetDashes.3
./usr/X11R6/man/man3/XSetDeviceButtonMapping.3
./usr/X11R6/man/man3/XSetDeviceFocus.3
./usr/X11R6/man/man3/XSetDeviceMode.3
./usr/X11R6/man/man3/XSetDeviceModifierMapping.3
./usr/X11R6/man/man3/XSetDeviceValuators.3
./usr/X11R6/man/man3/XSetErrorHandler.3
./usr/X11R6/man/man3/XSetEventQueueOwner.3
./usr/X11R6/man/man3/XSetFillRule.3
./usr/X11R6/man/man3/XSetFillStyle.3
./usr/X11R6/man/man3/XSetFont.3
./usr/X11R6/man/man3/XSetFontPath.3
./usr/X11R6/man/man3/XSetForeground.3
./usr/X11R6/man/man3/XSetFunction.3
./usr/X11R6/man/man3/XSetGraphicsExposure.3
./usr/X11R6/man/man3/XSetICFocus.3
./usr/X11R6/man/man3/XSetICValues.3
./usr/X11R6/man/man3/XSetIMValues.3
./usr/X11R6/man/man3/XSetIOErrorHandler.3
./usr/X11R6/man/man3/XSetIconName.3
./usr/X11R6/man/man3/XSetIconSizes.3
./usr/X11R6/man/man3/XSetInputFocus.3
./usr/X11R6/man/man3/XSetLineAttributes.3
./usr/X11R6/man/man3/XSetLocaleModifiers.3
./usr/X11R6/man/man3/XSetModifierMapping.3
./usr/X11R6/man/man3/XSetOCValues.3
./usr/X11R6/man/man3/XSetOMValues.3
./usr/X11R6/man/man3/XSetPlaneMask.3
./usr/X11R6/man/man3/XSetPointerMapping.3
./usr/X11R6/man/man3/XSetRGBColormaps.3
./usr/X11R6/man/man3/XSetRegion.3
./usr/X11R6/man/man3/XSetScreenSaver.3
./usr/X11R6/man/man3/XSetSelectionOwner.3
./usr/X11R6/man/man3/XSetState.3
./usr/X11R6/man/man3/XSetStipple.3
./usr/X11R6/man/man3/XSetSubwindowMode.3
./usr/X11R6/man/man3/XSetTSOrigin.3
./usr/X11R6/man/man3/XSetTextProperty.3
./usr/X11R6/man/man3/XSetTile.3
./usr/X11R6/man/man3/XSetTransientForHint.3
./usr/X11R6/man/man3/XSetWMClientMachine.3
./usr/X11R6/man/man3/XSetWMColormapWindows.3
./usr/X11R6/man/man3/XSetWMHints.3
./usr/X11R6/man/man3/XSetWMIconName.3
./usr/X11R6/man/man3/XSetWMName.3
./usr/X11R6/man/man3/XSetWMNormalHints.3
./usr/X11R6/man/man3/XSetWMProperties.3
./usr/X11R6/man/man3/XSetWMProtocols.3
./usr/X11R6/man/man3/XSetWMSizeHints.3
./usr/X11R6/man/man3/XSetWindowAttributes.3
./usr/X11R6/man/man3/XSetWindowBackground.3
./usr/X11R6/man/man3/XSetWindowBackgroundPixmap.3
./usr/X11R6/man/man3/XSetWindowBorder.3
./usr/X11R6/man/man3/XSetWindowBorderPixmap.3
./usr/X11R6/man/man3/XSetWindowBorderWidth.3
./usr/X11R6/man/man3/XSetWindowColormap.3
./usr/X11R6/man/man3/XShape.3
./usr/X11R6/man/man3/XShapeCombineMask.3
./usr/X11R6/man/man3/XShapeCombineRectangles.3
./usr/X11R6/man/man3/XShapeCombineRegion.3
./usr/X11R6/man/man3/XShapeCombineShape.3
./usr/X11R6/man/man3/XShapeGetRectangles.3
./usr/X11R6/man/man3/XShapeInputSelected.3
./usr/X11R6/man/man3/XShapeOffsetShape.3
./usr/X11R6/man/man3/XShapeQueryExtension.3
./usr/X11R6/man/man3/XShapeQueryExtents.3
./usr/X11R6/man/man3/XShapeQueryVersion.3
./usr/X11R6/man/man3/XShapeSelectInput.3
./usr/X11R6/man/man3/XShm.3
./usr/X11R6/man/man3/XShmAttach.3
./usr/X11R6/man/man3/XShmCreateImage.3
./usr/X11R6/man/man3/XShmCreatePixmap.3
./usr/X11R6/man/man3/XShmDetach.3
./usr/X11R6/man/man3/XShmGetEventBase.3
./usr/X11R6/man/man3/XShmGetImage.3
./usr/X11R6/man/man3/XShmPixmapFormat.3
./usr/X11R6/man/man3/XShmPutImage.3
./usr/X11R6/man/man3/XShmQueryExtension.3
./usr/X11R6/man/man3/XShmQueryVersion.3
./usr/X11R6/man/man3/XShrinkRegion.3
./usr/X11R6/man/man3/XSizeHints.3
./usr/X11R6/man/man3/XStandardColormap.3
./usr/X11R6/man/man3/XStoreBuffer.3
./usr/X11R6/man/man3/XStoreBytes.3
./usr/X11R6/man/man3/XStoreColor.3
./usr/X11R6/man/man3/XStoreColors.3
./usr/X11R6/man/man3/XStoreName.3
./usr/X11R6/man/man3/XStoreNamedColor.3
./usr/X11R6/man/man3/XStringListToTextProperty.3
./usr/X11R6/man/man3/XStringToKeysym.3
./usr/X11R6/man/man3/XSubImage.3
./usr/X11R6/man/man3/XSubtractRegion.3
./usr/X11R6/man/man3/XSupportsLocale.3
./usr/X11R6/man/man3/XSync.3
./usr/X11R6/man/man3/XSynchronize.3
./usr/X11R6/man/man3/XTestCompareCurrentCursorWithWindow.3
./usr/X11R6/man/man3/XTestCompareCursorWithWindow.3
./usr/X11R6/man/man3/XTestDiscard.3
./usr/X11R6/man/man3/XTestFakeButtonEvent.3
./usr/X11R6/man/man3/XTestFakeKeyEvent.3
./usr/X11R6/man/man3/XTestFakeMotionEvent.3
./usr/X11R6/man/man3/XTestFakeRelativeMotionEvent.3
./usr/X11R6/man/man3/XTestGrabControl.3
./usr/X11R6/man/man3/XTestQueryExtension.3
./usr/X11R6/man/man3/XTestSetGContextOfGC.3
./usr/X11R6/man/man3/XTestSetVisualIDOfVisual.3
./usr/X11R6/man/man3/XTextExtents.3
./usr/X11R6/man/man3/XTextExtents16.3
./usr/X11R6/man/man3/XTextItem.3
./usr/X11R6/man/man3/XTextItem16.3
./usr/X11R6/man/man3/XTextProperty.3
./usr/X11R6/man/man3/XTextPropertyToStringList.3
./usr/X11R6/man/man3/XTextWidth.3
./usr/X11R6/man/man3/XTextWidth16.3
./usr/X11R6/man/man3/XTimeCoord.3
./usr/X11R6/man/man3/XTranslateCoordinates.3
./usr/X11R6/man/man3/XUndefineCursor.3
./usr/X11R6/man/man3/XUngrabButton.3
./usr/X11R6/man/man3/XUngrabDevice.3
./usr/X11R6/man/man3/XUngrabDeviceButton.3
./usr/X11R6/man/man3/XUngrabDeviceKey.3
./usr/X11R6/man/man3/XUngrabKey.3
./usr/X11R6/man/man3/XUngrabKeyboard.3
./usr/X11R6/man/man3/XUngrabPointer.3
./usr/X11R6/man/man3/XUngrabServer.3
./usr/X11R6/man/man3/XUninstallColormap.3
./usr/X11R6/man/man3/XUnionRectWithRegion.3
./usr/X11R6/man/man3/XUnionRegion.3
./usr/X11R6/man/man3/XUniqueContext.3
./usr/X11R6/man/man3/XUnloadFont.3
./usr/X11R6/man/man3/XUnlockDisplay.3
./usr/X11R6/man/man3/XUnmapEvent.3
./usr/X11R6/man/man3/XUnmapSubwindows.3
./usr/X11R6/man/man3/XUnmapWindow.3
./usr/X11R6/man/man3/XUnregisterIMInstantiateCallback.3
./usr/X11R6/man/man3/XUnsetICFocus.3
./usr/X11R6/man/man3/XVaCreateNestedList.3
./usr/X11R6/man/man3/XVisibilityEvent.3
./usr/X11R6/man/man3/XVisualIDFromVisual.3
./usr/X11R6/man/man3/XVisualInfo.3
./usr/X11R6/man/man3/XWMGeometry.3
./usr/X11R6/man/man3/XWMHints.3
./usr/X11R6/man/man3/XWarpPointer.3
./usr/X11R6/man/man3/XWindowAttributes.3
./usr/X11R6/man/man3/XWindowChanges.3
./usr/X11R6/man/man3/XWindowEvent.3
./usr/X11R6/man/man3/XWithdrawWindow.3
./usr/X11R6/man/man3/XWriteBitmapFile.3
./usr/X11R6/man/man3/XXorRegion.3
./usr/X11R6/man/man3/Xau.3
./usr/X11R6/man/man3/XauDisposeAuth.3
./usr/X11R6/man/man3/XauFileName.3
./usr/X11R6/man/man3/XauGetAuthByAddr.3
./usr/X11R6/man/man3/XauGetBestAuthByAddr.3
./usr/X11R6/man/man3/XauLockAuth.3
./usr/X11R6/man/man3/XauReadAuth.3
./usr/X11R6/man/man3/XauUnlockAuth.3
./usr/X11R6/man/man3/XauWriteAuth.3
./usr/X11R6/man/man3/Xaw.3
./usr/X11R6/man/man3/XcmsAllocColor.3
./usr/X11R6/man/man3/XcmsAllocNamedColor.3
./usr/X11R6/man/man3/XcmsCCCOfColormap.3
./usr/X11R6/man/man3/XcmsCIELab.3
./usr/X11R6/man/man3/XcmsCIELabQueryMaxC.3
./usr/X11R6/man/man3/XcmsCIELabQueryMaxL.3
./usr/X11R6/man/man3/XcmsCIELabQueryMaxLC.3
./usr/X11R6/man/man3/XcmsCIELabQueryMinL.3
./usr/X11R6/man/man3/XcmsCIELuv.3
./usr/X11R6/man/man3/XcmsCIELuvQueryMaxC.3
./usr/X11R6/man/man3/XcmsCIELuvQueryMaxL.3
./usr/X11R6/man/man3/XcmsCIELuvQueryMaxLC.3
./usr/X11R6/man/man3/XcmsCIELuvQueryMinL.3
./usr/X11R6/man/man3/XcmsCIEXYZ.3
./usr/X11R6/man/man3/XcmsCIEuvY.3
./usr/X11R6/man/man3/XcmsCIExyY.3
./usr/X11R6/man/man3/XcmsColor.3
./usr/X11R6/man/man3/XcmsConvertColors.3
./usr/X11R6/man/man3/XcmsCreateCCC.3
./usr/X11R6/man/man3/XcmsDefaultCCC.3
./usr/X11R6/man/man3/XcmsFreeCCC.3
./usr/X11R6/man/man3/XcmsLookupColor.3
./usr/X11R6/man/man3/XcmsPad.3
./usr/X11R6/man/man3/XcmsQueryBlack.3
./usr/X11R6/man/man3/XcmsQueryBlue.3
./usr/X11R6/man/man3/XcmsQueryColor.3
./usr/X11R6/man/man3/XcmsQueryColors.3
./usr/X11R6/man/man3/XcmsQueryGreen.3
./usr/X11R6/man/man3/XcmsQueryRed.3
./usr/X11R6/man/man3/XcmsQueryWhite.3
./usr/X11R6/man/man3/XcmsRGB.3
./usr/X11R6/man/man3/XcmsRGBi.3
./usr/X11R6/man/man3/XcmsSetCCCOfColormap.3
./usr/X11R6/man/man3/XcmsSetWhiteAdjustProc.3
./usr/X11R6/man/man3/XcmsSetWhitePoint.3
./usr/X11R6/man/man3/XcmsStoreColor.3
./usr/X11R6/man/man3/XcmsStoreColors.3
./usr/X11R6/man/man3/XcmsTekHVC.3
./usr/X11R6/man/man3/XcmsTekHVCQueryMaxC.3
./usr/X11R6/man/man3/XcmsTekHVCQueryMaxV.3
./usr/X11R6/man/man3/XcmsTekHVCQueryMaxVC.3
./usr/X11R6/man/man3/XcmsTekHVCQueryMaxVSamples.3
./usr/X11R6/man/man3/XcmsTekHVCQueryMinV.3
./usr/X11R6/man/man3/Xcomposite.3
./usr/X11R6/man/man3/XcupGetReservedColormapEntries.3
./usr/X11R6/man/man3/XcupQueryVersion.3
./usr/X11R6/man/man3/XcupStoreColors.3
./usr/X11R6/man/man3/Xcursor.3
./usr/X11R6/man/man3/XcursorAnimateCreate.3
./usr/X11R6/man/man3/XcursorAnimateDestroy.3
./usr/X11R6/man/man3/XcursorAnimateNext.3
./usr/X11R6/man/man3/XcursorCommentCreate.3
./usr/X11R6/man/man3/XcursorCommentDestroy.3
./usr/X11R6/man/man3/XcursorCommentsCreate.3
./usr/X11R6/man/man3/XcursorCommentsDestroy.3
./usr/X11R6/man/man3/XcursorCursorsCreate.3
./usr/X11R6/man/man3/XcursorCursorsDestroy.3
./usr/X11R6/man/man3/XcursorFileLoad.3
./usr/X11R6/man/man3/XcursorFileLoadAllImages.3
./usr/X11R6/man/man3/XcursorFileLoadImage.3
./usr/X11R6/man/man3/XcursorFileLoadImages.3
./usr/X11R6/man/man3/XcursorFileSave.3
./usr/X11R6/man/man3/XcursorFileSaveImages.3
./usr/X11R6/man/man3/XcursorFilenameLoad.3
./usr/X11R6/man/man3/XcursorFilenameLoadAllImages.3
./usr/X11R6/man/man3/XcursorFilenameLoadCursor.3
./usr/X11R6/man/man3/XcursorFilenameLoadCursors.3
./usr/X11R6/man/man3/XcursorFilenameLoadImage.3
./usr/X11R6/man/man3/XcursorFilenameLoadImages.3
./usr/X11R6/man/man3/XcursorFilenameSave.3
./usr/X11R6/man/man3/XcursorFilenameSaveImages.3
./usr/X11R6/man/man3/XcursorGetDefaultSize.3
./usr/X11R6/man/man3/XcursorGetTheme.3
./usr/X11R6/man/man3/XcursorGetThemeCore.3
./usr/X11R6/man/man3/XcursorImageCreate.3
./usr/X11R6/man/man3/XcursorImageDestroy.3
./usr/X11R6/man/man3/XcursorImageHash.3
./usr/X11R6/man/man3/XcursorImageLoadCursor.3
./usr/X11R6/man/man3/XcursorImagesCreate.3
./usr/X11R6/man/man3/XcursorImagesDestroy.3
./usr/X11R6/man/man3/XcursorImagesLoadCursor.3
./usr/X11R6/man/man3/XcursorImagesLoadCursors.3
./usr/X11R6/man/man3/XcursorImagesSetName.3
./usr/X11R6/man/man3/XcursorLibraryLoadCursor.3
./usr/X11R6/man/man3/XcursorLibraryLoadCursors.3
./usr/X11R6/man/man3/XcursorLibraryLoadImage.3
./usr/X11R6/man/man3/XcursorLibraryLoadImages.3
./usr/X11R6/man/man3/XcursorLibraryPath.3
./usr/X11R6/man/man3/XcursorLibraryShape.3
./usr/X11R6/man/man3/XcursorNoticeCreateBitmap.3
./usr/X11R6/man/man3/XcursorNoticePutBitmap.3
./usr/X11R6/man/man3/XcursorSetDefaultSize.3
./usr/X11R6/man/man3/XcursorSetTheme.3
./usr/X11R6/man/man3/XcursorSetThemeCore.3
./usr/X11R6/man/man3/XcursorShapeLoadCursor.3
./usr/X11R6/man/man3/XcursorShapeLoadCursors.3
./usr/X11R6/man/man3/XcursorShapeLoadImage.3
./usr/X11R6/man/man3/XcursorShapeLoadImages.3
./usr/X11R6/man/man3/XcursorSupportsARGB.3
./usr/X11R6/man/man3/XcursorSupportsAnim.3
./usr/X11R6/man/man3/XcursorTryShapeBitmapCursor.3
./usr/X11R6/man/man3/XcursorTryShapeCursor.3
./usr/X11R6/man/man3/XcursorXcFileLoad.3
./usr/X11R6/man/man3/XcursorXcFileLoadAllImages.3
./usr/X11R6/man/man3/XcursorXcFileLoadImage.3
./usr/X11R6/man/man3/XcursorXcFileLoadImages.3
./usr/X11R6/man/man3/XcursorXcFileSave.3
./usr/X11R6/man/man3/XdbeAllocateBackBufferName.3
./usr/X11R6/man/man3/XdbeBeginIdiom.3
./usr/X11R6/man/man3/XdbeDeallocateBackBufferName.3
./usr/X11R6/man/man3/XdbeEndIdiom.3
./usr/X11R6/man/man3/XdbeFreeVisualInfo.3
./usr/X11R6/man/man3/XdbeGetBackBufferAttributes.3
./usr/X11R6/man/man3/XdbeGetVisualInfo.3
./usr/X11R6/man/man3/XdbeQueryExtension.3
./usr/X11R6/man/man3/XdbeSwapBuffers.3
./usr/X11R6/man/man3/Xevi.3
./usr/X11R6/man/man3/XeviGetVisualInfo.3
./usr/X11R6/man/man3/XeviQueryExtension.3
./usr/X11R6/man/man3/XeviQueryVersion.3
./usr/X11R6/man/man3/Xfixes.3
./usr/X11R6/man/man3/Xft.3
./usr/X11R6/man/man3/Xinerama.3
./usr/X11R6/man/man3/XineramaIsActive.3
./usr/X11R6/man/man3/XineramaQueryExtension.3
./usr/X11R6/man/man3/XineramaQueryScreens.3
./usr/X11R6/man/man3/XineramaQueryVersion.3
./usr/X11R6/man/man3/XkbActionCtrls.3
./usr/X11R6/man/man3/XkbAddDeviceLedInfo.3
./usr/X11R6/man/man3/XkbAddGeomColor.3
./usr/X11R6/man/man3/XkbAddGeomDoodad.3
./usr/X11R6/man/man3/XkbAddGeomKey.3
./usr/X11R6/man/man3/XkbAddGeomKeyAlias.3
./usr/X11R6/man/man3/XkbAddGeomOutline.3
./usr/X11R6/man/man3/XkbAddGeomOverlay.3
./usr/X11R6/man/man3/XkbAddGeomOverlayKey.3
./usr/X11R6/man/man3/XkbAddGeomOverlayRow.3
./usr/X11R6/man/man3/XkbAddGeomProperty.3
./usr/X11R6/man/man3/XkbAddGeomRow.3
./usr/X11R6/man/man3/XkbAddGeomSection.3
./usr/X11R6/man/man3/XkbAddGeomShape.3
./usr/X11R6/man/man3/XkbAddSymInterpret.3
./usr/X11R6/man/man3/XkbAllocClientMap.3
./usr/X11R6/man/man3/XkbAllocCompatMap.3
./usr/X11R6/man/man3/XkbAllocControls.3
./usr/X11R6/man/man3/XkbAllocDeviceInfo.3
./usr/X11R6/man/man3/XkbAllocDeviceLedInfo.3
./usr/X11R6/man/man3/XkbAllocGeomColors.3
./usr/X11R6/man/man3/XkbAllocGeomDoodads.3
./usr/X11R6/man/man3/XkbAllocGeomKeyAliases.3
./usr/X11R6/man/man3/XkbAllocGeomKeys.3
./usr/X11R6/man/man3/XkbAllocGeomOutlines.3
./usr/X11R6/man/man3/XkbAllocGeomOverlayKeys.3
./usr/X11R6/man/man3/XkbAllocGeomOverlayRows.3
./usr/X11R6/man/man3/XkbAllocGeomOverlays.3
./usr/X11R6/man/man3/XkbAllocGeomPoints.3
./usr/X11R6/man/man3/XkbAllocGeomProps.3
./usr/X11R6/man/man3/XkbAllocGeomRows.3
./usr/X11R6/man/man3/XkbAllocGeomSectionDoodads.3
./usr/X11R6/man/man3/XkbAllocGeomSections.3
./usr/X11R6/man/man3/XkbAllocGeomShapes.3
./usr/X11R6/man/man3/XkbAllocGeometry.3
./usr/X11R6/man/man3/XkbAllocIndicatorMaps.3
./usr/X11R6/man/man3/XkbAllocKeyboard.3
./usr/X11R6/man/man3/XkbAllocNames.3
./usr/X11R6/man/man3/XkbAllocServerMap.3
./usr/X11R6/man/man3/XkbApplyCompatMapToKey.3
./usr/X11R6/man/man3/XkbBell.3
./usr/X11R6/man/man3/XkbBellEvent.3
./usr/X11R6/man/man3/XkbChangeControls.3
./usr/X11R6/man/man3/XkbChangeDeviceInfo.3
./usr/X11R6/man/man3/XkbChangeEnabledControls.3
./usr/X11R6/man/man3/XkbChangeIndicators.3
./usr/X11R6/man/man3/XkbChangeMap.3
./usr/X11R6/man/man3/XkbChangeNames.3
./usr/X11R6/man/man3/XkbChangeTypesOfKey.3
./usr/X11R6/man/man3/XkbComputeRowBounds.3
./usr/X11R6/man/man3/XkbComputeSectionBounds.3
./usr/X11R6/man/man3/XkbComputeShapeBounds.3
./usr/X11R6/man/man3/XkbComputeShapeTop.3
./usr/X11R6/man/man3/XkbCopyKeyType.3
./usr/X11R6/man/man3/XkbCopyKeyTypes.3
./usr/X11R6/man/man3/XkbDeviceBell.3
./usr/X11R6/man/man3/XkbDeviceBellEvent.3
./usr/X11R6/man/man3/XkbFindOverlayForKey.3
./usr/X11R6/man/man3/XkbForceBell.3
./usr/X11R6/man/man3/XkbForceDeviceBell.3
./usr/X11R6/man/man3/XkbFreeClientMap.3
./usr/X11R6/man/man3/XkbFreeCompatMap.3
./usr/X11R6/man/man3/XkbFreeComponentList.3
./usr/X11R6/man/man3/XkbFreeControls.3
./usr/X11R6/man/man3/XkbFreeDeviceInfo.3
./usr/X11R6/man/man3/XkbFreeGeomColors.3
./usr/X11R6/man/man3/XkbFreeGeomDoodads.3
./usr/X11R6/man/man3/XkbFreeGeomKeyAliases.3
./usr/X11R6/man/man3/XkbFreeGeomKeys.3
./usr/X11R6/man/man3/XkbFreeGeomOutlines.3
./usr/X11R6/man/man3/XkbFreeGeomOverlayKeys.3
./usr/X11R6/man/man3/XkbFreeGeomOverlayRows.3
./usr/X11R6/man/man3/XkbFreeGeomOverlays.3
./usr/X11R6/man/man3/XkbFreeGeomPoints.3
./usr/X11R6/man/man3/XkbFreeGeomProperties.3
./usr/X11R6/man/man3/XkbFreeGeomRows.3
./usr/X11R6/man/man3/XkbFreeGeomSections.3
./usr/X11R6/man/man3/XkbFreeGeomShapes.3
./usr/X11R6/man/man3/XkbFreeGeometry.3
./usr/X11R6/man/man3/XkbFreeIndicatorMaps.3
./usr/X11R6/man/man3/XkbFreeKeyboard.3
./usr/X11R6/man/man3/XkbFreeNames.3
./usr/X11R6/man/man3/XkbFreeServerMap.3
./usr/X11R6/man/man3/XkbGetAccessXTimeout.3
./usr/X11R6/man/man3/XkbGetAutoRepeatRate.3
./usr/X11R6/man/man3/XkbGetAutoResetControls.3
./usr/X11R6/man/man3/XkbGetBounceKeysDelay.3
./usr/X11R6/man/man3/XkbGetCompatMap.3
./usr/X11R6/man/man3/XkbGetControls.3
./usr/X11R6/man/man3/XkbGetControlsChanges.3
./usr/X11R6/man/man3/XkbGetDetectableAutoRepeat.3
./usr/X11R6/man/man3/XkbGetDeviceButtonActions.3
./usr/X11R6/man/man3/XkbGetDeviceInfo.3
./usr/X11R6/man/man3/XkbGetDeviceInfoChanges.3
./usr/X11R6/man/man3/XkbGetDeviceLedInfo.3
./usr/X11R6/man/man3/XkbGetGeometry.3
./usr/X11R6/man/man3/XkbGetIndicatorChanges.3
./usr/X11R6/man/man3/XkbGetIndicatorMap.3
./usr/X11R6/man/man3/XkbGetIndicatorState.3
./usr/X11R6/man/man3/XkbGetKeyActions.3
./usr/X11R6/man/man3/XkbGetKeyBehaviors.3
./usr/X11R6/man/man3/XkbGetKeyExplicitComponents.3
./usr/X11R6/man/man3/XkbGetKeyModifierMap.3
./usr/X11R6/man/man3/XkbGetKeySyms.3
./usr/X11R6/man/man3/XkbGetKeyTypes.3
./usr/X11R6/man/man3/XkbGetKeyVirtualModMap.3
./usr/X11R6/man/man3/XkbGetKeyboard.3
./usr/X11R6/man/man3/XkbGetKeyboardByName.3
./usr/X11R6/man/man3/XkbGetMap.3
./usr/X11R6/man/man3/XkbGetNameChanges.3
./usr/X11R6/man/man3/XkbGetNamedDeviceIndicator.3
./usr/X11R6/man/man3/XkbGetNamedGeometry.3
./usr/X11R6/man/man3/XkbGetNamedIndicator.3
./usr/X11R6/man/man3/XkbGetNames.3
./usr/X11R6/man/man3/XkbGetSlowKeysDelay.3
./usr/X11R6/man/man3/XkbGetState.3
./usr/X11R6/man/man3/XkbGetStickyKeysOptions.3
./usr/X11R6/man/man3/XkbGetUpdatedMap.3
./usr/X11R6/man/man3/XkbGetVirtualMods.3
./usr/X11R6/man/man3/XkbGetXlibControls.3
./usr/X11R6/man/man3/XkbIgnoreExtension.3
./usr/X11R6/man/man3/XkbInitCanonicalKeyTypes.3
./usr/X11R6/man/man3/XkbKeyAction.3
./usr/X11R6/man/man3/XkbKeyActionEntry.3
./usr/X11R6/man/man3/XkbKeyActionsPtr.3
./usr/X11R6/man/man3/XkbKeyGroupInfo.3
./usr/X11R6/man/man3/XkbKeyGroupWidth.3
./usr/X11R6/man/man3/XkbKeyGroupsWidth.3
./usr/X11R6/man/man3/XkbKeyHasActions.3
./usr/X11R6/man/man3/XkbKeyNumActions.3
./usr/X11R6/man/man3/XkbKeyNumGroups.3
./usr/X11R6/man/man3/XkbKeyNumSyms.3
./usr/X11R6/man/man3/XkbKeySymEntry.3
./usr/X11R6/man/man3/XkbKeySymsOffset.3
./usr/X11R6/man/man3/XkbKeySymsPtr.3
./usr/X11R6/man/man3/XkbKeyType.3
./usr/X11R6/man/man3/XkbKeyTypeIndex.3
./usr/X11R6/man/man3/XkbKeyTypesForCoreSymbols.3
./usr/X11R6/man/man3/XkbKeycodeToKeysym.3
./usr/X11R6/man/man3/XkbKeysymToModifiers.3
./usr/X11R6/man/man3/XkbLatchGroup.3
./usr/X11R6/man/man3/XkbLatchModifiers.3
./usr/X11R6/man/man3/XkbLibraryVersion.3
./usr/X11R6/man/man3/XkbListComponents.3
./usr/X11R6/man/man3/XkbLockGroup.3
./usr/X11R6/man/man3/XkbLockModifiers.3
./usr/X11R6/man/man3/XkbLookupKeyBinding.3
./usr/X11R6/man/man3/XkbLookupKeySym.3
./usr/X11R6/man/man3/XkbModActionVMods.3
./usr/X11R6/man/man3/XkbNoteControlsChanges.3
./usr/X11R6/man/man3/XkbNoteDeviceChanges.3
./usr/X11R6/man/man3/XkbNoteIndicatorChanges.3
./usr/X11R6/man/man3/XkbNoteNameChanges.3
./usr/X11R6/man/man3/XkbOpenDisplay.3
./usr/X11R6/man/man3/XkbOutOfRangeGroupInfo.3
./usr/X11R6/man/man3/XkbOutOfRangeGroupNumber.3
./usr/X11R6/man/man3/XkbPtrActionX.3
./usr/X11R6/man/man3/XkbPtrActionY.3
./usr/X11R6/man/man3/XkbQueryExtension.3
./usr/X11R6/man/man3/XkbRefreshKeyboardMapping.3
./usr/X11R6/man/man3/XkbResizeDeviceButtonActions.3
./usr/X11R6/man/man3/XkbResizeKeyActions.3
./usr/X11R6/man/man3/XkbResizeKeySyms.3
./usr/X11R6/man/man3/XkbResizeKeyType.3
./usr/X11R6/man/man3/XkbSAActionSetCtrls.3
./usr/X11R6/man/man3/XkbSAGroup.3
./usr/X11R6/man/man3/XkbSAPtrDfltValue.3
./usr/X11R6/man/man3/XkbSARedirectSetVMods.3
./usr/X11R6/man/man3/XkbSARedirectSetVModsMask.3
./usr/X11R6/man/man3/XkbSARedirectVMods.3
./usr/X11R6/man/man3/XkbSARedirectVModsMask.3
./usr/X11R6/man/man3/XkbSAScreen.3
./usr/X11R6/man/man3/XkbSASetGroup.3
./usr/X11R6/man/man3/XkbSASetPtrDfltValue.3
./usr/X11R6/man/man3/XkbSASetScreen.3
./usr/X11R6/man/man3/XkbSelectEventDetails.3
./usr/X11R6/man/man3/XkbSelectEvents.3
./usr/X11R6/man/man3/XkbSetAccessXTimeout.3
./usr/X11R6/man/man3/XkbSetAutoRepeatRate.3
./usr/X11R6/man/man3/XkbSetAutoResetControls.3
./usr/X11R6/man/man3/XkbSetBounceKeysDelay.3
./usr/X11R6/man/man3/XkbSetCompatMap.3
./usr/X11R6/man/man3/XkbSetControls.3
./usr/X11R6/man/man3/XkbSetDebuggingFlags.3
./usr/X11R6/man/man3/XkbSetDetectableAutoRepeat.3
./usr/X11R6/man/man3/XkbSetDeviceButtonActions.3
./usr/X11R6/man/man3/XkbSetDeviceInfo.3
./usr/X11R6/man/man3/XkbSetIgnoreLockMods.3
./usr/X11R6/man/man3/XkbSetIndicatorMap.3
./usr/X11R6/man/man3/XkbSetMap.3
./usr/X11R6/man/man3/XkbSetModActionVMods.3
./usr/X11R6/man/man3/XkbSetNamedDeviceIndicator.3
./usr/X11R6/man/man3/XkbSetNamedIndicator.3
./usr/X11R6/man/man3/XkbSetNames.3
./usr/X11R6/man/man3/XkbSetPtrActionX.3
./usr/X11R6/man/man3/XkbSetPtrActionY.3
./usr/X11R6/man/man3/XkbSetServerInternalMods.3
./usr/X11R6/man/man3/XkbSetXlibControls.3
./usr/X11R6/man/man3/XkbTranslateKeyCode.3
./usr/X11R6/man/man3/XkbTranslateKeySym.3
./usr/X11R6/man/man3/XkbUpdateMapFromCore.3
./usr/X11R6/man/man3/XkbVirtualModsToReal.3
./usr/X11R6/man/man3/XmbDrawImageString.3
./usr/X11R6/man/man3/XmbDrawString.3
./usr/X11R6/man/man3/XmbDrawText.3
./usr/X11R6/man/man3/XmbLookupString.3
./usr/X11R6/man/man3/XmbResetIC.3
./usr/X11R6/man/man3/XmbSetWMProperties.3
./usr/X11R6/man/man3/XmbTextEscapement.3
./usr/X11R6/man/man3/XmbTextExtents.3
./usr/X11R6/man/man3/XmbTextListToTextProperty.3
./usr/X11R6/man/man3/XmbTextPerCharExtents.3
./usr/X11R6/man/man3/XmbTextPropertyToTextList.3
./usr/X11R6/man/man3/Xmbuf.3
./usr/X11R6/man/man3/XmbufChangeBufferAttributes.3
./usr/X11R6/man/man3/XmbufChangeWindowAttributes.3
./usr/X11R6/man/man3/XmbufCreateBuffers.3
./usr/X11R6/man/man3/XmbufCreateStereoWindow.3
./usr/X11R6/man/man3/XmbufDestroyBuffers.3
./usr/X11R6/man/man3/XmbufDisplayBuffers.3
./usr/X11R6/man/man3/XmbufGetBufferAttributes.3
./usr/X11R6/man/man3/XmbufGetScreenInfo.3
./usr/X11R6/man/man3/XmbufGetVersion.3
./usr/X11R6/man/man3/XmbufGetWindowAttributes.3
./usr/X11R6/man/man3/XmbufQueryExtension.3
./usr/X11R6/man/man3/Xmu.3
./usr/X11R6/man/man3/Xpresent.3
./usr/X11R6/man/man3/Xrandr.3
./usr/X11R6/man/man3/XrmCombineDatabase.3
./usr/X11R6/man/man3/XrmCombineFileDatabase.3
./usr/X11R6/man/man3/XrmDestroyDatabase.3
./usr/X11R6/man/man3/XrmEnumerateDatabase.3
./usr/X11R6/man/man3/XrmGetDatabase.3
./usr/X11R6/man/man3/XrmGetFileDatabase.3
./usr/X11R6/man/man3/XrmGetResource.3
./usr/X11R6/man/man3/XrmGetStringDatabase.3
./usr/X11R6/man/man3/XrmInitialize.3
./usr/X11R6/man/man3/XrmLocaleOfDatabase.3
./usr/X11R6/man/man3/XrmMergeDatabases.3
./usr/X11R6/man/man3/XrmOptionDescRec.3
./usr/X11R6/man/man3/XrmOptionKind.3
./usr/X11R6/man/man3/XrmParseCommand.3
./usr/X11R6/man/man3/XrmPermStringToQuark.3
./usr/X11R6/man/man3/XrmPutFileDatabase.3
./usr/X11R6/man/man3/XrmPutLineResource.3
./usr/X11R6/man/man3/XrmPutResource.3
./usr/X11R6/man/man3/XrmPutStringResource.3
./usr/X11R6/man/man3/XrmQGetResource.3
./usr/X11R6/man/man3/XrmQGetSearchList.3
./usr/X11R6/man/man3/XrmQGetSearchResource.3
./usr/X11R6/man/man3/XrmQPutResource.3
./usr/X11R6/man/man3/XrmQPutStringResource.3
./usr/X11R6/man/man3/XrmQuarkToString.3
./usr/X11R6/man/man3/XrmSetDatabase.3
./usr/X11R6/man/man3/XrmStringToBindingQuarkList.3
./usr/X11R6/man/man3/XrmStringToQuark.3
./usr/X11R6/man/man3/XrmStringToQuarkList.3
./usr/X11R6/man/man3/XrmUniqueQuark.3
./usr/X11R6/man/man3/XrmValue.3
./usr/X11R6/man/man3/Xss.3
./usr/X11R6/man/man3/XtAddActions.3
./usr/X11R6/man/man3/XtAddCallback.3
./usr/X11R6/man/man3/XtAddCallbacks.3
./usr/X11R6/man/man3/XtAddConverter.3
./usr/X11R6/man/man3/XtAddEventHandler.3
./usr/X11R6/man/man3/XtAddExposureToRegion.3
./usr/X11R6/man/man3/XtAddGrab.3
./usr/X11R6/man/man3/XtAddInput.3
./usr/X11R6/man/man3/XtAddRawEventHandler.3
./usr/X11R6/man/man3/XtAddTimeOut.3
./usr/X11R6/man/man3/XtAddWorkProc.3
./usr/X11R6/man/man3/XtAllocateGC.3
./usr/X11R6/man/man3/XtAppAddActionHook.3
./usr/X11R6/man/man3/XtAppAddActions.3
./usr/X11R6/man/man3/XtAppAddBlockHook.3
./usr/X11R6/man/man3/XtAppAddConverter.3
./usr/X11R6/man/man3/XtAppAddInput.3
./usr/X11R6/man/man3/XtAppAddSignal.3
./usr/X11R6/man/man3/XtAppAddTimeOut.3
./usr/X11R6/man/man3/XtAppAddWorkProc.3
./usr/X11R6/man/man3/XtAppCreateShell.3
./usr/X11R6/man/man3/XtAppError.3
./usr/X11R6/man/man3/XtAppErrorMsg.3
./usr/X11R6/man/man3/XtAppGetErrorDatabase.3
./usr/X11R6/man/man3/XtAppGetErrorDatabaseText.3
./usr/X11R6/man/man3/XtAppGetExitFlag.3
./usr/X11R6/man/man3/XtAppGetSelectionTimeout.3
./usr/X11R6/man/man3/XtAppInitialize.3
./usr/X11R6/man/man3/XtAppLock.3
./usr/X11R6/man/man3/XtAppMainLoop.3
./usr/X11R6/man/man3/XtAppNextEvent.3
./usr/X11R6/man/man3/XtAppPeekEvent.3
./usr/X11R6/man/man3/XtAppPending.3
./usr/X11R6/man/man3/XtAppProcessEvent.3
./usr/X11R6/man/man3/XtAppReleaseCacheRefs.3
./usr/X11R6/man/man3/XtAppSetErrorHandler.3
./usr/X11R6/man/man3/XtAppSetErrorMsgHandler.3
./usr/X11R6/man/man3/XtAppSetExitFlag.3
./usr/X11R6/man/man3/XtAppSetFallbackResources.3
./usr/X11R6/man/man3/XtAppSetSelectionTimeout.3
./usr/X11R6/man/man3/XtAppSetTypeConverter.3
./usr/X11R6/man/man3/XtAppSetWarningHandler.3
./usr/X11R6/man/man3/XtAppSetWarningMsgHandler.3
./usr/X11R6/man/man3/XtAppUnlock.3
./usr/X11R6/man/man3/XtAppWarning.3
./usr/X11R6/man/man3/XtAppWarningMsg.3
./usr/X11R6/man/man3/XtAsprintf.3
./usr/X11R6/man/man3/XtAugmentTranslations.3
./usr/X11R6/man/man3/XtBuildEventMask.3
./usr/X11R6/man/man3/XtCallAcceptFocus.3
./usr/X11R6/man/man3/XtCallActionProc.3
./usr/X11R6/man/man3/XtCallCallbackList.3
./usr/X11R6/man/man3/XtCallCallbacks.3
./usr/X11R6/man/man3/XtCallConverter.3
./usr/X11R6/man/man3/XtCallbackExclusive.3
./usr/X11R6/man/man3/XtCallbackNone.3
./usr/X11R6/man/man3/XtCallbackNonexclusive.3
./usr/X11R6/man/man3/XtCallbackPopdown.3
./usr/X11R6/man/man3/XtCalloc.3
./usr/X11R6/man/man3/XtCancelSelectionRequest.3
./usr/X11R6/man/man3/XtChangeManagedSet.3
./usr/X11R6/man/man3/XtCheckSubclass.3
./usr/X11R6/man/man3/XtClass.3
./usr/X11R6/man/man3/XtCloseDisplay.3
./usr/X11R6/man/man3/XtConfigureWidget.3
./usr/X11R6/man/man3/XtConvert.3
./usr/X11R6/man/man3/XtConvertAndStore.3
./usr/X11R6/man/man3/XtConvertCase.3
./usr/X11R6/man/man3/XtCreateApplicationContext.3
./usr/X11R6/man/man3/XtCreateApplicationShell.3
./usr/X11R6/man/man3/XtCreateManagedWidget.3
./usr/X11R6/man/man3/XtCreatePopupShell.3
./usr/X11R6/man/man3/XtCreateSelectionRequest.3
./usr/X11R6/man/man3/XtCreateWidget.3
./usr/X11R6/man/man3/XtCreateWindow.3
./usr/X11R6/man/man3/XtDatabase.3
./usr/X11R6/man/man3/XtDestroyApplicationContext.3
./usr/X11R6/man/man3/XtDestroyWidget.3
./usr/X11R6/man/man3/XtDirectConvert.3
./usr/X11R6/man/man3/XtDisownSelection.3
./usr/X11R6/man/man3/XtDispatchEvent.3
./usr/X11R6/man/man3/XtDispatchEventToWidget.3
./usr/X11R6/man/man3/XtDisplay.3
./usr/X11R6/man/man3/XtDisplayInitialize.3
./usr/X11R6/man/man3/XtDisplayOfObject.3
./usr/X11R6/man/man3/XtDisplayStringConversionWarning.3
./usr/X11R6/man/man3/XtDisplayToApplicationContext.3
./usr/X11R6/man/man3/XtError.3
./usr/X11R6/man/man3/XtErrorMsg.3
./usr/X11R6/man/man3/XtFindFile.3
./usr/X11R6/man/man3/XtFree.3
./usr/X11R6/man/man3/XtGetActionKeysym.3
./usr/X11R6/man/man3/XtGetActionList.3
./usr/X11R6/man/man3/XtGetApplicationNameAndClass.3
./usr/X11R6/man/man3/XtGetApplicationResources.3
./usr/X11R6/man/man3/XtGetClassExtension.3
./usr/X11R6/man/man3/XtGetConstraintResourceList.3
./usr/X11R6/man/man3/XtGetDisplays.3
./usr/X11R6/man/man3/XtGetErrorDatabase.3
./usr/X11R6/man/man3/XtGetErrorDatabaseText.3
./usr/X11R6/man/man3/XtGetGC.3
./usr/X11R6/man/man3/XtGetKeyboardFocusWidget.3
./usr/X11R6/man/man3/XtGetKeysymTable.3
./usr/X11R6/man/man3/XtGetMultiClickTime.3
./usr/X11R6/man/man3/XtGetResourceList.3
./usr/X11R6/man/man3/XtGetSelectionParameters.3
./usr/X11R6/man/man3/XtGetSelectionRequest.3
./usr/X11R6/man/man3/XtGetSelectionTimeout.3
./usr/X11R6/man/man3/XtGetSelectionValue.3
./usr/X11R6/man/man3/XtGetSelectionValueIncremental.3
./usr/X11R6/man/man3/XtGetSelectionValues.3
./usr/X11R6/man/man3/XtGetSelectionValuesIncremental.3
./usr/X11R6/man/man3/XtGetSubresources.3
./usr/X11R6/man/man3/XtGetSubvalues.3
./usr/X11R6/man/man3/XtGetValues.3
./usr/X11R6/man/man3/XtGrabButton.3
./usr/X11R6/man/man3/XtGrabKey.3
./usr/X11R6/man/man3/XtGrabKeyboard.3
./usr/X11R6/man/man3/XtGrabPointer.3
./usr/X11R6/man/man3/XtHasCallbacks.3
./usr/X11R6/man/man3/XtHooksOfDisplay.3
./usr/X11R6/man/man3/XtInitialize.3
./usr/X11R6/man/man3/XtInitializeWidgetClass.3
./usr/X11R6/man/man3/XtInsertEventHandler.3
./usr/X11R6/man/man3/XtInsertEventTypeHandler.3
./usr/X11R6/man/man3/XtInsertRawEventHandler.3
./usr/X11R6/man/man3/XtInstallAccelerators.3
./usr/X11R6/man/man3/XtInstallAllAccelerators.3
./usr/X11R6/man/man3/XtIsApplicationShell.3
./usr/X11R6/man/man3/XtIsComposite.3
./usr/X11R6/man/man3/XtIsConstraint.3
./usr/X11R6/man/man3/XtIsManaged.3
./usr/X11R6/man/man3/XtIsObject.3
./usr/X11R6/man/man3/XtIsOverrideShell.3
./usr/X11R6/man/man3/XtIsRealized.3
./usr/X11R6/man/man3/XtIsRectObj.3
./usr/X11R6/man/man3/XtIsSensitive.3
./usr/X11R6/man/man3/XtIsSessionShell.3
./usr/X11R6/man/man3/XtIsShell.3
./usr/X11R6/man/man3/XtIsSubclass.3
./usr/X11R6/man/man3/XtIsTopLevelShell.3
./usr/X11R6/man/man3/XtIsTransientShell.3
./usr/X11R6/man/man3/XtIsVendorShell.3
./usr/X11R6/man/man3/XtIsWMShell.3
./usr/X11R6/man/man3/XtIsWidget.3
./usr/X11R6/man/man3/XtKeysymToKeycodeList.3
./usr/X11R6/man/man3/XtLastEventProcessed.3
./usr/X11R6/man/man3/XtLastTimestampProcessed.3
./usr/X11R6/man/man3/XtMainLoop.3
./usr/X11R6/man/man3/XtMakeGeometryRequest.3
./usr/X11R6/man/man3/XtMakeResizeRequest.3
./usr/X11R6/man/man3/XtMalloc.3
./usr/X11R6/man/man3/XtManageChild.3
./usr/X11R6/man/man3/XtManageChildren.3
./usr/X11R6/man/man3/XtMapWidget.3
./usr/X11R6/man/man3/XtMergeArgLists.3
./usr/X11R6/man/man3/XtMoveWidget.3
./usr/X11R6/man/man3/XtName.3
./usr/X11R6/man/man3/XtNameToWidget.3
./usr/X11R6/man/man3/XtNew.3
./usr/X11R6/man/man3/XtNewString.3
./usr/X11R6/man/man3/XtNextEvent.3
./usr/X11R6/man/man3/XtNoticeSignal.3
./usr/X11R6/man/man3/XtNumber.3
./usr/X11R6/man/man3/XtOffset.3
./usr/X11R6/man/man3/XtOffsetOf.3
./usr/X11R6/man/man3/XtOpenApplication.3
./usr/X11R6/man/man3/XtOpenDisplay.3
./usr/X11R6/man/man3/XtOverrideTranslations.3
./usr/X11R6/man/man3/XtOwnSelection.3
./usr/X11R6/man/man3/XtOwnSelectionIncremental.3
./usr/X11R6/man/man3/XtParent.3
./usr/X11R6/man/man3/XtParseAcceleratorTable.3
./usr/X11R6/man/man3/XtParseTranslationTable.3
./usr/X11R6/man/man3/XtPeekEvent.3
./usr/X11R6/man/man3/XtPending.3
./usr/X11R6/man/man3/XtPopdown.3
./usr/X11R6/man/man3/XtPopup.3
./usr/X11R6/man/man3/XtPopupSpringLoaded.3
./usr/X11R6/man/man3/XtProcessEvent.3
./usr/X11R6/man/man3/XtProcessLock.3
./usr/X11R6/man/man3/XtProcessUnlock.3
./usr/X11R6/man/man3/XtQueryGeometry.3
./usr/X11R6/man/man3/XtRealizeWidget.3
./usr/X11R6/man/man3/XtRealloc.3
./usr/X11R6/man/man3/XtRegisterCaseConverter.3
./usr/X11R6/man/man3/XtRegisterDrawable.3
./usr/X11R6/man/man3/XtRegisterExtensionSelector.3
./usr/X11R6/man/man3/XtRegisterGrabAction.3
./usr/X11R6/man/man3/XtReleaseGC.3
./usr/X11R6/man/man3/XtReleasePropertyAtom.3
./usr/X11R6/man/man3/XtRemoveActionHook.3
./usr/X11R6/man/man3/XtRemoveAllCallbacks.3
./usr/X11R6/man/man3/XtRemoveBlockHook.3
./usr/X11R6/man/man3/XtRemoveCallback.3
./usr/X11R6/man/man3/XtRemoveCallbacks.3
./usr/X11R6/man/man3/XtRemoveEventHandler.3
./usr/X11R6/man/man3/XtRemoveEventTypeHandler.3
./usr/X11R6/man/man3/XtRemoveGrab.3
./usr/X11R6/man/man3/XtRemoveInput.3
./usr/X11R6/man/man3/XtRemoveRawEventHandler.3
./usr/X11R6/man/man3/XtRemoveSignal.3
./usr/X11R6/man/man3/XtRemoveTimeOut.3
./usr/X11R6/man/man3/XtRemoveWorkProc.3
./usr/X11R6/man/man3/XtReservePropertyAtom.3
./usr/X11R6/man/man3/XtResizeWidget.3
./usr/X11R6/man/man3/XtResolvePathname.3
./usr/X11R6/man/man3/XtScreen.3
./usr/X11R6/man/man3/XtScreenDatabase.3
./usr/X11R6/man/man3/XtScreenOfObject.3
./usr/X11R6/man/man3/XtSendSelectionRequest.3
./usr/X11R6/man/man3/XtSessionGetToken.3
./usr/X11R6/man/man3/XtSessionReturnToken.3
./usr/X11R6/man/man3/XtSetArg.3
./usr/X11R6/man/man3/XtSetErrorHandler.3
./usr/X11R6/man/man3/XtSetErrorMsgHandler.3
./usr/X11R6/man/man3/XtSetEventDispatcher.3
./usr/X11R6/man/man3/XtSetKeyTranslator.3
./usr/X11R6/man/man3/XtSetKeyboardFocus.3
./usr/X11R6/man/man3/XtSetLanguageProc.3
./usr/X11R6/man/man3/XtSetMappedWhenManaged.3
./usr/X11R6/man/man3/XtSetMultiClickTime.3
./usr/X11R6/man/man3/XtSetSelectionParameters.3
./usr/X11R6/man/man3/XtSetSelectionTimeout.3
./usr/X11R6/man/man3/XtSetSensitive.3
./usr/X11R6/man/man3/XtSetSubvalues.3
./usr/X11R6/man/man3/XtSetTypeConverter.3
./usr/X11R6/man/man3/XtSetValues.3
./usr/X11R6/man/man3/XtSetWMColormapWindows.3
./usr/X11R6/man/man3/XtSetWarningHandler.3
./usr/X11R6/man/man3/XtSetWarningMsgHandler.3
./usr/X11R6/man/man3/XtStringConversionWarning.3
./usr/X11R6/man/man3/XtSuperclass.3
./usr/X11R6/man/man3/XtToolkitInitialize.3
./usr/X11R6/man/man3/XtToolkitThreadInitialize.3
./usr/X11R6/man/man3/XtTranslateCoords.3
./usr/X11R6/man/man3/XtTranslateKeycode.3
./usr/X11R6/man/man3/XtUngrabButton.3
./usr/X11R6/man/man3/XtUngrabKey.3
./usr/X11R6/man/man3/XtUngrabKeyboard.3
./usr/X11R6/man/man3/XtUngrabPointer.3
./usr/X11R6/man/man3/XtUninstallTranslations.3
./usr/X11R6/man/man3/XtUnmanageChild.3
./usr/X11R6/man/man3/XtUnmanageChildren.3
./usr/X11R6/man/man3/XtUnmapWidget.3
./usr/X11R6/man/man3/XtUnrealizeWidget.3
./usr/X11R6/man/man3/XtUnregisterDrawable.3
./usr/X11R6/man/man3/XtVaAppCreateShell.3
./usr/X11R6/man/man3/XtVaAppInitialize.3
./usr/X11R6/man/man3/XtVaCreateArgsList.3
./usr/X11R6/man/man3/XtVaCreateManagedWidget.3
./usr/X11R6/man/man3/XtVaCreatePopupShell.3
./usr/X11R6/man/man3/XtVaCreateWidget.3
./usr/X11R6/man/man3/XtVaGetApplicationResources.3
./usr/X11R6/man/man3/XtVaGetSubresources.3
./usr/X11R6/man/man3/XtVaGetSubvalues.3
./usr/X11R6/man/man3/XtVaGetValues.3
./usr/X11R6/man/man3/XtVaOpenApplication.3
./usr/X11R6/man/man3/XtVaSetSubvalues.3
./usr/X11R6/man/man3/XtVaSetValues.3
./usr/X11R6/man/man3/XtWarning.3
./usr/X11R6/man/man3/XtWarningMsg.3
./usr/X11R6/man/man3/XtWidgetToApplicationContext.3
./usr/X11R6/man/man3/XtWindow.3
./usr/X11R6/man/man3/XtWindowOfObject.3
./usr/X11R6/man/man3/XtWindowToWidget.3
./usr/X11R6/man/man3/Xutf8DrawImageString.3
./usr/X11R6/man/man3/Xutf8DrawString.3
./usr/X11R6/man/man3/Xutf8DrawText.3
./usr/X11R6/man/man3/Xutf8LookupString.3
./usr/X11R6/man/man3/Xutf8ResetIC.3
./usr/X11R6/man/man3/Xutf8SetWMProperties.3
./usr/X11R6/man/man3/Xutf8TextEscapement.3
./usr/X11R6/man/man3/Xutf8TextExtents.3
./usr/X11R6/man/man3/Xutf8TextListToTextProperty.3
./usr/X11R6/man/man3/Xutf8TextPerCharExtents.3
./usr/X11R6/man/man3/Xutf8TextPropertyToTextList.3
./usr/X11R6/man/man3/Xv.3
./usr/X11R6/man/man3/XvCreateImage.3
./usr/X11R6/man/man3/XvFreeAdaptorInfo.3
./usr/X11R6/man/man3/XvFreeEncodingInfo.3
./usr/X11R6/man/man3/XvGetPortAttribute.3
./usr/X11R6/man/man3/XvGetStill.3
./usr/X11R6/man/man3/XvGetVideo.3
./usr/X11R6/man/man3/XvGrabPort.3
./usr/X11R6/man/man3/XvListImageFormats.3
./usr/X11R6/man/man3/XvPortNotify.3
./usr/X11R6/man/man3/XvPutImage.3
./usr/X11R6/man/man3/XvPutStill.3
./usr/X11R6/man/man3/XvPutVideo.3
./usr/X11R6/man/man3/XvQueryAdaptors.3
./usr/X11R6/man/man3/XvQueryBestSize.3
./usr/X11R6/man/man3/XvQueryEncodings.3
./usr/X11R6/man/man3/XvQueryExtension.3
./usr/X11R6/man/man3/XvQueryPortAttributes.3
./usr/X11R6/man/man3/XvSelectPortNotify.3
./usr/X11R6/man/man3/XvSelectVideoNotify.3
./usr/X11R6/man/man3/XvSetPortAttribute.3
./usr/X11R6/man/man3/XvShmCreateImage.3
./usr/X11R6/man/man3/XvShmPutImage.3
./usr/X11R6/man/man3/XvStopVideo.3
./usr/X11R6/man/man3/XvUngrabPort.3
./usr/X11R6/man/man3/XvVideoNotify.3
./usr/X11R6/man/man3/XwcDrawImageString.3
./usr/X11R6/man/man3/XwcDrawString.3
./usr/X11R6/man/man3/XwcDrawText.3
./usr/X11R6/man/man3/XwcFreeStringList.3
./usr/X11R6/man/man3/XwcLookupString.3
./usr/X11R6/man/man3/XwcResetIC.3
./usr/X11R6/man/man3/XwcTextEscapement.3
./usr/X11R6/man/man3/XwcTextExtents.3
./usr/X11R6/man/man3/XwcTextListToTextProperty.3
./usr/X11R6/man/man3/XwcTextPerCharExtents.3
./usr/X11R6/man/man3/XwcTextPropertyToTextList.3
./usr/X11R6/man/man3/glAccum.3
./usr/X11R6/man/man3/glActiveTextureARB.3
./usr/X11R6/man/man3/glAlphaFunc.3
./usr/X11R6/man/man3/glAreTexturesResident.3
./usr/X11R6/man/man3/glArrayElement.3
./usr/X11R6/man/man3/glBegin.3
./usr/X11R6/man/man3/glBindTexture.3
./usr/X11R6/man/man3/glBitmap.3
./usr/X11R6/man/man3/glBlendColor.3
./usr/X11R6/man/man3/glBlendEquation.3
./usr/X11R6/man/man3/glBlendFunc.3
./usr/X11R6/man/man3/glCallList.3
./usr/X11R6/man/man3/glCallLists.3
./usr/X11R6/man/man3/glClear.3
./usr/X11R6/man/man3/glClearAccum.3
./usr/X11R6/man/man3/glClearColor.3
./usr/X11R6/man/man3/glClearDepth.3
./usr/X11R6/man/man3/glClearIndex.3
./usr/X11R6/man/man3/glClearStencil.3
./usr/X11R6/man/man3/glClientActiveTextureARB.3
./usr/X11R6/man/man3/glClipPlane.3
./usr/X11R6/man/man3/glColor.3
./usr/X11R6/man/man3/glColor3b.3
./usr/X11R6/man/man3/glColor3bv.3
./usr/X11R6/man/man3/glColor3d.3
./usr/X11R6/man/man3/glColor3dv.3
./usr/X11R6/man/man3/glColor3f.3
./usr/X11R6/man/man3/glColor3fv.3
./usr/X11R6/man/man3/glColor3i.3
./usr/X11R6/man/man3/glColor3iv.3
./usr/X11R6/man/man3/glColor3s.3
./usr/X11R6/man/man3/glColor3sv.3
./usr/X11R6/man/man3/glColor3ub.3
./usr/X11R6/man/man3/glColor3ubv.3
./usr/X11R6/man/man3/glColor3ui.3
./usr/X11R6/man/man3/glColor3uiv.3
./usr/X11R6/man/man3/glColor3us.3
./usr/X11R6/man/man3/glColor3usv.3
./usr/X11R6/man/man3/glColor4b.3
./usr/X11R6/man/man3/glColor4bv.3
./usr/X11R6/man/man3/glColor4d.3
./usr/X11R6/man/man3/glColor4dv.3
./usr/X11R6/man/man3/glColor4f.3
./usr/X11R6/man/man3/glColor4fv.3
./usr/X11R6/man/man3/glColor4i.3
./usr/X11R6/man/man3/glColor4iv.3
./usr/X11R6/man/man3/glColor4s.3
./usr/X11R6/man/man3/glColor4sv.3
./usr/X11R6/man/man3/glColor4ub.3
./usr/X11R6/man/man3/glColor4ubv.3
./usr/X11R6/man/man3/glColor4ui.3
./usr/X11R6/man/man3/glColor4uiv.3
./usr/X11R6/man/man3/glColor4us.3
./usr/X11R6/man/man3/glColor4usv.3
./usr/X11R6/man/man3/glColorMask.3
./usr/X11R6/man/man3/glColorMaterial.3
./usr/X11R6/man/man3/glColorPointer.3
./usr/X11R6/man/man3/glColorSubTable.3
./usr/X11R6/man/man3/glColorTable.3
./usr/X11R6/man/man3/glColorTableParameter.3
./usr/X11R6/man/man3/glColorTableParameterfv.3
./usr/X11R6/man/man3/glColorTableParameteriv.3
./usr/X11R6/man/man3/glConvolutionFilter1D.3
./usr/X11R6/man/man3/glConvolutionFilter2D.3
./usr/X11R6/man/man3/glConvolutionParameter.3
./usr/X11R6/man/man3/glCopyColorSubTable.3
./usr/X11R6/man/man3/glCopyColorTable.3
./usr/X11R6/man/man3/glCopyConvolutionFilter1D.3
./usr/X11R6/man/man3/glCopyConvolutionFilter2D.3
./usr/X11R6/man/man3/glCopyPixels.3
./usr/X11R6/man/man3/glCopyTexImage1D.3
./usr/X11R6/man/man3/glCopyTexImage2D.3
./usr/X11R6/man/man3/glCopyTexSubImage1D.3
./usr/X11R6/man/man3/glCopyTexSubImage2D.3
./usr/X11R6/man/man3/glCopyTexSubImage3D.3
./usr/X11R6/man/man3/glCullFace.3
./usr/X11R6/man/man3/glDeleteLists.3
./usr/X11R6/man/man3/glDeleteTextures.3
./usr/X11R6/man/man3/glDepthFunc.3
./usr/X11R6/man/man3/glDepthMask.3
./usr/X11R6/man/man3/glDepthRange.3
./usr/X11R6/man/man3/glDisable.3
./usr/X11R6/man/man3/glDisableClientState.3
./usr/X11R6/man/man3/glDrawArrays.3
./usr/X11R6/man/man3/glDrawBuffer.3
./usr/X11R6/man/man3/glDrawElements.3
./usr/X11R6/man/man3/glDrawPixels.3
./usr/X11R6/man/man3/glDrawRangeElements.3
./usr/X11R6/man/man3/glEdgeFlag.3
./usr/X11R6/man/man3/glEdgeFlagPointer.3
./usr/X11R6/man/man3/glEdgeFlagv.3
./usr/X11R6/man/man3/glEnable.3
./usr/X11R6/man/man3/glEnableClientState.3
./usr/X11R6/man/man3/glEnd.3
./usr/X11R6/man/man3/glEndList.3
./usr/X11R6/man/man3/glEvalCoord.3
./usr/X11R6/man/man3/glEvalCoord1d.3
./usr/X11R6/man/man3/glEvalCoord1dv.3
./usr/X11R6/man/man3/glEvalCoord1fv.3
./usr/X11R6/man/man3/glEvalCoord2d.3
./usr/X11R6/man/man3/glEvalCoord2dv.3
./usr/X11R6/man/man3/glEvalCoord2f.3
./usr/X11R6/man/man3/glEvalCoord2fv.3
./usr/X11R6/man/man3/glEvalMesh.3
./usr/X11R6/man/man3/glEvalMesh1.3
./usr/X11R6/man/man3/glEvalMesh2.3
./usr/X11R6/man/man3/glEvalPoint.3
./usr/X11R6/man/man3/glEvalPoint1.3
./usr/X11R6/man/man3/glEvalPoint2.3
./usr/X11R6/man/man3/glFeedbackBuffer.3
./usr/X11R6/man/man3/glFinish.3
./usr/X11R6/man/man3/glFlush.3
./usr/X11R6/man/man3/glFog.3
./usr/X11R6/man/man3/glFogf.3
./usr/X11R6/man/man3/glFogfv.3
./usr/X11R6/man/man3/glFogi.3
./usr/X11R6/man/man3/glFogiv.3
./usr/X11R6/man/man3/glFrontFace.3
./usr/X11R6/man/man3/glFrustum.3
./usr/X11R6/man/man3/glGenLists.3
./usr/X11R6/man/man3/glGenTextures.3
./usr/X11R6/man/man3/glGet.3
./usr/X11R6/man/man3/glGetBooleanv.3
./usr/X11R6/man/man3/glGetClipPlane.3
./usr/X11R6/man/man3/glGetColorTable.3
./usr/X11R6/man/man3/glGetColorTableParameter.3
./usr/X11R6/man/man3/glGetColorTableParameterfv.3
./usr/X11R6/man/man3/glGetColorTableParameteriv.3
./usr/X11R6/man/man3/glGetConvolutionFilter.3
./usr/X11R6/man/man3/glGetConvolutionParameter.3
./usr/X11R6/man/man3/glGetDoublev.3
./usr/X11R6/man/man3/glGetError.3
./usr/X11R6/man/man3/glGetFloatv.3
./usr/X11R6/man/man3/glGetHistogram.3
./usr/X11R6/man/man3/glGetHistogramParameter.3
./usr/X11R6/man/man3/glGetIntegerv.3
./usr/X11R6/man/man3/glGetLight.3
./usr/X11R6/man/man3/glGetLightfv.3
./usr/X11R6/man/man3/glGetLightiv.3
./usr/X11R6/man/man3/glGetMap.3
./usr/X11R6/man/man3/glGetMapdv.3
./usr/X11R6/man/man3/glGetMapfv.3
./usr/X11R6/man/man3/glGetMapiv.3
./usr/X11R6/man/man3/glGetMaterial.3
./usr/X11R6/man/man3/glGetMaterialfv.3
./usr/X11R6/man/man3/glGetMaterialiv.3
./usr/X11R6/man/man3/glGetMinmax.3
./usr/X11R6/man/man3/glGetMinmaxParameter.3
./usr/X11R6/man/man3/glGetPixelMap.3
./usr/X11R6/man/man3/glGetPixelMapfv.3
./usr/X11R6/man/man3/glGetPixelMapuiv.3
./usr/X11R6/man/man3/glGetPixelMapusv.3
./usr/X11R6/man/man3/glGetPointerv.3
./usr/X11R6/man/man3/glGetPolygonStipple.3
./usr/X11R6/man/man3/glGetSeparableFilter.3
./usr/X11R6/man/man3/glGetString.3
./usr/X11R6/man/man3/glGetTexEnv.3
./usr/X11R6/man/man3/glGetTexEnvfv.3
./usr/X11R6/man/man3/glGetTexEnviv.3
./usr/X11R6/man/man3/glGetTexGen.3
./usr/X11R6/man/man3/glGetTexGendv.3
./usr/X11R6/man/man3/glGetTexGenfv.3
./usr/X11R6/man/man3/glGetTexGeniv.3
./usr/X11R6/man/man3/glGetTexImage.3
./usr/X11R6/man/man3/glGetTexLevelParameter.3
./usr/X11R6/man/man3/glGetTexLevelParameterfv.3
./usr/X11R6/man/man3/glGetTexLevelParameteriv.3
./usr/X11R6/man/man3/glGetTexParameter.3
./usr/X11R6/man/man3/glGetTexParameterfv.3
./usr/X11R6/man/man3/glGetTexParameteriv.3
./usr/X11R6/man/man3/glHint.3
./usr/X11R6/man/man3/glHistogram.3
./usr/X11R6/man/man3/glIndex.3
./usr/X11R6/man/man3/glIndexMask.3
./usr/X11R6/man/man3/glIndexPointer.3
./usr/X11R6/man/man3/glIndexd.3
./usr/X11R6/man/man3/glIndexdv.3
./usr/X11R6/man/man3/glIndexf.3
./usr/X11R6/man/man3/glIndexfv.3
./usr/X11R6/man/man3/glIndexi.3
./usr/X11R6/man/man3/glIndexiv.3
./usr/X11R6/man/man3/glIndexs.3
./usr/X11R6/man/man3/glIndexsv.3
./usr/X11R6/man/man3/glIndexub.3
./usr/X11R6/man/man3/glIndexubv.3
./usr/X11R6/man/man3/glInitNames.3
./usr/X11R6/man/man3/glInterleavedArrays.3
./usr/X11R6/man/man3/glIsEnabled.3
./usr/X11R6/man/man3/glIsTexture.3
./usr/X11R6/man/man3/glIslist.3
./usr/X11R6/man/man3/glLight.3
./usr/X11R6/man/man3/glLightModel.3
./usr/X11R6/man/man3/glLightModelf.3
./usr/X11R6/man/man3/glLightModelfv.3
./usr/X11R6/man/man3/glLightModeli.3
./usr/X11R6/man/man3/glLightModeliv.3
./usr/X11R6/man/man3/glLightf.3
./usr/X11R6/man/man3/glLightfv.3
./usr/X11R6/man/man3/glLighti.3
./usr/X11R6/man/man3/glLightiv.3
./usr/X11R6/man/man3/glLineStipple.3
./usr/X11R6/man/man3/glLineWidth.3
./usr/X11R6/man/man3/glListBase.3
./usr/X11R6/man/man3/glLoadIdentity.3
./usr/X11R6/man/man3/glLoadMatrix.3
./usr/X11R6/man/man3/glLoadMatrixd.3
./usr/X11R6/man/man3/glLoadMatrixf.3
./usr/X11R6/man/man3/glLoadName.3
./usr/X11R6/man/man3/glLogicOp.3
./usr/X11R6/man/man3/glMap1.3
./usr/X11R6/man/man3/glMap1d.3
./usr/X11R6/man/man3/glMap1f.3
./usr/X11R6/man/man3/glMap2.3
./usr/X11R6/man/man3/glMap2d.3
./usr/X11R6/man/man3/glMap2f.3
./usr/X11R6/man/man3/glMapGrid.3
./usr/X11R6/man/man3/glMapGrid1d.3
./usr/X11R6/man/man3/glMapGrid1f.3
./usr/X11R6/man/man3/glMapGrid2d.3
./usr/X11R6/man/man3/glMapGrid2f.3
./usr/X11R6/man/man3/glMaterial.3
./usr/X11R6/man/man3/glMaterialf.3
./usr/X11R6/man/man3/glMaterialfv.3
./usr/X11R6/man/man3/glMateriali.3
./usr/X11R6/man/man3/glMaterialiv.3
./usr/X11R6/man/man3/glMatrixMode.3
./usr/X11R6/man/man3/glMinmax.3
./usr/X11R6/man/man3/glMultMatrix.3
./usr/X11R6/man/man3/glMultMatrixd.3
./usr/X11R6/man/man3/glMultMatrixf.3
./usr/X11R6/man/man3/glMultiTexCoord1dARB.3
./usr/X11R6/man/man3/glMultiTexCoord1dvARB.3
./usr/X11R6/man/man3/glMultiTexCoord1fARB.3
./usr/X11R6/man/man3/glMultiTexCoord1fvARB.3
./usr/X11R6/man/man3/glMultiTexCoord1iARB.3
./usr/X11R6/man/man3/glMultiTexCoord1ivARB.3
./usr/X11R6/man/man3/glMultiTexCoord1sARB.3
./usr/X11R6/man/man3/glMultiTexCoord1svARB.3
./usr/X11R6/man/man3/glMultiTexCoord2dARB.3
./usr/X11R6/man/man3/glMultiTexCoord2dvARB.3
./usr/X11R6/man/man3/glMultiTexCoord2fARB.3
./usr/X11R6/man/man3/glMultiTexCoord2fvARB.3
./usr/X11R6/man/man3/glMultiTexCoord2iARB.3
./usr/X11R6/man/man3/glMultiTexCoord2ivARB.3
./usr/X11R6/man/man3/glMultiTexCoord2sARB.3
./usr/X11R6/man/man3/glMultiTexCoord2svARB.3
./usr/X11R6/man/man3/glMultiTexCoord3dARB.3
./usr/X11R6/man/man3/glMultiTexCoord3dvARB.3
./usr/X11R6/man/man3/glMultiTexCoord3fARB.3
./usr/X11R6/man/man3/glMultiTexCoord3fvARB.3
./usr/X11R6/man/man3/glMultiTexCoord3iARB.3
./usr/X11R6/man/man3/glMultiTexCoord3ivARB.3
./usr/X11R6/man/man3/glMultiTexCoord3sARB.3
./usr/X11R6/man/man3/glMultiTexCoord3svARB.3
./usr/X11R6/man/man3/glMultiTexCoord4dARB.3
./usr/X11R6/man/man3/glMultiTexCoord4dvARB.3
./usr/X11R6/man/man3/glMultiTexCoord4fARB.3
./usr/X11R6/man/man3/glMultiTexCoord4fvARB.3
./usr/X11R6/man/man3/glMultiTexCoord4iARB.3
./usr/X11R6/man/man3/glMultiTexCoord4ivARB.3
./usr/X11R6/man/man3/glMultiTexCoord4sARB.3
./usr/X11R6/man/man3/glMultiTexCoord4svARB.3
./usr/X11R6/man/man3/glMultiTexCoordARB.3
./usr/X11R6/man/man3/glNewList.3
./usr/X11R6/man/man3/glNormal.3
./usr/X11R6/man/man3/glNormal3b.3
./usr/X11R6/man/man3/glNormal3bv.3
./usr/X11R6/man/man3/glNormal3d.3
./usr/X11R6/man/man3/glNormal3dv.3
./usr/X11R6/man/man3/glNormal3f.3
./usr/X11R6/man/man3/glNormal3fv.3
./usr/X11R6/man/man3/glNormal3i.3
./usr/X11R6/man/man3/glNormal3iv.3
./usr/X11R6/man/man3/glNormal3s.3
./usr/X11R6/man/man3/glNormal3sv.3
./usr/X11R6/man/man3/glNormalPointer.3
./usr/X11R6/man/man3/glOrtho.3
./usr/X11R6/man/man3/glPassThrough.3
./usr/X11R6/man/man3/glPixelMap.3
./usr/X11R6/man/man3/glPixelMapfv.3
./usr/X11R6/man/man3/glPixelMapuiv.3
./usr/X11R6/man/man3/glPixelMapusv.3
./usr/X11R6/man/man3/glPixelStore.3
./usr/X11R6/man/man3/glPixelStoref.3
./usr/X11R6/man/man3/glPixelStorei.3
./usr/X11R6/man/man3/glPixelTransfer.3
./usr/X11R6/man/man3/glPixelTransferf.3
./usr/X11R6/man/man3/glPixelTransferi.3
./usr/X11R6/man/man3/glPixelZoom.3
./usr/X11R6/man/man3/glPointSize.3
./usr/X11R6/man/man3/glPolygonMode.3
./usr/X11R6/man/man3/glPolygonOffset.3
./usr/X11R6/man/man3/glPolygonStipple.3
./usr/X11R6/man/man3/glPopAttrib.3
./usr/X11R6/man/man3/glPopClientAttrib.3
./usr/X11R6/man/man3/glPopMatrix.3
./usr/X11R6/man/man3/glPopName.3
./usr/X11R6/man/man3/glPrioritizeTextures.3
./usr/X11R6/man/man3/glPushAttrib.3
./usr/X11R6/man/man3/glPushClientAttrib.3
./usr/X11R6/man/man3/glPushMatrix.3
./usr/X11R6/man/man3/glPushName.3
./usr/X11R6/man/man3/glRasterPos.3
./usr/X11R6/man/man3/glRasterPos2d.3
./usr/X11R6/man/man3/glRasterPos2dv.3
./usr/X11R6/man/man3/glRasterPos2f.3
./usr/X11R6/man/man3/glRasterPos2fv.3
./usr/X11R6/man/man3/glRasterPos2i.3
./usr/X11R6/man/man3/glRasterPos2iv.3
./usr/X11R6/man/man3/glRasterPos2s.3
./usr/X11R6/man/man3/glRasterPos2sv.3
./usr/X11R6/man/man3/glRasterPos3d.3
./usr/X11R6/man/man3/glRasterPos3dv.3
./usr/X11R6/man/man3/glRasterPos3f.3
./usr/X11R6/man/man3/glRasterPos3fv.3
./usr/X11R6/man/man3/glRasterPos3i.3
./usr/X11R6/man/man3/glRasterPos3iv.3
./usr/X11R6/man/man3/glRasterPos3s.3
./usr/X11R6/man/man3/glRasterPos3sv.3
./usr/X11R6/man/man3/glRasterPos4d.3
./usr/X11R6/man/man3/glRasterPos4dv.3
./usr/X11R6/man/man3/glRasterPos4f.3
./usr/X11R6/man/man3/glRasterPos4fv.3
./usr/X11R6/man/man3/glRasterPos4i.3
./usr/X11R6/man/man3/glRasterPos4iv.3
./usr/X11R6/man/man3/glRasterPos4s.3
./usr/X11R6/man/man3/glRasterPos4sv.3
./usr/X11R6/man/man3/glReadBuffer.3
./usr/X11R6/man/man3/glReadPixels.3
./usr/X11R6/man/man3/glRect.3
./usr/X11R6/man/man3/glRectd.3
./usr/X11R6/man/man3/glRectdv.3
./usr/X11R6/man/man3/glRectf.3
./usr/X11R6/man/man3/glRectfv.3
./usr/X11R6/man/man3/glRecti.3
./usr/X11R6/man/man3/glRectiv.3
./usr/X11R6/man/man3/glRects.3
./usr/X11R6/man/man3/glRectsv.3
./usr/X11R6/man/man3/glRenderMode.3
./usr/X11R6/man/man3/glResetHistogram.3
./usr/X11R6/man/man3/glResetMinmax.3
./usr/X11R6/man/man3/glRotate.3
./usr/X11R6/man/man3/glRotated.3
./usr/X11R6/man/man3/glRotatef.3
./usr/X11R6/man/man3/glScale.3
./usr/X11R6/man/man3/glScaled.3
./usr/X11R6/man/man3/glScalef.3
./usr/X11R6/man/man3/glScissor.3
./usr/X11R6/man/man3/glSelectBuffer.3
./usr/X11R6/man/man3/glSeparableFilter2D.3
./usr/X11R6/man/man3/glShadeModel.3
./usr/X11R6/man/man3/glStencilFunc.3
./usr/X11R6/man/man3/glStencilMask.3
./usr/X11R6/man/man3/glStencilOp.3
./usr/X11R6/man/man3/glTexCoord.3
./usr/X11R6/man/man3/glTexCoord1d.3
./usr/X11R6/man/man3/glTexCoord1dv.3
./usr/X11R6/man/man3/glTexCoord1f.3
./usr/X11R6/man/man3/glTexCoord1fv.3
./usr/X11R6/man/man3/glTexCoord1i.3
./usr/X11R6/man/man3/glTexCoord1iv.3
./usr/X11R6/man/man3/glTexCoord1s.3
./usr/X11R6/man/man3/glTexCoord1sv.3
./usr/X11R6/man/man3/glTexCoord2d.3
./usr/X11R6/man/man3/glTexCoord2dv.3
./usr/X11R6/man/man3/glTexCoord2f.3
./usr/X11R6/man/man3/glTexCoord2fv.3
./usr/X11R6/man/man3/glTexCoord2i.3
./usr/X11R6/man/man3/glTexCoord2iv.3
./usr/X11R6/man/man3/glTexCoord2s.3
./usr/X11R6/man/man3/glTexCoord2sv.3
./usr/X11R6/man/man3/glTexCoord3d.3
./usr/X11R6/man/man3/glTexCoord3dv.3
./usr/X11R6/man/man3/glTexCoord3f.3
./usr/X11R6/man/man3/glTexCoord3fv.3
./usr/X11R6/man/man3/glTexCoord3i.3
./usr/X11R6/man/man3/glTexCoord3iv.3
./usr/X11R6/man/man3/glTexCoord3s.3
./usr/X11R6/man/man3/glTexCoord3sv.3
./usr/X11R6/man/man3/glTexCoord4d.3
./usr/X11R6/man/man3/glTexCoord4dv.3
./usr/X11R6/man/man3/glTexCoord4f.3
./usr/X11R6/man/man3/glTexCoord4fv.3
./usr/X11R6/man/man3/glTexCoord4i.3
./usr/X11R6/man/man3/glTexCoord4iv.3
./usr/X11R6/man/man3/glTexCoord4s.3
./usr/X11R6/man/man3/glTexCoord4sv.3
./usr/X11R6/man/man3/glTexCoordPointer.3
./usr/X11R6/man/man3/glTexEnv.3
./usr/X11R6/man/man3/glTexEnvf.3
./usr/X11R6/man/man3/glTexEnvfv.3
./usr/X11R6/man/man3/glTexEnvi.3
./usr/X11R6/man/man3/glTexEnviv.3
./usr/X11R6/man/man3/glTexGen.3
./usr/X11R6/man/man3/glTexGend.3
./usr/X11R6/man/man3/glTexGendv.3
./usr/X11R6/man/man3/glTexGenf.3
./usr/X11R6/man/man3/glTexGenfv.3
./usr/X11R6/man/man3/glTexGeni.3
./usr/X11R6/man/man3/glTexGeniv.3
./usr/X11R6/man/man3/glTexImage1D.3
./usr/X11R6/man/man3/glTexImage2D.3
./usr/X11R6/man/man3/glTexImage3D.3
./usr/X11R6/man/man3/glTexParameter.3
./usr/X11R6/man/man3/glTexParameterf.3
./usr/X11R6/man/man3/glTexParameterfv.3
./usr/X11R6/man/man3/glTexParameteri.3
./usr/X11R6/man/man3/glTexParameteriv.3
./usr/X11R6/man/man3/glTexSubImage1D.3
./usr/X11R6/man/man3/glTexSubImage2D.3
./usr/X11R6/man/man3/glTexSubImage3D.3
./usr/X11R6/man/man3/glTranslate.3
./usr/X11R6/man/man3/glTranslated.3
./usr/X11R6/man/man3/glTranslatef.3
./usr/X11R6/man/man3/glVertex.3
./usr/X11R6/man/man3/glVertex2d.3
./usr/X11R6/man/man3/glVertex2dv.3
./usr/X11R6/man/man3/glVertex2f.3
./usr/X11R6/man/man3/glVertex2fv.3
./usr/X11R6/man/man3/glVertex2i.3
./usr/X11R6/man/man3/glVertex2iv.3
./usr/X11R6/man/man3/glVertex2s.3
./usr/X11R6/man/man3/glVertex2sv.3
./usr/X11R6/man/man3/glVertex3d.3
./usr/X11R6/man/man3/glVertex3dv.3
./usr/X11R6/man/man3/glVertex3f.3
./usr/X11R6/man/man3/glVertex3fv.3
./usr/X11R6/man/man3/glVertex3i.3
./usr/X11R6/man/man3/glVertex3iv.3
./usr/X11R6/man/man3/glVertex3s.3
./usr/X11R6/man/man3/glVertex3sv.3
./usr/X11R6/man/man3/glVertex4d.3
./usr/X11R6/man/man3/glVertex4dv.3
./usr/X11R6/man/man3/glVertex4f.3
./usr/X11R6/man/man3/glVertex4fv.3
./usr/X11R6/man/man3/glVertex4i.3
./usr/X11R6/man/man3/glVertex4iv.3
./usr/X11R6/man/man3/glVertex4s.3
./usr/X11R6/man/man3/glVertex4sv.3
./usr/X11R6/man/man3/glVertexPointer.3
./usr/X11R6/man/man3/glViewport.3
./usr/X11R6/man/man3/glXChooseVisual.3
./usr/X11R6/man/man3/glXCopyContext.3
./usr/X11R6/man/man3/glXCreateContext.3
./usr/X11R6/man/man3/glXCreateGLXPixmap.3
./usr/X11R6/man/man3/glXDestroyContext.3
./usr/X11R6/man/man3/glXDestroyGLXPixmap.3
./usr/X11R6/man/man3/glXFreeContextEXT.3
./usr/X11R6/man/man3/glXGetClientString.3
./usr/X11R6/man/man3/glXGetConfig.3
./usr/X11R6/man/man3/glXGetContextIDEXT.3
./usr/X11R6/man/man3/glXGetCurrentContext.3
./usr/X11R6/man/man3/glXGetCurrentDisplay.3
./usr/X11R6/man/man3/glXGetCurrentDrawable.3
./usr/X11R6/man/man3/glXImportContextEXT.3
./usr/X11R6/man/man3/glXIntro.3
./usr/X11R6/man/man3/glXIsDirect.3
./usr/X11R6/man/man3/glXMakeCurrent.3
./usr/X11R6/man/man3/glXQueryContextInfoEXT.3
./usr/X11R6/man/man3/glXQueryExtension.3
./usr/X11R6/man/man3/glXQueryExtensionsString.3
./usr/X11R6/man/man3/glXQueryServerString.3
./usr/X11R6/man/man3/glXQueryVersion.3
./usr/X11R6/man/man3/glXSwapBuffers.3
./usr/X11R6/man/man3/glXUseXFont.3
./usr/X11R6/man/man3/glXWaitGL.3
./usr/X11R6/man/man3/glXWaitX.3
./usr/X11R6/man/man3/gluBeginCurve.3
./usr/X11R6/man/man3/gluBeginPolygon.3
./usr/X11R6/man/man3/gluBeginSurface.3
./usr/X11R6/man/man3/gluBeginTrim.3
./usr/X11R6/man/man3/gluBuild1DMipmaps.3
./usr/X11R6/man/man3/gluBuild2DMipmaps.3
./usr/X11R6/man/man3/gluCylinder.3
./usr/X11R6/man/man3/gluDeleteNurbsRenderer.3
./usr/X11R6/man/man3/gluDeleteQuadric.3
./usr/X11R6/man/man3/gluDeleteTess.3
./usr/X11R6/man/man3/gluDisk.3
./usr/X11R6/man/man3/gluEndCurve.3
./usr/X11R6/man/man3/gluEndPolygon.3
./usr/X11R6/man/man3/gluEndSurface.3
./usr/X11R6/man/man3/gluEndTrim.3
./usr/X11R6/man/man3/gluErrorString.3
./usr/X11R6/man/man3/gluGetNurbsProperty.3
./usr/X11R6/man/man3/gluGetString.3
./usr/X11R6/man/man3/gluGetTessProperty.3
./usr/X11R6/man/man3/gluLoadSamplingMatrices.3
./usr/X11R6/man/man3/gluLookAt.3
./usr/X11R6/man/man3/gluNewNurbsRenderer.3
./usr/X11R6/man/man3/gluNewQuadric.3
./usr/X11R6/man/man3/gluNewTess.3
./usr/X11R6/man/man3/gluNextContour.3
./usr/X11R6/man/man3/gluNurbsCallback.3
./usr/X11R6/man/man3/gluNurbsCallbackDataEXT.3
./usr/X11R6/man/man3/gluNurbsCurve.3
./usr/X11R6/man/man3/gluNurbsProperty.3
./usr/X11R6/man/man3/gluNurbsSurface.3
./usr/X11R6/man/man3/gluOrtho2D.3
./usr/X11R6/man/man3/gluPartialDisk.3
./usr/X11R6/man/man3/gluPerspective.3
./usr/X11R6/man/man3/gluPickMatrix.3
./usr/X11R6/man/man3/gluProject.3
./usr/X11R6/man/man3/gluPwlCurve.3
./usr/X11R6/man/man3/gluQuadricCallback.3
./usr/X11R6/man/man3/gluQuadricDrawStyle.3
./usr/X11R6/man/man3/gluQuadricNormals.3
./usr/X11R6/man/man3/gluQuadricOrientation.3
./usr/X11R6/man/man3/gluQuadricTexture.3
./usr/X11R6/man/man3/gluScaleImage.3
./usr/X11R6/man/man3/gluSphere.3
./usr/X11R6/man/man3/gluTessBeginContour.3
./usr/X11R6/man/man3/gluTessBeginPolygon.3
./usr/X11R6/man/man3/gluTessCallback.3
./usr/X11R6/man/man3/gluTessEndContour.3
./usr/X11R6/man/man3/gluTessEndPolygon.3
./usr/X11R6/man/man3/gluTessNormal.3
./usr/X11R6/man/man3/gluTessProperty.3
./usr/X11R6/man/man3/gluTessVertex.3
./usr/X11R6/man/man3/gluUnProject.3
./usr/X11R6/man/man3/shapelib.3
./usr/X11R6/man/man3/synclib.3
./usr/X11R6/man/man3/xtest1.3
./usr/X11R6/man/man3/xtrans.3
./usr/X11R6/man/man5/Compose.5
./usr/X11R6/man/man5/XCompose.5
./usr/X11R6/man/man5/cwmrc.5
./usr/X11R6/man/man5/fonts-conf.5
./usr/X11R6/man/man7/Consortium.7
./usr/X11R6/man/man7/Standards.7
./usr/X11R6/man/man7/X.7
./usr/X11R6/man/man7/XKB-Config.7
./usr/X11R6/man/man7/XKB-Enhancing.7
./usr/X11R6/man/man7/XOrgFoundation.7
./usr/X11R6/man/man7/XProjectTeam.7
./usr/X11R6/man/man7/Xsecurity.7
./usr/X11R6/man/man7/fonts.7
./usr/X11R6/man/man7/xkeyboard-config.7
./usr/X11R6/share/X11/XErrorDB
./usr/X11R6/share/X11/locale
./usr/X11R6/share/X11/locale/C
./usr/X11R6/share/X11/locale/C/Compose
./usr/X11R6/share/X11/locale/C/XI18N_OBJS
./usr/X11R6/share/X11/locale/C/XLC_LOCALE
./usr/X11R6/share/X11/locale/am_ET.UTF-8
./usr/X11R6/share/X11/locale/am_ET.UTF-8/Compose
./usr/X11R6/share/X11/locale/am_ET.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/am_ET.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/armscii-8
./usr/X11R6/share/X11/locale/armscii-8/Compose
./usr/X11R6/share/X11/locale/armscii-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/armscii-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/compose.dir
./usr/X11R6/share/X11/locale/cs_CZ.UTF-8
./usr/X11R6/share/X11/locale/cs_CZ.UTF-8/Compose
./usr/X11R6/share/X11/locale/cs_CZ.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/cs_CZ.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/el_GR.UTF-8
./usr/X11R6/share/X11/locale/el_GR.UTF-8/Compose
./usr/X11R6/share/X11/locale/el_GR.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/el_GR.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/en_US.UTF-8
./usr/X11R6/share/X11/locale/en_US.UTF-8/Compose
./usr/X11R6/share/X11/locale/en_US.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/en_US.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/fi_FI.UTF-8
./usr/X11R6/share/X11/locale/fi_FI.UTF-8/Compose
./usr/X11R6/share/X11/locale/fi_FI.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/fi_FI.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/georgian-academy
./usr/X11R6/share/X11/locale/georgian-academy/Compose
./usr/X11R6/share/X11/locale/georgian-academy/XI18N_OBJS
./usr/X11R6/share/X11/locale/georgian-academy/XLC_LOCALE
./usr/X11R6/share/X11/locale/georgian-ps
./usr/X11R6/share/X11/locale/georgian-ps/Compose
./usr/X11R6/share/X11/locale/georgian-ps/XI18N_OBJS
./usr/X11R6/share/X11/locale/georgian-ps/XLC_LOCALE
./usr/X11R6/share/X11/locale/ibm-cp1133
./usr/X11R6/share/X11/locale/ibm-cp1133/Compose
./usr/X11R6/share/X11/locale/ibm-cp1133/XI18N_OBJS
./usr/X11R6/share/X11/locale/ibm-cp1133/XLC_LOCALE
./usr/X11R6/share/X11/locale/iscii-dev
./usr/X11R6/share/X11/locale/iscii-dev/Compose
./usr/X11R6/share/X11/locale/iscii-dev/XI18N_OBJS
./usr/X11R6/share/X11/locale/iscii-dev/XLC_LOCALE
./usr/X11R6/share/X11/locale/isiri-3342
./usr/X11R6/share/X11/locale/isiri-3342/Compose
./usr/X11R6/share/X11/locale/isiri-3342/XI18N_OBJS
./usr/X11R6/share/X11/locale/isiri-3342/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-1
./usr/X11R6/share/X11/locale/iso8859-1/Compose
./usr/X11R6/share/X11/locale/iso8859-1/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-1/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-10
./usr/X11R6/share/X11/locale/iso8859-10/Compose
./usr/X11R6/share/X11/locale/iso8859-10/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-10/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-11
./usr/X11R6/share/X11/locale/iso8859-11/Compose
./usr/X11R6/share/X11/locale/iso8859-11/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-11/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-13
./usr/X11R6/share/X11/locale/iso8859-13/Compose
./usr/X11R6/share/X11/locale/iso8859-13/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-13/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-14
./usr/X11R6/share/X11/locale/iso8859-14/Compose
./usr/X11R6/share/X11/locale/iso8859-14/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-14/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-15
./usr/X11R6/share/X11/locale/iso8859-15/Compose
./usr/X11R6/share/X11/locale/iso8859-15/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-15/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-2
./usr/X11R6/share/X11/locale/iso8859-2/Compose
./usr/X11R6/share/X11/locale/iso8859-2/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-2/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-3
./usr/X11R6/share/X11/locale/iso8859-3/Compose
./usr/X11R6/share/X11/locale/iso8859-3/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-3/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-4
./usr/X11R6/share/X11/locale/iso8859-4/Compose
./usr/X11R6/share/X11/locale/iso8859-4/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-4/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-5
./usr/X11R6/share/X11/locale/iso8859-5/Compose
./usr/X11R6/share/X11/locale/iso8859-5/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-5/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-6
./usr/X11R6/share/X11/locale/iso8859-6/Compose
./usr/X11R6/share/X11/locale/iso8859-6/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-6/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-7
./usr/X11R6/share/X11/locale/iso8859-7/Compose
./usr/X11R6/share/X11/locale/iso8859-7/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-7/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-8
./usr/X11R6/share/X11/locale/iso8859-8/Compose
./usr/X11R6/share/X11/locale/iso8859-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-9
./usr/X11R6/share/X11/locale/iso8859-9/Compose
./usr/X11R6/share/X11/locale/iso8859-9/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-9/XLC_LOCALE
./usr/X11R6/share/X11/locale/iso8859-9e
./usr/X11R6/share/X11/locale/iso8859-9e/Compose
./usr/X11R6/share/X11/locale/iso8859-9e/XI18N_OBJS
./usr/X11R6/share/X11/locale/iso8859-9e/XLC_LOCALE
./usr/X11R6/share/X11/locale/ja
./usr/X11R6/share/X11/locale/ja.JIS
./usr/X11R6/share/X11/locale/ja.JIS/Compose
./usr/X11R6/share/X11/locale/ja.JIS/XI18N_OBJS
./usr/X11R6/share/X11/locale/ja.JIS/XLC_LOCALE
./usr/X11R6/share/X11/locale/ja.SJIS
./usr/X11R6/share/X11/locale/ja.SJIS/Compose
./usr/X11R6/share/X11/locale/ja.SJIS/XI18N_OBJS
./usr/X11R6/share/X11/locale/ja.SJIS/XLC_LOCALE
./usr/X11R6/share/X11/locale/ja/Compose
./usr/X11R6/share/X11/locale/ja/XI18N_OBJS
./usr/X11R6/share/X11/locale/ja/XLC_LOCALE
./usr/X11R6/share/X11/locale/ja_JP.UTF-8
./usr/X11R6/share/X11/locale/ja_JP.UTF-8/Compose
./usr/X11R6/share/X11/locale/ja_JP.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/ja_JP.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/km_KH.UTF-8
./usr/X11R6/share/X11/locale/km_KH.UTF-8/Compose
./usr/X11R6/share/X11/locale/km_KH.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/km_KH.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/ko
./usr/X11R6/share/X11/locale/ko/Compose
./usr/X11R6/share/X11/locale/ko/XI18N_OBJS
./usr/X11R6/share/X11/locale/ko/XLC_LOCALE
./usr/X11R6/share/X11/locale/ko_KR.UTF-8
./usr/X11R6/share/X11/locale/ko_KR.UTF-8/Compose
./usr/X11R6/share/X11/locale/ko_KR.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/ko_KR.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/koi8-c
./usr/X11R6/share/X11/locale/koi8-c/Compose
./usr/X11R6/share/X11/locale/koi8-c/XI18N_OBJS
./usr/X11R6/share/X11/locale/koi8-c/XLC_LOCALE
./usr/X11R6/share/X11/locale/koi8-r
./usr/X11R6/share/X11/locale/koi8-r/Compose
./usr/X11R6/share/X11/locale/koi8-r/XI18N_OBJS
./usr/X11R6/share/X11/locale/koi8-r/XLC_LOCALE
./usr/X11R6/share/X11/locale/koi8-u
./usr/X11R6/share/X11/locale/koi8-u/Compose
./usr/X11R6/share/X11/locale/koi8-u/XI18N_OBJS
./usr/X11R6/share/X11/locale/koi8-u/XLC_LOCALE
./usr/X11R6/share/X11/locale/locale.alias
./usr/X11R6/share/X11/locale/locale.dir
./usr/X11R6/share/X11/locale/microsoft-cp1251
./usr/X11R6/share/X11/locale/microsoft-cp1251/Compose
./usr/X11R6/share/X11/locale/microsoft-cp1251/XI18N_OBJS
./usr/X11R6/share/X11/locale/microsoft-cp1251/XLC_LOCALE
./usr/X11R6/share/X11/locale/microsoft-cp1255
./usr/X11R6/share/X11/locale/microsoft-cp1255/Compose
./usr/X11R6/share/X11/locale/microsoft-cp1255/XI18N_OBJS
./usr/X11R6/share/X11/locale/microsoft-cp1255/XLC_LOCALE
./usr/X11R6/share/X11/locale/microsoft-cp1256
./usr/X11R6/share/X11/locale/microsoft-cp1256/Compose
./usr/X11R6/share/X11/locale/microsoft-cp1256/XI18N_OBJS
./usr/X11R6/share/X11/locale/microsoft-cp1256/XLC_LOCALE
./usr/X11R6/share/X11/locale/mulelao-1
./usr/X11R6/share/X11/locale/mulelao-1/Compose
./usr/X11R6/share/X11/locale/mulelao-1/XI18N_OBJS
./usr/X11R6/share/X11/locale/mulelao-1/XLC_LOCALE
./usr/X11R6/share/X11/locale/nokhchi-1
./usr/X11R6/share/X11/locale/nokhchi-1/Compose
./usr/X11R6/share/X11/locale/nokhchi-1/XI18N_OBJS
./usr/X11R6/share/X11/locale/nokhchi-1/XLC_LOCALE
./usr/X11R6/share/X11/locale/pt_BR.UTF-8
./usr/X11R6/share/X11/locale/pt_BR.UTF-8/Compose
./usr/X11R6/share/X11/locale/pt_BR.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/pt_BR.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/pt_PT.UTF-8
./usr/X11R6/share/X11/locale/pt_PT.UTF-8/Compose
./usr/X11R6/share/X11/locale/pt_PT.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/pt_PT.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/ru_RU.UTF-8
./usr/X11R6/share/X11/locale/ru_RU.UTF-8/Compose
./usr/X11R6/share/X11/locale/ru_RU.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/ru_RU.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/sr_RS.UTF-8
./usr/X11R6/share/X11/locale/sr_RS.UTF-8/Compose
./usr/X11R6/share/X11/locale/sr_RS.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/sr_RS.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/tatar-cyr
./usr/X11R6/share/X11/locale/tatar-cyr/Compose
./usr/X11R6/share/X11/locale/tatar-cyr/XI18N_OBJS
./usr/X11R6/share/X11/locale/tatar-cyr/XLC_LOCALE
./usr/X11R6/share/X11/locale/th_TH
./usr/X11R6/share/X11/locale/th_TH.UTF-8
./usr/X11R6/share/X11/locale/th_TH.UTF-8/Compose
./usr/X11R6/share/X11/locale/th_TH.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/th_TH.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/th_TH/Compose
./usr/X11R6/share/X11/locale/th_TH/XI18N_OBJS
./usr/X11R6/share/X11/locale/th_TH/XLC_LOCALE
./usr/X11R6/share/X11/locale/tscii-0
./usr/X11R6/share/X11/locale/tscii-0/Compose
./usr/X11R6/share/X11/locale/tscii-0/XI18N_OBJS
./usr/X11R6/share/X11/locale/tscii-0/XLC_LOCALE
./usr/X11R6/share/X11/locale/vi_VN.tcvn
./usr/X11R6/share/X11/locale/vi_VN.tcvn/Compose
./usr/X11R6/share/X11/locale/vi_VN.tcvn/XI18N_OBJS
./usr/X11R6/share/X11/locale/vi_VN.tcvn/XLC_LOCALE
./usr/X11R6/share/X11/locale/vi_VN.viscii
./usr/X11R6/share/X11/locale/vi_VN.viscii/Compose
./usr/X11R6/share/X11/locale/vi_VN.viscii/XI18N_OBJS
./usr/X11R6/share/X11/locale/vi_VN.viscii/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_CN
./usr/X11R6/share/X11/locale/zh_CN.UTF-8
./usr/X11R6/share/X11/locale/zh_CN.UTF-8/Compose
./usr/X11R6/share/X11/locale/zh_CN.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_CN.gb18030
./usr/X11R6/share/X11/locale/zh_CN.gb18030/Compose
./usr/X11R6/share/X11/locale/zh_CN.gb18030/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_CN.gb18030/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_CN.gbk
./usr/X11R6/share/X11/locale/zh_CN.gbk/Compose
./usr/X11R6/share/X11/locale/zh_CN.gbk/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_CN.gbk/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_CN/Compose
./usr/X11R6/share/X11/locale/zh_CN/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_CN/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_HK.UTF-8
./usr/X11R6/share/X11/locale/zh_HK.UTF-8/Compose
./usr/X11R6/share/X11/locale/zh_HK.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_HK.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_HK.big5
./usr/X11R6/share/X11/locale/zh_HK.big5/Compose
./usr/X11R6/share/X11/locale/zh_HK.big5/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_HK.big5/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_HK.big5hkscs
./usr/X11R6/share/X11/locale/zh_HK.big5hkscs/Compose
./usr/X11R6/share/X11/locale/zh_HK.big5hkscs/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_HK.big5hkscs/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_TW
./usr/X11R6/share/X11/locale/zh_TW.UTF-8
./usr/X11R6/share/X11/locale/zh_TW.UTF-8/Compose
./usr/X11R6/share/X11/locale/zh_TW.UTF-8/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_TW.UTF-8/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_TW.big5
./usr/X11R6/share/X11/locale/zh_TW.big5/Compose
./usr/X11R6/share/X11/locale/zh_TW.big5/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_TW.big5/XLC_LOCALE
./usr/X11R6/share/X11/locale/zh_TW/Compose
./usr/X11R6/share/X11/locale/zh_TW/XI18N_OBJS
./usr/X11R6/share/X11/locale/zh_TW/XLC_LOCALE
./usr/X11R6/share/X11/rgb.txt
./usr/X11R6/share/X11/xkb
./usr/X11R6/share/X11/xkb/compat
./usr/X11R6/share/X11/xkb/compat/README
./usr/X11R6/share/X11/xkb/compat/accessx
./usr/X11R6/share/X11/xkb/compat/basic
./usr/X11R6/share/X11/xkb/compat/caps
./usr/X11R6/share/X11/xkb/compat/complete
./usr/X11R6/share/X11/xkb/compat/iso9995
./usr/X11R6/share/X11/xkb/compat/japan
./usr/X11R6/share/X11/xkb/compat/ledcaps
./usr/X11R6/share/X11/xkb/compat/lednum
./usr/X11R6/share/X11/xkb/compat/ledscroll
./usr/X11R6/share/X11/xkb/compat/level5
./usr/X11R6/share/X11/xkb/compat/misc
./usr/X11R6/share/X11/xkb/compat/mousekeys
./usr/X11R6/share/X11/xkb/compat/olpc
./usr/X11R6/share/X11/xkb/compat/pc
./usr/X11R6/share/X11/xkb/compat/pc98
./usr/X11R6/share/X11/xkb/compat/xfree86
./usr/X11R6/share/X11/xkb/compat/xtest
./usr/X11R6/share/X11/xkb/geometry
./usr/X11R6/share/X11/xkb/geometry/README
./usr/X11R6/share/X11/xkb/geometry/amiga
./usr/X11R6/share/X11/xkb/geometry/ataritt
./usr/X11R6/share/X11/xkb/geometry/chicony
./usr/X11R6/share/X11/xkb/geometry/dell
./usr/X11R6/share/X11/xkb/geometry/digital_vndr
./usr/X11R6/share/X11/xkb/geometry/digital_vndr/lk
./usr/X11R6/share/X11/xkb/geometry/digital_vndr/pc
./usr/X11R6/share/X11/xkb/geometry/digital_vndr/unix
./usr/X11R6/share/X11/xkb/geometry/everex
./usr/X11R6/share/X11/xkb/geometry/fujitsu
./usr/X11R6/share/X11/xkb/geometry/hhk
./usr/X11R6/share/X11/xkb/geometry/hp
./usr/X11R6/share/X11/xkb/geometry/keytronic
./usr/X11R6/share/X11/xkb/geometry/kinesis
./usr/X11R6/share/X11/xkb/geometry/macintosh
./usr/X11R6/share/X11/xkb/geometry/microsoft
./usr/X11R6/share/X11/xkb/geometry/nec
./usr/X11R6/share/X11/xkb/geometry/nokia
./usr/X11R6/share/X11/xkb/geometry/northgate
./usr/X11R6/share/X11/xkb/geometry/pc
./usr/X11R6/share/X11/xkb/geometry/sanwa
./usr/X11R6/share/X11/xkb/geometry/sgi_vndr
./usr/X11R6/share/X11/xkb/geometry/sgi_vndr/O2
./usr/X11R6/share/X11/xkb/geometry/sgi_vndr/indigo
./usr/X11R6/share/X11/xkb/geometry/sgi_vndr/indy
./usr/X11R6/share/X11/xkb/geometry/sony
./usr/X11R6/share/X11/xkb/geometry/sun
./usr/X11R6/share/X11/xkb/geometry/teck
./usr/X11R6/share/X11/xkb/geometry/thinkpad
./usr/X11R6/share/X11/xkb/geometry/typematrix
./usr/X11R6/share/X11/xkb/geometry/winbook
./usr/X11R6/share/X11/xkb/keycodes
./usr/X11R6/share/X11/xkb/keycodes/README
./usr/X11R6/share/X11/xkb/keycodes/aliases
./usr/X11R6/share/X11/xkb/keycodes/amiga
./usr/X11R6/share/X11/xkb/keycodes/ataritt
./usr/X11R6/share/X11/xkb/keycodes/digital_vndr
./usr/X11R6/share/X11/xkb/keycodes/digital_vndr/lk
./usr/X11R6/share/X11/xkb/keycodes/digital_vndr/pc
./usr/X11R6/share/X11/xkb/keycodes/empty
./usr/X11R6/share/X11/xkb/keycodes/evdev
./usr/X11R6/share/X11/xkb/keycodes/fujitsu
./usr/X11R6/share/X11/xkb/keycodes/hp
./usr/X11R6/share/X11/xkb/keycodes/ibm
./usr/X11R6/share/X11/xkb/keycodes/jolla
./usr/X11R6/share/X11/xkb/keycodes/macintosh
./usr/X11R6/share/X11/xkb/keycodes/olpc
./usr/X11R6/share/X11/xkb/keycodes/sgi_vndr
./usr/X11R6/share/X11/xkb/keycodes/sgi_vndr/indigo
./usr/X11R6/share/X11/xkb/keycodes/sgi_vndr/indy
./usr/X11R6/share/X11/xkb/keycodes/sgi_vndr/iris
./usr/X11R6/share/X11/xkb/keycodes/sony
./usr/X11R6/share/X11/xkb/keycodes/sun
./usr/X11R6/share/X11/xkb/keycodes/xfree86
./usr/X11R6/share/X11/xkb/keycodes/xfree98
./usr/X11R6/share/X11/xkb/rules
./usr/X11R6/share/X11/xkb/rules/README
./usr/X11R6/share/X11/xkb/rules/base
./usr/X11R6/share/X11/xkb/rules/base.extras.xml
./usr/X11R6/share/X11/xkb/rules/base.lst
./usr/X11R6/share/X11/xkb/rules/base.xml
./usr/X11R6/share/X11/xkb/rules/evdev
./usr/X11R6/share/X11/xkb/rules/evdev.extras.xml
./usr/X11R6/share/X11/xkb/rules/evdev.lst
./usr/X11R6/share/X11/xkb/rules/evdev.xml
./usr/X11R6/share/X11/xkb/rules/xkb.dtd
./usr/X11R6/share/X11/xkb/symbols
./usr/X11R6/share/X11/xkb/symbols/af
./usr/X11R6/share/X11/xkb/symbols/al
./usr/X11R6/share/X11/xkb/symbols/altwin
./usr/X11R6/share/X11/xkb/symbols/am
./usr/X11R6/share/X11/xkb/symbols/apl
./usr/X11R6/share/X11/xkb/symbols/ara
./usr/X11R6/share/X11/xkb/symbols/at
./usr/X11R6/share/X11/xkb/symbols/au
./usr/X11R6/share/X11/xkb/symbols/az
./usr/X11R6/share/X11/xkb/symbols/ba
./usr/X11R6/share/X11/xkb/symbols/bd
./usr/X11R6/share/X11/xkb/symbols/be
./usr/X11R6/share/X11/xkb/symbols/bg
./usr/X11R6/share/X11/xkb/symbols/bn
./usr/X11R6/share/X11/xkb/symbols/br
./usr/X11R6/share/X11/xkb/symbols/brai
./usr/X11R6/share/X11/xkb/symbols/bt
./usr/X11R6/share/X11/xkb/symbols/bw
./usr/X11R6/share/X11/xkb/symbols/by
./usr/X11R6/share/X11/xkb/symbols/ca
./usr/X11R6/share/X11/xkb/symbols/capslock
./usr/X11R6/share/X11/xkb/symbols/cd
./usr/X11R6/share/X11/xkb/symbols/ch
./usr/X11R6/share/X11/xkb/symbols/cm
./usr/X11R6/share/X11/xkb/symbols/cn
./usr/X11R6/share/X11/xkb/symbols/compose
./usr/X11R6/share/X11/xkb/symbols/ctrl
./usr/X11R6/share/X11/xkb/symbols/cz
./usr/X11R6/share/X11/xkb/symbols/de
./usr/X11R6/share/X11/xkb/symbols/digital_vndr
./usr/X11R6/share/X11/xkb/symbols/digital_vndr/lk
./usr/X11R6/share/X11/xkb/symbols/digital_vndr/pc
./usr/X11R6/share/X11/xkb/symbols/digital_vndr/us
./usr/X11R6/share/X11/xkb/symbols/digital_vndr/vt
./usr/X11R6/share/X11/xkb/symbols/dk
./usr/X11R6/share/X11/xkb/symbols/dz
./usr/X11R6/share/X11/xkb/symbols/ee
./usr/X11R6/share/X11/xkb/symbols/empty
./usr/X11R6/share/X11/xkb/symbols/epo
./usr/X11R6/share/X11/xkb/symbols/es
./usr/X11R6/share/X11/xkb/symbols/et
./usr/X11R6/share/X11/xkb/symbols/eu
./usr/X11R6/share/X11/xkb/symbols/eurosign
./usr/X11R6/share/X11/xkb/symbols/fi
./usr/X11R6/share/X11/xkb/symbols/fo
./usr/X11R6/share/X11/xkb/symbols/fr
./usr/X11R6/share/X11/xkb/symbols/fujitsu_vndr
./usr/X11R6/share/X11/xkb/symbols/fujitsu_vndr/jp
./usr/X11R6/share/X11/xkb/symbols/fujitsu_vndr/us
./usr/X11R6/share/X11/xkb/symbols/gb
./usr/X11R6/share/X11/xkb/symbols/ge
./usr/X11R6/share/X11/xkb/symbols/gh
./usr/X11R6/share/X11/xkb/symbols/gn
./usr/X11R6/share/X11/xkb/symbols/gr
./usr/X11R6/share/X11/xkb/symbols/group
./usr/X11R6/share/X11/xkb/symbols/hp_vndr
./usr/X11R6/share/X11/xkb/symbols/hp_vndr/us
./usr/X11R6/share/X11/xkb/symbols/hr
./usr/X11R6/share/X11/xkb/symbols/hu
./usr/X11R6/share/X11/xkb/symbols/id
./usr/X11R6/share/X11/xkb/symbols/ie
./usr/X11R6/share/X11/xkb/symbols/il
./usr/X11R6/share/X11/xkb/symbols/in
./usr/X11R6/share/X11/xkb/symbols/inet
./usr/X11R6/share/X11/xkb/symbols/iq
./usr/X11R6/share/X11/xkb/symbols/ir
./usr/X11R6/share/X11/xkb/symbols/is
./usr/X11R6/share/X11/xkb/symbols/it
./usr/X11R6/share/X11/xkb/symbols/jolla_vndr
./usr/X11R6/share/X11/xkb/symbols/jolla_vndr/sbj
./usr/X11R6/share/X11/xkb/symbols/jp
./usr/X11R6/share/X11/xkb/symbols/ke
./usr/X11R6/share/X11/xkb/symbols/keypad
./usr/X11R6/share/X11/xkb/symbols/kg
./usr/X11R6/share/X11/xkb/symbols/kh
./usr/X11R6/share/X11/xkb/symbols/kpdl
./usr/X11R6/share/X11/xkb/symbols/kr
./usr/X11R6/share/X11/xkb/symbols/kz
./usr/X11R6/share/X11/xkb/symbols/la
./usr/X11R6/share/X11/xkb/symbols/latam
./usr/X11R6/share/X11/xkb/symbols/latin
./usr/X11R6/share/X11/xkb/symbols/level3
./usr/X11R6/share/X11/xkb/symbols/level5
./usr/X11R6/share/X11/xkb/symbols/lk
./usr/X11R6/share/X11/xkb/symbols/lt
./usr/X11R6/share/X11/xkb/symbols/lv
./usr/X11R6/share/X11/xkb/symbols/ma
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/apple
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/ch
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/de
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/dk
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/fi
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/fr
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/gb
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/is
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/it
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/jp
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/latam
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/nl
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/no
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/pt
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/se
./usr/X11R6/share/X11/xkb/symbols/macintosh_vndr/us
./usr/X11R6/share/X11/xkb/symbols/mao
./usr/X11R6/share/X11/xkb/symbols/md
./usr/X11R6/share/X11/xkb/symbols/me
./usr/X11R6/share/X11/xkb/symbols/mk
./usr/X11R6/share/X11/xkb/symbols/ml
./usr/X11R6/share/X11/xkb/symbols/mm
./usr/X11R6/share/X11/xkb/symbols/mn
./usr/X11R6/share/X11/xkb/symbols/mt
./usr/X11R6/share/X11/xkb/symbols/mv
./usr/X11R6/share/X11/xkb/symbols/my
./usr/X11R6/share/X11/xkb/symbols/nbsp
./usr/X11R6/share/X11/xkb/symbols/nec_vndr
./usr/X11R6/share/X11/xkb/symbols/nec_vndr/jp
./usr/X11R6/share/X11/xkb/symbols/ng
./usr/X11R6/share/X11/xkb/symbols/nl
./usr/X11R6/share/X11/xkb/symbols/no
./usr/X11R6/share/X11/xkb/symbols/nokia_vndr
./usr/X11R6/share/X11/xkb/symbols/nokia_vndr/rx-44
./usr/X11R6/share/X11/xkb/symbols/nokia_vndr/rx-51
./usr/X11R6/share/X11/xkb/symbols/nokia_vndr/su-8w
./usr/X11R6/share/X11/xkb/symbols/np
./usr/X11R6/share/X11/xkb/symbols/olpc
./usr/X11R6/share/X11/xkb/symbols/parens
./usr/X11R6/share/X11/xkb/symbols/pc
./usr/X11R6/share/X11/xkb/symbols/ph
./usr/X11R6/share/X11/xkb/symbols/pk
./usr/X11R6/share/X11/xkb/symbols/pl
./usr/X11R6/share/X11/xkb/symbols/pt
./usr/X11R6/share/X11/xkb/symbols/ro
./usr/X11R6/share/X11/xkb/symbols/rs
./usr/X11R6/share/X11/xkb/symbols/ru
./usr/X11R6/share/X11/xkb/symbols/rupeesign
./usr/X11R6/share/X11/xkb/symbols/se
./usr/X11R6/share/X11/xkb/symbols/sgi_vndr
./usr/X11R6/share/X11/xkb/symbols/sgi_vndr/jp
./usr/X11R6/share/X11/xkb/symbols/sharp_vndr
./usr/X11R6/share/X11/xkb/symbols/sharp_vndr/sl-c3x00
./usr/X11R6/share/X11/xkb/symbols/sharp_vndr/ws003sh
./usr/X11R6/share/X11/xkb/symbols/sharp_vndr/ws007sh
./usr/X11R6/share/X11/xkb/symbols/sharp_vndr/ws011sh
./usr/X11R6/share/X11/xkb/symbols/sharp_vndr/ws020sh
./usr/X11R6/share/X11/xkb/symbols/shift
./usr/X11R6/share/X11/xkb/symbols/si
./usr/X11R6/share/X11/xkb/symbols/sk
./usr/X11R6/share/X11/xkb/symbols/sn
./usr/X11R6/share/X11/xkb/symbols/sony_vndr
./usr/X11R6/share/X11/xkb/symbols/sony_vndr/us
./usr/X11R6/share/X11/xkb/symbols/srvr_ctrl
./usr/X11R6/share/X11/xkb/symbols/sun_vndr
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ara
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/be
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/br
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ca
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ch
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/cz
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/de
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/dk
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ee
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/es
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/fi
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/fr
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/gb
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/gr
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/it
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/jp
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/kr
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/lt
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/lv
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/nl
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/no
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/pl
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/pt
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ro
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ru
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/se
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/sk
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/solaris
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/tr
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/tw
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/ua
./usr/X11R6/share/X11/xkb/symbols/sun_vndr/us
./usr/X11R6/share/X11/xkb/symbols/sy
./usr/X11R6/share/X11/xkb/symbols/terminate
./usr/X11R6/share/X11/xkb/symbols/tg
./usr/X11R6/share/X11/xkb/symbols/th
./usr/X11R6/share/X11/xkb/symbols/tj
./usr/X11R6/share/X11/xkb/symbols/tm
./usr/X11R6/share/X11/xkb/symbols/tr
./usr/X11R6/share/X11/xkb/symbols/tw
./usr/X11R6/share/X11/xkb/symbols/typo
./usr/X11R6/share/X11/xkb/symbols/tz
./usr/X11R6/share/X11/xkb/symbols/ua
./usr/X11R6/share/X11/xkb/symbols/us
./usr/X11R6/share/X11/xkb/symbols/uz
./usr/X11R6/share/X11/xkb/symbols/vn
./usr/X11R6/share/X11/xkb/symbols/xfree68_vndr
./usr/X11R6/share/X11/xkb/symbols/xfree68_vndr/amiga
./usr/X11R6/share/X11/xkb/symbols/xfree68_vndr/ataritt
./usr/X11R6/share/X11/xkb/symbols/za
./usr/X11R6/share/X11/xkb/types
./usr/X11R6/share/X11/xkb/types/README
./usr/X11R6/share/X11/xkb/types/basic
./usr/X11R6/share/X11/xkb/types/cancel
./usr/X11R6/share/X11/xkb/types/caps
./usr/X11R6/share/X11/xkb/types/complete
./usr/X11R6/share/X11/xkb/types/default
./usr/X11R6/share/X11/xkb/types/extra
./usr/X11R6/share/X11/xkb/types/iso9995
./usr/X11R6/share/X11/xkb/types/level5
./usr/X11R6/share/X11/xkb/types/mousekeys
./usr/X11R6/share/X11/xkb/types/nokia
./usr/X11R6/share/X11/xkb/types/numpad
./usr/X11R6/share/X11/xkb/types/pc
./usr/X11R6/share/aclocal
./usr/X11R6/share/aclocal/fontutil.m4
./usr/X11R6/share/aclocal/xorg-macros.m4
./usr/X11R6/share/aclocal/xtrans.m4
./usr/X11R6/share/doc
./usr/X11R6/share/doc/fontconfig
./usr/X11R6/share/doc/fontconfig/fontconfig-devel
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomiclock.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcblanksadd.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcblankscreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcblanksismember.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccachecopyset.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccachecreatetagfile.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccachedir.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccachenumfont.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccachesubdir.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetcount.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetdelchar.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetequal.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetnew.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fccharsetunion.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetfilename.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiggetsysroot.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfighome.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigreference.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigsetsysroot.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacheclean.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacheload.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacheread.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacherescan.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdirsave.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcdirscan.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfileisdir.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfilescan.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfini.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontlist.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontmatch.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfontsort.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcgetdefaultlangs.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcgetlangs.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcgetversion.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcinit.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcislower.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcisupper.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangnormalize.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetadd.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetdel.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetequal.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsethash.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetsubtract.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fclangsetunion.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameconstant.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameparse.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameunparse.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternadd.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatterndel.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternequal.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternformat.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternget.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternhash.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternprint.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternreference.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcpatternremove.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrbasename.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrbuildfilename.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrcmp.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrcopy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrdirname.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrfree.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrlistfirst.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrplus.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrstr.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fctolower.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcutf16len.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcutf8len.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcvalueequal.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcvalueprint.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/fcvaluesave.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/x19.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel/x31.html
./usr/X11R6/share/doc/fontconfig/fontconfig-devel.pdf
./usr/X11R6/share/doc/fontconfig/fontconfig-devel.txt
./usr/X11R6/share/doc/fontconfig/fontconfig-user.html
./usr/X11R6/share/doc/fontconfig/fontconfig-user.pdf
./usr/X11R6/share/doc/fontconfig/fontconfig-user.txt
./usr/X11R6/share/doc/libICE
./usr/X11R6/share/doc/libICE/ICElib.xml
./usr/X11R6/share/doc/libICE/ice.xml
./usr/X11R6/share/doc/libSM
./usr/X11R6/share/doc/libSM/SMlib.xml
./usr/X11R6/share/doc/libSM/xsmp.xml
./usr/X11R6/share/doc/libX11
./usr/X11R6/share/doc/libXaw
./usr/X11R6/share/doc/libXaw/AsciiSink.xml
./usr/X11R6/share/doc/libXaw/AsciiSource.xml
./usr/X11R6/share/doc/libXaw/AsciiText.xml
./usr/X11R6/share/doc/libXaw/Box.xml
./usr/X11R6/share/doc/libXaw/CH1.xml
./usr/X11R6/share/doc/libXaw/CH2.xml
./usr/X11R6/share/doc/libXaw/CH3.xml
./usr/X11R6/share/doc/libXaw/CH4.xml
./usr/X11R6/share/doc/libXaw/CH5.xml
./usr/X11R6/share/doc/libXaw/CH6.xml
./usr/X11R6/share/doc/libXaw/CH7.xml
./usr/X11R6/share/doc/libXaw/Command.xml
./usr/X11R6/share/doc/libXaw/Dialog.xml
./usr/X11R6/share/doc/libXaw/Form.xml
./usr/X11R6/share/doc/libXaw/Grip.xml
./usr/X11R6/share/doc/libXaw/Label.xml
./usr/X11R6/share/doc/libXaw/List.xml
./usr/X11R6/share/doc/libXaw/MenuButton.xml
./usr/X11R6/share/doc/libXaw/Paned.xml
./usr/X11R6/share/doc/libXaw/Panner.xml
./usr/X11R6/share/doc/libXaw/Porthole.xml
./usr/X11R6/share/doc/libXaw/Repeater.xml
./usr/X11R6/share/doc/libXaw/Scrollbar.xml
./usr/X11R6/share/doc/libXaw/Simple.xml
./usr/X11R6/share/doc/libXaw/SimpleMenu.xml
./usr/X11R6/share/doc/libXaw/Sme.xml
./usr/X11R6/share/doc/libXaw/SmeBSB.xml
./usr/X11R6/share/doc/libXaw/SmeLine.xml
./usr/X11R6/share/doc/libXaw/StripChart.xml
./usr/X11R6/share/doc/libXaw/TPage_Credits.xml
./usr/X11R6/share/doc/libXaw/Template.xml
./usr/X11R6/share/doc/libXaw/Template_private_header_file.xml
./usr/X11R6/share/doc/libXaw/Template_public_header_file.xml
./usr/X11R6/share/doc/libXaw/Template_widget_source_file.xml
./usr/X11R6/share/doc/libXaw/Text.xml
./usr/X11R6/share/doc/libXaw/TextActions.xml
./usr/X11R6/share/doc/libXaw/TextActions_default_translation_bindings.xml
./usr/X11R6/share/doc/libXaw/TextActions_text_widget_actions.xml
./usr/X11R6/share/doc/libXaw/TextCustom.xml
./usr/X11R6/share/doc/libXaw/TextFuncs.xml
./usr/X11R6/share/doc/libXaw/TextSink.xml
./usr/X11R6/share/doc/libXaw/TextSource.xml
./usr/X11R6/share/doc/libXaw/Toggle.xml
./usr/X11R6/share/doc/libXaw/Tree.xml
./usr/X11R6/share/doc/libXaw/Viewport.xml
./usr/X11R6/share/doc/libXaw/libXaw.xml
./usr/X11R6/share/doc/libXdmcp
./usr/X11R6/share/doc/libXdmcp/xdmcp.xml
./usr/X11R6/share/doc/libXext
./usr/X11R6/share/doc/libXext/dbelib.xml
./usr/X11R6/share/doc/libXext/dpmslib.xml
./usr/X11R6/share/doc/libXext/shapelib.xml
./usr/X11R6/share/doc/libXext/synclib.xml
./usr/X11R6/share/doc/libXext/xtest1.xml
./usr/X11R6/share/doc/libXi
./usr/X11R6/share/doc/libXmu
./usr/X11R6/share/doc/libXmu/Xmu.xml
./usr/X11R6/share/doc/libXmu/xlogo.svg
./usr/X11R6/share/doc/libXrender
./usr/X11R6/share/doc/libXrender/libXrender.txt
./usr/X11R6/share/doc/libXt
./usr/X11R6/share/doc/libXt/CH01.xml
./usr/X11R6/share/doc/libXt/CH02.xml
./usr/X11R6/share/doc/libXt/CH03.xml
./usr/X11R6/share/doc/libXt/CH04.xml
./usr/X11R6/share/doc/libXt/CH05.xml
./usr/X11R6/share/doc/libXt/CH06.xml
./usr/X11R6/share/doc/libXt/CH07.xml
./usr/X11R6/share/doc/libXt/CH08.xml
./usr/X11R6/share/doc/libXt/CH09.xml
./usr/X11R6/share/doc/libXt/CH10.xml
./usr/X11R6/share/doc/libXt/CH11.xml
./usr/X11R6/share/doc/libXt/CH12.xml
./usr/X11R6/share/doc/libXt/CH13.xml
./usr/X11R6/share/doc/libXt/acknowledgement.xml
./usr/X11R6/share/doc/libXt/appA.xml
./usr/X11R6/share/doc/libXt/appB.xml
./usr/X11R6/share/doc/libXt/appC.xml
./usr/X11R6/share/doc/libXt/appD.xml
./usr/X11R6/share/doc/libXt/appE.xml
./usr/X11R6/share/doc/libXt/appF.xml
./usr/X11R6/share/doc/libXt/intrinsics.xml
./usr/X11R6/share/doc/libXt/preface.xml
./usr/X11R6/share/doc/libXtst
./usr/X11R6/share/doc/libXtst/recordlib.xml
./usr/X11R6/share/doc/libXtst/xtestlib.xml
./usr/X11R6/share/doc/libXvMC
./usr/X11R6/share/doc/libXvMC/XvMC_API.txt
./usr/X11R6/share/doc/xorg-docs
./usr/X11R6/share/doc/xorg-docs/MAINTAINERS
./usr/X11R6/share/doc/xorgproto
./usr/X11R6/share/doc/xorgproto/PM_spec
./usr/X11R6/share/doc/xorgproto/SIAddresses
./usr/X11R6/share/doc/xorgproto/SIAddresses/IPv6.txt
./usr/X11R6/share/doc/xorgproto/SIAddresses/README
./usr/X11R6/share/doc/xorgproto/SIAddresses/hostname.txt
./usr/X11R6/share/doc/xorgproto/SIAddresses/localuser.txt
./usr/X11R6/share/doc/xorgproto/bigreq.xml
./usr/X11R6/share/doc/xorgproto/compositeproto.txt
./usr/X11R6/share/doc/xorgproto/damageproto.txt
./usr/X11R6/share/doc/xorgproto/dri2proto.txt
./usr/X11R6/share/doc/xorgproto/dri3proto.txt
./usr/X11R6/share/doc/xorgproto/fixesproto.txt
./usr/X11R6/share/doc/xorgproto/fsproto.xml
./usr/X11R6/share/doc/xorgproto/inputproto
./usr/X11R6/share/doc/xorgproto/inputproto/XI2proto.txt
./usr/X11R6/share/doc/xorgproto/inputproto/XIproto.txt
./usr/X11R6/share/doc/xorgproto/kbproto
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-1.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-10.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-11.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-2.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-3.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-4.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-5.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-6.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-7.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-8.svg
./usr/X11R6/share/doc/xorgproto/kbproto/XKBproto-9.svg
./usr/X11R6/share/doc/xorgproto/kbproto/appA.xml
./usr/X11R6/share/doc/xorgproto/kbproto/appB.xml
./usr/X11R6/share/doc/xorgproto/kbproto/appC.xml
./usr/X11R6/share/doc/xorgproto/kbproto/appD.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch01.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch02.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch03.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch04.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch05.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch06.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch07.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch08.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch09.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch10.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch11.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch12.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch13.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch15.xml
./usr/X11R6/share/doc/xorgproto/kbproto/ch16.xml
./usr/X11R6/share/doc/xorgproto/kbproto/xkbproto.xml
./usr/X11R6/share/doc/xorgproto/presentproto.txt
./usr/X11R6/share/doc/xorgproto/randrproto.txt
./usr/X11R6/share/doc/xorgproto/record.xml
./usr/X11R6/share/doc/xorgproto/renderproto.txt
./usr/X11R6/share/doc/xorgproto/resproto.txt
./usr/X11R6/share/doc/xorgproto/saver.xml
./usr/X11R6/share/doc/xorgproto/x11proto
./usr/X11R6/share/doc/xorgproto/x11proto/encoding.xml
./usr/X11R6/share/doc/xorgproto/x11proto/glossary.xml
./usr/X11R6/share/doc/xorgproto/x11proto/keysyms.xml
./usr/X11R6/share/doc/xorgproto/x11proto/sect1-9.xml
./usr/X11R6/share/doc/xorgproto/x11proto/x11protocol.xml
./usr/X11R6/share/doc/xorgproto/xc-misc.xml
./usr/X11R6/share/doc/xorgproto/xextproto
./usr/X11R6/share/doc/xorgproto/xextproto/appendix.xml
./usr/X11R6/share/doc/xorgproto/xextproto/appgrp.xml
./usr/X11R6/share/doc/xorgproto/xextproto/dbe.xml
./usr/X11R6/share/doc/xorgproto/xextproto/dpms.xml
./usr/X11R6/share/doc/xorgproto/xextproto/evi.xml
./usr/X11R6/share/doc/xorgproto/xextproto/geproto.xml
./usr/X11R6/share/doc/xorgproto/xextproto/lbx.xml
./usr/X11R6/share/doc/xorgproto/xextproto/multibuf.xml
./usr/X11R6/share/doc/xorgproto/xextproto/security.xml
./usr/X11R6/share/doc/xorgproto/xextproto/shape.xml
./usr/X11R6/share/doc/xorgproto/xextproto/shm.xml
./usr/X11R6/share/doc/xorgproto/xextproto/sync.xml
./usr/X11R6/share/doc/xorgproto/xextproto/tog-cup.xml
./usr/X11R6/share/doc/xorgproto/xextproto/xtest.xml
./usr/X11R6/share/doc/xorgproto/xv-protocol-v2.txt
./usr/X11R6/share/doc/xtrans
./usr/X11R6/share/doc/xtrans/xtrans.xml
./usr/X11R6/share/mk
./usr/X11R6/share/mk/bsd.xconf.mk
./usr/X11R6/share/mk/bsd.xorg.mk
./usr/X11R6/share/mk/package_version.m4
./usr/X11R6/share/util-macros
./usr/X11R6/share/util-macros/INSTALL
./usr/X11R6/share/xcb/bigreq.xml
./usr/X11R6/share/xcb/composite.xml
./usr/X11R6/share/xcb/damage.xml
./usr/X11R6/share/xcb/dpms.xml
./usr/X11R6/share/xcb/dri2.xml
./usr/X11R6/share/xcb/dri3.xml
./usr/X11R6/share/xcb/ge.xml
./usr/X11R6/share/xcb/glx.xml
./usr/X11R6/share/xcb/present.xml
./usr/X11R6/share/xcb/randr.xml
./usr/X11R6/share/xcb/record.xml
./usr/X11R6/share/xcb/render.xml
./usr/X11R6/share/xcb/res.xml
./usr/X11R6/share/xcb/screensaver.xml
./usr/X11R6/share/xcb/shape.xml
./usr/X11R6/share/xcb/shm.xml
./usr/X11R6/share/xcb/sync.xml
./usr/X11R6/share/xcb/xc_misc.xml
./usr/X11R6/share/xcb/xevie.xml
./usr/X11R6/share/xcb/xf86dri.xml
./usr/X11R6/share/xcb/xf86vidmode.xml
./usr/X11R6/share/xcb/xfixes.xml
./usr/X11R6/share/xcb/xinerama.xml
./usr/X11R6/share/xcb/xinput.xml
./usr/X11R6/share/xcb/xprint.xml
./usr/X11R6/share/xcb/xproto.xml
./usr/X11R6/share/xcb/xselinux.xml
./usr/X11R6/share/xcb/xtest.xml
./usr/X11R6/share/xcb/xv.xml
./usr/X11R6/share/xcb/xvmc.xml
./usr/local
./usr/local/lib
./usr/local/lib/X11
./usr/local/lib/X11/app-defaults
|