summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/base/text.txt
blob: 14572efffb5373fa19ea4fed9a7380676f800d01 (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
This is TeX, Version 3.14159265 (TeX Live 2014/W32TeX) (preloaded format=tex)
(../build/unpacked/unpack.ins (../build/unpacked/ltdirchk.dtx
** Using the existing texsys.cfg
(../build/local/texsys.cfg)
./texsys.aux found


\@currdir set to: ./.

) (../build/unpacked/docstrip.dtx
Utility: `docstrip' 2.5e <2014/09/29>
English documentation    <2014/09/29>

**********************************************************
* This program converts documented macro-files into fast *
* loadable files by stripping off (nearly) all comments! *
**********************************************************

********************************************************
* No Configuration file found, using default settings. *
********************************************************

) (../build/unpacked/ltvers.dtx)
**********************************************
*
* Welcome to the Installation routine of
*
*     LaTeX2e <2015/01/01>
*
* Depending on your machine the installation
* might take a long time --- this is the
* price for being able to run on all platforms.
* So please be patient :-)
*
**********************************************


(../build/unpacked/format.ins

Generating file(s) ./latex.ltx ./tracefnt.sty ./flafter.sty ./fltrace.sty ./fle
qn.clo ./leqno.clo 

Processing file ltdirchk.dtx (initex,2ekernel,dircheck) -> latex.ltx
Lines  processed: 938
Comments removed: 687
Comments  passed: 1
Codelines passed: 229


Processing file ltplain.dtx (2ekernel) -> latex.ltx
Lines  processed: 1394
Comments removed: 956
Comments  passed: 17
Codelines passed: 351


Processing file ltvers.dtx (2ekernel) -> latex.ltx
File ltvers.dtx ended by \endinput.
Lines  processed: 195
Comments removed: 108
Comments  passed: 1
Codelines passed: 73


Processing file ltdefns.dtx (2ekernel) -> latex.ltx
Lines  processed: 1528
Comments removed: 1170
Comments  passed: 1
Codelines passed: 335


Processing file ltalloc.dtx (2ekernel) -> latex.ltx
File ltalloc.dtx ended by \endinput.
Lines  processed: 175
Comments removed: 136
Comments  passed: 1
Codelines passed: 34


Processing file ltcntrl.dtx (2ekernel) -> latex.ltx
File ltcntrl.dtx ended by \endinput.
Lines  processed: 325
Comments removed: 266
Comments  passed: 1
Codelines passed: 54


Processing file lterror.dtx (2ekernel) -> latex.ltx
File lterror.dtx ended by \endinput.
Lines  processed: 820
Comments removed: 519
Comments  passed: 1
Codelines passed: 222


Processing file ltpar.dtx (2ekernel) -> latex.ltx
File ltpar.dtx ended by \endinput.
Lines  processed: 194
Comments removed: 166
Comments  passed: 1
Codelines passed: 23


Processing file ltspace.dtx (2ekernel) -> latex.ltx
File ltspace.dtx ended by \endinput.
Lines  processed: 1126
Comments removed: 805
Comments  passed: 1
Codelines passed: 239


Processing file ltlogos.dtx (2ekernel) -> latex.ltx
File ltlogos.dtx ended by \endinput.
Lines  processed: 122
Comments removed: 85
Comments  passed: 1
Codelines passed: 32


Processing file ltfiles.dtx (2ekernel) -> latex.ltx
Lines  processed: 862
Comments removed: 610
Comments  passed: 1
Codelines passed: 242


Processing file ltoutenc.dtx (2ekernel) -> latex.ltx
File ltoutenc.dtx ended by \endinput.
Lines  processed: 3439
Comments removed: 2208
Comments  passed: 1
Codelines passed: 1194


Processing file ltcounts.dtx (2ekernel) -> latex.ltx
Lines  processed: 537
Comments removed: 401
Comments  passed: 1
Codelines passed: 102


Processing file ltlength.dtx (2ekernel) -> latex.ltx
Lines  processed: 167
Comments removed: 122
Comments  passed: 1
Codelines passed: 29


Processing file ltfssbas.dtx (2ekernel) -> latex.ltx
Lines  processed: 1946
Comments removed: 1430
Comments  passed: 2
Codelines passed: 452


Processing file ltfsstrc.dtx (2ekernel) -> latex.ltx
                             (package,trace) -> tracefnt.sty
Lines  processed: 1886
Comments removed: 1330
Comments  passed: 3
Codelines passed: 430


Processing file ltfsscmp.dtx (compat,2ekernel) -> latex.ltx
Lines  processed: 414
Comments removed: 263
Comments  passed: 3
Codelines passed: 136


Processing file ltfssdcl.dtx (compat,2ekernel) -> latex.ltx
Lines  processed: 1546
Comments removed: 712
Comments  passed: 3
Codelines passed: 818


Processing file ltfssini.dtx (compat,2ekernel) -> latex.ltx
Lines  processed: 612
Comments removed: 430
Comments  passed: 3
Codelines passed: 155


Processing file ltfntcmd.dtx (2ekernel) -> latex.ltx
File ltfntcmd.dtx ended by \endinput.
Lines  processed: 789
Comments removed: 629
Comments  passed: 17
Codelines passed: 139


Processing file ltpageno.dtx (2ekernel) -> latex.ltx
Lines  processed: 101
Comments removed: 71
Comments  passed: 1
Codelines passed: 25


Processing file ltxref.dtx (2ekernel) -> latex.ltx
Lines  processed: 341
Comments removed: 281
Comments  passed: 1
Codelines passed: 55


Processing file ltmiscen.dtx (2ekernel) -> latex.ltx
Lines  processed: 801
Comments removed: 627
Comments  passed: 1
Codelines passed: 169


Processing file ltmath.dtx (2ekernel) -> latex.ltx
                           (fleqn) -> fleqn.clo
                           (leqno) -> leqno.clo
Lines  processed: 1079
Comments removed: 636
Comments  passed: 17
Codelines passed: 368


Processing file ltlists.dtx (2ekernel) -> latex.ltx
Lines  processed: 1075
Comments removed: 809
Comments  passed: 1
Codelines passed: 261


Processing file ltboxes.dtx (2ekernel) -> latex.ltx
File ltboxes.dtx ended by \endinput.
Lines  processed: 1257
Comments removed: 866
Comments  passed: 1
Codelines passed: 307


Processing file lttab.dtx (2ekernel) -> latex.ltx
Lines  processed: 1621
Comments removed: 1241
Comments  passed: 1
Codelines passed: 364


Processing file ltpictur.dtx (2ekernel) -> latex.ltx
Lines  processed: 1487
Comments removed: 1071
Comments  passed: 1
Codelines passed: 382


Processing file ltthm.dtx (2ekernel) -> latex.ltx
Lines  processed: 289
Comments removed: 227
Comments  passed: 1
Codelines passed: 57


Processing file ltsect.dtx (2ekernel) -> latex.ltx
Lines  processed: 866
Comments removed: 676
Comments  passed: 1
Codelines passed: 185


Processing file ltfloat.dtx (2ekernel) -> latex.ltx
Lines  processed: 1557
Comments removed: 1074
Comments  passed: 1
Codelines passed: 337


Processing file ltidxglo.dtx (2ekernel) -> latex.ltx
Lines  processed: 217
Comments removed: 159
Comments  passed: 1
Codelines passed: 53


Processing file ltbibl.dtx (2ekernel) -> latex.ltx
Lines  processed: 407
Comments removed: 330
Comments  passed: 1
Codelines passed: 72


Processing file ltpage.dtx (2ekernel) -> latex.ltx
Lines  processed: 334
Comments removed: 256
Comments  passed: 1
Codelines passed: 73


Processing file ltoutput.dtx (2ekernel) -> latex.ltx
                             (flafter,trace) -> flafter.sty
                             (fltrace,trace) -> fltrace.sty
File ltoutput.dtx ended by \endinput.
Lines  processed: 4781
Comments removed: 2617
Comments  passed: 1
Codelines passed: 1316


Processing file ltclass.dtx (2ekernel) -> latex.ltx
Lines  processed: 1711
Comments removed: 1170
Comments  passed: 1
Codelines passed: 534


Processing file ltfinal.dtx (2ekernel) -> latex.ltx
Lines  processed: 759
Comments removed: 447
Comments  passed: 1
Codelines passed: 285


Generating file(s) ./oldlfont.sty 

Processing file oldlfont.dtx (package) -> oldlfont.sty
File oldlfont.dtx ended by \endinput.
Lines  processed: 266
Comments removed: 192
Comments  passed: 18
Codelines passed: 45


Generating file(s) ./newlfont.sty 

Processing file newlfont.dtx (package) -> newlfont.sty
File newlfont.dtx ended by \endinput.
Lines  processed: 218
Comments removed: 143
Comments  passed: 18
Codelines passed: 48


Generating file(s) ./hyphen.ltx 

Processing file lthyphen.dtx (default) -> hyphen.ltx
File lthyphen.dtx ended by \endinput.
Lines  processed: 157
Comments removed: 118
Comments  passed: 15
Codelines passed: 17


Generating file(s) ./fonttext.ltx ./fontmath.ltx ./fonttext.cfg ./fontmath.cfg 
./preload.cfg 

Processing file fontdef.dtx (text) -> fonttext.ltx
                            (math) -> fontmath.ltx
                            (cfgtext) -> fonttext.cfg
                            (cfgmath) -> fontmath.cfg
                            (cfgprel) -> preload.cfg
File fontdef.dtx ended by \endinput.
Lines  processed: 1336
Comments removed: 759
Comments  passed: 34
Codelines passed: 516


Generating file(s) ./preload.ltx 

Processing file preload.dtx (preload,cm,xpt,tex) -> preload.ltx
File preload.dtx ended by \endinput.
Lines  processed: 283
Comments removed: 186
Comments  passed: 31
Codelines passed: 26

) (../build/unpacked/inputenc.ins
*** Generating input encoding files ***

Generating file(s) ./inputenc.sty ./latin1.def ./latin2.def ./latin3.def ./lati
n4.def ./latin5.def ./latin9.def ./latin10.def 

Processing file inputenc.dtx (package) -> inputenc.sty
                             (latin1) -> latin1.def
                             (latin2) -> latin2.def
                             (latin3) -> latin3.def
                             (latin4) -> latin4.def
                             (latin5) -> latin5.def
                             (latin9) -> latin9.def
                             (latin10) -> latin10.def
File inputenc.dtx ended by \endinput.
Lines  processed: 3042
Comments removed: 1212
Comments  passed: 15
Codelines passed: 1685


Generating file(s) ./cp850.def ./cp852.def ./cp858.def ./cp865.def ./cp437.def 
./cp437de.def ./decmulti.def 

Processing file inputenc.dtx (cp850) -> cp850.def
                             (cp852) -> cp852.def
                             (cp858) -> cp858.def
                             (cp865) -> cp865.def
                             (cp437) -> cp437.def
                             (cp437de) -> cp437de.def
                             (decmulti) -> decmulti.def
File inputenc.dtx ended by \endinput.
Lines  processed: 3042
Comments removed: 1212
Comments  passed: 15
Codelines passed: 1685


Generating file(s) ./ascii.def ./applemac.def ./macce.def ./next.def ./ansinew.
def ./cp1250.def ./cp1252.def ./cp1257.def 

Processing file inputenc.dtx (ascii) -> ascii.def
                             (applemac) -> applemac.def
                             (applemacce) -> macce.def
                             (next) -> next.def
                             (cp1252,ansinew) -> ansinew.def
                             (cp1250) -> cp1250.def
                             (cp1252) -> cp1252.def
                             (cp1257) -> cp1257.def
File inputenc.dtx ended by \endinput.
Lines  processed: 3042
Comments removed: 1212
Comments  passed: 15
Codelines passed: 1685

*** Generating utf8 input encoding files ***

Generating file(s) ./utf8.def ./utf8-test.tex ./lcyenc.dfu ./ly1enc.dfu ./omsen
c.dfu ./ot1enc.dfu ./ot2enc.dfu ./t1enc.dfu 

Processing file utf8ienc.dtx (utf8) -> utf8.def
                             (test) -> utf8-test.tex
                             (lcy) -> lcyenc.dfu
                             (ly1) -> ly1enc.dfu
                             (oms) -> omsenc.dfu
                             (ot1) -> ot1enc.dfu
                             (ot2) -> ot2enc.dfu
                             (t1) -> t1enc.dfu
File utf8ienc.dtx ended by \endinput.
Lines  processed: 1404
Comments removed: 738
Comments  passed: 0
Codelines passed: 270


Generating file(s) ./t2aenc.dfu ./t2benc.dfu ./t2cenc.dfu ./ts1enc.dfu ./x2enc.
dfu ./utf8enc.dfu ./utf8test.tex 

Processing file utf8ienc.dtx (t2a) -> t2aenc.dfu
                             (t2b) -> t2benc.dfu
                             (t2c) -> t2cenc.dfu
                             (ts1) -> ts1enc.dfu
                             (x2) -> x2enc.dfu
                             (all) -> utf8enc.dfu
                             (test) -> utf8test.tex
File utf8ienc.dtx ended by \endinput.
Lines  processed: 1404
Comments removed: 738
Comments  passed: 0
Codelines passed: 270

) (../build/unpacked/ltoutenc.ins

Generating file(s) ./ot1enc.def ./omsenc.def ./omlenc.def ./t1enc.def ./ot4enc.
def ./ts1enc.def ./textcomp.sty ./fontenc.sty 

Processing file ltoutenc.dtx (OT1) -> ot1enc.def
                             (OMS) -> omsenc.def
                             (OML) -> omlenc.def
                             (T1) -> t1enc.def
                             (OT4) -> ot4enc.def
                             (TS1) -> ts1enc.def
                             (TS1sty) -> textcomp.sty
                             (package) -> fontenc.sty
File ltoutenc.dtx ended by \endinput.
Lines  processed: 3439
Comments removed: 2208
Comments  passed: 1
Codelines passed: 1194

) (../build/unpacked/classes.ins

Generating file(s) ./article.cls ./report.cls ./book.cls ./size10.clo ./size11.
clo ./size12.clo ./bk10.clo ./bk11.clo ./bk12.clo 

Processing file classes.dtx (article) -> article.cls
                            (report) -> report.cls
                            (book) -> book.cls
                            (10pt) -> size10.clo
                            (11pt) -> size11.clo
                            (12pt) -> size12.clo
                            (10pt,bk) -> bk10.clo
                            (11pt,bk) -> bk11.clo
                            (12pt,bk) -> bk12.clo
File classes.dtx ended by \endinput.
Lines  processed: 4462
Comments removed: 3062
Comments  passed: 15
Codelines passed: 1080

) (../build/unpacked/letter.ins
*** Generating letter class file ***

Generating file(s) ./letter.cls 

Processing file letter.dtx (letter) -> letter.cls
File letter.dtx ended by \endinput.
Lines  processed: 1917
Comments removed: 1484
Comments  passed: 15
Codelines passed: 409

) (../build/unpacked/slides.ins
*** Generating slide cmd files and styles ***

Generating file(s) ./slides.cls ./slides.def 

Processing file slides.dtx (class) -> slides.cls
                           (cmd) -> slides.def
File slides.dtx ended by \endinput.
Lines  processed: 2722
Comments removed: 1782
Comments  passed: 15
Codelines passed: 912

*** Generating default fonts setup file for slides ***
*** Generating .fd files ***

Generating file(s) ./sfonts.def ./ot1lcmss.fd ./ot1lcmtt.fd ./omllcmm.fd ./omsl
cmsy.fd ./omxlcmex.fd ./ullasy.fd 

Processing file slifonts.fdd (main) -> sfonts.def
                             (lcmss,fd) -> ot1lcmss.fd
                             (lcmtt,fd) -> ot1lcmtt.fd
                             (lcmm,fd) -> omllcmm.fd
                             (lcmsy,fd) -> omslcmsy.fd
                             (lcmex,fd) -> omxlcmex.fd
                             (llasy,fd) -> ullasy.fd
File slifonts.fdd ended by \endinput.
Lines  processed: 465
Comments removed: 281
Comments  passed: 0
Codelines passed: 103

) (../build/unpacked/proc.ins

Generating file(s) ./proc.cls ./proc.sty 

Processing file proc.dtx (class) -> proc.cls
                         (style) -> proc.sty
File proc.dtx ended by \endinput.
Lines  processed: 455
Comments removed: 332
Comments  passed: 15
Codelines passed: 93

) (../build/unpacked/latexsym.ins

Generating file(s) ./latexsym.sty ./ulasy.fd 

Processing file latexsym.dtx (package) -> latexsym.sty
                             (fd) -> ulasy.fd
File latexsym.dtx ended by \endinput.
Lines  processed: 196
Comments removed: 143
Comments  passed: 0
Codelines passed: 41

) (../build/unpacked/cmfonts.ins

Generating file(s) ./ot1cmss.fd ./ot1cmr.fd ./ot1cmtt.fd ./ot1cmvtt.fd ./ot1cmf
ib.fd ./ot1cmfr.fd ./ot1cmdh.fd 

Processing file cmfonts.fdd (OT1cmss) -> ot1cmss.fd
                            (OT1cmr) -> ot1cmr.fd
                            (OT1cmtt,nowarn) -> ot1cmtt.fd
                            (OT1cmvtt) -> ot1cmvtt.fd
                            (OT1cmfib) -> ot1cmfib.fd
                            (OT1cmfr) -> ot1cmfr.fd
                            (OT1cmdh) -> ot1cmdh.fd
File cmfonts.fdd ended by \endinput.
Lines  processed: 1295
Comments removed: 556
Comments  passed: 0
Codelines passed: 424


Generating file(s) ./ucmr.fd ./ucmss.fd ./ucmtt.fd ./omlcmm.fd ./omscmsy.fd ./o
mxcmex.fd ./omlcmr.fd ./omscmr.fd 

Processing file cmfonts.fdd (Ucmr) -> ucmr.fd
                            (Ucmss) -> ucmss.fd
                            (Ucmtt) -> ucmtt.fd
                            (OMLcmm) -> omlcmm.fd
                            (OMScmsy) -> omscmsy.fd
                            (OMXcmex) -> omxcmex.fd
                            (OMLcmr) -> omlcmr.fd
                            (OMScmr) -> omscmr.fd
File cmfonts.fdd ended by \endinput.
Lines  processed: 1295
Comments removed: 556
Comments  passed: 0
Codelines passed: 424

) (../build/unpacked/ec.ins
*** Generating font defs for Cork encoded and Text Companion fonts ***

Generating file(s) ./t1cmfib.fd ./t1cmfr.fd ./t1cmdh.fd ./t1cmr.fd ./t1cmss.fd 
./t1cmtt.fd ./t1cmvtt.fd ./ts1cmr.fd ./ts1cmss.fd ./ts1cmtt.fd ./ts1cmvtt.fd 

Processing file cmfonts.fdd (fd,T1cmfib,ec) -> t1cmfib.fd
                            (fd,T1cmfr,ec) -> t1cmfr.fd
                            (fd,T1cmdh,ec) -> t1cmdh.fd
                            (fd,T1cmr,ec) -> t1cmr.fd
                            (fd,T1cmss,ec) -> t1cmss.fd
                            (fd,T1cmtt,tt,ec,nowarn) -> t1cmtt.fd
                            (fd,T1cmvtt,tt,ec) -> t1cmvtt.fd
                            (fd,TS1cmr,ec) -> ts1cmr.fd
                            (fd,TS1cmss,ec) -> ts1cmss.fd
                            (fd,TS1cmtt,ec,tt) -> ts1cmtt.fd
                            (fd,TS1cmvtt,ec,tt) -> ts1cmvtt.fd
File cmfonts.fdd ended by \endinput.
Lines  processed: 1295
Comments removed: 556
Comments  passed: 0
Codelines passed: 424


Generating file(s) ./t1lcmss.fd ./t1lcmtt.fd 

Processing file slifonts.fdd (lcmss,fd,ec) -> t1lcmss.fd
                             (lcmtt,fd,ec) -> t1lcmtt.fd
File slifonts.fdd ended by \endinput.
Lines  processed: 465
Comments removed: 281
Comments  passed: 0
Codelines passed: 103

) (../build/unpacked/latex209.ins
*** Generating compatibility mode files ***

Generating file(s) ./latex209.def ./article.sty ./book.sty ./report.sty ./lette
r.sty ./slides.sty ./fleqn.sty ./leqno.sty ./openbib.sty ./bezier.sty ./t1enc.s
ty 

Processing file latex209.dtx (head) -> latex209.def
                             (article) -> article.sty
                             (book) -> book.sty
                             (report) -> report.sty
                             (letter) -> letter.sty
                             (slides) -> slides.sty
                             (fleqn) -> fleqn.sty
                             (leqno) -> leqno.sty
                             (openbib) -> openbib.sty
                             (bezier) -> bezier.sty
                             (t1enc) -> t1enc.sty
File latex209.dtx ended by \endinput.
Lines  processed: 1147
Comments removed: 789
Comments  passed: 15
Codelines passed: 315


Processing file oldlfont.dtx (latex209) -> latex209.def
File oldlfont.dtx ended by \endinput.
Lines  processed: 266
Comments removed: 192
Comments  passed: 18
Codelines passed: 45


Processing file latex209.dtx (tail) -> latex209.def
File latex209.dtx  ended by \endinput.
Lines  processed: 1147
Comments removed: 789
Comments  passed: 15
Codelines passed: 315

) (../build/unpacked/docstrip.ins

Generating file(s) ./docstrip.tex 

Processing file docstrip.dtx (initex,program,stats) -> docstrip.tex
File docstrip.dtx ended by \endinput.
Lines  processed: 4359
Comments removed: 3247
Comments  passed: 25
Codelines passed: 1054


Generating file(s) ./ltxdoc.cls 

Processing file ltxdoc.dtx (class) -> ltxdoc.cls
Lines  processed: 524
Comments removed: 334
Comments  passed: 0
Codelines passed: 183


Generating file(s) ./doc.sty ./shortvrb.sty ./gind.ist ./gglo.ist 

Processing file doc.dtx (package) -> doc.sty
                        (shortvrb) -> shortvrb.sty
                        (gind) -> gind.ist
                        (gglo) -> gglo.ist
File doc.dtx ended by \endinput.
Lines  processed: 4903
Comments removed: 4028
Comments  passed: 18
Codelines passed: 789

) (../build/unpacked/ifthen.ins

Generating file(s) ./ifthen.sty 

Processing file ifthen.dtx (package) -> ifthen.sty
File ifthen.dtx ended by \endinput.
Lines  processed: 526
Comments removed: 408
Comments  passed: 6
Codelines passed: 103

) (../build/unpacked/graphpap.ins

Generating file(s) ./graphpap.sty 

Processing file graphpap.dtx (package) -> graphpap.sty
Lines  processed: 195
Comments removed: 126
Comments  passed: 5
Codelines passed: 57

) (../build/unpacked/makeindx.ins

Generating file(s) ./makeidx.sty ./showidx.sty 

Processing file makeindx.dtx (makeidx) -> makeidx.sty
                             (showidx) -> showidx.sty
File makeindx.dtx ended by \endinput.
Lines  processed: 312
Comments removed: 254
Comments  passed: 0
Codelines passed: 50

) (../build/unpacked/syntonly.ins

Generating file(s) ./syntonly.sty 

Processing file syntonly.dtx (package) -> syntonly.sty
File syntonly.dtx ended by \endinput.
Lines  processed: 296
Comments removed: 221
Comments  passed: 17
Codelines passed: 49

) (../build/unpacked/exscale.ins

Generating file(s) ./exscale.sty 

Processing file exscale.dtx (package) -> exscale.sty
File exscale.dtx ended by \endinput.
Lines  processed: 187
Comments removed: 141
Comments  passed: 3
Codelines passed: 31

) (../build/unpacked/alltt.ins

Generating file(s) ./alltt.sty 

Processing file alltt.dtx (package) -> alltt.sty
File alltt.dtx ended by \endinput.
Lines  processed: 212
Comments removed: 138
Comments  passed: 6
Codelines passed: 59

) (../build/unpacked/nfssfont.ins

Generating file(s) ./nfssfont.tex 

Processing file nfssfont.dtx (code) -> nfssfont.tex
File nfssfont.dtx ended by \endinput.
Lines  processed: 499
Comments removed: 180
Comments  passed: 15
Codelines passed: 300

) (../build/unpacked/fixltx2e.ins

Generating file(s) ./fixltx2e.sty 

Processing file fixltx2e.dtx (fixltx2e) -> fixltx2e.sty
File fixltx2e.dtx ended by \endinput.
Lines  processed: 965
Comments removed: 426
Comments  passed: 15
Codelines passed: 512


Generating file(s) ./fix-cm.sty 

Processing file fixltx2e.dtx (fix-cm) -> fix-cm.sty
File fixltx2e.dtx ended by \endinput.
Lines  processed: 965
Comments removed: 426
Comments  passed: 15
Codelines passed: 512

) (../build/unpacked/latexrelease.ins

Generating file(s) ./latexrelease.sty 

Processing file ltvers.dtx (latexrelease) -> latexrelease.sty
File ltvers.dtx ended by \endinput.
Lines  processed: 195
Comments removed: 108
Comments  passed: 1
Codelines passed: 73


Processing file latexrelease.dtx (latexrelease) -> latexrelease.sty
File latexrelease.dtx ended by \endinput.
Lines  processed: 784
Comments removed: 715
Comments  passed: 0
Codelines passed: 61


Processing file ltdefns.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1528
Comments removed: 1170
Comments  passed: 1
Codelines passed: 335


Processing file ltboxes.dtx (latexrelease) -> latexrelease.sty
File ltboxes.dtx ended by \endinput.
Lines  processed: 1257
Comments removed: 866
Comments  passed: 1
Codelines passed: 307


Processing file ltmath.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1079
Comments removed: 636
Comments  passed: 17
Codelines passed: 368


Processing file ltlength.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 167
Comments removed: 122
Comments  passed: 1
Codelines passed: 29


Processing file ltfloat.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1557
Comments removed: 1074
Comments  passed: 1
Codelines passed: 337


Processing file ltoutput.dtx (latexrelease) -> latexrelease.sty
File ltoutput.dtx ended by \endinput.
Lines  processed: 4781
Comments removed: 2617
Comments  passed: 1
Codelines passed: 1316


Processing file ltspace.dtx (latexrelease) -> latexrelease.sty
File ltspace.dtx ended by \endinput.
Lines  processed: 1126
Comments removed: 805
Comments  passed: 1
Codelines passed: 239


Processing file ltplain.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1394
Comments removed: 956
Comments  passed: 17
Codelines passed: 351


Processing file ltfssini.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 612
Comments removed: 430
Comments  passed: 3
Codelines passed: 155


Processing file ltfssbas.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1946
Comments removed: 1430
Comments  passed: 2
Codelines passed: 452


Processing file ltfinal.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 759
Comments removed: 447
Comments  passed: 1
Codelines passed: 285

)

***********************************
*
* Now run INITEX on latex.ltx
*
***********************************

Overall statistics:
Files  processed: 86
Lines  processed: 103586
Comments removed: 66417
Comments  passed: 536
Codelines passed: 30268
 )
No pages of output.
Transcript written on ../build/unpacked/unpack.log.
This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 2014/W32TeX) (INITEX)
 restricted \write18 enabled.
entering extended mode
(../build/unpacked/latex.ltx (../build/local/texsys.cfg)
./texsys.aux found


\@currdir set to: ./.


Assuming \openin and \input 
have the same search path.


Defining UNIX/DOS style filename parser.

catcodes, registers, compatibility for TeX 2,  parameters,
LaTeX2e <2015/01/01>
hacks, control, par, spacing, files, font encodings, lengths,
====================================

Local config file fonttext.cfg used

====================================
(../build/unpacked/fonttext.cfg (../build/unpacked/fonttext.ltx
=== Don't modify this file, use a .cfg file instead ===

(../build/unpacked/omlenc.def) (../build/unpacked/t1enc.def)
(../build/unpacked/ot1enc.def) (../build/unpacked/omsenc.def)
(../build/unpacked/t1cmr.fd) (../build/unpacked/ot1cmr.fd)
(../build/unpacked/ot1cmss.fd) (../build/unpacked/ot1cmtt.fd)))
====================================

Local config file fontmath.cfg used

====================================
(../build/unpacked/fontmath.cfg (../build/unpacked/fontmath.ltx
=== Don't modify this file, use a .cfg file instead ===

(../build/unpacked/omlcmm.fd) (../build/unpacked/omscmsy.fd)
(../build/unpacked/omxcmex.fd) (../build/unpacked/ucmr.fd)))
====================================

Local config file preload.cfg used

=====================================
(../build/unpacked/preload.cfg (../build/unpacked/preload.ltx)) page nos.,
x-ref, environments, center, verbatim, math definitions, boxes, title,
sectioning, contents, floats, footnotes, index, bibliography, output,
===========================================
Local configuration file hyphen.cfg used
===========================================
(../build/local/hyphen.cfg Loading hyphenation patterns for US english.
(../build/local/UShyphen.tex))
=================================
Applying patch file ltpatch.ltx
=================================
(../build/unpacked/ltpatch.ltx)
 )
Beginning to dump on file ../build/unpacked/latex.fmt
 (preloaded format=latex 2015.2.15)
4900 strings of total length 65557
43886 memory locations dumped; current usage is 144&42045
3265 multiletter control sequences
\font\nullfont=nullfont
\font\OMX/cmex/m/n/10=cmex10
\font\tenln=line10
\font\tenlnw=linew10
\font\tencirc=lcircle10
\font\tencircw=lcirclew10
\font\OT1/cmr/m/n/5=cmr5
\font\OT1/cmr/m/n/7=cmr7
\font\OT1/cmr/m/n/10=cmr10
\font\OML/cmm/m/it/5=cmmi5
\font\OML/cmm/m/it/7=cmmi7
\font\OML/cmm/m/it/10=cmmi10
\font\OMS/cmsy/m/n/5=cmsy5
\font\OMS/cmsy/m/n/7=cmsy7
\font\OMS/cmsy/m/n/10=cmsy10
3633 words of font info for 14 preloaded fonts
14 hyphenation exceptions
Hyphenation trie of length 6772 has 229 ops out of 35111
  229 for language 0
0 words of pdfTeX memory
0 indirect objects
No pages of output.
Transcript written on ../build/unpacked/latex.log.
This is TeX, Version 3.14159265 (TeX Live 2014/W32TeX) (preloaded format=tex)
(../build/unpacked/unpack.ins (../build/unpacked/ltdirchk.dtx
** Using the existing texsys.cfg
(../build/local/texsys.cfg)
./texsys.aux found


\@currdir set to: ./.

) (../build/unpacked/docstrip.dtx
Utility: `docstrip' 2.5e <2014/09/29>
English documentation    <2014/09/29>

**********************************************************
* This program converts documented macro-files into fast *
* loadable files by stripping off (nearly) all comments! *
**********************************************************

********************************************************
* No Configuration file found, using default settings. *
********************************************************

) (../build/unpacked/ltvers.dtx)
**********************************************
*
* Welcome to the Installation routine of
*
*     LaTeX2e <2015/01/01>
*
* Depending on your machine the installation
* might take a long time --- this is the
* price for being able to run on all platforms.
* So please be patient :-)
*
**********************************************


(../build/unpacked/format.ins

Generating file(s) ./latex.ltx ./tracefnt.sty ./flafter.sty ./fltrace.sty ./fle
qn.clo ./leqno.clo 

Processing file ltdirchk.dtx (initex,2ekernel,dircheck) -> latex.ltx
Lines  processed: 938
Comments removed: 687
Comments  passed: 1
Codelines passed: 229


Processing file ltplain.dtx (2ekernel) -> latex.ltx
Lines  processed: 1394
Comments removed: 956
Comments  passed: 17
Codelines passed: 351


Processing file ltvers.dtx (2ekernel) -> latex.ltx
File ltvers.dtx ended by \endinput.
Lines  processed: 195
Comments removed: 108
Comments  passed: 1
Codelines passed: 73


Processing file ltdefns.dtx (2ekernel) -> latex.ltx
Lines  processed: 1528
Comments removed: 1170
Comments  passed: 1
Codelines passed: 335


Processing file ltalloc.dtx (2ekernel) -> latex.ltx
File ltalloc.dtx ended by \endinput.
Lines  processed: 175
Comments removed: 136
Comments  passed: 1
Codelines passed: 34


Processing file ltcntrl.dtx (2ekernel) -> latex.ltx
File ltcntrl.dtx ended by \endinput.
Lines  processed: 325
Comments removed: 266
Comments  passed: 1
Codelines passed: 54


Processing file lterror.dtx (2ekernel) -> latex.ltx
File lterror.dtx ended by \endinput.
Lines  processed: 820
Comments removed: 519
Comments  passed: 1
Codelines passed: 222


Processing file ltpar.dtx (2ekernel) -> latex.ltx
File ltpar.dtx ended by \endinput.
Lines  processed: 194
Comments removed: 166
Comments  passed: 1
Codelines passed: 23


Processing file ltspace.dtx (2ekernel) -> latex.ltx
File ltspace.dtx ended by \endinput.
Lines  processed: 1126
Comments removed: 805
Comments  passed: 1
Codelines passed: 239


Processing file ltlogos.dtx (2ekernel) -> latex.ltx
File ltlogos.dtx ended by \endinput.
Lines  processed: 122
Comments removed: 85
Comments  passed: 1
Codelines passed: 32


Processing file ltfiles.dtx (2ekernel) -> latex.ltx
Lines  processed: 862
Comments removed: 610
Comments  passed: 1
Codelines passed: 242


Processing file ltoutenc.dtx (2ekernel) -> latex.ltx
File ltoutenc.dtx ended by \endinput.
Lines  processed: 3439
Comments removed: 2208
Comments  passed: 1
Codelines passed: 1194


Processing file ltcounts.dtx (2ekernel) -> latex.ltx
Lines  processed: 537
Comments removed: 401
Comments  passed: 1
Codelines passed: 102


Processing file ltlength.dtx (2ekernel) -> latex.ltx
Lines  processed: 167
Comments removed: 122
Comments  passed: 1
Codelines passed: 29


Processing file ltfssbas.dtx (2ekernel) -> latex.ltx
Lines  processed: 1946
Comments removed: 1430
Comments  passed: 2
Codelines passed: 452


Processing file ltfsstrc.dtx (2ekernel) -> latex.ltx
                             (package,trace) -> tracefnt.sty
Lines  processed: 1886
Comments removed: 1330
Comments  passed: 3
Codelines passed: 430


Processing file ltfsscmp.dtx (compat,2ekernel) -> latex.ltx
Lines  processed: 414
Comments removed: 263
Comments  passed: 3
Codelines passed: 136


Processing file ltfssdcl.dtx (compat,2ekernel) -> latex.ltx
Lines  processed: 1546
Comments removed: 712
Comments  passed: 3
Codelines passed: 818


Processing file ltfssini.dtx (compat,2ekernel) -> latex.ltx
Lines  processed: 612
Comments removed: 430
Comments  passed: 3
Codelines passed: 155


Processing file ltfntcmd.dtx (2ekernel) -> latex.ltx
File ltfntcmd.dtx ended by \endinput.
Lines  processed: 789
Comments removed: 629
Comments  passed: 17
Codelines passed: 139


Processing file ltpageno.dtx (2ekernel) -> latex.ltx
Lines  processed: 101
Comments removed: 71
Comments  passed: 1
Codelines passed: 25


Processing file ltxref.dtx (2ekernel) -> latex.ltx
Lines  processed: 341
Comments removed: 281
Comments  passed: 1
Codelines passed: 55


Processing file ltmiscen.dtx (2ekernel) -> latex.ltx
Lines  processed: 801
Comments removed: 627
Comments  passed: 1
Codelines passed: 169


Processing file ltmath.dtx (2ekernel) -> latex.ltx
                           (fleqn) -> fleqn.clo
                           (leqno) -> leqno.clo
Lines  processed: 1079
Comments removed: 636
Comments  passed: 17
Codelines passed: 368


Processing file ltlists.dtx (2ekernel) -> latex.ltx
Lines  processed: 1075
Comments removed: 809
Comments  passed: 1
Codelines passed: 261


Processing file ltboxes.dtx (2ekernel) -> latex.ltx
File ltboxes.dtx ended by \endinput.
Lines  processed: 1257
Comments removed: 866
Comments  passed: 1
Codelines passed: 307


Processing file lttab.dtx (2ekernel) -> latex.ltx
Lines  processed: 1621
Comments removed: 1241
Comments  passed: 1
Codelines passed: 364


Processing file ltpictur.dtx (2ekernel) -> latex.ltx
Lines  processed: 1487
Comments removed: 1071
Comments  passed: 1
Codelines passed: 382


Processing file ltthm.dtx (2ekernel) -> latex.ltx
Lines  processed: 289
Comments removed: 227
Comments  passed: 1
Codelines passed: 57


Processing file ltsect.dtx (2ekernel) -> latex.ltx
Lines  processed: 866
Comments removed: 676
Comments  passed: 1
Codelines passed: 185


Processing file ltfloat.dtx (2ekernel) -> latex.ltx
Lines  processed: 1557
Comments removed: 1074
Comments  passed: 1
Codelines passed: 337


Processing file ltidxglo.dtx (2ekernel) -> latex.ltx
Lines  processed: 217
Comments removed: 159
Comments  passed: 1
Codelines passed: 53


Processing file ltbibl.dtx (2ekernel) -> latex.ltx
Lines  processed: 407
Comments removed: 330
Comments  passed: 1
Codelines passed: 72


Processing file ltpage.dtx (2ekernel) -> latex.ltx
Lines  processed: 334
Comments removed: 256
Comments  passed: 1
Codelines passed: 73


Processing file ltoutput.dtx (2ekernel) -> latex.ltx
                             (flafter,trace) -> flafter.sty
                             (fltrace,trace) -> fltrace.sty
File ltoutput.dtx ended by \endinput.
Lines  processed: 4781
Comments removed: 2617
Comments  passed: 1
Codelines passed: 1316


Processing file ltclass.dtx (2ekernel) -> latex.ltx
Lines  processed: 1711
Comments removed: 1170
Comments  passed: 1
Codelines passed: 534


Processing file ltfinal.dtx (2ekernel) -> latex.ltx
Lines  processed: 759
Comments removed: 447
Comments  passed: 1
Codelines passed: 285


Generating file(s) ./oldlfont.sty 

Processing file oldlfont.dtx (package) -> oldlfont.sty
File oldlfont.dtx ended by \endinput.
Lines  processed: 266
Comments removed: 192
Comments  passed: 18
Codelines passed: 45


Generating file(s) ./newlfont.sty 

Processing file newlfont.dtx (package) -> newlfont.sty
File newlfont.dtx ended by \endinput.
Lines  processed: 218
Comments removed: 143
Comments  passed: 18
Codelines passed: 48


Generating file(s) ./hyphen.ltx 

Processing file lthyphen.dtx (default) -> hyphen.ltx
File lthyphen.dtx ended by \endinput.
Lines  processed: 157
Comments removed: 118
Comments  passed: 15
Codelines passed: 17


Generating file(s) ./fonttext.ltx ./fontmath.ltx ./fonttext.cfg ./fontmath.cfg 
./preload.cfg 

Processing file fontdef.dtx (text) -> fonttext.ltx
                            (math) -> fontmath.ltx
                            (cfgtext) -> fonttext.cfg
                            (cfgmath) -> fontmath.cfg
                            (cfgprel) -> preload.cfg
File fontdef.dtx ended by \endinput.
Lines  processed: 1336
Comments removed: 759
Comments  passed: 34
Codelines passed: 516


Generating file(s) ./preload.ltx 

Processing file preload.dtx (preload,cm,xpt,tex) -> preload.ltx
File preload.dtx ended by \endinput.
Lines  processed: 283
Comments removed: 186
Comments  passed: 31
Codelines passed: 26

) (../build/unpacked/inputenc.ins
*** Generating input encoding files ***

Generating file(s) ./inputenc.sty ./latin1.def ./latin2.def ./latin3.def ./lati
n4.def ./latin5.def ./latin9.def ./latin10.def 

Processing file inputenc.dtx (package) -> inputenc.sty
                             (latin1) -> latin1.def
                             (latin2) -> latin2.def
                             (latin3) -> latin3.def
                             (latin4) -> latin4.def
                             (latin5) -> latin5.def
                             (latin9) -> latin9.def
                             (latin10) -> latin10.def
File inputenc.dtx ended by \endinput.
Lines  processed: 3042
Comments removed: 1212
Comments  passed: 15
Codelines passed: 1685


Generating file(s) ./cp850.def ./cp852.def ./cp858.def ./cp865.def ./cp437.def 
./cp437de.def ./decmulti.def 

Processing file inputenc.dtx (cp850) -> cp850.def
                             (cp852) -> cp852.def
                             (cp858) -> cp858.def
                             (cp865) -> cp865.def
                             (cp437) -> cp437.def
                             (cp437de) -> cp437de.def
                             (decmulti) -> decmulti.def
File inputenc.dtx ended by \endinput.
Lines  processed: 3042
Comments removed: 1212
Comments  passed: 15
Codelines passed: 1685


Generating file(s) ./ascii.def ./applemac.def ./macce.def ./next.def ./ansinew.
def ./cp1250.def ./cp1252.def ./cp1257.def 

Processing file inputenc.dtx (ascii) -> ascii.def
                             (applemac) -> applemac.def
                             (applemacce) -> macce.def
                             (next) -> next.def
                             (cp1252,ansinew) -> ansinew.def
                             (cp1250) -> cp1250.def
                             (cp1252) -> cp1252.def
                             (cp1257) -> cp1257.def
File inputenc.dtx ended by \endinput.
Lines  processed: 3042
Comments removed: 1212
Comments  passed: 15
Codelines passed: 1685

*** Generating utf8 input encoding files ***

Generating file(s) ./utf8.def ./utf8-test.tex ./lcyenc.dfu ./ly1enc.dfu ./omsen
c.dfu ./ot1enc.dfu ./ot2enc.dfu ./t1enc.dfu 

Processing file utf8ienc.dtx (utf8) -> utf8.def
                             (test) -> utf8-test.tex
                             (lcy) -> lcyenc.dfu
                             (ly1) -> ly1enc.dfu
                             (oms) -> omsenc.dfu
                             (ot1) -> ot1enc.dfu
                             (ot2) -> ot2enc.dfu
                             (t1) -> t1enc.dfu
File utf8ienc.dtx ended by \endinput.
Lines  processed: 1404
Comments removed: 738
Comments  passed: 0
Codelines passed: 270


Generating file(s) ./t2aenc.dfu ./t2benc.dfu ./t2cenc.dfu ./ts1enc.dfu ./x2enc.
dfu ./utf8enc.dfu ./utf8test.tex 

Processing file utf8ienc.dtx (t2a) -> t2aenc.dfu
                             (t2b) -> t2benc.dfu
                             (t2c) -> t2cenc.dfu
                             (ts1) -> ts1enc.dfu
                             (x2) -> x2enc.dfu
                             (all) -> utf8enc.dfu
                             (test) -> utf8test.tex
File utf8ienc.dtx ended by \endinput.
Lines  processed: 1404
Comments removed: 738
Comments  passed: 0
Codelines passed: 270

) (../build/unpacked/ltoutenc.ins

Generating file(s) ./ot1enc.def ./omsenc.def ./omlenc.def ./t1enc.def ./ot4enc.
def ./ts1enc.def ./textcomp.sty ./fontenc.sty 

Processing file ltoutenc.dtx (OT1) -> ot1enc.def
                             (OMS) -> omsenc.def
                             (OML) -> omlenc.def
                             (T1) -> t1enc.def
                             (OT4) -> ot4enc.def
                             (TS1) -> ts1enc.def
                             (TS1sty) -> textcomp.sty
                             (package) -> fontenc.sty
File ltoutenc.dtx ended by \endinput.
Lines  processed: 3439
Comments removed: 2208
Comments  passed: 1
Codelines passed: 1194

) (../build/unpacked/classes.ins

Generating file(s) ./article.cls ./report.cls ./book.cls ./size10.clo ./size11.
clo ./size12.clo ./bk10.clo ./bk11.clo ./bk12.clo 

Processing file classes.dtx (article) -> article.cls
                            (report) -> report.cls
                            (book) -> book.cls
                            (10pt) -> size10.clo
                            (11pt) -> size11.clo
                            (12pt) -> size12.clo
                            (10pt,bk) -> bk10.clo
                            (11pt,bk) -> bk11.clo
                            (12pt,bk) -> bk12.clo
File classes.dtx ended by \endinput.
Lines  processed: 4462
Comments removed: 3062
Comments  passed: 15
Codelines passed: 1080

) (../build/unpacked/letter.ins
*** Generating letter class file ***

Generating file(s) ./letter.cls 

Processing file letter.dtx (letter) -> letter.cls
File letter.dtx ended by \endinput.
Lines  processed: 1917
Comments removed: 1484
Comments  passed: 15
Codelines passed: 409

) (../build/unpacked/slides.ins
*** Generating slide cmd files and styles ***

Generating file(s) ./slides.cls ./slides.def 

Processing file slides.dtx (class) -> slides.cls
                           (cmd) -> slides.def
File slides.dtx ended by \endinput.
Lines  processed: 2722
Comments removed: 1782
Comments  passed: 15
Codelines passed: 912

*** Generating default fonts setup file for slides ***
*** Generating .fd files ***

Generating file(s) ./sfonts.def ./ot1lcmss.fd ./ot1lcmtt.fd ./omllcmm.fd ./omsl
cmsy.fd ./omxlcmex.fd ./ullasy.fd 

Processing file slifonts.fdd (main) -> sfonts.def
                             (lcmss,fd) -> ot1lcmss.fd
                             (lcmtt,fd) -> ot1lcmtt.fd
                             (lcmm,fd) -> omllcmm.fd
                             (lcmsy,fd) -> omslcmsy.fd
                             (lcmex,fd) -> omxlcmex.fd
                             (llasy,fd) -> ullasy.fd
File slifonts.fdd ended by \endinput.
Lines  processed: 465
Comments removed: 281
Comments  passed: 0
Codelines passed: 103

) (../build/unpacked/proc.ins

Generating file(s) ./proc.cls ./proc.sty 

Processing file proc.dtx (class) -> proc.cls
                         (style) -> proc.sty
File proc.dtx ended by \endinput.
Lines  processed: 455
Comments removed: 332
Comments  passed: 15
Codelines passed: 93

) (../build/unpacked/latexsym.ins

Generating file(s) ./latexsym.sty ./ulasy.fd 

Processing file latexsym.dtx (package) -> latexsym.sty
                             (fd) -> ulasy.fd
File latexsym.dtx ended by \endinput.
Lines  processed: 196
Comments removed: 143
Comments  passed: 0
Codelines passed: 41

) (../build/unpacked/cmfonts.ins

Generating file(s) ./ot1cmss.fd ./ot1cmr.fd ./ot1cmtt.fd ./ot1cmvtt.fd ./ot1cmf
ib.fd ./ot1cmfr.fd ./ot1cmdh.fd 

Processing file cmfonts.fdd (OT1cmss) -> ot1cmss.fd
                            (OT1cmr) -> ot1cmr.fd
                            (OT1cmtt,nowarn) -> ot1cmtt.fd
                            (OT1cmvtt) -> ot1cmvtt.fd
                            (OT1cmfib) -> ot1cmfib.fd
                            (OT1cmfr) -> ot1cmfr.fd
                            (OT1cmdh) -> ot1cmdh.fd
File cmfonts.fdd ended by \endinput.
Lines  processed: 1295
Comments removed: 556
Comments  passed: 0
Codelines passed: 424


Generating file(s) ./ucmr.fd ./ucmss.fd ./ucmtt.fd ./omlcmm.fd ./omscmsy.fd ./o
mxcmex.fd ./omlcmr.fd ./omscmr.fd 

Processing file cmfonts.fdd (Ucmr) -> ucmr.fd
                            (Ucmss) -> ucmss.fd
                            (Ucmtt) -> ucmtt.fd
                            (OMLcmm) -> omlcmm.fd
                            (OMScmsy) -> omscmsy.fd
                            (OMXcmex) -> omxcmex.fd
                            (OMLcmr) -> omlcmr.fd
                            (OMScmr) -> omscmr.fd
File cmfonts.fdd ended by \endinput.
Lines  processed: 1295
Comments removed: 556
Comments  passed: 0
Codelines passed: 424

) (../build/unpacked/ec.ins
*** Generating font defs for Cork encoded and Text Companion fonts ***

Generating file(s) ./t1cmfib.fd ./t1cmfr.fd ./t1cmdh.fd ./t1cmr.fd ./t1cmss.fd 
./t1cmtt.fd ./t1cmvtt.fd ./ts1cmr.fd ./ts1cmss.fd ./ts1cmtt.fd ./ts1cmvtt.fd 

Processing file cmfonts.fdd (fd,T1cmfib,ec) -> t1cmfib.fd
                            (fd,T1cmfr,ec) -> t1cmfr.fd
                            (fd,T1cmdh,ec) -> t1cmdh.fd
                            (fd,T1cmr,ec) -> t1cmr.fd
                            (fd,T1cmss,ec) -> t1cmss.fd
                            (fd,T1cmtt,tt,ec,nowarn) -> t1cmtt.fd
                            (fd,T1cmvtt,tt,ec) -> t1cmvtt.fd
                            (fd,TS1cmr,ec) -> ts1cmr.fd
                            (fd,TS1cmss,ec) -> ts1cmss.fd
                            (fd,TS1cmtt,ec,tt) -> ts1cmtt.fd
                            (fd,TS1cmvtt,ec,tt) -> ts1cmvtt.fd
File cmfonts.fdd ended by \endinput.
Lines  processed: 1295
Comments removed: 556
Comments  passed: 0
Codelines passed: 424


Generating file(s) ./t1lcmss.fd ./t1lcmtt.fd 

Processing file slifonts.fdd (lcmss,fd,ec) -> t1lcmss.fd
                             (lcmtt,fd,ec) -> t1lcmtt.fd
File slifonts.fdd ended by \endinput.
Lines  processed: 465
Comments removed: 281
Comments  passed: 0
Codelines passed: 103

) (../build/unpacked/latex209.ins
*** Generating compatibility mode files ***

Generating file(s) ./latex209.def ./article.sty ./book.sty ./report.sty ./lette
r.sty ./slides.sty ./fleqn.sty ./leqno.sty ./openbib.sty ./bezier.sty ./t1enc.s
ty 

Processing file latex209.dtx (head) -> latex209.def
                             (article) -> article.sty
                             (book) -> book.sty
                             (report) -> report.sty
                             (letter) -> letter.sty
                             (slides) -> slides.sty
                             (fleqn) -> fleqn.sty
                             (leqno) -> leqno.sty
                             (openbib) -> openbib.sty
                             (bezier) -> bezier.sty
                             (t1enc) -> t1enc.sty
File latex209.dtx ended by \endinput.
Lines  processed: 1147
Comments removed: 789
Comments  passed: 15
Codelines passed: 315


Processing file oldlfont.dtx (latex209) -> latex209.def
File oldlfont.dtx ended by \endinput.
Lines  processed: 266
Comments removed: 192
Comments  passed: 18
Codelines passed: 45


Processing file latex209.dtx (tail) -> latex209.def
File latex209.dtx  ended by \endinput.
Lines  processed: 1147
Comments removed: 789
Comments  passed: 15
Codelines passed: 315

) (../build/unpacked/docstrip.ins

Generating file(s) ./docstrip.tex 

Processing file docstrip.dtx (initex,program,stats) -> docstrip.tex
File docstrip.dtx ended by \endinput.
Lines  processed: 4359
Comments removed: 3247
Comments  passed: 25
Codelines passed: 1054


Generating file(s) ./ltxdoc.cls 

Processing file ltxdoc.dtx (class) -> ltxdoc.cls
Lines  processed: 524
Comments removed: 334
Comments  passed: 0
Codelines passed: 183


Generating file(s) ./doc.sty ./shortvrb.sty ./gind.ist ./gglo.ist 

Processing file doc.dtx (package) -> doc.sty
                        (shortvrb) -> shortvrb.sty
                        (gind) -> gind.ist
                        (gglo) -> gglo.ist
File doc.dtx ended by \endinput.
Lines  processed: 4903
Comments removed: 4028
Comments  passed: 18
Codelines passed: 789

) (../build/unpacked/ifthen.ins

Generating file(s) ./ifthen.sty 

Processing file ifthen.dtx (package) -> ifthen.sty
File ifthen.dtx ended by \endinput.
Lines  processed: 526
Comments removed: 408
Comments  passed: 6
Codelines passed: 103

) (../build/unpacked/graphpap.ins

Generating file(s) ./graphpap.sty 

Processing file graphpap.dtx (package) -> graphpap.sty
Lines  processed: 195
Comments removed: 126
Comments  passed: 5
Codelines passed: 57

) (../build/unpacked/makeindx.ins

Generating file(s) ./makeidx.sty ./showidx.sty 

Processing file makeindx.dtx (makeidx) -> makeidx.sty
                             (showidx) -> showidx.sty
File makeindx.dtx ended by \endinput.
Lines  processed: 312
Comments removed: 254
Comments  passed: 0
Codelines passed: 50

) (../build/unpacked/syntonly.ins

Generating file(s) ./syntonly.sty 

Processing file syntonly.dtx (package) -> syntonly.sty
File syntonly.dtx ended by \endinput.
Lines  processed: 296
Comments removed: 221
Comments  passed: 17
Codelines passed: 49

) (../build/unpacked/exscale.ins

Generating file(s) ./exscale.sty 

Processing file exscale.dtx (package) -> exscale.sty
File exscale.dtx ended by \endinput.
Lines  processed: 187
Comments removed: 141
Comments  passed: 3
Codelines passed: 31

) (../build/unpacked/alltt.ins

Generating file(s) ./alltt.sty 

Processing file alltt.dtx (package) -> alltt.sty
File alltt.dtx ended by \endinput.
Lines  processed: 212
Comments removed: 138
Comments  passed: 6
Codelines passed: 59

) (../build/unpacked/nfssfont.ins

Generating file(s) ./nfssfont.tex 

Processing file nfssfont.dtx (code) -> nfssfont.tex
File nfssfont.dtx ended by \endinput.
Lines  processed: 499
Comments removed: 180
Comments  passed: 15
Codelines passed: 300

) (../build/unpacked/fixltx2e.ins

Generating file(s) ./fixltx2e.sty 

Processing file fixltx2e.dtx (fixltx2e) -> fixltx2e.sty
File fixltx2e.dtx ended by \endinput.
Lines  processed: 965
Comments removed: 426
Comments  passed: 15
Codelines passed: 512


Generating file(s) ./fix-cm.sty 

Processing file fixltx2e.dtx (fix-cm) -> fix-cm.sty
File fixltx2e.dtx ended by \endinput.
Lines  processed: 965
Comments removed: 426
Comments  passed: 15
Codelines passed: 512

) (../build/unpacked/latexrelease.ins

Generating file(s) ./latexrelease.sty 

Processing file ltvers.dtx (latexrelease) -> latexrelease.sty
File ltvers.dtx ended by \endinput.
Lines  processed: 195
Comments removed: 108
Comments  passed: 1
Codelines passed: 73


Processing file latexrelease.dtx (latexrelease) -> latexrelease.sty
File latexrelease.dtx ended by \endinput.
Lines  processed: 784
Comments removed: 715
Comments  passed: 0
Codelines passed: 61


Processing file ltdefns.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1528
Comments removed: 1170
Comments  passed: 1
Codelines passed: 335


Processing file ltboxes.dtx (latexrelease) -> latexrelease.sty
File ltboxes.dtx ended by \endinput.
Lines  processed: 1257
Comments removed: 866
Comments  passed: 1
Codelines passed: 307


Processing file ltmath.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1079
Comments removed: 636
Comments  passed: 17
Codelines passed: 368


Processing file ltlength.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 167
Comments removed: 122
Comments  passed: 1
Codelines passed: 29


Processing file ltfloat.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1557
Comments removed: 1074
Comments  passed: 1
Codelines passed: 337


Processing file ltoutput.dtx (latexrelease) -> latexrelease.sty
File ltoutput.dtx ended by \endinput.
Lines  processed: 4781
Comments removed: 2617
Comments  passed: 1
Codelines passed: 1316


Processing file ltspace.dtx (latexrelease) -> latexrelease.sty
File ltspace.dtx ended by \endinput.
Lines  processed: 1126
Comments removed: 805
Comments  passed: 1
Codelines passed: 239


Processing file ltplain.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1394
Comments removed: 956
Comments  passed: 17
Codelines passed: 351


Processing file ltfssini.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 612
Comments removed: 430
Comments  passed: 3
Codelines passed: 155


Processing file ltfssbas.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 1946
Comments removed: 1430
Comments  passed: 2
Codelines passed: 452


Processing file ltfinal.dtx (latexrelease) -> latexrelease.sty
Lines  processed: 759
Comments removed: 447
Comments  passed: 1
Codelines passed: 285

)

***********************************
*
* Now run INITEX on latex.ltx
*
***********************************

Overall statistics:
Files  processed: 86
Lines  processed: 103586
Comments removed: 66417
Comments  passed: 536
Codelines passed: 30268
 )
