summaryrefslogtreecommitdiff
path: root/support/lametex/src/example1.ps
blob: c381eb63af839f16c518ffe95362d680bfd599f6 (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
%!PS-Adobe-2.0
%%Creator: dvips 5.47 Copyright 1986-91 Radical Eye Software
%%Title: lametex.dvi
%%Pages: 1 1
%%BoundingBox: 0 0 612 792
%%EndComments
%%BeginProcSet: tex.pro
/TeXDict 200 dict def TeXDict begin /N /def load def /B{bind def}N /S /exch
load def /X{S N}B /TR /translate load N /isls false N /vsize 10 N /@rigin{
isls{[0 1 -1 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale
Resolution VResolution vsize neg mul TR matrix currentmatrix dup dup 4 get
round 4 exch put dup dup 5 get round 5 exch put setmatrix}N /@letter{/vsize 10
N}B /@landscape{/isls true N /vsize -1 N}B /@a4{/vsize 10.6929133858 N}B /@a3{
/vsize 15.5531 N}B /@ledger{/vsize 16 N}B /@legal{/vsize 13 N}B /@manualfeed{
statusdict /manualfeed true put}B /@copies{/#copies X}B /FMat[1 0 0 -1 0 0]N
/FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{/nn 8 dict N nn begin
/FontType 3 N /FontMatrix fntrx N /FontBBox FBB N string /base X array
/BitMaps X /BuildChar{CharBuilder}N /Encoding IE N end dup{/foo setfont}2
array copy cvx N load 0 nn put /ctr 0 N[}B /df{/sf 1 N /fntrx FMat N df-tail}
B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0]N df-tail}B /E{pop nn dup definefont
setfont}B /ch-width{ch-data dup length 5 sub get}B /ch-height{ch-data dup
length 4 sub get}B /ch-xoff{128 ch-data dup length 3 sub get sub}B /ch-yoff{
ch-data dup length 2 sub get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B
/ch-image{ch-data dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0
N /rw 0 N /rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N

/FMat [ 0.24 0 0 0.24 0 0 ] def
/CharBuilder            % fontdict ascii
{
    1 index             % fontdict ascii fontdict
    /base get           % fontdict ascii base
    exch get            % fontdict asciiequiv
    exch /BitMaps get   % asciiequiv BitMaps
    exch get            % bitmapstring
    % ch-data becomes the bitmapstring for the ascii character
    /ch-data exch def   %
    /ctr 0 def
    % The next line is the "ch-dx" algorithm
    ch-data dup length 1 sub get    % ch-data last-char
    0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff
    setcachedevice
    ch-width ch-height true
    [ 1 0 0 -1 -.1 ch-xoff sub ch-yoff .1 add ]
    { ch-image } imagemask
} bind def

 /D{/cc X dup type /stringtype ne{]}if nn /base get cc ctr
put nn /BitMaps get S ctr S sf 1 ne{dup dup length 1 sub dup 2 index S get sf
div put}if put /ctr ctr 1 add N}B /I{cc 1 add D}B /bop{userdict /bop-hook
known{bop-hook}if /SI save N @rigin 0 0 moveto}N /eop{clear SI restore
showpage userdict /eop-hook known{eop-hook}if}N /@start{userdict /start-hook
known{start-hook}if /VResolution X /Resolution X 1000 div /DVImag X /IE 256
array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for}N /p /show load N
/RMat[1 0 0 -1 0 0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X
/rulex X V}B /V statusdict begin /product where{pop product dup length 7 ge{0
7 getinterval(Display)eq}{pop false}ifelse}{false}ifelse end{{gsave TR -.1 -.1
TR 1 1 scale rulex ruley false RMat{BDot}imagemask grestore}}{{gsave TR -.1
-.1 TR rulex ruley scale 1 1 false RMat{BDot}imagemask grestore}}ifelse B /a{
moveto}B /delta 0 N /tail{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{
S p tail}B /c{-4 M}B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B
/j{3 M}B /k{4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w
}B /q{p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p
a}B /bos{/SS save N}B /eos{clear SS restore}B end
%%EndProcSet
TeXDict begin 1000 300 300 @start /Fa 26 118 df<3803807C07C0FE0FE0FF0FF0FF0FF0
7F07F03B03B00300300300300700700600600600600C00C01C01C018018070070020020014117E
A21D>34 D<387CFEFEFE7C3807077C8610>46 D<00FE0007FFC00F83E01F01F03E00F83E00F87C
007C7C007C7C007CFC007CFC007EFC007EFC007EFC007EFC007EFC007EFC007EFC007EFC007EFC
007EFC007EFC007EFC007E7C007C7C007C7C007C3E00F83E00F81F01F00F83E007FFC000FE0017
207E9F1C>48 D<00180000780001F800FFF800FFF80001F80001F80001F80001F80001F80001F8
0001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F80001F8
0001F80001F80001F80001F80001F80001F8007FFFE07FFFE013207C9F1C>I<03FC000FFF003C
1FC07007E07C07F0FE03F0FE03F8FE03F8FE01F87C01F83803F80003F80003F00003F00007E000
07C0000F80001F00003E0000380000700000E01801C0180380180700180E00380FFFF01FFFF03F
FFF07FFFF0FFFFF0FFFFF015207D9F1C>I<00FE0007FFC00F07E01E03F03F03F03F81F83F81F8
3F81F81F03F81F03F00003F00003E00007C0001F8001FE0001FF000007C00001F00001F80000FC
0000FC3C00FE7E00FEFF00FEFF00FEFF00FEFF00FC7E01FC7801F81E07F00FFFC001FE0017207E
9F1C>I<0000E00001E00003E00003E00007E0000FE0001FE0001FE00037E00077E000E7E001C7
E00187E00307E00707E00E07E00C07E01807E03807E07007E0E007E0FFFFFEFFFFFE0007E00007
E00007E00007E00007E00007E00007E000FFFE00FFFE17207E9F1C>I<1000201E01E01FFFC01F
FF801FFF001FFE001FF8001BC00018000018000018000018000019FC001FFF001E0FC01807E018
03E00003F00003F00003F80003F83803F87C03F8FE03F8FE03F8FC03F0FC03F07007E03007C01C
1F800FFF0003F80015207D9F1C>I<001F8000FFE003F07007C0F00F01F81F01F83E01F83E01F8
7E00F07C00007C0000FC0800FC7FC0FCFFE0FD80F0FF00F8FE007CFE007CFC007EFC007EFC007E
FC007E7C007E7C007E7C007E3C007C3E007C1E00F80F00F00783E003FFC000FF0017207E9F1C>
I<6000007800007FFFFE7FFFFE7FFFFC7FFFF87FFFF87FFFF0E00060E000C0C00180C00300C003
00000600000C00001C0000180000380000780000780000F00000F00000F00001F00001F00001F0
0003F00003F00003F00003F00003F00003F00003F00001E00017227DA11C>I<00FE0003FFC006
01E00C00701800701800383800383C00383F00383F80783FE0701FF8E01FFFC00FFF8007FFC003
FFE007FFF01E7FF83C1FFC7807FC7801FEF000FEF0003EF0001EF0001EF0001CF8001C7800383C
00381F01F00FFFC001FF0017207E9F1C>I<01FE0007FF800F83E01E01F03E00F07C00F87C0078
FC007CFC007CFC007CFC007EFC007EFC007EFC007E7C00FE7C00FE3E01FE1E037E0FFE7E07FC7E
00207E00007C00007C1E007C3F00F83F00F83F00F03F01E01E03C01C0F800FFE0003F80017207E
9F1C>I<0400400E00E0180180380380300300600600600600E00E00C00C00C00C00DC0DC0FE0F
E0FF0FF0FF0FF07F07F03E03E01C01C014117AA21D>92 D<07FC001FFF803F07C03F03E03F01E0
3F01F01E01F00001F00001F0003FF003FDF01FC1F03F01F07E01F0FC01F0FC01F0FC01F0FC01F0
7E02F07E0CF81FF87F07E03F18167E951B>97 D<00FF8007FFE00F83F01F03F03E03F07E03F07C
01E07C0000FC0000FC0000FC0000FC0000FC0000FC00007C00007E00007E00003E00301F00600F
C0E007FF8000FE0014167E9519>99 D<0001FE000001FE0000003E0000003E0000003E0000003E
0000003E0000003E0000003E0000003E0000003E0000003E0000003E0001FC3E0007FFBE000F81
FE001F007E003E003E007E003E007C003E00FC003E00FC003E00FC003E00FC003E00FC003E00FC
003E00FC003E00FC003E007C003E007C003E003E007E001E00FE000F83BE0007FF3FC001FC3FC0
1A237EA21F>I<00FE0007FF800F87C01E01E03E01F07C00F07C00F8FC00F8FC00F8FFFFF8FFFF
F8FC0000FC0000FC00007C00007C00007E00003E00181F00300FC07003FFC000FF0015167E951A
>I<03FC1E0FFF7F1F0F8F3E07CF3C03C07C03E07C03E07C03E07C03E07C03E03C03C03E07C01F
0F801FFF0013FC003000003000003800003FFF801FFFF00FFFF81FFFFC3800FC70003EF0001EF0
001EF0001EF0001E78003C7C007C3F01F80FFFE001FF0018217E951C>103
D<FF000000FF0000001F0000001F0000001F0000001F0000001F0000001F0000001F0000001F00
00001F0000001F0000001F0000001F07E0001F1FF8001F307C001F403C001F803E001F803E001F
003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E00
1F003E001F003E001F003E001F003E00FFE1FFC0FFE1FFC01A237EA21F>I<1C003F007F007F00
7F003F001C000000000000000000000000000000FF00FF001F001F001F001F001F001F001F001F
001F001F001F001F001F001F001F001F001F001F00FFE0FFE00B247EA310>I<FF00FF001F001F
001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00
1F001F001F001F001F001F001F001F001F001F00FFE0FFE00B237EA210>108
D<FF07F007F000FF1FFC1FFC001F303E303E001F403E403E001F801F801F001F801F801F001F00
1F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F
001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F001F00
1F001F00FFE0FFE0FFE0FFE0FFE0FFE02B167E9530>I<FF07E000FF1FF8001F307C001F403C00
1F803E001F803E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E
001F003E001F003E001F003E001F003E001F003E001F003E00FFE1FFC0FFE1FFC01A167E951F>
I<00FE0007FFC00F83E01E00F03E00F87C007C7C007C7C007CFC007EFC007EFC007EFC007EFC00
7EFC007EFC007E7C007C7C007C3E00F81F01F00F83E007FFC000FE0017167E951C>I<01800001
80000180000180000380000380000780000780000F80003F8000FFFF00FFFF000F80000F80000F
80000F80000F80000F80000F80000F80000F80000F80000F80000F81800F81800F81800F81800F
81800F830007C30003FE0000F80011207F9F16>116 D<FF01FE00FF01FE001F003E001F003E00
1F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E001F003E
001F003E001F003E001F003E001F007E001F00FE000F81BE0007FF3FC001FC3FC01A167E951F>
I E /Fb 33 120 df<1C0038007F00FE00FF81FF00FF81FF00FFC1FF80FFC1FF80FFC1FF807FC0
FF801CC0398000C0018000C0018001C0038001800300018003000380070007000E0006000C000E
001C001C003800380070003000600019157EA924>34 D<1C007F00FF80FF80FF80FF80FF807F00
1C0009097B8813>46 D<003F800001FFF00007E0FC000FC07E001F803F001F803F003F001F803F
001F807F001FC07F001FC07F001FC07F001FC0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0
FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001FE0FF001F
E07F001FC07F001FC07F001FC07F001FC03F001F803F001F801F803F001F803F000FC07E0007E0
FC0001FFF000003F80001B277DA622>48 D<000E00001E00007E0007FE00FFFE00FFFE00F8FE00
00FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE00
00FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE00
00FE0000FE0000FE007FFFFE7FFFFE7FFFFE17277BA622>I<00FF800003FFF0000FFFFC003F03
FF007C00FF807C007FC0FE007FC0FF003FE0FF003FE0FF003FE0FF001FE07E001FE03C003FE000
003FE000003FC000003FC000007F8000007F800000FF000001FE000001FC000003F0000007E000
000FC000001F0000003E0000007C00E0007800E000F000E001E001C0038001C0070001C00FFFFF
C01FFFFFC03FFFFFC07FFFFFC0FFFFFF80FFFFFF80FFFFFF801B277DA622>I<007F800003FFF0
0007FFFC001F81FE001F00FF003F80FF003F807F803FC07F803F807F803F807F801F007F800000
FF800000FF000000FF000001FE000003F8000007F00000FFC00000FFF0000001FC000000FF0000
007F8000007FC000003FC000003FE000003FE000003FE03C003FE07E003FE0FF003FE0FF003FE0
FF003FC0FF007FC0FE007F807C00FF803F01FF001FFFFC0007FFF00000FF80001B277DA622>I<
00000E0000001E0000003E0000007E000000FE000000FE000001FE000003FE0000077E00000E7E
00000E7E00001C7E0000387E0000707E0000E07E0000E07E0001C07E0003807E0007007E000E00
7E000E007E001C007E0038007E0070007E00E0007E00FFFFFFF8FFFFFFF8FFFFFFF80000FE0000
00FE000000FE000000FE000000FE000000FE000000FE000000FE00007FFFF8007FFFF8007FFFF8
1D277EA622>I<0C0003000F803F000FFFFE000FFFFE000FFFFC000FFFF8000FFFE0000FFFC000
0FFE00000E0000000E0000000E0000000E0000000E0000000E0000000E7FC0000FFFF8000F80FE
000E007F000C003F8000003F8000001FC000001FC000001FE000001FE018001FE07E001FE0FE00
1FE0FE001FE0FE001FE0FE001FE0FE001FC078003FC078003F803C007F001F01FE000FFFFC0003
FFF00000FF80001B277DA622>I<0007F000003FFC0000FFFF0001FC0F0007F01F800FE03F800F
C03F801FC03F803F803F803F801F007F8000007F0000007F0000007F000000FF000000FF0FC000
FF3FF800FF70FE00FFE03F00FFC03F80FF801FC0FF801FC0FF801FC0FF001FE0FF001FE0FF001F
E0FF001FE07F001FE07F001FE07F001FE07F001FE03F801FC03F801FC01F803F800FC03F8007E0
FF0003FFFC0000FFF000003FC0001B277DA622>I<380000003E0000003FFFFFF03FFFFFF03FFF
FFF07FFFFFE07FFFFFC07FFFFFC07FFFFF8070000F0070001E0070003C00E0003800E0007800E0
00F0000001E0000003C0000003C0000007800000078000000F0000001F0000001F0000001F0000
003F0000003F0000003E0000007E0000007E0000007E0000007E000000FE000000FE000000FE00
0000FE000000FE000000FE000000FE000000FE000000FE0000003800001C297CA822>I<003FC0
0001FFF00003FFFC000FC07E000F003F001F001F001E001F803E000F803E000F803F000F803F80
0F803FC01F803FF01F003FFC3F001FFE7E001FFFF8000FFFE00007FFF80001FFFC0001FFFF0007
FFFF801F8FFF803F03FFC07E01FFC07C007FE0FC001FE0F8000FE0F80007E0F80003E0F80003E0
F80003E0FC0003C07C0007C07E0007803F000F801FC03F000FFFFC0003FFF800007FC0001B277D
A622>I<007F800001FFF00007FFF8000FE0FE001FC07E003F803F007F003F807F003F80FF001F
C0FF001FC0FF001FC0FF001FC0FF001FE0FF001FE0FF001FE0FF001FE07F003FE07F003FE07F00
3FE03F807FE01F80FFE00FE1DFE003FF9FE0007E1FE000001FE000001FC000001FC000001FC000
003FC01F003F803F803F803F807F003F807F003F80FE003F01FC001E03F8000FFFE00007FF8000
01FE00001B277DA622>I<0000FFE000000007FFFC0000003FC07F8000007F001FC00001FC0007
F00003F80003F80007F00001FC000FF00001FE001FE00000FF001FE00000FF003FC000007F803F
C000007F807FC000007FC07F8000003FC07F8000003FC07F8000003FC0FF8000003FE0FF800000
3FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF8000003FE0FF
8000003FE0FF8000003FE07F8000003FC07FC000007FC07FC000007FC03FC000007F803FC00000
7F801FE00000FF001FE00000FF000FF00001FE0007F00001FC0003F80003F80001FC0007F00000
FF001FE000003FC07F8000000FFFFE00000000FFE000002B297CA834>79
D<FFFFE07FFFF007FFF0FFFFE07FFFF007FFF0FFFFE07FFFF007FFF003FC0001FE00001C0003FC
0001FE00001C0001FE0001FF0000380001FE0000FF0000380001FF0000FF0000780000FF0000FF
8000700000FF0000FF8000700000FF8000FF8000F000007F8001FFC000E000007F8001FFC000E0
00003FC003FFE001C000003FC0039FE001C000003FE0039FE003C000001FE0070FF0038000001F
E0070FF0038000001FF00F0FF0078000000FF00E07F8070000000FF00E07F80700000007F81E07
FC0E00000007F81C03FC0E00000007FC1C03FC1E00000003FC3801FE1C00000003FC3801FE1C00
000001FE7801FF3800000001FE7000FF3800000001FE7000FF3800000000FFF000FFF000000000
FFE0007FF000000000FFE0007FF0000000007FC0003FE0000000007FC0003FE0000000003FC000
3FC0000000003F80001FC0000000003F80001FC0000000001F80001F80000000001F00000F8000
0000001F00000F80000000000E00000700000044297FA847>87 D<0300060007000E000E001C00
1C00380018003000380070007000E0006000C0006000C000E001C000C0018000C0018000CE019C
00FF81FF00FFC1FF80FFC1FF80FFC1FF807FC0FF807FC0FF803F807F000E001C00191578A924>
92 D<01FF800007FFF0000F81FC001FC0FE001FC07F001FC07F001FC03F800F803F8000003F80
00003F8000003F80000FFF8000FFFF8007FC3F801FE03F803F803F807F803F807F003F80FE003F
80FE003F80FE003F80FE007F80FF007F807F00FFC03F83DFFC0FFF0FFC01FC03FC1E1B7E9A21>
97 D<FFE0000000FFE0000000FFE00000000FE00000000FE00000000FE00000000FE00000000F
E00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE0000000
0FE1FE00000FE7FF80000FFE07E0000FF803F8000FF001FC000FE000FE000FE000FE000FE0007F
000FE0007F000FE0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE000
7F800FE0007F800FE0007F800FE0007F000FE000FF000FE000FE000FF000FE000FF001FC000FF8
03F8000F9E07E0000F0FFF80000E01FC0000212A7EA926>I<001FF80000FFFE0003F01F000FE0
3F801FC03F803F803F803F803F807F801F007F000000FF000000FF000000FF000000FF000000FF
000000FF000000FF000000FF000000FF0000007F0000007F8000003F8001C03FC001C01FC003C0
0FE0078003F01F0000FFFC00001FE0001A1B7E9A1F>I<00003FF80000003FF80000003FF80000
0003F800000003F800000003F800000003F800000003F800000003F800000003F800000003F800
000003F800000003F800000003F800000003F800001FE3F80000FFFBF80003F03FF8000FE00FF8
001FC007F8003F8003F8003F8003F8007F8003F8007F0003F800FF0003F800FF0003F800FF0003
F800FF0003F800FF0003F800FF0003F800FF0003F800FF0003F800FF0003F8007F0003F8007F00
03F8003F8003F8003F8007F8001FC00FF8000FE01FF80003F03FFF8000FFF3FF80003FC3FF8021
2A7EA926>I<003FE00001FFF80003F07E000FE03F001FC01F803F800FC03F800FC07F000FC07F
0007E0FF0007E0FF0007E0FF0007E0FFFFFFE0FFFFFFE0FF000000FF000000FF000000FF000000
7F0000007F8000003F8000E03F8001E01FC001C00FE003C003F81F8000FFFE00001FF0001B1B7E
9A20>I<0007F0003FFC00FE3E01FC7F03F87F03F87F07F07F07F03E07F00007F00007F00007F0
0007F00007F00007F000FFFFC0FFFFC0FFFFC007F00007F00007F00007F00007F00007F00007F0
0007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F00007F0
0007F0007FFF807FFF807FFF80182A7EA915>I<FFE0000000FFE0000000FFE00000000FE00000
000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE000
00000FE00000000FE00000000FE00000000FE07F00000FE1FFC0000FE787E0000FEE07F0000FFC
03F8000FF803F8000FF003F8000FF003F8000FF003F8000FE003F8000FE003F8000FE003F8000F
E003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F800
0FE003F8000FE003F8000FE003F8000FE003F800FFFE3FFF80FFFE3FFF80FFFE3FFF80212A7DA9
26>104 D<07001FC01FE03FE03FE03FE01FE01FC007000000000000000000000000000000FFE0
FFE0FFE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00F
E00FE00FE00FE0FFFEFFFEFFFE0F2B7DAA14>I<FFE00000FFE00000FFE000000FE000000FE000
000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE000000FE0
00000FE01FFC0FE01FFC0FE01FFC0FE007C00FE00F800FE01E000FE07C000FE0F8000FE1F0000F
E3E0000FE7C0000FEFE0000FFFF0000FFFF0000FFFF8000FF3FC000FE1FE000FC0FE000FC0FF00
0FC07F800FC03F800FC03FC00FC01FE00FC00FF0FFFC3FFEFFFC3FFEFFFC3FFE1F2A7EA924>
107 D<FFE0FFE0FFE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE0
0FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00FE00F
E00FE0FFFEFFFEFFFE0F2A7DA914>I<FFC07F800FF000FFC1FFE03FFC00FFC783F0F07E000FCE
03F9C07F000FDC01FB803F000FF801FF003F800FF001FE003F800FF001FE003F800FF001FE003F
800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001
FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F80
0FE001FC003F800FE001FC003F800FE001FC003F800FE001FC003F80FFFE1FFFC3FFF8FFFE1FFF
C3FFF8FFFE1FFFC3FFF8351B7D9A3C>I<003FE00001FFFC0003F07E000FC01F801F800FC03F80
0FE03F0007E07F0007F07F0007F07F0007F0FF0007F8FF0007F8FF0007F8FF0007F8FF0007F8FF
0007F8FF0007F8FF0007F87F0007F07F0007F03F800FE03F800FE01F800FC00FC01F8007F07F00
01FFFC00003FE0001D1B7E9A22>111 D<FFE1FE0000FFE7FF8000FFFE07E0000FF803F8000FF0
01FC000FE001FE000FE000FE000FE000FF000FE000FF000FE0007F800FE0007F800FE0007F800F
E0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE0007F800FE000FF000FE000FF00
0FE000FE000FF001FE000FF003FC000FF803F8000FFE0FE0000FEFFF80000FE1FC00000FE00000
000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE00000000FE000
0000FFFE000000FFFE000000FFFE00000021277E9A26>I<FFC1F0FFC7FCFFCE3E0FDC7F0FD87F
0FF87F0FF07F0FF03E0FF0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE0000FE000
0FE0000FE0000FE0000FE0000FE0000FE000FFFF00FFFF00FFFF00181B7E9A1C>114
D<03FE300FFFF03E03F07800F07000F0F00070F00070F80070FC0000FFE000FFFE007FFFC03FFF
E01FFFF007FFF800FFFC0003FC0000FCE0007CE0003CF0003CF0003CF80078FC0078FF01F0F7FF
C0C1FF00161B7E9A1B>I<00700000700000700000700000F00000F00000F00001F00003F00003
F00007F0001FFFF0FFFFF0FFFFF007F00007F00007F00007F00007F00007F00007F00007F00007
F00007F00007F00007F00007F00007F03807F03807F03807F03807F03807F03807F03803F87001
F8F000FFE0001F8015267FA51B>I<FFE03FF800FFE03FF800FFE03FF8000FE003F8000FE003F8
000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003
F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE003F8000FE0
07F8000FE007F8000FE00FF80007E01FF80003F03BFF8001FFF3FF80003FC3FF80211B7D9A26>
I<FFFE7FFC0FFEFFFE7FFC0FFEFFFE7FFC0FFE0FE007E000E007F003F001C007F003F001C007F8
07F803C003F807F8038003F807F8038001FC0EFC070001FC0EFC070001FE1EFC0F0000FE1C7E0E
0000FE1C7E0E0000FF383F1E00007F383F1C00007F783F3C00003FF01FB800003FF01FB800003F
F01FF800001FE00FF000001FE00FF000000FC007E000000FC007E000000FC007E00000078003C0
0000078003C0002F1B7F9A32>119 D E /Fc 23 122 df<07E00001F8001FF80007FE003FFC00
0FFF007FFE001FFF807FFF001FFFC0FFFF003FFFC0FFFF803FFFE0FFFF803FFFE0FFFF803FFFE0
FFFFC03FFFF0FFFFC03FFFF07FFFC01FFFF07FFFC01FFFF03FFFC00FFFF01FFBC007FEF007E3C0
01F8F00003C00000F00003C00000F00007800001E00007800001E00007800001E0000F000003C0
000F000003C0000F000003C0001E00000780003E00000F80003C00000F00007C00001F0000F800
003E0001F000007C0003E00000F80007E00001F8000FC00003F0001F800007E0001E0000078000
0C00000300002C247CC73E>34 D<07E00FF03FFC3FFC7FFEFFFFFFFFFFFFFFFFFFFFFFFF7FFE3F
FC3FFC0FF007E01010788F21>46 D<00001FF800000001FFFF80000007FFFFE000001FFFFFF800
003FF81FFC0000FFE007FF0001FF8001FF8003FF0000FFC003FF0000FFC007FE00007FE007FE00
007FE00FFC00003FF00FFC00003FF01FFC00003FF81FFC00003FF83FFC00003FFC3FF800001FFC
3FF800001FFC7FF800001FFE7FF800001FFE7FF800001FFE7FF800001FFE7FF800001FFE7FF800
001FFEFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFF
FFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800
001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFFFFF800001FFF
FFF800001FFFFFF800001FFF7FF800001FFE7FF800001FFE7FF800001FFE7FF800001FFE7FF800
001FFE7FF800001FFE3FF800001FFC3FFC00003FFC3FFC00003FFC1FFC00003FF81FFC00003FF8
1FFC00003FF80FFC00003FF00FFE00007FF007FE00007FE003FF0000FFC003FF8001FFC001FFC0
03FF8000FFE007FF00007FF81FFE00001FFFFFF8000007FFFFE0000001FFFF800000001FF80000
30457BC33B>48 D<000001E00000000003F0000000000FF0000000003FF000000000FFF0000000
0FFFF0000003FFFFF00000FFFFFFF00000FFFFFFF00000FFFFFFF00000FFF0FFF00000FC00FFF0
00000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000
00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0
00000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000
00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0
00000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000
00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0
00000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF0000000
00FFF000000000FFF000000000FFF000000000FFF000000000FFF000000000FFF000003FFFFFFF
FFC03FFFFFFFFFC03FFFFFFFFFC03FFFFFFFFFC03FFFFFFFFFC02A4478C33B>I<0000FFE00000
000FFFFE0000003FFFFFC00000FFFFFFF00003FFFFFFFC0007FC01FFFE000FE0007FFF001FC000
1FFF803F80000FFFC03FE00007FFE07FF80007FFE07FFC0003FFF0FFFC0003FFF0FFFE0001FFF8
FFFE0001FFF8FFFE0001FFF8FFFE0000FFFCFFFE0000FFFC7FFC0000FFFC7FFC0000FFFC3FF800
00FFFC1FF00000FFFC0FE00000FFFC00000001FFFC00000001FFF800000001FFF800000001FFF0
00000003FFF000000003FFE000000003FFE000000007FFC000000007FF800000000FFF80000000
1FFF000000001FFE000000003FFC000000007FF8000000007FE000000000FFC000000001FF8000
000003FF0000000007FC000000000FF8000000001FF0000000003FC0000000007F80007C0000FF
00007C0000FE00007C0001FC00007C0003F00000F80007E00000F8000FC00000F8001F800000F8
003F000001F8007C000003F800FFFFFFFFF801FFFFFFFFF003FFFFFFFFF007FFFFFFFFF00FFFFF
FFFFF01FFFFFFFFFF03FFFFFFFFFF07FFFFFFFFFF07FFFFFFFFFF0FFFFFFFFFFE0FFFFFFFFFFE0
FFFFFFFFFFE0FFFFFFFFFFE02E447AC33B>I<00007FF800000003FFFF8000000FFFFFF000003F
FFFFFC0000FFC03FFF0001FE000FFF8003F80007FFC003F00003FFE007F80003FFE00FFE0003FF
F00FFF0001FFF00FFF8001FFF81FFF8001FFF81FFF8001FFF81FFF8001FFF81FFF8001FFF81FFF
8001FFF80FFF8001FFF80FFF0003FFF007FF0003FFF003FE0003FFF001F80003FFE000000003FF
E000000007FFC000000007FF800000000FFF000000001FFE000000001FFC000000007FF8000000
01FFE0000001FFFF80000001FFFE00000001FFFFC0000001FFFFF0000000003FFC000000000FFF
0000000007FFC000000003FFE000000003FFF000000001FFF800000001FFF800000001FFFC0000
0000FFFC00000000FFFE00000000FFFE03C00000FFFF0FF00000FFFF3FFC0000FFFF3FFC0000FF
FF7FFE0000FFFF7FFE0000FFFFFFFF0000FFFFFFFF0000FFFFFFFF0000FFFEFFFF0000FFFEFFFF
0000FFFEFFFE0001FFFC7FFE0001FFFC7FFC0001FFF83FF80003FFF83FE00003FFF01FC00007FF
E00FF8000FFFC007FF803FFF8003FFFFFFFE0000FFFFFFFC00003FFFFFF0000007FFFF80000000
7FF8000030457BC33B>I<000000000F8000000000001FC000000000003FC000000000003FC000
000000007FC00000000000FFC00000000001FFC00000000003FFC00000000003FFC00000000007
FFC0000000000FFFC0000000001FFFC0000000001FFFC0000000003FFFC0000000007FFFC00000
0000FFFFC000000001FBFFC000000001F3FFC000000003E3FFC000000007E3FFC00000000FC3FF
C00000001F83FFC00000001F03FFC00000003E03FFC00000007E03FFC0000000FC03FFC0000001
F803FFC0000001F003FFC0000003E003FFC0000007E003FFC000000FC003FFC000001F8003FFC0
00001F0003FFC000003E0003FFC000007E0003FFC00000FC0003FFC00000F80003FFC00001F000
03FFC00003F00003FFC00007E00003FFC0000FC00003FFC0000F800003FFC0001F000003FFC000
3F000003FFC0007E000003FFC000FC000003FFC000FFFFFFFFFFFFF0FFFFFFFFFFFFF0FFFFFFFF
FFFFF0FFFFFFFFFFFFF0FFFFFFFFFFFFF000000007FFC00000000007FFC00000000007FFC00000
000007FFC00000000007FFC00000000007FFC00000000007FFC00000000007FFC00000000007FF
C00000000007FFC00000000007FFC00000000007FFC00000007FFFFFFFF000007FFFFFFFF00000
7FFFFFFFF000007FFFFFFFF000007FFFFFFFF034447DC33B>I<03000000038007F000001F8007
FF0003FF8007FFFFFFFF8007FFFFFFFF0007FFFFFFFE0007FFFFFFFC0007FFFFFFF80007FFFFFF
F00007FFFFFFE00007FFFFFFC00007FFFFFF000007FFFFFE000007FFFFF8000007FFFFC0000007
DFFC00000007C00000000007C00000000007C00000000007C00000000007C00000000007C00000
000007C00000000007C00000000007C00000000007C00000000007C07FF8000007C3FFFF000007
CFFFFFE00007FFFFFFF00007FFC03FFC0007FE000FFE0007F80007FF0007E00007FF8007C00003
FFC003800003FFE000000003FFE000000001FFF000000001FFF000000001FFF800000001FFF800
000001FFF800000001FFF800000001FFFC07800001FFFC1FE00001FFFC3FF00001FFFC7FF80001
FFFC7FF80001FFFCFFFC0001FFFCFFFC0001FFFCFFFC0001FFFCFFFC0001FFF8FFF80001FFF8FF
F80001FFF87FF00001FFF07FE00003FFF07F800003FFE03F000003FFE03F000007FFC01F80000F
FF800FE0001FFF0007F0003FFE0003FE00FFFC0001FFFFFFF80000FFFFFFE000003FFFFF800000
0FFFFC00000001FFC000002E457AC33B>I<0000007FE000000007FFFC0000003FFFFF000000FF
FFFF800003FFE03FC00007FF0007E0000FFC0003E0003FF8001FF0007FF0003FF000FFE0007FF8
00FFC0007FF801FF8000FFF803FF8000FFF807FF0000FFF807FF0000FFF80FFF00007FF00FFE00
007FF01FFE00003FE01FFE00001FC01FFE000000003FFE000000003FFC000000003FFC00000000
7FFC000000007FFC004000007FFC07FF80007FFC1FFFF000FFFC3FFFFC00FFFC7FFFFE00FFFCF0
03FF80FFFDE001FFC0FFFFC000FFE0FFFF80007FE0FFFF80007FF0FFFF00007FF8FFFF00003FF8
FFFE00003FFCFFFE00003FFCFFFE00003FFEFFFE00003FFEFFFC00003FFEFFFC00003FFFFFFC00
003FFFFFFC00003FFF7FFC00003FFF7FFC00003FFF7FFC00003FFF7FFC00003FFF7FFC00003FFF
7FFC00003FFF3FFC00003FFF3FFC00003FFF3FFC00003FFE1FFE00003FFE1FFE00003FFE0FFE00
003FFC0FFE00003FFC07FE00007FF807FF00007FF803FF00007FF003FF8000FFE001FFC001FFE0
00FFE003FFC0007FF80FFF80003FFFFFFE00000FFFFFFC000003FFFFF0000000FFFFC00000001F
FC000030457BC33B>I<1F0000000000001F8000000000001FFF00000000001FFFFFFFFFFF801F
FFFFFFFFFF801FFFFFFFFFFF801FFFFFFFFFFF803FFFFFFFFFFF003FFFFFFFFFFE003FFFFFFFFF
FE003FFFFFFFFFFC003FFFFFFFFFF8003FFFFFFFFFF0003FFFFFFFFFE0003FFFFFFFFFC0007FFF
FFFFFFC0007F0000001F80007E0000003F00007C0000007E00007C000000FC00007C000000F800
007C000001F80000FC000003F00000F8000007E00000F800000FC00000F800001F800000000000
1F0000000000003F0000000000007E000000000000FE000000000000FC000000000001FC000000
000003F8000000000003F8000000000007F8000000000007F000000000000FF000000000000FF0
00000000001FF000000000001FE000000000003FE000000000003FE000000000007FE000000000
007FE000000000007FE00000000000FFE00000000000FFE00000000000FFC00000000001FFC000
00000001FFC00000000001FFC00000000003FFC00000000003FFC00000000003FFC00000000003
FFC00000000003FFC00000000003FFC00000000007FFC00000000007FFC00000000007FFC00000
000007FFC00000000007FFC00000000007FFC00000000007FFC00000000007FFC00000000007FF
C00000000007FFC00000000003FF800000000001FF000000000000FE0000000000007C00000000
314779C53B>I<00001FFC00000001FFFFC0000007FFFFF000001FFFFFFC00003FC007FF0000FE
0001FF8001FC00007FC001F800003FE003F000001FE007E000000FF007E000000FF00FE000000F
F00FE0000007F80FE0000007F81FE0000007F81FF0000007F81FF8000007F81FFC000007F81FFE
000007F81FFF80000FF01FFFE0000FF01FFFF8000FE00FFFFC001FE00FFFFF003FC00FFFFFC07F
C007FFFFF0FF8007FFFFFDFE0003FFFFFFFC0003FFFFFFF80001FFFFFFE00000FFFFFFF800007F
FFFFFC00003FFFFFFF00000FFFFFFF80000FFFFFFFC0003FFFFFFFE000FFFFFFFFF001FF1FFFFF
F803FE07FFFFF807FC01FFFFFC0FF800FFFFFC1FF0003FFFFE3FE0000FFFFE3FE00003FFFE7FC0
0001FFFF7FC000007FFF7FC000001FFFFF8000000FFFFF80000007FFFF80000003FFFF80000003
FFFF80000001FFFF80000001FFFF80000001FEFF80000001FE7FC0000001FE7FC0000001FC7FC0
000003FC3FE0000003F83FF0000007F81FF800000FF00FFC00001FE007FF00007FC003FFE003FF
8001FFFFFFFF00007FFFFFFC00001FFFFFF0000007FFFFC00000003FFC000030457BC33B>I<00
003FF800000003FFFF8000000FFFFFE000003FFFFFF800007FF00FFC0000FFC007FE0003FF8003
FF0007FF0001FF8007FE0000FFC00FFE0000FFC01FFE00007FE01FFE00007FF03FFC00007FF03F
FC00007FF87FFC00003FF87FFC00003FF87FFC00003FFCFFFC00003FFCFFFC00003FFCFFFC0000
3FFEFFFC00003FFEFFFC00003FFEFFFC00003FFEFFFC00003FFEFFFC00003FFFFFFC00003FFFFF
FC00003FFFFFFC00003FFF7FFC00007FFF7FFC00007FFF7FFC00007FFF3FFC00007FFF3FFC0000
7FFF1FFC0000FFFF1FFE0000FFFF0FFE0001FFFF07FE0001FFFF07FF0003FFFF03FF8007BFFF00
FFC00F3FFF007FFFFE3FFF003FFFFC3FFF000FFFF83FFE0001FFE03FFE000002003FFE00000000
3FFE000000003FFC000000003FFC000000007FFC000000007FFC03F800007FF807FC00007FF80F
FE00007FF00FFE0000FFF01FFF0000FFE01FFF0000FFE01FFF0001FFC01FFF0001FF801FFE0003
FF801FFE0007FF000FFC000FFE000FF8001FFC0007F0003FF80007FC01FFF00003FFFFFFC00001
FFFFFF0000007FFFFC0000001FFFF000000003FF00000030457BC33B>I<FFFFFFFFFFFFE00000
FFFFFFFFFFFFFE0000FFFFFFFFFFFFFFC000FFFFFFFFFFFFFFF000FFFFFFFFFFFFFFF800001FFF
800001FFFE00001FFF8000007FFF00001FFF8000003FFF80001FFF8000001FFFC0001FFF800000
0FFFC0001FFF80000007FFE0001FFF80000007FFF0001FFF80000007FFF0001FFF80000003FFF0
001FFF80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF
80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF80000003FFF8001FFF800000
03FFF0001FFF80000007FFF0001FFF80000007FFE0001FFF8000000FFFE0001FFF8000000FFFC0
001FFF8000001FFF80001FFF8000003FFF00001FFF8000007FFE00001FFF800001FFFC00001FFF
800007FFF000001FFFFFFFFFFFC000001FFFFFFFFFFE0000001FFFFFFFFFFF8000001FFFFFFFFF
FFF000001FFF800000FFFC00001FFF8000003FFF00001FFF8000000FFFC0001FFF80000007FFE0
001FFF80000003FFF0001FFF80000003FFF8001FFF80000001FFF8001FFF80000001FFFC001FFF
80000000FFFC001FFF80000000FFFE001FFF80000000FFFE001FFF80000000FFFE001FFF800000
00FFFF001FFF800000007FFF001FFF800000007FFF001FFF800000007FFF001FFF800000007FFF
001FFF80000000FFFF001FFF80000000FFFF001FFF80000000FFFF001FFF80000000FFFE001FFF
80000000FFFE001FFF80000001FFFE001FFF80000001FFFC001FFF80000003FFFC001FFF800000
07FFF8001FFF80000007FFF0001FFF8000001FFFE0001FFF8000003FFFE0001FFF800001FFFF80
FFFFFFFFFFFFFFFF00FFFFFFFFFFFFFFFC00FFFFFFFFFFFFFFF000FFFFFFFFFFFFFFC000FFFFFF
FFFFFFF8000048477CC654>66 D<000C00000300001E00000780007E00001F8000FC00003F0001
F800007E0001F000007C0003E00000F80007C00001F0000F800003E0000F000003C0001F000007
C0001E00000780003C00000F00003C00000F00003C00000F00007800001E00007800001E000078
00001E0000F000003C0000F000003C0000F1F8003C7E00F7FE003DFF80FFFF003FFFC0FFFF803F
FFE0FFFF803FFFE0FFFFC03FFFF0FFFFC03FFFF07FFFC01FFFF07FFFC01FFFF07FFFC01FFFF03F
FFC00FFFF03FFF800FFFE01FFF8007FFE00FFF0003FFC007FE0001FF8001F800007E002C2473C7
3E>92 D<0007FFFC000000007FFFFFC0000001FFFFFFF8000003FFFFFFFE000007FE001FFF0000
07FF0003FFC0000FFF8001FFE0000FFF8000FFF0000FFF80007FF0000FFF80007FF8000FFF8000
7FF80007FF00003FFC0007FF00003FFC0003FE00003FFC0000F800003FFC00000000003FFC0000
0000003FFC00000000003FFC00000000003FFC00000007FFFFFC000000FFFFFFFC000007FFFFFF
FC00003FFFE03FFC0000FFFE003FFC0003FFF0003FFC0007FFC0003FFC000FFF00003FFC001FFE
00003FFC003FFC00003FFC007FF800003FFC007FF800003FFC00FFF000003FFC00FFF000003FFC
00FFF000003FFC00FFF000003FFC00FFF000003FFC00FFF000007FFC007FF80000FFFC007FF800
01EFFC003FFC0003EFFC003FFF0007CFFF000FFFC03F8FFFF807FFFFFF07FFFC01FFFFFC03FFFC
007FFFF001FFFC0003FF80007FF8362E7DAD3A>97 D<00001FFFC0000000FFFFF8000007FFFFFE
00001FFFFFFF80007FFC00FFC000FFE001FFC001FFC003FFE003FF8003FFE007FF0003FFE00FFE
0003FFE00FFE0003FFE01FFC0001FFC01FFC0001FFC03FFC0000FF803FFC00003E007FF8000000
007FF8000000007FF800000000FFF800000000FFF800000000FFF800000000FFF800000000FFF8
00000000FFF800000000FFF800000000FFF800000000FFF800000000FFF8000000007FF8000000
007FF8000000007FFC000000003FFC000000003FFC000000001FFC000000F81FFE000000F80FFE
000000F80FFF000001F007FF800003F003FFC00007E001FFE0000FC000FFF0001F80007FFE00FF
00001FFFFFFE000007FFFFF8000000FFFFE00000001FFE00002D2E7CAD35>99
D<00001FFE00000001FFFFE0000007FFFFF800001FFFFFFE00007FFC07FF0000FFE001FF8001FF
C0007FC003FF80003FE007FF00003FF00FFE00001FF01FFE00000FF81FFC00000FF83FFC00000F
FC3FFC000007FC7FFC000007FC7FF8000007FC7FF8000007FE7FF8000007FEFFF8000007FEFFF8
000007FEFFFFFFFFFFFEFFFFFFFFFFFEFFFFFFFFFFFEFFFFFFFFFFFCFFF800000000FFF8000000
00FFF800000000FFF8000000007FF8000000007FF8000000007FFC000000003FFC000000003FFC
000000003FFC0000001C1FFE0000003E0FFE0000003E07FF0000007E07FF000000FC03FF800001
F801FFC00003F0007FF0001FE0003FFE00FFC0001FFFFFFF800007FFFFFE000000FFFFF8000000
0FFF80002F2E7DAD36>101 D<007FC00000000000FFFFC00000000000FFFFC00000000000FFFF
C00000000000FFFFC00000000000FFFFC0000000000003FFC0000000000001FFC0000000000001
FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC00000000000
01FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC000000000
0001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000000001FFC0000000
000001FFC0000000000001FFC0000000000001FFC0000000000001FFC001FFC0000001FFC00FFF
F8000001FFC03FFFFE000001FFC0FFFFFF000001FFC1FC07FF800001FFC3E003FFC00001FFC7C0
01FFC00001FFCF0001FFE00001FFDE0000FFE00001FFDC0000FFE00001FFFC0000FFF00001FFF8
0000FFF00001FFF00000FFF00001FFF00000FFF00001FFF00000FFF00001FFE00000FFF00001FF
E00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001
FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF000
01FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF0
0001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FF
F00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000
FFF000FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC0
7FFFFFE03B487CC742>104 D<00FC0001FF0003FF8007FFC00FFFC01FFFE01FFFE01FFFE01FFF
E01FFFE01FFFE00FFFC007FFC003FF8001FF0000FC000000000000000000000000000000000000
00000000000000000000000000000000007FC0FFFFC0FFFFC0FFFFC0FFFFC0FFFFC003FFC001FF
C001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FF
C001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FFC001FF
C001FFC001FFC001FFC001FFC001FFC001FFC001FFC0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1849
7CC820>I<007FC001FFC00000FFFFC00FFFF80000FFFFC03FFFFE0000FFFFC0FFFFFF0000FFFF
C1FC07FF8000FFFFC3E003FFC00003FFC7C001FFC00001FFCF0001FFE00001FFDE0000FFE00001
FFDC0000FFE00001FFFC0000FFF00001FFF80000FFF00001FFF00000FFF00001FFF00000FFF000
01FFF00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF0
0001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FF
F00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000
FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE000
00FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE00000FFF00001FFE0
0000FFF00001FFE00000FFF00001FFE00000FFF000FFFFFFC07FFFFFE0FFFFFFC07FFFFFE0FFFF
FFC07FFFFFE0FFFFFFC07FFFFFE0FFFFFFC07FFFFFE03B2E7CAD42>110
D<00FF803F8000FFFF80FFF000FFFF83FFFC00FFFF87FFFE00FFFF8FC3FF00FFFF8F07FF0003FF
9E0FFF8001FFBC0FFF8001FFB80FFF8001FFF80FFF8001FFF00FFF8001FFF007FF0001FFF007FF
0001FFE003FE0001FFE000F80001FFE000000001FFE000000001FFC000000001FFC000000001FF
C000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC00000
0001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FF
C000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC00000
0001FFC000000001FFC0000000FFFFFFE00000FFFFFFE00000FFFFFFE00000FFFFFFE00000FFFF
FFE00000292E7CAD31>114 D<FFFFFF07FFFFE007FFFEFFFFFF07FFFFE007FFFEFFFFFF07FFFF
E007FFFEFFFFFF07FFFFE007FFFEFFFFFF07FFFFE007FFFE03FFC0001FFC00003FC003FFE0000F
FC00001F8001FFE0000FFC00001F0001FFE0000FFE00001F0001FFF00007FE00003F0000FFF000
0FFF00003E0000FFF8000FFF00007E00007FF8000FFF00007C00007FF8001FFF80007C00003FFC
001FFF8000F800003FFC003FFFC000F800003FFE003EFFC001F800001FFE003EFFC001F000001F
FE007EFFE003F000000FFF007C7FE003E000000FFF00FC7FF003E000000FFF80F83FF007E00000
07FF80F83FF007C0000007FF81F83FF80FC0000003FFC1F01FF80F80000003FFC3F01FFC0F8000
0003FFE3E00FFC1F80000001FFE3E00FFC1F00000001FFE7E00FFE3F00000000FFF7C007FE3E00
000000FFFFC007FF3E00000000FFFF8003FF7E000000007FFF8003FF7C000000007FFF8003FFFC
000000003FFF0001FFF8000000003FFF0001FFF8000000003FFE0000FFF8000000001FFE0000FF
F0000000001FFE0000FFF0000000000FFC00007FE0000000000FFC00007FE0000000000FF80000
3FE00000000007F800003FC00000000007F800003FC00000000003F000001F800000000001E000
000F0000004F2E7DAD56>119 D<7FFFFFC000FFFF807FFFFFC000FFFF807FFFFFC000FFFF807F
FFFFC000FFFF807FFFFFC000FFFF8000FFF000000FE00000FFF800000FC00000FFF800000FC000
007FFC00000F8000007FFC00001F8000003FFC00001F0000003FFE00003F0000001FFE00003E00
00001FFF00007E0000000FFF00007C0000000FFF8000FC00000007FF8000F800000007FFC001F8
00000003FFC001F000000003FFE003F000000003FFE003F000000001FFF003E000000001FFF007
E000000000FFF007C000000000FFF80FC0000000007FF80F80000000007FFC1F80000000003FFC
1F00000000003FFE3F00000000001FFE3E00000000001FFF7E00000000000FFF7C00000000000F
FFFC00000000000FFFFC000000000007FFF8000000000007FFF8000000000003FFF00000000000
03FFF0000000000001FFE0000000000001FFE0000000000000FFC0000000000000FFC000000000
00007F800000000000007F800000000000003F000000000000003F000000000000003F00000000
0000003E000000000000007E000000000000007C00000000000000FC000000001F8000F8000000
003FC001F8000000007FE001F000000000FFF003F000000000FFF003E000000000FFF007E00000
0000FFF00FC000000000FFF01F8000000000FFF03F80000000007FE07F00000000007F43FE0000
0000003FFFF800000000001FFFF0000000000007FFC0000000000001FE00000000000039427EAD
3F>121 D E /Fd 20 117 df<0F80007C003FE001FF007FF003FF807FF003FF80FFF807FFC0FF
F807FFC0FFFC07FFE0FFFC07FFE0FFFC07FFE07FFC03FFE07FFC03FFE03FFC01FFE00F9C007CE0
001C0000E0001C0000E0003C0001E000380001C000380001C000780003C0007000038000F00007
8000F000078001E0000F0001C0000E0003C0001E000780003C000F000078001E0000F0003C0001
E000180000C000231E7DBB34>34 D<0F803FE07FF07FF0FFF8FFF8FFF8FFF8FFF87FF07FF03FE0
0F800D0D798C1B>46 D<0001FF8000000FFFF000003FFFFC0000FF81FF0001FE007F8003FC003F
C007F8001FE00FF8001FF00FF0000FF01FF0000FF81FF0000FF83FF0000FFC3FE00007FC3FE000
07FC7FE00007FE7FE00007FE7FE00007FE7FE00007FE7FE00007FEFFE00007FFFFE00007FFFFE0
0007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFF
E00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FFFFE00007FF
FFE00007FF7FE00007FE7FE00007FE7FE00007FE7FE00007FE7FE00007FE3FE00007FC3FF0000F
FC3FF0000FFC1FF0000FF81FF0000FF80FF0000FF00FF8001FF007F8001FE003FC003FC001FE00
7F8000FF81FF00003FFFFC00000FFFF0000001FF800028397CB731>48 D<00001E000000003E00
000000FE00000003FE0000003FFE0000FFFFFE0000FFFFFE0000FFFFFE0000FFCFFE0000000FFE
0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000F
FE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE000000
0FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000
000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE00
00000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE0000000FFE
0000000FFE0000000FFE0000000FFE00007FFFFFFFC07FFFFFFFC07FFFFFFFC07FFFFFFFC02238
79B731>I<0007FE0000007FFFE00001FFFFF80003FFFFFE000FF01FFF001FC007FFC03F0003FF
E07E0001FFE07FC000FFF07FE000FFF8FFF0007FF8FFF0007FF8FFF0003FFCFFF0003FFCFFF000
3FFCFFF0003FFC7FE0003FFC7FE0003FFC1F80003FFC0000003FFC0000003FF80000007FF80000
007FF80000007FF0000000FFE0000000FFE0000001FFC0000003FF80000003FF00000007FE0000
000FF80000001FF00000001FE00000003F800000007F00000000FE00000001FC00000003F0003C
0007E0003C000FC0003C001F800078003F000078007C00007800F80000F800F00000F801FFFFFF
F803FFFFFFF007FFFFFFF00FFFFFFFF01FFFFFFFF03FFFFFFFF07FFFFFFFF0FFFFFFFFF0FFFFFF
FFE0FFFFFFFFE0FFFFFFFFE026387BB731>I<0003FF8000001FFFF000007FFFFE0000FE03FF00
03F001FFC007E000FFE007C0007FF00FF0007FF00FFC007FF81FFC007FF81FFE007FF81FFE007F
F81FFE007FF81FFE007FF81FFE007FF80FFC007FF80FFC007FF003F000FFF0000000FFE0000000
FFE0000001FFC0000001FF80000003FF00000007FC0000001FF800000FFFC000000FFF8000000F
FFF800000003FE00000001FF80000000FFE00000007FF00000003FF80000003FFC0000003FFE00
00001FFE0000001FFE0200001FFF1FC0001FFF3FE0001FFF7FF0001FFFFFF8001FFFFFF8001FFF
FFF8001FFFFFF8001FFFFFF8001FFEFFF8003FFEFFF0003FFC7FE0003FFC7FC0007FF83F80007F
F01FE000FFE00FFC03FFC003FFFFFF8001FFFFFE00003FFFF0000007FF800028397CB731>I<00
000007C0000000000FC0000000000FC0000000001FC0000000003FC0000000007FC000000000FF
C000000000FFC000000001FFC000000003FFC000000007FFC00000000FFFC00000000FFFC00000
001EFFC00000003CFFC00000007CFFC0000000F8FFC0000000F0FFC0000001E0FFC0000003C0FF
C0000007C0FFC000000F80FFC000000F00FFC000001E00FFC000003C00FFC000007C00FFC00000
F800FFC00000F000FFC00001E000FFC00003C000FFC00007C000FFC0000F8000FFC0000F0000FF
C0001E0000FFC0003C0000FFC0007C0000FFC000F80000FFC000FFFFFFFFFFC0FFFFFFFFFFC0FF
FFFFFFFFC0FFFFFFFFFFC0000001FFC000000001FFC000000001FFC000000001FFC000000001FF
C000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC0000007FFFFFFC000
07FFFFFFC00007FFFFFFC00007FFFFFFC02A377DB631>I<0C000000C00F800007C00FF8007FC0
0FFFFFFF800FFFFFFF800FFFFFFF000FFFFFFE000FFFFFFC000FFFFFF0000FFFFFE0000FFFFF80
000FFFFE00000FFFF800000F800000000F800000000F800000000F800000000F800000000F8000
00000F800000000F800000000F81FF00000F8FFFE0000FBFFFF8000FFE03FE000FF001FF800FC0
00FFC00F80007FC00F00007FE00700007FF00000003FF00000003FF80000003FF80000003FF800
00003FFC0000003FFC0600003FFC3F80003FFC7FE0003FFCFFE0003FFCFFF0003FFCFFF0003FFC
FFF0003FFCFFF0003FF8FFE0003FF8FFE0003FF87FC0007FF07F00007FF07C00007FE03E0000FF
E01F0001FFC01FC003FF800FF00FFE0003FFFFFC0001FFFFF000007FFFC000000FFC000026397B
B731>I<00000FF80000007FFF000003FFFF80000FFC07C0001FE003E0007FC001F000FF800FF0
01FF001FF803FE003FF807FE003FF807FC003FF80FFC003FF81FF8003FF81FF8003FF81FF8001F
F03FF8000FE03FF80000007FF00000007FF00000007FF00000007FF0000000FFF07FF000FFF1FF
FE00FFF3F7FF00FFF7807FC0FFF7003FE0FFFE001FF0FFFC001FF8FFFC001FFCFFFC000FFCFFF8
000FFEFFF8000FFEFFF8000FFEFFF0000FFFFFF0000FFFFFF0000FFFFFF0000FFF7FF0000FFF7F
F0000FFF7FF0000FFF7FF0000FFF7FF0000FFF3FF0000FFF3FF0000FFF3FF0000FFE1FF8000FFE
1FF8000FFE0FF8000FFC0FF8001FFC07FC001FF803FE003FF003FF007FE001FF80FFC0007FFFFF
80003FFFFE000007FFF8000000FFC00028397CB731>I<1E00000000001F00000000001FF00000
00001FFFFFFFFFC01FFFFFFFFFC01FFFFFFFFFC03FFFFFFFFFC03FFFFFFFFF803FFFFFFFFF003F
FFFFFFFE003FFFFFFFFC003FFFFFFFF8003FFFFFFFF0007FFFFFFFF0007C000007E0007C00000F
C0007800001F80007800001F00007800003E0000F000007E0000F00000FC0000F00001F8000000
0003F00000000003E00000000007E0000000000FC0000000000F80000000001F80000000003F80
000000003F00000000007F00000000007F0000000000FF0000000000FE0000000001FE00000000
01FE0000000003FE0000000003FE0000000003FE0000000007FC0000000007FC0000000007FC00
0000000FFC000000000FFC000000000FFC000000000FFC000000000FFC000000001FFC00000000
1FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC000000001FFC00
0000001FFC000000000FF80000000007F00000000003E00000002A3B7BB931>I<0001FF800000
0FFFF800003FFFFE0000FF00FF8001F8003FC003F0001FE007E0000FE007E00007F00FC00007F0
0FC00007F80FC00003F81FC00003F81FE00003F81FE00003F81FF00003F81FF80003F81FFE0007
F81FFF0007F01FFFC00FF00FFFF00FE00FFFFC1FC00FFFFF3F8007FFFFFF0003FFFFFC0003FFFF
F80001FFFFFE00007FFFFF00003FFFFFC0003FFFFFE000FFFFFFF003FDFFFFF807F07FFFFC0FE0
1FFFFC1FC007FFFE3FC001FFFE3F8000FFFE7F00003FFF7F00000FFFFF000007FFFE000001FFFE
000001FFFE000000FFFE0000007FFE0000007FFE0000007FFF0000007E7F0000007E7F000000FC
7F800000FC3FC00001F81FE00003F81FF80007F007FE007FC003FFFFFF8000FFFFFE00003FFFF8
000003FF800028397CB731>I<0001FF8000001FFFF000007FFFFC0000FF81FF0003FE00FF8007
FC007FC00FF8003FE01FF8001FE03FF8001FF03FF0001FF87FF0000FF87FF0000FFC7FF0000FFC
FFF0000FFCFFF0000FFEFFF0000FFEFFF0000FFEFFF0000FFEFFF0000FFEFFF0000FFFFFF0000F
FFFFF0000FFFFFF0000FFFFFF0000FFF7FF0001FFF7FF0001FFF7FF0001FFF3FF0003FFF1FF800
3FFF1FF8003FFF0FF8007FFF07FC00EFFF03FE01EFFF00FFEFCFFF007FFF8FFF000FFE0FFE0000
000FFE0000000FFE0000000FFE0000000FFE0000001FFC07F0001FFC0FF8001FFC1FFC001FF81F
FC001FF81FFC003FF01FFC003FE01FFC007FE01FFC007FC01FF800FF800FF001FF000FC003FE00
07F01FFC0003FFFFF00001FFFFC000007FFF0000000FF8000028397CB731>I<0000001FFF0000
70000001FFFFE000F000000FFFFFFC01F000007FFFFFFF03F00001FFFE007F87F00007FFE0000F
EFF0000FFF000003FFF0003FFE000001FFF0007FF8000000FFF000FFF00000007FF001FFE00000
003FF003FFC00000001FF003FF800000001FF007FF800000000FF00FFF0000000007F00FFF0000
000007F01FFE0000000007F01FFE0000000003F03FFC0000000003F03FFC0000000003F07FFC00
00000001F07FFC0000000001F07FFC0000000001F07FF8000000000000FFF8000000000000FFF8
000000000000FFF8000000000000FFF8000000000000FFF8000000000000FFF8000000000000FF
F8000000000000FFF8000000000000FFF8000000000000FFF8000000000000FFF8000000000000
FFF8000000000000FFF80000000000007FF80000000000007FFC0000000000007FFC0000000000
F07FFC0000000000F03FFC0000000000F03FFC0000000000F01FFE0000000000F01FFE00000000
01F00FFF0000000001E00FFF0000000003E007FF8000000003E003FF8000000007C003FFC00000
0007C001FFE00000000F8000FFF00000001F00007FF80000003E00003FFE0000007C00000FFF00
0001F8000007FFE00007F0000001FFFE003FC00000007FFFFFFF800000000FFFFFFC0000000001
FFFFF000000000001FFF0000003C3D7BBB47>67 D<006000030000F000078001E0000F0003C000
1E000780003C000F000078000E000070001E0000F0003C0001E0003C0001E000380001C0007800
03C00070000380007000038000F000078000E000070000E000070000E7C0073E00FFF007FF80FF
F807FFC0FFF807FFC0FFFC07FFE0FFFC07FFE0FFFC07FFE07FFC03FFE07FFC03FFE03FF801FFC0
3FF801FFC01FF000FF8007C0003E00231E73BB34>92 D<001FFF00000001FFFFF0000007FFFFFC
00000FF807FF00001FF801FF80001FFC00FFC0001FFC007FE0001FFC007FE0001FFC007FF0001F
FC003FF0000FF8003FF00007F0003FF00001C0003FF0000000003FF0000000003FF0000000003F
F0000000FFFFF000000FFFFFF000007FF83FF00003FF803FF00007FE003FF0001FFC003FF0003F
F8003FF0007FF0003FF0007FE0003FF000FFE0003FF000FFC0003FF000FFC0003FF000FFC0003F
F000FFC0007FF000FFC0007FF000FFE000FFF0007FF001DFF0003FF803DFF8001FFC0F8FFFF00F
FFFE0FFFF001FFFC07FFF0003FE000FFF02C267DA530>97 D<0001FFC000000FFFF800003FFFFE
0000FF80FF0001FE003F8007FC001FC00FF8000FE00FF8000FF01FF00007F03FF00007F83FF000
07F87FE00007F87FE00003FC7FE00003FC7FE00003FCFFE00003FCFFFFFFFFFCFFFFFFFFFCFFFF
FFFFFCFFE0000000FFE0000000FFE0000000FFE00000007FE00000007FE00000007FE00000003F
E00000003FF000003C1FF000003C1FF000003C0FF800007807FC0000F803FE0001F001FF0007E0
00FFC03FC0003FFFFF000007FFFC000000FFE00026267DA52D>101 D<00FF00000000FFFF0000
0000FFFF00000000FFFF00000000FFFF0000000007FF0000000003FF0000000003FF0000000003
FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000
000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003
FF0000000003FF007FC00003FF01FFF80003FF07FFFE0003FF1F03FF0003FF3C01FF0003FF7801
FF8003FF7000FF8003FFE000FFC003FFC000FFC003FFC000FFC003FF8000FFC003FF8000FFC003
FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000
FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003
FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000FFC003FF0000
FFC003FF0000FFC003FF0000FFC0FFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFFFFFFFFFC3FFFFF30
3C7CBB37>104 D<00FF01FF8000FFFF0FFFF000FFFF3FFFFC00FFFFFE03FF00FFFFF001FFC003
FFE0007FE003FF80007FF003FF80003FF803FF00001FF803FF00001FFC03FF00000FFC03FF0000
0FFE03FF00000FFE03FF00000FFE03FF000007FF03FF000007FF03FF000007FF03FF000007FF03
FF000007FF03FF000007FF03FF000007FF03FF000007FF03FF000007FF03FF000007FF03FF0000
0FFE03FF00000FFE03FF00000FFE03FF00001FFC03FF00001FFC03FF00001FF803FF80003FF003
FFC0007FF003FFE000FFE003FFF001FF8003FFFC07FF0003FF3FFFFC0003FF0FFFF00003FF01FF
000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003
FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000000003FF0000
0000FFFFFC000000FFFFFC000000FFFFFC000000FFFFFC00000030377DA537>112
D<00FE03F000FFFE0FFE00FFFE3FFF80FFFE3C7FC0FFFE707FC007FEF0FFE003FEE0FFE003FEC0
FFE003FFC0FFE003FF80FFE003FF807FC003FF803F8003FF800E0003FF00000003FF00000003FF
00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003
FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF00000003FF000000
03FF00000003FF00000003FF000000FFFFFE0000FFFFFE0000FFFFFE0000FFFFFE000023267DA5
29>114 D<0007800000078000000780000007800000078000000F8000000F8000000F8000000F
8000001F8000001F8000003F8000003F8000007F800000FF800001FF800007FF80001FFFFFF0FF
FFFFF0FFFFFFF0FFFFFFF001FF800001FF800001FF800001FF800001FF800001FF800001FF8000
01FF800001FF800001FF800001FF800001FF800001FF800001FF800001FF800001FF800001FF80
0001FF800001FF800001FF803C01FF803C01FF803C01FF803C01FF803C01FF803C01FF803C01FF
803C00FF807800FFC078007FC0F8007FE1F0001FFFE00007FFC00001FF001E377EB626>116
D E /Fe 13 93 df<781E00FC3F00FC3F00FE3F80FE3F807A1E80020080020080040100040100
080200080200300C00401000110E7E9C19>34 D<78FCFCFCFC7806067D850D>46
D<03F8000F1E001C07003C07803803807803C07803C07803C0F803E0F803E0F803E0F803E0F803
E0F803E0F803E0F803E0F803E0F803E0F803E0F803E07803C07803C03803803C07801C07000F1E
0003F800131B7E9A18>48 D<00600001E0000FE000FFE000F3E00003E00003E00003E00003E000
03E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E00003E000
03E00003E00003E0007FFF807FFF80111B7D9A18>I<07F8001FFE00383F80780FC0FC07C0FC07
E0FC03E0FC03E07803E00007E00007C00007C0000F80001F00001E0000380000700000E0000180
600300600600600800E01FFFC03FFFC07FFFC0FFFFC0FFFFC0131B7E9A18>I<03F8001FFE003C
1F003C0F807C07C07E07C07C07C03807C0000F80000F80001E00003C0003F800001E00000F8000
07C00007C00007E03007E07807E0FC07E0FC07E0FC07C0780F80781F001FFE0007F800131B7E9A
18>I<000180000380000780000F80001F80003F80006F8000CF80008F80018F80030F80060F80
0C0F80180F80300F80600F80C00F80FFFFF8FFFFF8000F80000F80000F80000F80000F80000F80
01FFF801FFF8151B7F9A18>I<1801801FFF001FFE001FFC001FF8001FC0001800001800001800
0018000019F8001E0E00180F801007800007C00007E00007E00007E07807E0F807E0F807E0F807
C0F007C0600F80381F001FFE0007F000131B7E9A18>I<007E0003FF000781800F03C01E07C03C
07C03C0380780000780000F80000F8F800FB0E00FA0780FC0380FC03C0F803E0F803E0F803E0F8
03E07803E07803E07803C03C03C03C07801E0F0007FE0003F800131B7E9A18>I<6000007FFFE0
7FFFE07FFFC07FFF807FFF80E00300C00600C00C00C0180000300000300000600000E00000E000
01E00001C00003C00003C00003C00003C00007C00007C00007C00007C00007C00007C000038000
131C7D9B18>I<03F8000FFF001C07803003803001C07001C07801C07E01C07F83807FC3003FF6
001FFC000FFE0007FF801DFF80387FC0781FE0F007E0F003E0F001E0F001E0F001E07801C07803
803E07801FFE0003F800131B7E9A18>I<03F8000FFE001E0F003C07807807807803C0F803C0F8
03C0F803E0F803E0F803E0F803E07807E03807E03C0BE00E1BE003E3E00003E00003C00003C038
07C07C07807C0700780F00383C001FF8000FE000131B7E9A18>I<040100180600200800200800
401000401000802000802000BC2F00FE3F80FE3F807E1F807E1F803C0F00110E7B9C19>92
D E /Ff 57 123 df<6060F0F0F8F86868080808080808101010102020404080800D0C7F9C15>
34 D<60F0F8680808081010204080050C7C9C0C>39 D<004000800100020006000C000C001800
1800300030007000600060006000E000E000E000E000E000E000E000E000E000E000E000E00060
0060006000700030003000180018000C000C00060002000100008000400A2A7D9E10>I<800040
002000100018000C000C000600060003000300038001800180018001C001C001C001C001C001C0
01C001C001C001C001C001C0018001800180038003000300060006000C000C0018001000200040
0080000A2A7E9E10>I<60F0F0701010101020204080040C7C830C>44 D<FFE0FFE00B0280890E>
I<60F0F06004047C830C>I<03C00C301818300C300C700E60066006E007E007E007E007E007E0
07E007E007E007E007E007E007E00760066006700E300C300C18180C3007E0101D7E9B15>48
D<030007003F00C700070007000700070007000700070007000700070007000700070007000700
07000700070007000700070007000F80FFF80D1C7C9B15>I<07C01830201C400C400EF00FF80F
F807F8077007000F000E000E001C001C00380070006000C00180030006010C01180110023FFE7F
FEFFFE101C7E9B15>I<07E01830201C201C781E780E781E381E001C001C00180030006007E000
30001C001C000E000F000F700FF80FF80FF80FF00E401C201C183007E0101D7E9B15>I<000C00
000C00001C00003C00003C00005C0000DC00009C00011C00031C00021C00041C000C1C00081C00
101C00301C00201C00401C00C01C00FFFFC0001C00001C00001C00001C00001C00001C00001C00
01FFC0121C7F9B15>I<300C3FF83FF03FC020002000200020002000200023E024302818301C20
0E000E000F000F000F600FF00FF00FF00F800E401E401C2038187007C0101D7E9B15>I<00F003
0C06040C0E181E301E300C700070006000E3E0E430E818F00CF00EE006E007E007E007E007E007
600760077006300E300C18180C3003E0101D7E9B15>I<4000007FFF807FFF007FFF0040020080
040080040080080000100000100000200000600000400000C00000C00001C00001800001800003
8000038000038000038000078000078000078000078000078000078000030000111D7E9B15>I<
03E00C301008200C20066006600660067006780C3E083FB01FE007F007F818FC307E601E600FC0
07C003C003C003C00360026004300C1C1007E0101D7E9B15>I<03C00C301818300C700C600EE0
06E006E007E007E007E007E0076007700F300F18170C2707C700060006000E300C780C78187010
203030C00F80101D7E9B15>I<60F0F0600000000000000000000060F0F06004127C910C>I<0006
00000006000000060000000F0000000F0000000F00000017800000178000001780000023C00000
23C0000023C0000041E0000041E0000041E0000080F0000080F0000180F8000100780001FFF800
03007C0002003C0002003C0006003E0004001E0004001E000C001F001E001F00FF80FFF01C1D7F
9C1F>65 D<FFFFC00F00F00F00380F003C0F001C0F001E0F001E0F001E0F001E0F001C0F003C0F
00780F01F00FFFE00F00780F003C0F001E0F000E0F000F0F000F0F000F0F000F0F000F0F001E0F
001E0F003C0F0078FFFFE0181C7E9B1D>I<001F808000E0618001801980070007800E0003801C
0003801C00018038000180780000807800008070000080F0000000F0000000F0000000F0000000
F0000000F0000000F0000000F0000000700000807800008078000080380000801C0001001C0001
000E000200070004000180080000E03000001FC000191E7E9C1E>I<FFFFFC0F003C0F000C0F00
040F00040F00060F00020F00020F02020F02000F02000F02000F06000FFE000F06000F02000F02
000F02000F02010F00010F00020F00020F00020F00060F00060F000C0F003CFFFFFC181C7E9B1C
>69 D<FFFFF80F00780F00180F00080F00080F000C0F00040F00040F02040F02000F02000F0200
0F06000FFE000F06000F02000F02000F02000F02000F00000F00000F00000F00000F00000F0000
0F00000F8000FFF800161C7E9B1B>I<FFF3FFC00F003C000F003C000F003C000F003C000F003C
000F003C000F003C000F003C000F003C000F003C000F003C000F003C000FFFFC000F003C000F00
3C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F003C000F
003C000F003C00FFF3FFC01A1C7E9B1F>72 D<FFF00F000F000F000F000F000F000F000F000F00
0F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F00FFF00C1C7F
9B0F>I<FF007FC00F800E000F8004000BC0040009E0040009E0040008F0040008F80400087804
00083C0400083C0400081E0400080F0400080F0400080784000807C4000803C4000801E4000801
E4000800F40008007C0008007C0008003C0008003C0008001C0008000C001C000C00FF8004001A
1C7E9B1F>78 D<003F800000E0E0000380380007001C000E000E001C0007003C00078038000380
780003C0780003C0700001C0F00001E0F00001E0F00001E0F00001E0F00001E0F00001E0F00001
E0F00001E0700001C0780003C0780003C0380003803C0007801C0007000E000E0007001C000380
380000E0E000003F80001B1E7E9C20>I<07E0801C1980300580700380600180E00180E00080E0
0080E00080F00000F800007C00007FC0003FF8001FFE0007FF0000FF80000F800007C00003C000
01C08001C08001C08001C0C00180C00180E00300D00200CC0C0083F800121E7E9C17>83
D<7FFFFFC0700F01C0600F00C0400F0040400F0040C00F0020800F0020800F0020800F0020000F
0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F000000
0F0000000F0000000F0000000F0000000F0000000F0000000F0000001F800003FFFC001B1C7F9B
1E>I<08081010202040404040808080808080B0B0F8F8787830300D0C7A9C15>92
D<0810204040808080B0F87830050C7D9C0C>96 D<1FC000307000783800781C00301C00001C00
001C0001FC000F1C00381C00701C00601C00E01C40E01C40E01C40603C40304E801F870012127E
9115>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C7C
001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C00E01C00E01C00C01C01
C01C01801E030019060010F800131D7F9C17>I<07E00C301878307870306000E000E000E000E0
00E000E00060007004300418080C3007C00E127E9112>I<003F00000700000700000700000700
00070000070000070000070000070000070003E7000C1700180F00300700700700600700E00700
E00700E00700E00700E00700E00700600700700700300700180F000C370007C7E0131D7E9C17>
I<03E00C301818300C700E6006E006FFFEE000E000E000E00060007002300218040C1803E00F12
7F9112>I<00F8018C071E061E0E0C0E000E000E000E000E000E00FFE00E000E000E000E000E00
0E000E000E000E000E000E000E000E000E000E000E007FE00F1D809C0D>I<00038003C4C00C38
C01C3880181800381C00381C00381C00381C001818001C38000C300013C0001000003000001800
001FF8001FFF001FFF803003806001C0C000C0C000C0C000C06001803003001C0E0007F800121C
7F9215>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C00001C
7C001C87001D03001E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C
03801C03801C03801C0380FF9FF0141D7F9C17>I<18003C003C00180000000000000000000000
00000000FC001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C00FF
80091D7F9C0C>I<00C001E001E000C000000000000000000000000000000FE000E000E000E000
E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E060E0F0C0F1C0
61803E000B25839C0D>I<FC00001C00001C00001C00001C00001C00001C00001C00001C00001C
00001C00001C3FC01C0F001C0C001C08001C10001C20001C40001CE0001DE0001E70001C78001C
38001C3C001C1C001C0E001C0F001C0F80FF9FE0131D7F9C16>I<FC001C001C001C001C001C00
1C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C001C
001C001C00FF80091D7F9C0C>I<FC7E07E0001C838838001D019018001E01E01C001C01C01C00
1C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C001C01C01C
001C01C01C001C01C01C001C01C01C001C01C01C00FF8FF8FF8021127F9124>I<FC7C001C8700
1D03001E03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C0380
1C03801C0380FF9FF014127F9117>I<03F0000E1C00180600300300700380600180E001C0E001
C0E001C0E001C0E001C0E001C06001807003803003001806000E1C0003F00012127F9115>I<FC
7C001D86001E03001C01801C01C01C00C01C00E01C00E01C00E01C00E01C00E01C00E01C01C01C
01C01C01801E03001D06001CF8001C00001C00001C00001C00001C00001C00001C0000FF800013
1A7F9117>I<03C1000C3300180B00300F00700700700700E00700E00700E00700E00700E00700
E00700600700700700300F00180F000C370007C700000700000700000700000700000700000700
000700003FE0131A7E9116>I<FCE01D301E781E781C301C001C001C001C001C001C001C001C00
1C001C001C001C00FFC00D127F9110>I<1F9030704030C010C010E010F8007F803FE00FF000F8
80388018C018C018E010D0608FC00D127F9110>I<04000400040004000C000C001C003C00FFE0
1C001C001C001C001C001C001C001C001C001C101C101C101C101C100C100E2003C00C1A7F9910
>I<FC1F801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C03801C
03801C03801C07800C07800E1B8003E3F014127F9117>I<FF07E03C03801C01001C01000E0200
0E020007040007040007040003880003880003D80001D00001D00000E00000E00000E000004000
13127F9116>I<FF3FCFE03C0F03801C0701801C0701001C0B01000E0B82000E0B82000E118200
0711C4000711C4000720C40003A0E80003A0E80003C0680001C0700001C0700001803000008020
001B127F911E>I<7F8FF00F03800F030007020003840001C80001D80000F00000700000780000
F800009C00010E00020E000607000403801E07C0FF0FF81512809116>I<FF07E03C03801C0100
1C01000E02000E020007040007040007040003880003880003D80001D00001D00000E00000E000
00E000004000004000008000008000F08000F10000F300006600003C0000131A7F9116>I<7FFC
70386038407040F040E041C003C0038007000F040E041C043C0C380870087038FFF80E127F9112
>I E end
%%EndProlog
%%BeginSetup
%%Feature: *Resolution 300
TeXDict begin 
%%EndSetup
/cm11bf{ pop Fa } bind def
/cm13bf{ pop Fb } bind def
/cm22bf{ pop Fc } bind def
/cm18bf{ pop Fd } bind def
/cm10bf{ pop Fe } bind def
/cm10rm{ pop Ff } bind def
/fontnames [
/TIMESROMAN
/cm10rm
/cm10bf
/cm18bf
/cm22bf
/cm13bf
/cm11bf
] def
%! This is a PostScript library meant to be printed only with other files %%%
%% Postscript Code by Jonathan Monsarrat Copyright 1992
%% permission given for anything except selling this or deleting the header.
%% This is the LameTeX Formatter, uses the LaTeX language
% Depends on "EndPage" and "StartPage" to be set up by a page formatter

/formatdict 100 dict def   % This should be 77?

formatdict begin
/wlist 100 array def     % Maximum of 100 words on a line
%% Better give these variables default values in case we try to
%% do an EndPage but they have not yet been defined

/baselineskip 200 def /wlen 0 def /baselineskip 0 def /bottommargin 0 def
/parindent 0 def /justify 0 def /rightmargin 0 def /leftmargin 0 def
/topmargin 0 def /parskip 0 def /newfontcmd 1 def /para 0 def
/vtotal 0 def /wordlen 0 def /ypos 0 def /ytemp 0 def

%%%%%%%%%%%%%%%%    num   InitWord    -  %%%%%%%%%%%%%%%%%%%%%%%
% InitWord takes an setflat values and flattens the current path
% It also defines some globals that will get "NextWord" up and running
/InitWord
{
  /xpos currentflat def % Save current flatness
  PageShape setflat flattenpath 
  % gsave stroke grestore  % Uncomment this line to show the margin path
  /coords Approx def
  pathbbox   % It the current path is bigger than the margins, widen them!
  dup TM gt { /TM exch def } { pop } ifelse
  dup RM gt { /RM exch def } { pop } ifelse
  dup BM lt { /BM exch def } { pop } ifelse
  dup LM lt { /LM exch def } { pop } ifelse

  xpos setflat   % Restore flatness.
  false fontnames newfontcmd get cvx exec
  /xlocs [ ] def 
  /welem 1 def /wlen 0 def /woids 0 def 
  /eslot LM def 
  /ypos TM topmargin sub def
  /vtotal 0 def
  /xpos 0 def /nxpos 0 def
  wlist 0 [ newfontcmd false ] put
  /wtemp 0 def
  NextSpace pop 
} bind def

%%%%%%%%%%%%%%%%%%%%%  -   NewXSpace    bool %%%%%%%%%%%%%%%%%%%%%%
% If there's "room on the bottom" as defined by xlocs, check to see if
% there's "room on the top" as defined by NewXSpace. Returns success boolean.
/NewXSpace
{
  nxpos newxlocs length 1 sub lt 
  {
    newxlocs nxpos 2 getinterval {} forall exch
    /nxpos nxpos 2 add def  
% If there's any intersection of top and bottom 'good places' set bslot, eslot
    dup xa le { pop xa } if leftmargin add /bslot exch def 
    dup xb ge { pop xb } if rightmargin sub /eslot exch def 
    bslot eslot lt { true } { NewXSpace } ifelse 
  }
  {
    false 
  } ifelse 
} bind def

%%%%%%%%%%%%%%%  -   NextSpace   bool  %%%%%%%%%%%%%%%%%%%%%%
% NextSpace defines the next space available for writing by
% setting ypos to the Y location and bslot and eslot to the beginning
% and end of the next open text writing area. Returns success boolean.
/NextSpace
{
   xpos xlocs length 1 sub lt      % are there any X's left on current line
   {
      /xa xlocs xpos get def 
      /xb xlocs xpos 1 add get def 
      NewXSpace 
      { true } 
      { 
        /nxpos 0 def 
        /xpos xpos 2 add def 
        NextSpace 
      } ifelse 
   }
   {
      ypos  % Leave on the stack for later comparison
      /ypos ypos
      vspace 0 eq
      {
        baselineskip para { parskip add } if /vtotal baselineskip def
      }
      {
        vspace /vspace 0 def
      } ifelse
      sub def 
      ypos BM bottommargin add ge 
      {
        /newxlocs coords 3 -1 roll 4 add true CheeseWhiz def 
        /xlocs coords ypos 4 sub true CheeseWhiz def 
        /xpos 0 def /nxpos 0 def 
        NextSpace 
      }
      {
        pop false
      } ifelse 
   } ifelse 
  % if we're doing a paragraph and the NextSpace isn't big enough
  % for the indentation, then choose a new space.
  % if found-space and para and justify
  dup para justify 102 eq and and   % 102 is ascii 'f' for FULL JUSTIFY
  { /bslot bslot parindent add def bslot eslot gt 
        { pop NextSpace pop 
        } if
  } if
  /para false def 
} bind def

%%%%%%%%%%%%%%%%%%%%%%% -  PrintWordList  -  %%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PrintWordList prints the words stored in array "wlist" at Y location ypos
% with full justification between X locations bslot and eslot.
/PrintWordList
{
  /vtotal 0 def
  woids 0 ne
  { 
    % Legal values for /justify are (l)eft (r)ight (f)ull (c)enter in ASCII
    justify 99 eq  % 99 is ascii 'c' for CENTERED
    {
      bslot eslot bslot sub wlen sub 2 div add ypos moveto
    }
    {
      bslot justify 114 eq { eslot bslot sub wlen sub add } if   % 114 is 'r'
      ypos moveto 
    } ifelse
    /sp eslot bslot sub wlen sub woids div def
    0 1 welem 1 sub 
    {
      wlist exch get
      dup type /stringtype eq
      {
        SHOWIT ( ) stringwidth pop 0 rmoveto 
        justify 102 eq { sp 0 rmoveto } if  % 102 is ascii 'f'
      }
      {
        dup type /arraytype eq
        {
          { } forall
          {
             ( ) stringwidth pop neg 0 rmoveto 
             justify 102 eq { sp neg 0 rmoveto } if  % 102 is ascii 'f'
	  } if
          fontnames exch get cvx true exch exec
	}
        {
           0 rmoveto
	} ifelse
      } ifelse 
    } for
     wlist 0 [ newfontcmd false ] put
     /welem 1 def /wlen 0 def /woids 0 def 
  } if
} def

%%%%%%%%%%%%%%%%%%%%%%%%%  -   PrintClose  -  %%%%%%%%%%%%%%%%%%%%%%%%
% PrintClose prints the words stored in the array "wlist" at Y location ypos
% starting at X location bslot with left justification.
/PrintClose
{
  justify 102 eq  % 102 is ascii 'f'
  {
    /justify 108 def % 108 is ascii 'l' for flushleft
    PrintWordList 
    /justify 102 def
  }
  {
    PrintWordList 
  } ifelse
} bind def

%%%%%%%%%%%%%%%%  string  Parse  - %%%%%%%%%%%%%%%%%%%%%%%%
% Parse breaks a string into words based on spaces, passing each to NextWord
/Parse
{
   dup length 0 eq   % kill extra spaces by shaving them until null string
   { pop }
   { ( ) search { Parse pop Parse } { NW } ifelse } ifelse
} bind def

%%%%%%%%%%%%%%%%%%%%%%%  string  NextWord  - %%%%%%%%%%%%%%%%%%%%%%
% NextWord appends the string to an array of words
% and tries to place the text inside an arbitrary path (which was analyzed
% by InitWord). It's meant to be an iterative part of a long list of
% "string NextWord" sets which justifies text inside any closed path.
/NextWord
{
   /word exch def word stringwidth pop /wordlen exch def
   GrabSpace
} bind def

%%%%%%%%%% Takes a horizontal distance and a string for positioning
/GrabSpace
{
   wordlen wlen add 
   eslot bslot sub gt 
   {
     PrintWordList word type /stringtype ne { /welem 0 def } if
     NextSpace 
     {
       GrabSpace
     } 
     {
       % Have reached end of page
       ENDPAGE STARTPAGE
       /ypos baselineskip ypos add def /vtotal baselineskip def NEWLINE
       GrabSpace
     } ifelse 
   }
   {
     word type /stringtype eq
     { 
       wlist welem word put /welem welem 1 add def
       /wlen wlen ( ) stringwidth pop add def
       /woids woids 1 add def 
      } if
      /wlen wlen wordlen add def 
   } ifelse 
} def

%%%%%%%%%%%%%%%% xwidth HSpace  - %%%%%%%%%%%%%%
% Adds to the current wlen and adds the right thing in the wlist array
/HSpace
{
   dup wlen add /wlen exch def
   wlist welem 3 -1 roll put /welem welem 1 add def
} bind def


%%%%%%%%%%%%%%%%% size type NewFont %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% NewFont sets a new font, given a type and size
/NewFont
{
  { } forall /word exch def /newfontcmd exch def 
  word wlist welem [ newfontcmd 5 -1 roll ] put /welem welem 1 add def
  false fontnames newfontcmd get cvx exec
  word true eq woids 0 gt and
  { 
       /wlen wlen ( ) stringwidth pop sub def
  } if
} bind def

%%%%%%%%%%%%%% x y READJUST %%%%%%%%%%%%%%
% Readjusts the line down by given amountif big fonts are being placed
% in a small vertical space, and across if a horizontal space is being added.
/READJUST
{
   wtemp type /arraytype eq    % Don't do recursive READJUSTs
   {
      pop pop
   }
   {
      /vspace exch def /wordlen exch def
      /welem welem 1 sub def
      GrabSpace vspace 0 ne { SKIPLINE } if % Skip to a new page if needed
      /wtemp wlist def /woids 0 def /wlen 0 def
      0 1 welem /welem 0 def
      {
        wtemp exch get
        dup type /stringtype eq
        {
          NextWord
        }
        {
           dup type /arraytype eq
           {
             NewFont
           }
           {
             HSpace
           } ifelse
        } ifelse
      } for
      wordlen HSpace
      /wtemp 0 def
   } ifelse
} bind def

%%%% Skipline skips a given amount of vertical space
/SKIPLINE
{
   vspace 0 eq vspace vtotal gt or
   {
     vspace vtotal gt
     {
        /vspace vspace vtotal sub /vtotal vspace def def
     } if
  
     /ytemp ypos def
     true
     20  % repeat
     {
        NextSpace not   % did it get a new line successfully?
        {  
           ENDPAGE STARTPAGE
           /ypos baselineskip ypos add def /vtotal baselineskip def NEWLINE
        } if
        ypos ytemp ne { pop false exit } if
     } repeat
  
     {       % Did the repeat "fail" by falling off the end?
        erasepage
        grestoreall
        /Times-Roman findfont 20 scalefont setfont
        50 100 moveto
        (Could not place words anywhere on the virtual page) show
        showpage
        quit
     } if
   } if
} bind def

%%%%%%%%%%%%%%%%%%%%%
% Some startup definitions
/para true def
/vspace 0 def

% User command definitions, meant to be called from outside
/NW { NextWord } bind def
/SHOWIT { show } bind def
/NEWLINE { PrintWordList NextSpace pop } def
/NEWPARA
{
   PrintClose
   /para true def
   SKIPLINE
} bind def

/ENUMERATE { dup stringwidth pop 9 add 
             bslot exch sub ypos moveto show } bind def
/BULLET
{
   newpath bslot 9 sub
   ( ) stringwidth pop 1.7 div dup ypos add exch
   0 360 arc currentgray 0 setgray fill setgray
} bind def

/TIMESROMAN
{
  pop  /Times-Roman findfont 10 scalefont setfont
} bind def

/BASELINESKIP
{
  /baselineskip exch def
} bind def

/STARTPAGE
{
  end
  /savetype save def
  StartPage
  formatdict begin
  InitWord
} def

/ENDPAGE
{
  PrintClose
  % Put all the variables we want to save on the stack
  baselineskip bottommargin parindent justify rightmargin leftmargin
  topmargin parskip newfontcmd para wordlen ypos ytemp
  word type /stringtype eq
  {
    mark word {} forall true
  }
  {
    word false
  } ifelse
  end

  savetype restore

  formatdict
  begin
     {
       counttomark string /word exch def
       counttomark 1 sub -1 0
       {
         exch word 3 1 roll put  % Builds word out of individual characters
       } for
       pop
     }
     {
       /word exch def
     } ifelse
   
     % Recover all the variables
     /ytemp exch def /ypos exch def /wordlen exch def
     /para exch def /newfontcmd exch def
     /parskip exch def /topmargin exch def /leftmargin exch def
     /rightmargin exch def /justify exch def /parindent exch def
     /bottommargin exch def /baselineskip exch def
  end
  EndPage
  formatdict begin
} def
%! This is a PostScript library meant to be included in other files %%%
%% Postscript Code by Jon Monsarrat Copyright 1991
%% permission given for anything except selling this or deleting the header.
%%%%%%%%%%%   -    Approx   array %%%%%%%%%%%%%%%%%
% Approx flattens a path into a series of lines.
% This new flattened path is returned as a triple-array path representation.
% The path is broken into sub-paths which have a double-array representation.
% Each sub-path breaks into vertices which have a single-array representation.
% Each vertex is of the form X Y. We're doing a fill here so any
% unclosed subpaths get closed. That's how postscript normally handles fill.
% It would be easier to use [ X Y ] vertices, but that would waste memory!
/Approx
  {
     [ [ { /Y exch def /X exch def ] [ X Y } 
         { } { } { X Y } pathforall ] ]
  } bind def

%%%%%%%%%%%%%%%%%%%  array num bool  SortArray  array   %%%%%%%%%%%%%%%
% SortArray bubble sorts "array" of packets in increasing order, packets are
% groups of numbers and a packet is of size "num". Sorting is done based
% on the value of the first item in each packet. When sorting is done,
% SortArray goes through and deletes all equal packets if "bool" is true.
/SortArray
{
   10 dict begin
   /DelEquals exch def /Pack exch def
   /newlist exch def
   0 Pack newlist length 2 Pack mul sub
   {
     /anum exch def
     anum Pack add Pack newlist length 1 Pack mul sub
     {
       /bnum exch def
       newlist anum get newlist bnum get ge
       {
         /flag true def
         newlist anum get newlist bnum get eq Pack 2 eq and
         {
           /flag false def
           newlist anum 1 add get newlist bnum 1 add get add 0 eq
           {
             newlist anum 1 add get 1 eq ontop xor { /flag true def } if
           } if
         } if
         flag
         {
           0 1 Pack 1 sub
           {
             /ind exch def
             /temp newlist anum ind add get def
             newlist anum ind add newlist bnum ind add get put
             newlist bnum ind add temp put
           } for
         } if
       } if
     } for
   } for

   DelEquals      % if this boolean is true, delete all equal packs
   {
     [
       0 Pack newlist length 2 Pack mul sub
       {
         /anum exch def
         newlist anum get newlist anum Pack add get ne
         {
           0 1 Pack 1 sub
           {
             anum add newlist exch get
           } for
         } if
       } for
       0 1 Pack 1 sub
       {
         /ind exch def
         newlist newlist length Pack sub ind add get
       } for
     ]
   } 
   {
     newlist
   } ifelse
   end % temp dict 10
} bind def

%%%%%%%%%%%%%%%%%%     bool     CheeseY      X1 W1  or nothing  %%%%%%%%%%
% CheeseY uses defined variables Y1 (a number), oldx, oldy, newx, newy.
% CheeseY asks "does the line segment bounded by oldxy, newxy cross y=Y1?
% If so, CheeseY leaves X1 W on the stack, where (X1,Y1) is the point of
% intersection. The winding value W is calculated from the sign of the slope.
% CheeseY takes one argument which is a boolean value. This boolean is
% true is the Y1 value is "on top" of the region of interest, false if "below".
% This is to deal correctly with line segments which end on the y=Y1 line.
% These special line segments are ignored if they don't pass through the
% region of interest. It would be easier to use [ X W ] but memory wasteful.
/CheeseY
{
  /top exch def
  oldy newy 2 copy gt { exch } if
  Y1 ge exch Y1 le and
  {  
     oldy newy ne
     {
        oldx newx sub oldy newy sub div
        oldy Y1 sub mul oldx exch sub 
        oldy newy lt { 1 } { -1 } ifelse
     }
     {
       newx 0
     } ifelse

     % If the line segment does NOT go through region of interest
     % but rather just happens to end on line y=Y1, don't use it.
     oldy Y1 eq
     {
       dup top { -1 } { 1 } ifelse ne { pop pop } if
     }
     {
       newy Y1 eq
       {
         dup top { 1 } { -1 } ifelse ne { pop pop } if
       } if
     } ifelse
  } if
} bind def

%%%%%%%%%%%%%%%%%%%%%   array num bool  CheeseWhiz   array  %%%%%%%%%%%%%%%%%
% CheeseWhiz traverses the flattened path as computed by Approx to find
% any points of intersection with the line y=Y1, where Y1 is it's num argument.
% It's boolean argument is true if y=Y1 bounds the region of interest "on top".
% For all points of intersection X1 goes on the stack, where [ X1 Y1 ]
% is the point, BUT ONLY IF the winding value or evenodd calculation says
% to. The winding value is complex and calculated from the sign of the slope.
% CheeseWhiz does this by breaking the path into line segments and passing
% it to CheeseY. The final array of X1 values is sorted, keeping duplicates.
/CheeseWhiz
{
  15 dict begin
  /ontop exch def
  /Y1 exch def
  [ exch
     {
        /oldx (Begin) def
        /flag false def
        {
           flag
           {
             /newy exch def
             oldx (Begin) eq
             { /firstx newx def /firsty newy def} { ontop CheeseY } ifelse
             /oldx newx def /oldy newy def
           }
           {
             /newx exch def
           } ifelse
           /flag flag not def
        } forall
        oldx (Begin) ne
        {
          /newx firstx def  % Even if the subpath is not closed, PostScript
          /newy firsty def  % fill methodology says close it. So wrap around.
          ontop CheeseY       
        } if
     } forall
  ]
  % Sort the array of X W values
  2 false SortArray
  % Now go through and take out X's where there is no inside/outside change
  [ exch
    fillout { LM exch } if
    /winding 0 def
    /inside false def   % always start off outside
    /flag false def
    {
      flag
      {
        winding add /winding exch def
        evenodd not
        {
          winding 0 eq inside xor
          { pop } { /inside inside not def } ifelse
        } if
      } if
      /flag flag not def
    } forall
    fillout { RM } if
  ]
  end  % temp dict 15
} def
%% End of PostScript Path-breaking Library

/justify 102 def

12 BASELINESKIP



/leftmargin 126 def
/rightmargin 126 def

/rightmargin 360 def


/leftmargin 126 def
/rightmargin 126 def

/parindent 18 def

/parskip 0 def


/bottommargin 90 def

/rightmargin 126 def

/topmargin 162 def
/bottommargin 90 def








/rightmargin 54 def

/bottommargin -18 def

/topmargin 72 def
/bottommargin 72 def

/leftmargin 90 def
/rightmargin 90 def

/leftmargin 90 def
/rightmargin 90 def
/justify 99 def

end
%! page_latex.ps    - A replica of the standard LaTeX page
%% This is a LameTeX Page Description File written in PostScript.
%% Postscript Code by Jon Monsarrat Copyright 1992
%% permission given for anything except selling this or deleting the header.
%% This is a page template for the LameTeX formatter
%% A normal page for LameTeX output to look like LaTeX output

%%%%%%%%%%%  icon-name  LeftMarginIcon   - %%%%%%%%%%%%
% Given the name of an icon, executes the icon in the left margin.
/LeftMarginIcon
{
  gsave
       20 ypos 72 sub translate cvx exec
  grestore
} bind def

%% REQUIRED DEFINITIONS START HERE %%

% Makes a path that desribes the page
/PageShape
{
  0 0 moveto 8.5 in 0 lineto 8.5 in 11 in lineto 0 11 in lineto closepath
  currentflat 8 mul
} bind def

% Anything to do when a new page is started
/StartPage
{
} bind def

% Anything to do when a new page is ended
/EndPage
{
   pagenumber 4 string cvs
   dup stringwidth pop 8.5 in
   formatdict /rightmargin get sub
   formatdict /leftmargin get sub 
   exch sub 2 div formatdict /leftmargin get add
   formatdict /bottommargin get 2 div moveto show
   /pagenumber pagenumber 1 add def
   showpage  % A new page here really does mean start a new page.
} bind def

%% INITIALIZATION TO DO WHEN FILE IS LOADED %%
% Page-specific defaults that describe the page.
/InitPage
{
  /evenodd true def   % if true use even-odd rule; false means winding rule
  /fillout false def  % true means fill outside shape. false is inside.

  /in { 72 mul } def
  /BM 0 in def    % Absolute Bottom Margin for page
  /TM 11 in def   % Absolute Top Margin for page
  /LM 0 in def    % Absolute Left Margin for page
  /RM 8.5 in def  % Absolute Right Margin for page
  
  userdict /pagenumber known not   % Initialize pagenumber if not done already
  { userdict begin /pagenumber 1 def end} if
} bind def

InitPage        % Just loading this file initializes the page.

formatdict begin

STARTPAGE

[ 1 false ] NewFont    % /cm10rm
 (An) NW (Analysis) NW (of) NW (Simultaneous) NW (Self-evaluation) NW
NEWPARA
 (of) NW (a) NW (Thesis) NW (by) NW (example.) NW
NEWPARA /justify 102 def

NEWPARA

[ 1 false ] NewFont    % /cm10rm
 (One) NW (of) NW (the) NW (more) NW (difficult) NW (things) NW (for) NW (students) NW (to) NW (do) NW (in) NW (their) NW (last) NW (semester) NW (of) NW (college) NW (is) NW (to) NW (prepare) NW (a) NW (written) NW (thesis.) NW (Such) NW (theses) NW (need) NW (ideas) NW (which) NW (can) NW (come) NW (without) NW (too) NW (much) NW (consideration,) NW (but) NW (which) NW (need) NW (compilation) NW (into) NW (a) NW (presentable) NW (form.) NW (Therein) NW (lies) NW (the) NW (difficulty) NW (of) NW
ENDPAGE

STARTPAGE

/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

21.6 BASELINESKIP

[ 3 false ] NewFont    % /cm18bf


26.4 BASELINESKIP

/vspace 112.5 def NEWPARA

[ 4 false ] NewFont    % /cm22bf
 (Barney) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 52 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (writing) NW (a) NW (thesis.) NW (The) NW (writer) NW (must) NW (present) NW (his) NW (or) NW (her) NW (ideas) NW (by) NW (forming) NW (them) NW (in) NW (his) NW (or) NW (her) NW (mind,) NW (revising) NW (them) NW (and) NW (self-evaluating) NW (them,) NW (and) NW (then) NW (putting) NW (them) NW (on) NW (paper.) NW (It) NW (is) NW (this) NW (constant) NW (self-evaluation) NW (which) NW (makes) NW (thesis) NW (writing) NW (a) NW (hated) NW (activity.) NW
NEWPARA
 (As) NW (an) NW (example,) NW (the) NW (last) NW (paragraph) NW (was) NW (written) NW (in) NW (a) NW (fairly) NW (poor) NW
/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

15.6 BASELINESKIP

[ 5 false ] NewFont    % /cm13bf


/vspace 20.7 def NEWPARA
 (0.1) NW
15 HSpace
 (had) NW (a) NW (little) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 22.4 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (style.) NW (Although) NW (it) NW (conveyed) NW (the) NW (basic) NW (ideas) NW (of) NW (the) NW (self-evaluating) NW (thesis,) NW (it) NW (did) NW (not) NW (do) NW (so) NW (in) NW (a) NW (constructive) NW (manner.) NW (In) NW (two) NW (of) NW (the) NW (sentences) NW (the) NW (same) NW (concept) NW (is) NW (stated:) NW (why) NW (a) NW (thesis) NW (is) NW (difficult.) NW (The) NW
/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

15.6 BASELINESKIP

[ 5 false ] NewFont    % /cm13bf


/vspace 20.7 def NEWPARA
 (problem) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 22.4 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (third) NW (sentence) NW (asserts) NW (that) NW (the) NW (compilation) NW (is) NW (\\what) NW (it) NW (is") NW (that) NW (makes) NW (a) NW (thesis) NW (difficult,) NW (and) NW (the) NW (fourth) NW (says) NW (it) NW (is) NW (rather) NW (constant) NW (self-evaluation.) NW (Clearly) NW (the) NW (writer) NW (has) NW (an) NW (idea) NW (what) NW (he) NW (is) NW (writing) NW (about,) NW (but) NW (the) NW (ideas) NW (become) NW (confused) NW (when) NW (put) NW (on) NW (paper.) NW
NEWPARA
 (In) NW (the) NW (second) NW (paragraph) NW (of) NW (this) NW (thesis,) NW (the) NW (writer) NW (leaves) NW (his) NW (topic) NW
ENDPAGE

STARTPAGE

/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

21.6 BASELINESKIP

[ 3 false ] NewFont    % /cm18bf


/vspace 112.5 def NEWPARA
 (Chapter) NW (1) NW
26.4 BASELINESKIP

/vspace 46.6 def NEWPARA

[ 4 false ] NewFont    % /cm22bf
 (which) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 74.4 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (of) NW (the) NW (troubles) NW (of) NW (theses) NW (and) NW (presents) NW (an) NW (example) NW (of) NW (self-evaluation.) NW (There) NW (seems) NW (to) NW (be) NW (a) NW (discontinuity) NW (as) NW (in) NW (one) NW (place) NW (the) NW (author) NW (is) NW (building) NW (a) NW (case) NW (for) NW (self-evaluation) NW (as) NW (the) NW (difficult) NW (part) NW (of) NW (thesis) NW (writing) NW (and) NW (then) NW (switches) NW (to) NW (an) NW (example) NW (of) NW (such) NW (self-evaluation) NW (without) NW (attempting) NW (to) NW (tie) NW (it) NW (in) NW (to) NW (the) NW (relevant) NW (subject.) NW (He) NW (needs) NW (to) NW (make) NW (a) NW (statement) NW (of) NW (how) NW (the) NW (example) NW (proves) NW (his) NW (argument.) NW (Fortunately) NW
/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

15.6 BASELINESKIP

[ 5 false ] NewFont    % /cm13bf


/vspace 20.7 def NEWPARA
 (was) NW (that) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 22.4 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (he) NW (does) NW (so) NW (in) NW (the) NW (third) NW (paragraph) NW (by) NW (saying) NW (\\This) NW (is) NW (an) NW (example) NW (of) NW (self-evaluation.) NW (Clearly) NW (it) NW (is) NW (confusing,) NW (and) NW (therefore) NW (a) NW (real) NW (mental) NW (challenge) NW (when) NW (the) NW (thesis) NW (is) NW (being) NW (written.") NW (This) NW (is) NW (an) NW (example) NW (of) NW (self-evaluation.) NW (Clearly) NW (it) NW (is) NW (confusing,) NW (and) NW (therefore) NW (a) NW (real) NW (mental) NW (challenge) NW (when) NW (the) NW (thesis) NW (is) NW (being) NW (written.) NW
NEWPARA
 (The) NW (author) NW (goes) NW (on) NW (to) NW (discuss) NW (his) NW (thesis) NW (in) NW (general.) NW (He) NW (states) NW (that) NW
NEWPARA

/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

13.2 BASELINESKIP

[ 6 false ] NewFont    % /cm11bf


/vspace 4.5 def NEWPARA
 (althuogh) NW (he) NW (had) NW (a) NW (nice) NW (mom) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 18 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (although) NW (a) NW (thesis) NW (must) NW (be) NW (of) NW (a) NW (certain) NW (quality,) NW (the) NW (student) NW (may) NW (choose) NW (to) NW (simply) NW (write) NW (without) NW (quality,) NW (and) NW (then) NW (later) NW (revise) NW (the) NW (script.) NW (Self-evaluation) NW (need) NW (not) NW (be) NW (simultaneous.) NW (In) NW (saying) NW (this,) NW (the) NW (author) NW (takes) NW (a) NW (most) NW (roundabout) NW (manner.) NW (He) NW (uses) NW (such) NW (words) NW (as) NW (\\roundabout") NW (and) NW (\\liveliness") NW (to) NW (give) NW (his) NW (sentences) NW (liveliness,) NW (words) NW (which) NW (are) NW (inappropriate) NW (in) NW (a) NW (formal) NW (thesis.) NW (For) NW (instance,) NW (in) NW (the) NW (last) NW (paragraph) NW
/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

15.6 BASELINESKIP

[ 5 false ] NewFont    % /cm13bf


/vspace 20.7 def NEWPARA
 (1.2) NW
15 HSpace
 (her) NW (was) NW (toall) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 22.4 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (the) NW (author) NW (uses) NW (the) NW (trite) NW (clause) NW (\\putting) NW (his) NW (foot) NW (in) NW (his) NW (mouth",) NW (and) NW (in) NW (his) NW (analysis) NW (of) NW (that) NW (statement) NW (mistakenly) NW (describes) NW (it) NW (as) NW (a) NW (\\clause".) NW (Towards) NW (the) NW (end) NW (of) NW (his) NW (analysis) NW (he) NW (fails) NW (to) NW (comment) NW (on) NW (the) NW (concluding) NW (paragraph,) NW (merely) NW (tossing) NW (it) NW (off) NW (as) NW (\\straightforward".) NW (The) NW (entire) NW (thesis) NW (seems) NW (to) NW (be) NW (written) NW (on) NW (a) NW (downhill) NW (slope:) NW (the) NW (author) NW
/parindent 0 def

[ 2 false ] NewFont    % /cm10bf

15.6 BASELINESKIP

[ 5 false ] NewFont    % /cm13bf


/vspace 20.7 def NEWPARA
 (Out) NW (of) NW (Whack) NW
12 BASELINESKIP

/parindent 18 def

/parindent 0 def

/vspace 22.4 def NEWPARA

/parindent 18 def

[ 1 false ] NewFont    % /cm10rm
 (begins) NW (by) NW (analyzing) NW (sentence) NW (by) NW (sentence,) NW (then) NW (continues) NW (analyzing) NW (the) NW (thesis) NW (paragraph) NW (by) NW (paragraph,) NW (and) NW (at) NW (one) NW (point) NW (even) NW (simply) NW (generalizing) NW (the) NW (entire) NW (thesis) NW (as) NW (\\written) NW (on) NW (a) NW (downhill) NW (slope".) NW (There) NW (are) NW (even) NW (some) NW (times) NW (when) NW (the) NW (author) NW (seems) NW (to) NW (make) NW (references) NW (to) NW (sections) NW (of) NW (the) NW (thesis) NW (without) NW (stating) NW (where) NW (those) NW (places) NW (are.) NW (These) NW (mistakes) NW (are) NW (an) NW (intentional) NW (attempt) NW (to) NW (show) NW (how) NW (simultaneous) NW (self-evaluation) NW (is) NW (worth) NW (the) NW (confusion) NW (it) NW (causes.) NW (True,) NW (a) NW (student) NW (can) NW (evade) NW (the) NW (hardship) NW (of) NW (thesis) NW (writing) NW (by) NW (first) NW (making) NW (a) NW (rough) NW (draft) NW (of) NW (low) NW (quality,) NW (and) NW (then) NW (later) NW (evaluating) NW (and) NW (finishing) NW (it,) NW (but) NW (in) NW (the) NW (second) NW (pass) NW (over) NW (the) NW (student) NW (may) NW (not) NW (spot) NW (a) NW (mistake.) NW (Simultaneous) NW (self-evaluation) NW (guarantees) NW (good) NW (quality) NW (because) NW (the) NW (author's) NW (mind) NW (is) NW (currently) NW (engaged) NW (in) NW (creation) NW (-) NW (a) NW (later) NW (reading) NW (may) NW (not) NW (put) NW (the) NW (writer) NW (in) NW (the) NW (proper) NW (state) NW (of) NW (mind) NW (to) NW (find) NW (flaws,) NW (for) NW (instance) NW (the) NW (words) NW (\\criticizing") NW (and) NW (\\misspelled") NW (are) NW (spelled) NW (incorrectly,) NW (the) NW (quote) NW (\\clearly) NW (it) NW (is) NW (confusing") NW (is) NW (used) NW (three) NW (times,) NW (and) NW (at) NW (two) NW (points) NW (the) NW (author) NW (avoids) NW (saying) NW (a) NW (certain) NW (word,) NW (using) NW (instead) NW (\\spelled) NW (incorrectly") NW (and) NW (\\a) NW (certain) NW (word") NW (because) NW (he) NW (is) NW (too) NW (lazy) NW (to) NW (look) NW (missspelled) NW (up.) NW
NEWPARA
 (This) NW (sentence,) NW (for) NW (instance,) NW (despite) NW (its) NW (being) NW (intentional,) NW (makes) NW (absolutely) NW (no) NW (sense) NW (at) NW (all.) NW (The) NW (author) NW (for) NW (unknown) NW (reasons) NW (has) NW (chosen) NW (to) NW (begin) NW (one) NW (of) NW (his) NW (paragraphs) NW (with) NW (a) NW (meaningless) NW (sentence,) NW (and) NW (then) NW (attempt) NW (to) NW (extract) NW (significance.) NW (He) NW (uses) NW (a) NW (quote) NW (from) NW (an) NW (earlier) NW (section) NW (of) NW (the) NW (work) NW (which) NW (was) NW (quoted) NW (as) NW (being) NW (in) NW (\\fairly) NW (poor) NW (style",) NW (and) NW (then) NW (for) NW (unknown) NW (reasons) NW (admits) NW (his) NW (ignorance) NW (of) NW (the) NW (motivating) NW (forces) NW (behind) NW (the) NW (new) NW (topic.) NW (Not) NW (being) NW (satisfied) NW (with) NW (his) NW (choice) NW (of) NW (words,) NW (the) NW (author) NW (then) NW (simply) NW (gives) NW (up) NW (and) NW (quotes) NW (himself) NW (\(in) NW (better) NW (words) NW (than) NW (I) NW (could) NW (use\)) NW (\\clearly) NW (it) NW (is) NW (confusing".) NW (Note) NW (that) NW (as) NW (some) NW (sort) NW (of) NW (afterthought) NW (the) NW (author) NW (asks) NW (the) NW (reader) NW (to) NW (pay) NW (attention) NW (to) NW (some) NW (insignificant) NW (trifle.) NW
NEWPARA
 (The) NW (beginning) NW (of) NW (the) NW (thesis) NW (seems) NW (to) NW (be) NW (a) NW (list) NW (of) NW (examples) NW (that) NW (the) NW (author) NW (makes) NW (as) NW (a) NW (base) NW (to) NW (work) NW (with) NW (to) NW (form) NW (his) NW (speculations.) NW (In) NW (fact,) NW (he) NW (states) NW (this) NW (in) NW (the) NW (middle) NW (of) NW (the) NW (thesis) NW (as) NW (he) NW (is) NW (about) NW (to) NW (move) NW (on,) NW (and) NW (then) NW (suddenly) NW (decides) NW (that) NW (the) NW (portions) NW (of) NW (the) NW (thesis) NW (not) NW (yet) NW (reviewed.) NW (are) NW (irrelevant,) NW (and) NW (begins) NW (his) NW (conclusion.) NW (The) NW (closing) NW (of) NW (the) NW (thesis) NW (is) NW (straightforward) NW (and) NW (not) NW (particularly) NW (related) NW (to) NW (the) NW (subject) NW (matter,) NW (so) NW (it) NW (will) NW (not) NW (be) NW (discussed) NW (here.) NW
NEWPARA
 (In) NW (all,) NW (the) NW (process) NW (of) NW (self-evaluation,) NW (though) NW (producing) NW (the) NW (higher) NW (quality) NW (work,) NW (has) NW (significant) NW (drawbacks.) NW (At) NW (times) NW (it) NW (can) NW (be) NW (so) NW (confusing) NW (as) NW (to) NW (scare) NW (the) NW (writer) NW (off,) NW (which) NW (is) NW (something) NW (I) NW (won't) NW (get) NW (into) NW (now.) NW (For) NW (instance,) NW (in) NW (this) NW (work) NW (the) NW (author) NW (has) NW (become) NW (so) NW (confused) NW (that) NW (at) NW (the) NW (end) NW (the) NW (conclusion,) NW (as) NW (he) NW (himself) NW (admits,) NW (is) NW (\\not) NW (particularly) NW (related) NW (to) NW (the) NW (subject) NW (matter.") NW (He) NW (seems) NW (to) NW (feel) NW (that) NW (the) NW (process) NW (of) NW (self-evaluation,) NW (while) NW (it) NW (has) NW (allowed) NW (him) NW (to) NW (complete) NW (an) NW (otherwise) NW (poorer) NW (thesis) NW (in) NW (good) NW (form,) NW (has) NW (destroyed) NW (his) NW (paths) NW (of) NW (thought) NW (such) NW (that) NW (he) NW (merely) NW (ends) NW (the) NW (thesis) NW (in) NW (completely) NW (unacceptable) NW (style,) NW (saying) NW (\\Not) NW (that) NW (I) NW (would) NW (ever) NW (do) NW (this.) NW (The) NW (End.") NW (By) NW (doing) NW (this) NW (he) NW (shows) NW (that) NW (what) NW (he) NW (originally) NW (thought) NW (was) NW (a) NW (good) NW (idea) NW (may) NW (have) NW (turned) NW (out) NW (to) NW (instead) NW (be) NW (something) NW (he) NW (finds) NW (himself) NW (criticizing,) NW (and) NW (towards) NW (the) NW (end) NW (he) NW (seems) NW (to) NW (come) NW (to) NW (a) NW (decision) NW (that) NW (he) NW (is) NW (simply) NW (putting) NW (his) NW (foot) NW (in) NW (his) NW (mouth) NW (and) NW (had) NW (better) NW (stop.) NW (Not) NW (that) NW (I) NW (would) NW (ever) NW (do) NW (this.) NW (The) NW (End.) NW
ENDPAGE
%%Trailer
end
userdict /end-hook known{end-hook}if
%%EOF