No pages of output.
Transcript written on ../build/unpacked/unpack.log.
Running checks on
  tl2e2
  tl2e3
  tl2e4
  tl2e5
  tl2e6
  tl2e7
  tl2e8
  tlb-fixltx2e-001
  tlb-fltrace-001-2015
  tlb-fltrace-001
  tlb-fltrace-002-2015
  tlb-fltrace-002
  tlb-fltrace-003-2015
  tlb-fltrace-003
  tlb-fltrace-004-2015
  tlb-fltrace-004
  tlb-fltrace-005-2015
  tlb-fltrace-005
  tlb-syntonly-001
  tlb0001
  tlb0002a
  tlb0002b
  tlb0002c
  tlb0002d
  tlb0009
  tlb0010
  tlb0014
  tlb0018
  tlb0021
  tlb0024
  tlb0026
  tlb0027a
  tlb0027b
  tlb0028
  tlb0039
  tlb0049
  tlb0056
  tlb0057-2015
  tlb0057
  tlb0063
  tlb0073
  tlb0077
  tlb0084-2015
  tlb0084
  tlb0105
  tlb0109
  tlb0130
  tlb0143
  tlb0150
  tlb0152
  tlb0162
  tlb0171
  tlb0202
  tlb0203
  tlb0230
  tlb0250
  tlb0264
  tlb0268
  tlb0320
  tlb0327
  tlb0372
  tlb0375
  tlb0376
  tlb0380
  tlb0406
  tlb0427
  tlb0435
  tlb0438
  tlb0446
  tlb0462
  tlb0480-2015
  tlb0480
  tlb0483
  tlb0498
  tlb0509
  tlb0552
  tlb0554
  tlb0557
  tlb0574
  tlb0577a
  tlb0577b
  tlb0613
  tlb0642
  tlb0655
  tlb0667
  tlb0694
  tlb0747
  tlb0759
  tlb0830
  tlb0848
  tlb0878a
  tlb0878b
  tlb0881
  tlb0884
  tlb0942
  tlb0985
  tlb1020
  tlb1026
  tlb1042
  tlb1061
  tlb1135
  tlb1144
  tlb1180
  tlb1184
  tlb1202
  tlb1214
  tlb1217
  tlb1233
  tlb1315
  tlb1352
  tlb1369
  tlb1378
  tlb1379
  tlb1388
  tlb1451
  tlb1498
  tlb1503
  tlb1514
  tlb1519
  tlb1521
  tlb1545
  tlb1573
  tlb1578a
  tlb1578b
  tlb1578c
  tlb1578d
  tlb1596
  tlb1612
  tlb1621
  tlb1622
  tlb1634
  tlb1638
  tlb1647
  tlb1664-2015
  tlb1664
  tlb1683
  tlb1684
  tlb1722
  tlb1738
  tlb1764
  tlb1771
  tlb1783a
  tlb1783b
  tlb1789
  tlb1816
  tlb1826
  tlb1873
  tlb1876
  tlb1893
  tlb1895
  tlb1903
  tlb1909
  tlb1915
  tlb1944
  tlb2004
  tlb2024
  tlb2048
  tlb2049
  tlb2054
  tlb2104
  tlb2105
  tlb2133
  tlb2138
  tlb2140
  tlb2145
  tlb2149-2015
  tlb2149
  tlb2153
  tlb2153a
  tlb2153b
  tlb2153c
  tlb2157
  tlb2203
  tlb2212
  tlb2400
  tlb2404
  tlb2432
  tlb2489
  tlb2499
  tlb2529
  tlb2558
  tlb2581
  tlb2583-2015
  tlb2583
  tlb2608
  tlb2649
  tlb2661
  tlb2727
  tlb2783
  tlb2815
  tlb3073
  tlb3104
  tlb3473
  tlb3480
  tlb3492
  tlb3693
  tlb3752
  tlb3752e
  tlb3975
  tlb4023
  tlb4024
  tlb4092
  tlb4096
  tlb4169
  tlb4179
  tlb4182
  tlb4192
  tlb4393
  tlcs01a
  tlcs01b
  tlcs01l
  tlcs01p
  tlcs01r
  tlcs02
  tlcs03
  tlcs03a
  tlcs03b
  tlcs03r
  tlcs04a
  tlcs04b
  tlcs04r
  tlcs05s
  tlcs06a
  tlcs06b
  tlcs06r
  tlcs07a0
  tlcs07a1
  tlcs07a2
  tlcs07b0
  tlcs07b1
  tlcs07b2
  tlcs07r0
  tlcs07r1
  tlcs07r2
  tlcs08
  tltc001
  tltc002
  tltx001
  tltx002
  tltx003
  tltx004
  tltx005
  tlxs01a
  tlxs01b
  tlxs01l
  tlxs01p
  tlxs01r
  tlxs02
  tlxs03
  tlxs03a
  tlxs03b
  tlxs03r
  tlxs04a
  tlxs04b
  tlxs04r
  tlxs05s
  tlxs06a
  tlxs06b
  tlxs06r
  tlxs07a0
  tlxs07a1
  tlxs07a2
  tlxs07b0
  tlxs07b1
  tlxs07b2
  tlxs07r0
  tlxs07r1
  tlxs07r2
  tlxs08
  tlxs09
  tnfss2
  tnfss3
  tnfss4
  tnfss5
  tnfss6
  tnfss7
  vlatex01
  vlatex02
  vlatex03-2015
  vlatex03
  vlatex04
  vlatex05
  vlatex06-2015
  vlatex06
  vlatex07
  vtl2e01
  vtl2e02
  vtl2e03-2015
  vtl2e03
  vtl2e04
  vtl2e05
  vtl2e06
  vtl2e07

  All checks passed