Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

latexrgb.ps 83 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.3.0_b129487_2021.08.28 [64-bit] Document from text
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sat Aug 28 11:10:07 2021
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /PSL_BM_arg edef /PSL_S_arg edef /PSL_F_arg edef
  115. /.setfillconstantalpha where
  116. { pop PSL_BM_arg .setblendmode PSL_S_arg .setstrokeconstantalpha PSL_F_arg .setfillconstantalpha }
  117. { /pdfmark where {pop [ /BM PSL_BM_arg /CA PSL_S_arg /ca PSL_F_arg /SetTransparency pdfmark} if }
  118. ifelse
  119. }!
  120. /Standard+_Encoding [
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  123. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  124. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  125. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  126. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  127. /zero /one /two /three /four /five /six /seven
  128. /eight /nine /colon /semicolon /less /equal /greater /question
  129. /at /A /B /C /D /E /F /G
  130. /H /I /J /K /L /M /N /O
  131. /P /Q /R /S /T /U /V /W
  132. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  133. /quoteleft /a /b /c /d /e /f /g
  134. /h /i /j /k /l /m /n /o
  135. /p /q /r /s /t /u /v /w
  136. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  137. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  138. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  139. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  140. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  141. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  142. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  143. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  144. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  145. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  146. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  147. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  148. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  149. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  150. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  151. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  152. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  153. ] def
  154. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  155. /F0 {/Helvetica Y}!
  156. /F1 {/Helvetica-Bold Y}!
  157. /F2 {/Helvetica-Oblique Y}!
  158. /F3 {/Helvetica-BoldOblique Y}!
  159. /F4 {/Times-Roman Y}!
  160. /F5 {/Times-Bold Y}!
  161. /F6 {/Times-Italic Y}!
  162. /F7 {/Times-BoldItalic Y}!
  163. /F8 {/Courier Y}!
  164. /F9 {/Courier-Bold Y}!
  165. /F10 {/Courier-Oblique Y}!
  166. /F11 {/Courier-BoldOblique Y}!
  167. /F12 {/Symbol Y}!
  168. /F13 {/AvantGarde-Book Y}!
  169. /F14 {/AvantGarde-BookOblique Y}!
  170. /F15 {/AvantGarde-Demi Y}!
  171. /F16 {/AvantGarde-DemiOblique Y}!
  172. /F17 {/Bookman-Demi Y}!
  173. /F18 {/Bookman-DemiItalic Y}!
  174. /F19 {/Bookman-Light Y}!
  175. /F20 {/Bookman-LightItalic Y}!
  176. /F21 {/Helvetica-Narrow Y}!
  177. /F22 {/Helvetica-Narrow-Bold Y}!
  178. /F23 {/Helvetica-Narrow-Oblique Y}!
  179. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  180. /F25 {/NewCenturySchlbk-Roman Y}!
  181. /F26 {/NewCenturySchlbk-Italic Y}!
  182. /F27 {/NewCenturySchlbk-Bold Y}!
  183. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  184. /F29 {/Palatino-Roman Y}!
  185. /F30 {/Palatino-Italic Y}!
  186. /F31 {/Palatino-Bold Y}!
  187. /F32 {/Palatino-BoldItalic Y}!
  188. /F33 {/ZapfChancery-MediumItalic Y}!
  189. /F34 {/ZapfDingbats Y}!
  190. /F35 {/Ryumin-Light-EUC-H Y}!
  191. /F36 {/Ryumin-Light-EUC-V Y}!
  192. /F37 {/GothicBBB-Medium-EUC-H Y}!
  193. /F38 {/GothicBBB-Medium-EUC-V Y}!
  194. /PSL_pathtextdict 26 dict def
  195. /PSL_pathtext
  196. {PSL_pathtextdict begin
  197. /ydepth exch def
  198. /textheight exch def
  199. /just exch def
  200. /offset exch def
  201. /str exch def
  202. /pathdist 0 def
  203. /setdist offset def
  204. /charcount 0 def
  205. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  206. V flattenpath
  207. {movetoproc} {linetoproc}
  208. {curvetoproc} {closepathproc}
  209. pathforall
  210. U N
  211. end
  212. } def
  213. PSL_pathtextdict begin
  214. /movetoproc
  215. { /newy exch def /newx exch def
  216. /firstx newx def /firsty newy def
  217. /ovr 0 def
  218. newx newy transform
  219. /cpy exch def /cpx exch def
  220. } def
  221. /linetoproc
  222. { /oldx newx def /oldy newy def
  223. /newy exch def /newx exch def
  224. /dx newx oldx sub def
  225. /dy newy oldy sub def
  226. /dist dx dup mul dy dup mul add sqrt def
  227. dist 0 ne
  228. { /dsx dx dist div ovr mul def
  229. /dsy dy dist div ovr mul def
  230. oldx dsx add oldy dsy add transform
  231. /cpy exch def /cpx exch def
  232. /pathdist pathdist dist add def
  233. {setdist pathdist le
  234. {charcount str length lt
  235. {setchar} {exit} ifelse}
  236. { /ovr setdist pathdist sub def
  237. exit}
  238. ifelse
  239. } loop
  240. } if
  241. } def
  242. /curvetoproc
  243. { (ERROR: No curveto's after flattenpath!)
  244. print
  245. } def
  246. /closepathproc
  247. {firstx firsty linetoproc
  248. firstx firsty movetoproc
  249. } def
  250. /setchar
  251. { /char str charcount 1 getinterval def
  252. /charcount charcount 1 add def
  253. /charwidth char stringwidth pop def
  254. V cpx cpy itransform T
  255. dy dx atan R
  256. 0 justy M
  257. PSL_font_F {
  258. char show}
  259. if
  260. PSL_font_FO {
  261. currentpoint N M V char true charpath fs U V char false charpath S U char E 0 G
  262. } if
  263. PSL_font_OF {
  264. currentpoint N M V char false charpath S U V char true charpath fs U char E 0 G
  265. } if
  266. 0 justy neg G currentpoint transform
  267. /cpy exch def /cpx exch def
  268. U /setdist setdist charwidth add def
  269. } def
  270. end
  271. /PSL_set_label_heights
  272. {
  273. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  274. /PSL_heights PSL_n_labels array def
  275. 0 1 PSL_n_labels_minus_1
  276. { /psl_k exch def
  277. /psl_label PSL_label_str psl_k get def
  278. PSL_label_font psl_k get cvx exec
  279. psl_label sH /PSL_height edef
  280. PSL_heights psl_k PSL_height put
  281. } for
  282. } def
  283. /PSL_curved_path_labels
  284. { /psl_bits exch def
  285. /PSL_placetext psl_bits 2 and 2 eq def
  286. /PSL_clippath psl_bits 4 and 4 eq def
  287. /PSL_strokeline false def
  288. /PSL_fillbox psl_bits 128 and 128 eq def
  289. /PSL_drawbox psl_bits 256 and 256 eq def
  290. /PSL_font_F psl_bits 1536 and 0 eq def
  291. /PSL_font_FO psl_bits 512 and 512 eq def
  292. /PSL_font_OF psl_bits 1024 and 1024 eq def
  293. /PSL_n_paths1 PSL_n_paths 1 sub def
  294. /PSL_usebox PSL_fillbox PSL_drawbox or def
  295. PSL_clippath {clipsave N clippath} if
  296. /psl_k 0 def
  297. /psl_p 0 def
  298. 0 1 PSL_n_paths1
  299. { /psl_kk exch def
  300. /PSL_n PSL_path_n psl_kk get def
  301. /PSL_m PSL_label_n psl_kk get def
  302. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  303. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  304. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  305. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  306. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  307. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  308. PSL_curved_path_label
  309. /psl_k psl_k PSL_n add def
  310. /psl_p psl_p PSL_m add def
  311. } for
  312. PSL_clippath {PSL_eoclip} if N
  313. } def
  314. /PSL_curved_path_label
  315. {
  316. /PSL_n1 PSL_n 1 sub def
  317. /PSL_m1 PSL_m 1 sub def
  318. PSL_CT_calcstringwidth
  319. PSL_CT_calclinedist
  320. PSL_CT_excludelabels
  321. PSL_CT_addcutpoints
  322. /PSL_nn1 PSL_nn 1 sub def
  323. /n 0 def
  324. /k 0 def
  325. /j 0 def
  326. /PSL_seg 0 def
  327. /PSL_xp PSL_nn array def
  328. /PSL_yp PSL_nn array def
  329. PSL_xp 0 PSL_xx 0 get put
  330. PSL_yp 0 PSL_yy 0 get put
  331. 1 1 PSL_nn1
  332. { /i exch def
  333. /node_type PSL_kind i get def
  334. /j j 1 add def
  335. PSL_xp j PSL_xx i get put
  336. PSL_yp j PSL_yy i get put
  337. node_type 1 eq
  338. {n 0 eq
  339. {PSL_CT_drawline}
  340. {
  341. PSL_CT_reversepath
  342. PSL_CT_textline}
  343. ifelse
  344. /j 0 def
  345. PSL_xp j PSL_xx i get put
  346. PSL_yp j PSL_yy i get put
  347. } if
  348. } for
  349. n 0 eq {PSL_CT_drawline} if
  350. } def
  351. /PSL_CT_textline
  352. { PSL_fnt k get cvx exec
  353. /PSL_height PSL_heights k get def
  354. PSL_placetext {PSL_CT_placelabel} if
  355. PSL_clippath {PSL_CT_clippath} if
  356. /n 0 def /k k 1 add def
  357. } def
  358. /PSL_CT_calcstringwidth
  359. { /PSL_width_tmp PSL_m array def
  360. 0 1 PSL_m1
  361. { /i exch def
  362. PSL_fnt_tmp i get cvx exec
  363. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  364. } for
  365. } def
  366. /PSL_CT_calclinedist
  367. { /PSL_newx PSL_x 0 get def
  368. /PSL_newy PSL_y 0 get def
  369. /dist 0.0 def
  370. /PSL_dist PSL_n array def
  371. PSL_dist 0 0.0 put
  372. 1 1 PSL_n1
  373. { /i exch def
  374. /PSL_oldx PSL_newx def
  375. /PSL_oldy PSL_newy def
  376. /PSL_newx PSL_x i get def
  377. /PSL_newy PSL_y i get def
  378. /dx PSL_newx PSL_oldx sub def
  379. /dy PSL_newy PSL_oldy sub def
  380. /dist dist dx dx mul dy dy mul add sqrt add def
  381. PSL_dist i dist put
  382. } for
  383. } def
  384. /PSL_CT_excludelabels
  385. { /k 0 def
  386. /PSL_width PSL_m array def
  387. /PSL_angle PSL_m array def
  388. /PSL_node PSL_m array def
  389. /PSL_str PSL_m array def
  390. /PSL_fnt PSL_m array def
  391. /lastdist PSL_dist PSL_n1 get def
  392. 0 1 PSL_m1
  393. { /i exch def
  394. /dist PSL_dist PSL_node_tmp i get get def
  395. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  396. /L_dist dist halfwidth sub def
  397. /R_dist dist halfwidth add def
  398. L_dist 0 gt R_dist lastdist lt and
  399. {
  400. PSL_width k PSL_width_tmp i get put
  401. PSL_node k PSL_node_tmp i get put
  402. PSL_angle k PSL_angle_tmp i get put
  403. PSL_str k PSL_str_tmp i get put
  404. PSL_fnt k PSL_fnt_tmp i get put
  405. /k k 1 add def
  406. } if
  407. } for
  408. /PSL_m k def
  409. /PSL_m1 PSL_m 1 sub def
  410. } def
  411. /PSL_CT_addcutpoints
  412. { /k 0 def
  413. /PSL_nc PSL_m 2 mul 1 add def
  414. /PSL_cuts PSL_nc array def
  415. /PSL_nc1 PSL_nc 1 sub def
  416. 0 1 PSL_m1
  417. { /i exch def
  418. /dist PSL_dist PSL_node i get get def
  419. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  420. PSL_cuts k dist halfwidth sub put
  421. /k k 1 add def
  422. PSL_cuts k dist halfwidth add put
  423. /k k 1 add def
  424. } for
  425. PSL_cuts k 100000.0 put
  426. /PSL_nn PSL_n PSL_m 2 mul add def
  427. /PSL_xx PSL_nn array def
  428. /PSL_yy PSL_nn array def
  429. /PSL_kind PSL_nn array def
  430. /j 0 def
  431. /k 0 def
  432. /dist 0.0 def
  433. 0 1 PSL_n1
  434. { /i exch def
  435. /last_dist dist def
  436. /dist PSL_dist i get def
  437. k 1 PSL_nc1
  438. { /kk exch def
  439. /this_cut PSL_cuts kk get def
  440. dist this_cut gt
  441. { /ds dist last_dist sub def
  442. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  443. /i1 i 0 eq {0} {i 1 sub} ifelse def
  444. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  445. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  446. PSL_kind j 1 put
  447. /j j 1 add def
  448. /k k 1 add def
  449. } if
  450. } for
  451. dist PSL_cuts k get le
  452. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  453. PSL_kind j 0 put
  454. /j j 1 add def
  455. } if
  456. } for
  457. } def
  458. /PSL_CT_reversepath
  459. {PSL_xp j get PSL_xp 0 get lt
  460. {0 1 j 2 idiv
  461. { /left exch def
  462. /right j left sub def
  463. /tmp PSL_xp left get def
  464. PSL_xp left PSL_xp right get put
  465. PSL_xp right tmp put
  466. /tmp PSL_yp left get def
  467. PSL_yp left PSL_yp right get put
  468. PSL_yp right tmp put
  469. } for
  470. } if
  471. } def
  472. /PSL_CT_placelabel
  473. {
  474. /PSL_just PSL_label_justify k get def
  475. /PSL_height PSL_heights k get def
  476. /psl_label PSL_str k get def
  477. /psl_depth psl_label sd def
  478. PSL_usebox
  479. {PSL_CT_clippath
  480. PSL_fillbox
  481. {V PSL_setboxrgb fill U} if
  482. PSL_drawbox
  483. {V PSL_setboxpen S U} if N
  484. } if
  485. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  486. } def
  487. /PSL_CT_clippath
  488. {
  489. /H PSL_height 2 div PSL_gap_y add def
  490. /xoff j 1 add array def
  491. /yoff j 1 add array def
  492. /angle 0 def
  493. 0 1 j {
  494. /ii exch def
  495. /x PSL_xp ii get def
  496. /y PSL_yp ii get def
  497. ii 0 eq {
  498. /x1 PSL_xp 1 get def
  499. /y1 PSL_yp 1 get def
  500. /dx x1 x sub def
  501. /dy y1 y sub def
  502. }
  503. { /i1 ii 1 sub def
  504. /x1 PSL_xp i1 get def
  505. /y1 PSL_yp i1 get def
  506. /dx x x1 sub def
  507. /dy y y1 sub def
  508. } ifelse
  509. dx 0.0 eq dy 0.0 eq and not
  510. { /angle dy dx atan 90 add def} if
  511. /sina angle sin def
  512. /cosa angle cos def
  513. xoff ii H cosa mul put
  514. yoff ii H sina mul put
  515. } for
  516. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  517. 1 1 j {
  518. /ii exch def
  519. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  520. } for
  521. j -1 0 {
  522. /ii exch def
  523. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  524. } for P
  525. } def
  526. /PSL_CT_drawline
  527. {
  528. /str 20 string def
  529. PSL_strokeline
  530. {PSL_CT_placeline S} if
  531. /PSL_seg PSL_seg 1 add def
  532. /n 1 def
  533. } def
  534. /PSL_CT_placeline
  535. {PSL_xp 0 get PSL_yp 0 get M
  536. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  537. } def
  538. /PSL_draw_path_lines
  539. {
  540. /PSL_n_paths1 PSL_n_paths 1 sub def
  541. V
  542. /psl_start 0 def
  543. 0 1 PSL_n_paths1
  544. { /psl_k exch def
  545. /PSL_n PSL_path_n psl_k get def
  546. /PSL_n1 PSL_n 1 sub def
  547. PSL_path_pen psl_k get cvx exec
  548. N
  549. PSL_path_x psl_start get PSL_path_y psl_start get M
  550. 1 1 PSL_n1
  551. { /psl_i exch def
  552. /psl_kk psl_i psl_start add def
  553. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  554. } for
  555. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  556. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  557. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  558. S
  559. /psl_start psl_start PSL_n add def
  560. } for
  561. U
  562. } def
  563. /PSL_straight_path_labels
  564. {
  565. /psl_bits exch def
  566. /PSL_placetext psl_bits 2 and 2 eq def
  567. /PSL_rounded psl_bits 32 and 32 eq def
  568. /PSL_fillbox psl_bits 128 and 128 eq def
  569. /PSL_drawbox psl_bits 256 and 256 eq def
  570. /PSL_font_F psl_bits 1536 and 0 eq def
  571. /PSL_font_FO psl_bits 512 and 512 eq def
  572. /PSL_font_OF psl_bits 1024 and 1024 eq def
  573. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  574. /PSL_usebox PSL_fillbox PSL_drawbox or def
  575. 0 1 PSL_n_labels_minus_1
  576. { /psl_k exch def
  577. PSL_ST_prepare_text
  578. PSL_usebox
  579. { PSL_rounded
  580. {PSL_ST_textbox_round}
  581. {PSL_ST_textbox_rect}
  582. ifelse
  583. PSL_fillbox {V PSL_setboxrgb fill U} if
  584. PSL_drawbox {V PSL_setboxpen S U} if
  585. N
  586. } if
  587. PSL_font_F {
  588. PSL_placetext {PSL_ST_place_label} if
  589. } if
  590. PSL_font_FO {
  591. PSL_placetext {PSL_ST_place_label_FO} if
  592. } if
  593. PSL_font_OF {
  594. PSL_placetext {PSL_ST_place_label_OF} if
  595. } if
  596. } for
  597. } def
  598. /PSL_straight_path_clip
  599. {
  600. /psl_bits exch def
  601. /PSL_rounded psl_bits 32 and 32 eq def
  602. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  603. N clipsave clippath
  604. 0 1 PSL_n_labels_minus_1
  605. { /psl_k exch def
  606. PSL_ST_prepare_text
  607. PSL_rounded
  608. {PSL_ST_textbox_round}
  609. {PSL_ST_textbox_rect}
  610. ifelse
  611. } for
  612. PSL_eoclip N
  613. } def
  614. /PSL_ST_prepare_text
  615. {
  616. /psl_xp PSL_txt_x psl_k get def
  617. /psl_yp PSL_txt_y psl_k get def
  618. /psl_label PSL_label_str psl_k get def
  619. PSL_label_font psl_k get cvx exec
  620. /PSL_height PSL_heights psl_k get def
  621. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  622. /PSL_just PSL_label_justify psl_k get def
  623. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  624. /PSL_justy PSL_just 4 idiv 2 div neg def
  625. /psl_SW psl_label stringwidth pop def
  626. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  627. /psl_x0 psl_SW PSL_justx mul def
  628. /psl_y0 PSL_justy PSL_height mul def
  629. /psl_angle PSL_label_angle psl_k get def
  630. } def
  631. /PSL_ST_textbox_rect
  632. {
  633. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  634. PSL_gap_x neg PSL_gap_y neg M
  635. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  636. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  637. } def
  638. /PSL_ST_textbox_round
  639. {
  640. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  641. /psl_xd PSL_gap_x psl_BoxR sub def
  642. /psl_yd PSL_gap_y psl_BoxR sub def
  643. /psl_xL PSL_gap_x neg def
  644. /psl_yB PSL_gap_y neg def
  645. /psl_yT psl_boxH psl_yB add def
  646. /psl_H2 PSL_height psl_yd 2 mul add def
  647. /psl_W2 psl_SW psl_xd 2 mul add def
  648. /psl_xR psl_xL psl_boxW add def
  649. /psl_x0 psl_SW PSL_justx mul def
  650. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  651. psl_xL psl_yd M
  652. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  653. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  654. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  655. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  656. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  657. } def
  658. /PSL_ST_place_label
  659. {
  660. V psl_xp psl_yp T psl_angle R
  661. psl_SW PSL_justx mul psl_y0 M
  662. psl_label dup sd neg 0 exch G show
  663. U
  664. } def
  665. /PSL_ST_place_label_FO
  666. {
  667. V psl_xp psl_yp T psl_angle R
  668. psl_SW PSL_justx mul psl_y0 M
  669. psl_label dup sd neg 0 exch G false charpath V fs U S N
  670. U
  671. } def
  672. /PSL_ST_place_label_OF
  673. {
  674. V psl_xp psl_yp T psl_angle R
  675. psl_SW PSL_justx mul psl_y0 M
  676. psl_label dup sd neg 0 exch G false charpath V S U fs N
  677. U
  678. } def
  679. /PSL_nclip 0 def
  680. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  681. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  682. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  683. %%EndProlog
  684. %%BeginSetup
  685. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  686. %%EndSetup
  687. %%Page: 1 1
  688. %%BeginPageSetup
  689. V 0.06 0.06 scale
  690. %%EndPageSetup
  691. /PSL_page_xsize 10200 def
  692. /PSL_page_ysize 13200 def
  693. /PSL_plot_completion {} def
  694. /PSL_movie_label_completion {} def
  695. /PSL_movie_prog_indicator_completion {} def
  696. %PSL_End_Header
  697. gsave
  698. 0 A
  699. FQ
  700. O0
  701. 1200 1200 TM
  702. % PostScript produced by:
  703. %@GMT: gmt text -R0/16/0/8 -Jx1c -Baf -F+f48p,1,red
  704. %@PROJ: xy 0.00000000 16.00000000 0.00000000 8.00000000 0.000 16.000 0.000 8.000 +xy
  705. %%BeginObject PSL_Layer_1
  706. 0 setlinecap
  707. 0 setlinejoin
  708. 3.32550952342 setmiterlimit
  709. 0 A
  710. clipsave
  711. 0 0 M
  712. 7559 0 D
  713. 0 3780 D
  714. -7559 0 D
  715. P
  716. PSL_clip N
  717. PSL_font_encode 1 get 0 eq {Standard+_Encoding /Helvetica-Bold /Helvetica-Bold PSL_reencode PSL_font_encode 1 1 put} if
  718. 1 0 0 C
  719. V
  720. 3780 1890 T
  721. PSL_eps_begin
  722. 1 0 0 C
  723. -2440 -480 T 80 80 scale
  724. -148 -654 T
  725. N 148 654 M 209 654 L 209 666 L 148 666 L P clip N
  726. %%BeginDocument: psimage.eps
  727. %!PS-Adobe-2.0 EPSF-2.0
  728. %%Creator: dvips(k) 2021.1 Copyright 2021 Radical Eye Software
  729. %%Title: gmt_eq.dvi
  730. %%CreationDate: Sat Aug 28 21:10:07 2021
  731. %%DocumentFonts: CMR10 CMMI10 CMR7
  732. %%EndComments
  733. %DVIPSWebPage: (www.radicaleye.com)
  734. %DVIPSCommandLine: dvips -q -E gmt_eq.dvi -o equation.eps
  735. %DVIPSParameters: dpi=600
  736. %DVIPSSource: TeX output 2021.08.28:1110
  737. %%BeginProcSet: tex.pro 0 0
  738. %!
  739. /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
  740. N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72
  741. mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0
  742. 0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{
  743. landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize
  744. mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[
  745. matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round
  746. exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{
  747. statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0]
  748. N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin
  749. /FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array
  750. /BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2
  751. array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N
  752. df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A
  753. definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get
  754. }B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub}
  755. B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr
  756. 1 add N}if}B/CharBuilder{save 3 1 roll S A/base get 2 index get S
  757. /BitMaps get S get/Cd X pop/ctr 0 N Cdx 0 Cx Cy Ch sub Cx Cw add Cy
  758. setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx sub Cy .1 sub]{Ci}imagemask
  759. restore}B/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn
  760. /BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put
  761. }if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{
  762. bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A
  763. mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{
  764. SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{
  765. userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X
  766. 1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4
  767. index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N
  768. /dir 0 def/dyy{/dir 0 def}B/dyt{/dir 1 def}B/dty{/dir 2 def}B/dtt{/dir 3
  769. def}B/p{dir 2 eq{-90 rotate show 90 rotate}{dir 3 eq{-90 rotate show 90
  770. rotate}{show}ifelse}ifelse}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0
  771. N/Ry 0 N/V{}B/RV/v{/Ry X/Rx X V}B statusdict begin/product where{pop
  772. false[(Display)(NeXT)(LaserWriter 16/600)]{A length product length le{A
  773. length product exch 0 exch getinterval eq{pop true exit}if}{pop}ifelse}
  774. forall}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{
  775. BDot}imagemask grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat
  776. {BDot}imagemask grestore}}ifelse B/QV{gsave newpath transform round exch
  777. round exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0
  778. rlineto fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B
  779. /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}
  780. 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
  781. -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{
  782. 0 S rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end
  783. %%EndProcSet
  784. %%BeginProcSet: l3backend-dvips.pro 0 0
  785. %%
  786. %% This is file `l3backend-dvips.pro',
  787. %% generated with the docstrip utility.
  788. %%
  789. %% The original source files were:
  790. %%
  791. %% l3backend-header.dtx (with options: `header,dvips')
  792. %%
  793. %% Copyright (C) 1990-2021 The LaTeX Project
  794. %%
  795. %% It may be distributed and/or modified under the conditions of
  796. %% the LaTeX Project Public License (LPPL), either version 1.3c of
  797. %% this license or (at your option) any later version. The latest
  798. %% version of this license is in the file:
  799. %%
  800. %% https://www.latex-project.org/lppl.txt
  801. %%
  802. %% This file is part of the "l3backend bundle" (The Work in LPPL)
  803. %% and all files in that bundle must be distributed together.
  804. %%
  805. %% File: l3backend-header.dtx
  806. /color.sc { } def
  807. TeXDict begin
  808. /TeXcolorseparation { setcolor } def
  809. end
  810. true setglobal
  811. /pdf.globaldict 4 dict def
  812. false setglobal
  813. /pdf.cvs { 65534 string cvs } def
  814. /pdf.dvi.pt { 72.27 mul Resolution div } def
  815. /pdf.pt.dvi { 72.27 div Resolution mul } def
  816. /pdf.rect.ht { dup 1 get neg exch 3 get add } def
  817. /pdf.linkmargin { 1 pdf.pt.dvi } def
  818. /pdf.linkdp.pad { 0 } def
  819. /pdf.linkht.pad { 0 } def
  820. /pdf.rect
  821. { /Rect [ pdf.llx pdf.lly pdf.urx pdf.ury ] } def
  822. /pdf.save.ll
  823. {
  824. currentpoint
  825. /pdf.lly exch def
  826. /pdf.llx exch def
  827. }
  828. def
  829. /pdf.save.ur
  830. {
  831. currentpoint
  832. /pdf.ury exch def
  833. /pdf.urx exch def
  834. }
  835. def
  836. /pdf.save.linkll
  837. {
  838. currentpoint
  839. pdf.linkmargin add
  840. pdf.linkdp.pad add
  841. /pdf.lly exch def
  842. pdf.linkmargin sub
  843. /pdf.llx exch def
  844. }
  845. def
  846. /pdf.save.linkur
  847. {
  848. currentpoint
  849. pdf.linkmargin sub
  850. pdf.linkht.pad sub
  851. /pdf.ury exch def
  852. pdf.linkmargin add
  853. /pdf.urx exch def
  854. }
  855. def
  856. /pdf.dest.anchor
  857. {
  858. currentpoint exch
  859. pdf.dvi.pt 72 add
  860. /pdf.dest.x exch def
  861. pdf.dvi.pt
  862. vsize 72 sub exch sub
  863. /pdf.dest.y exch def
  864. }
  865. def
  866. /pdf.dest.point
  867. { pdf.dest.x pdf.dest.y } def
  868. /pdf.dest2device
  869. {
  870. /pdf.dest.y exch def
  871. /pdf.dest.x exch def
  872. matrix currentmatrix
  873. matrix defaultmatrix
  874. matrix invertmatrix
  875. matrix concatmatrix
  876. cvx exec
  877. /pdf.dev.y exch def
  878. /pdf.dev.x exch def
  879. /pdf.tmpd exch def
  880. /pdf.tmpc exch def
  881. /pdf.tmpb exch def
  882. /pdf.tmpa exch def
  883. pdf.dest.x pdf.tmpa mul
  884. pdf.dest.y pdf.tmpc mul add
  885. pdf.dev.x add
  886. pdf.dest.x pdf.tmpb mul
  887. pdf.dest.y pdf.tmpd mul add
  888. pdf.dev.y add
  889. }
  890. def
  891. /pdf.bordertracking false def
  892. /pdf.bordertracking.begin
  893. {
  894. SDict /pdf.bordertracking true put
  895. SDict /pdf.leftboundary undef
  896. SDict /pdf.rightboundary undef
  897. /a where
  898. {
  899. /a
  900. {
  901. currentpoint pop
  902. SDict /pdf.rightboundary known dup
  903. {
  904. SDict /pdf.rightboundary get 2 index lt
  905. { not }
  906. if
  907. }
  908. if
  909. { pop }
  910. { SDict exch /pdf.rightboundary exch put }
  911. ifelse
  912. moveto
  913. currentpoint pop
  914. SDict /pdf.leftboundary known dup
  915. {
  916. SDict /pdf.leftboundary get 2 index gt
  917. { not }
  918. if
  919. }
  920. if
  921. { pop }
  922. { SDict exch /pdf.leftboundary exch put }
  923. ifelse
  924. }
  925. put
  926. }
  927. if
  928. }
  929. def
  930. /pdf.bordertracking.end
  931. {
  932. /a where { /a { moveto } put } if
  933. /x where { /x { 0 exch rmoveto } put } if
  934. SDict /pdf.leftboundary known
  935. { pdf.outerbox 0 pdf.leftboundary put }
  936. if
  937. SDict /pdf.rightboundary known
  938. { pdf.outerbox 2 pdf.rightboundary put }
  939. if
  940. SDict /pdf.bordertracking false put
  941. }
  942. def
  943. /pdf.bordertracking.endpage
  944. {
  945. pdf.bordertracking
  946. {
  947. pdf.bordertracking.end
  948. true setglobal
  949. pdf.globaldict
  950. /pdf.brokenlink.rect [ pdf.outerbox aload pop ] put
  951. pdf.globaldict
  952. /pdf.brokenlink.skip pdf.baselineskip put
  953. pdf.globaldict
  954. /pdf.brokenlink.dict
  955. pdf.link.dict pdf.cvs put
  956. false setglobal
  957. mark pdf.link.dict cvx exec /Rect
  958. [
  959. pdf.llx
  960. pdf.lly
  961. pdf.outerbox 2 get pdf.linkmargin add
  962. currentpoint exch pop
  963. pdf.outerbox pdf.rect.ht sub pdf.linkmargin sub
  964. ]
  965. /ANN pdf.pdfmark
  966. }
  967. if
  968. }
  969. def
  970. /pdf.bordertracking.continue
  971. {
  972. /pdf.link.dict pdf.globaldict
  973. /pdf.brokenlink.dict get def
  974. /pdf.outerbox pdf.globaldict
  975. /pdf.brokenlink.rect get def
  976. /pdf.baselineskip pdf.globaldict
  977. /pdf.brokenlink.skip get def
  978. pdf.globaldict dup dup
  979. /pdf.brokenlink.dict undef
  980. /pdf.brokenlink.skip undef
  981. /pdf.brokenlink.rect undef
  982. currentpoint
  983. /pdf.originy exch def
  984. /pdf.originx exch def
  985. /a where
  986. {
  987. /a
  988. {
  989. moveto
  990. SDict
  991. begin
  992. currentpoint pdf.originy ne exch
  993. pdf.originx ne or
  994. {
  995. pdf.save.linkll
  996. /pdf.lly
  997. pdf.lly pdf.outerbox 1 get sub def
  998. pdf.bordertracking.begin
  999. }
  1000. if
  1001. end
  1002. }
  1003. put
  1004. }
  1005. if
  1006. /x where
  1007. {
  1008. /x
  1009. {
  1010. 0 exch rmoveto
  1011. SDict
  1012. begin
  1013. currentpoint
  1014. pdf.originy ne exch pdf.originx ne or
  1015. {
  1016. pdf.save.linkll
  1017. /pdf.lly
  1018. pdf.lly pdf.outerbox 1 get sub def
  1019. pdf.bordertracking.begin
  1020. }
  1021. if
  1022. end
  1023. }
  1024. put
  1025. }
  1026. if
  1027. }
  1028. def
  1029. /pdf.breaklink
  1030. {
  1031. pop
  1032. counttomark 2 mod 0 eq
  1033. {
  1034. counttomark /pdf.count exch def
  1035. {
  1036. pdf.count 0 eq { exit } if
  1037. counttomark 2 roll
  1038. 1 index /Rect eq
  1039. {
  1040. dup 4 array copy
  1041. dup dup
  1042. 1 get
  1043. pdf.outerbox pdf.rect.ht
  1044. pdf.linkmargin 2 mul add sub
  1045. 3 exch put
  1046. dup
  1047. pdf.outerbox 2 get
  1048. pdf.linkmargin add
  1049. 2 exch put
  1050. dup dup
  1051. 3 get
  1052. pdf.outerbox pdf.rect.ht
  1053. pdf.linkmargin 2 mul add add
  1054. 1 exch put
  1055. /pdf.currentrect exch def
  1056. pdf.breaklink.write
  1057. {
  1058. pdf.currentrect
  1059. dup
  1060. pdf.outerbox 0 get
  1061. pdf.linkmargin sub
  1062. 0 exch put
  1063. dup
  1064. pdf.outerbox 2 get
  1065. pdf.linkmargin add
  1066. 2 exch put
  1067. dup dup
  1068. 1 get
  1069. pdf.baselineskip add
  1070. 1 exch put
  1071. dup dup
  1072. 3 get
  1073. pdf.baselineskip add
  1074. 3 exch put
  1075. /pdf.currentrect exch def
  1076. pdf.breaklink.write
  1077. }
  1078. 1 index 3 get
  1079. pdf.linkmargin 2 mul add
  1080. pdf.outerbox pdf.rect.ht add
  1081. 2 index 1 get sub
  1082. pdf.baselineskip div round cvi 1 sub
  1083. exch
  1084. repeat
  1085. pdf.currentrect
  1086. dup
  1087. pdf.outerbox 0 get
  1088. pdf.linkmargin sub
  1089. 0 exch put
  1090. dup dup
  1091. 1 get
  1092. pdf.baselineskip add
  1093. 1 exch put
  1094. dup dup
  1095. 3 get
  1096. pdf.baselineskip add
  1097. 3 exch put
  1098. dup 2 index 2 get 2 exch put
  1099. /pdf.currentrect exch def
  1100. pdf.breaklink.write
  1101. SDict /pdf.pdfmark.good false put
  1102. exit
  1103. }
  1104. { pdf.count 2 sub /pdf.count exch def }
  1105. ifelse
  1106. }
  1107. loop
  1108. }
  1109. if
  1110. /ANN
  1111. }
  1112. def
  1113. /pdf.breaklink.write
  1114. {
  1115. counttomark 1 sub
  1116. index /_objdef eq
  1117. {
  1118. counttomark -2 roll
  1119. dup wcheck
  1120. {
  1121. readonly
  1122. counttomark 2 roll
  1123. }
  1124. { pop pop }
  1125. ifelse
  1126. }
  1127. if
  1128. counttomark 1 add copy
  1129. pop pdf.currentrect
  1130. /ANN pdfmark
  1131. }
  1132. def
  1133. /pdf.pdfmark
  1134. {
  1135. SDict /pdf.pdfmark.good true put
  1136. dup /ANN eq
  1137. {
  1138. pdf.pdfmark.store
  1139. pdf.pdfmark.dict
  1140. begin
  1141. Subtype /Link eq
  1142. currentdict /Rect known and
  1143. SDict /pdf.outerbox known and
  1144. SDict /pdf.baselineskip known and
  1145. {
  1146. Rect 3 get
  1147. pdf.linkmargin 2 mul add
  1148. pdf.outerbox pdf.rect.ht add
  1149. Rect 1 get sub
  1150. pdf.baselineskip div round cvi 0 gt
  1151. { pdf.breaklink }
  1152. if
  1153. }
  1154. if
  1155. end
  1156. SDict /pdf.outerbox undef
  1157. SDict /pdf.baselineskip undef
  1158. currentdict /pdf.pdfmark.dict undef
  1159. }
  1160. if
  1161. pdf.pdfmark.good
  1162. { pdfmark }
  1163. { cleartomark }
  1164. ifelse
  1165. }
  1166. def
  1167. /pdf.pdfmark.store
  1168. {
  1169. /pdf.pdfmark.dict 65534 dict def
  1170. counttomark 1 add copy
  1171. pop
  1172. {
  1173. dup mark eq
  1174. {
  1175. pop
  1176. exit
  1177. }
  1178. {
  1179. pdf.pdfmark.dict
  1180. begin def end
  1181. }
  1182. ifelse
  1183. }
  1184. loop
  1185. }
  1186. def
  1187. %%
  1188. %%
  1189. %% End of file `l3backend-dvips.pro'.
  1190. %%EndProcSet
  1191. %%BeginProcSet: texps.pro 0 0
  1192. %!
  1193. TeXDict begin/rf{findfont dup length 1 add dict begin{1 index/FID ne 2
  1194. index/UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll
  1195. exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]FontType 0
  1196. ne{/Metrics exch def dict begin Encoding{exch dup type/integertype ne{
  1197. pop pop 1 sub dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get
  1198. div def}ifelse}forall Metrics/Metrics currentdict end def}{{1 index type
  1199. /nametype eq{exit}if exch pop}loop}ifelse[2 index currentdict end
  1200. definefont 3 -1 roll makefont/setfont cvx]cvx def}def/ObliqueSlant{dup
  1201. sin S cos div neg}B/SlantFont{4 index mul add}def/ExtendFont{3 -1 roll
  1202. mul exch}def/ReEncodeFont{CharStrings rcheck{/Encoding false def dup[
  1203. exch{dup CharStrings exch known not{pop/.notdef/Encoding true def}if}
  1204. forall Encoding{]exch pop}{cleartomark}ifelse}if/Encoding exch def}def
  1205. end
  1206. %%EndProcSet
  1207. %%BeginProcSet: special.pro 0 0
  1208. %!
  1209. TeXDict begin/SDict 200 dict N SDict begin/@SpecialDefaults{/hs 612 N
  1210. /vs 792 N/ho 0 N/vo 0 N/hsc 1 N/vsc 1 N/ang 0 N/CLIP 0 N/rwiSeen false N
  1211. /rhiSeen false N/letter{}N/note{}N/a4{}N/legal{}N}B/@scaleunit 100 N
  1212. /@hscale{@scaleunit div/hsc X}B/@vscale{@scaleunit div/vsc X}B/@hsize{
  1213. /hs X/CLIP 1 N}B/@vsize{/vs X/CLIP 1 N}B/@clip{/CLIP 2 N}B/@hoffset{/ho
  1214. X}B/@voffset{/vo X}B/@angle{/ang X}B/@rwi{10 div/rwi X/rwiSeen true N}B
  1215. /@rhi{10 div/rhi X/rhiSeen true N}B/@llx{/llx X}B/@lly{/lly X}B/@urx{
  1216. /urx X}B/@ury{/ury X}B/magscale true def end/@MacSetUp{userdict/md known
  1217. {userdict/md get type/dicttype eq{userdict begin md length 10 add md
  1218. maxlength ge{/md md dup length 20 add dict copy def}if end md begin
  1219. /letter{}N/note{}N/legal{}N/od{txpose 1 0 mtx defaultmatrix dtransform S
  1220. atan/pa X newpath clippath mark{transform{itransform moveto}}{transform{
  1221. itransform lineto}}{6 -2 roll transform 6 -2 roll transform 6 -2 roll
  1222. transform{itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll
  1223. curveto}}{{closepath}}pathforall newpath counttomark array astore/gc xdf
  1224. pop ct 39 0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}
  1225. if}N/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1
  1226. -1 scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3
  1227. get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip
  1228. yflip not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub
  1229. neg 0 TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{
  1230. noflips{TR pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop
  1231. 90 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get
  1232. neg sub neg TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr
  1233. 1 get neg sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr
  1234. 2 get ppr 0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4
  1235. -1 roll add 2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S
  1236. TR}if}N/cp{pop pop showpage pm restore}N end}if}if}N/normalscale{
  1237. Resolution 72 div VResolution 72 div neg scale magscale{DVImag dup scale
  1238. }if 0 setgray}N/@beginspecial{SDict begin/SpecialSave save N gsave
  1239. normalscale currentpoint TR @SpecialDefaults count/ocount X/dcount
  1240. countdictstack N}N/@setspecial{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto
  1241. 0 vs rlineto hs neg 0 rlineto closepath clip}if ho vo TR hsc vsc scale
  1242. ang rotate rwiSeen{rwi urx llx sub div rhiSeen{rhi ury lly sub div}{dup}
  1243. ifelse scale llx neg lly neg TR}{rhiSeen{rhi ury lly sub div dup scale
  1244. llx neg lly neg TR}if}ifelse CLIP 2 eq{newpath llx lly moveto urx lly
  1245. lineto urx ury lineto llx ury lineto closepath clip}if/showpage{}N
  1246. /erasepage{}N/setpagedevice{pop}N/copypage{}N newpath}N/@endspecial{
  1247. count ocount sub{pop}repeat countdictstack dcount sub{end}repeat
  1248. grestore SpecialSave restore end}N/@defspecial{SDict begin}N
  1249. /@fedspecial{end}B/li{lineto}B/rl{rlineto}B/rc{rcurveto}B/np{/SaveX
  1250. currentpoint/SaveY X N 1 setlinecap newpath}N/st{stroke SaveX SaveY
  1251. moveto}N/fil{fill SaveX SaveY moveto}N/ellipse{/endangle X/startangle X
  1252. /yrad X/xrad X/savematrix matrix currentmatrix N TR xrad yrad scale 0 0
  1253. 1 startangle endangle arc savematrix setmatrix}N end
  1254. %%EndProcSet
  1255. %%BeginFont: CMR7
  1256. %!PS-AdobeFont-1.0: CMR7 003.002
  1257. %%Title: CMR7
  1258. %Version: 003.002
  1259. %%CreationDate: Mon Jul 13 16:17:00 2009
  1260. %%Creator: David M. Jones
  1261. %Copyright: Copyright (c) 1997, 2009 American Mathematical Society
  1262. %Copyright: (<http://www.ams.org>), with Reserved Font Name CMR7.
  1263. % This Font Software is licensed under the SIL Open Font License, Version 1.1.
  1264. % This license is in the accompanying file OFL.txt, and is also
  1265. % available with a FAQ at: http://scripts.sil.org/OFL.
  1266. %%EndComments
  1267. FontDirectory/CMR7 known{/CMR7 findfont dup/UniqueID known{dup
  1268. /UniqueID get 5000790 eq exch/FontType get 1 eq and}{pop false}ifelse
  1269. {save true}{false}ifelse}{false}ifelse
  1270. 11 dict begin
  1271. /FontType 1 def
  1272. /FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
  1273. /FontName /CMR7 def
  1274. /FontBBox {-27 -250 1122 750 }readonly def
  1275. /PaintType 0 def
  1276. /FontInfo 9 dict dup begin
  1277. /version (003.002) readonly def
  1278. /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMR7.) readonly def
  1279. /FullName (CMR7) readonly def
  1280. /FamilyName (Computer Modern) readonly def
  1281. /Weight (Medium) readonly def
  1282. /ItalicAngle 0 def
  1283. /isFixedPitch false def
  1284. /UnderlinePosition -100 def
  1285. /UnderlineThickness 50 def
  1286. end readonly def
  1287. /Encoding 256 array
  1288. 0 1 255 {1 index exch /.notdef put} for
  1289. dup 50 /two put
  1290. readonly def
  1291. currentdict end
  1292. currentfile eexec
  1293. D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA
  1294. 0E079529AF9C82DF72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA93
  1295. 51BBFB7CFC5F9152D1E5BB0AD8D016C6CFA4EB41B3C51D091C2D5440E67CFD71
  1296. 7C56816B03B901BF4A25A07175380E50A213F877C44778B3C5AADBCC86D6E551
  1297. E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078
  1298. 0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273
  1299. C01924195A181D03F5054A93B71E5065F8D92FE23794D2DB981ABA2ACC9A23A5
  1300. 3E152596AF52983541F86D859FC064A0E3D5FC6647C3CAB83AD4F31DDA35019C
  1301. CDB9E3DD3FEBD4C2B36BA3CF6E6C7DA85E25D8A31A9BAD39BDF31FD0D1790707
  1302. 9DE6A078E8A409D8295F642DF492AC4F86AC84383B0F4C6BAA7C22AD5A898A71
  1303. D6CB34D2CD12266C486B75E75A69C14819DD9BB8159088E04D4717E576B8482D
  1304. BDA52110AC8B8A80E4E9D58F470EEBD3CF44A1E1EE8DA318FFF3611B02534FC9
  1305. F4018C7C57E80570D2F634D98BE5D5EC6D95051157F0EA94A3D12BE0B4B79939
  1306. F82F8D73136D3337C44E314B0B16CB030D9A12E01FB667105F334C3EE965E5A3
  1307. D410D2F1531547A4497C355AEEB295CD3C5334BEE5232992960B757594B89F3E
  1308. 52095042DBE6B4DA3C3AD50CA95EA9EBADA10630B500CF1FCCA7D60306743681
  1309. 7E428D33B7F7C40B425CD58E4CD8AB474BCE6A307BC6C6EBC15A8A96E0E2977E
  1310. A33389154536F5C5D8CF036D07F24094E779E5ACBE5502C92892F10F4C6DB627
  1311. C7EC4C7BF20B39418A8A85D7FD9B0EAAFD871DDD41F93BDE5FE619AFB8711824
  1312. DE890E62C1969A6FE28DD3578AF43D58A728FAFF0B9FAA640962C8F35A26F76C
  1313. 67F3548D6DB54A25CEB368B47F97EA2B0C4D7C0E7894A4F0C823C6C1922CF9DC
  1314. 10E05600556F1C7C9AFB33A2DB6F8730F70D6BF94B1FB0887451F2FFEEF3584F
  1315. DFADCFA9A2D4846B8F0E51620E1327D994CDF973B837D10C90FF76DE22B47CD5
  1316. EE3183898D156861AB4DFAD34A1E3FA260B8164E6680BF58413A553E88F6100B
  1317. C4F4E8E972C81A5F88A7DBCDC308B4C3581BCDE13877B976B1F84330839FE5CF
  1318. C78551620EB803DF94A5C921F8EE24F7EF8FC4C3E1653514212631F54F90E3DC
  1319. E9EAF96E998F340C4F729ECF7AB430FDB7C0BE3DF2C0D23015820E28B743CAD7
  1320. 7F0AE95413C3EEABBC69E852F53EE1DC260D7F1E712BECEF2F18437DB23D8E74
  1321. 2902AAFBC733AC5BAA452DD6F3671859AD836C8564E99CDC4183D8495AFD99D6
  1322. 1F0D65B6588CE7546717911E25BDCA6C2649E3A7466A3E2DA7C7994A30AB4449
  1323. 672EFD00632EFA8629C1AFB7D53D801028F77C864869FE636213A69173003EA6
  1324. BE1ABA95EB07B13D1594BEFCC95ECB0A9CFA9892EE0677D6B6C250855762B7A7
  1325. 8E4E022640F93169DFA0303A0D5E73BF3E0F4D4AAD10FD7E4EB20532BA30371F
  1326. E9F480F9513432946F9828AFB5D4AEAFA5829B2CB544E5EB634C4537EF7DF08A
  1327. A1CFD94A52DCF0E7CE4C5EFFB01E6D50558B75DB4C8D5512B06080F27BE62E01
  1328. 2EEA6A0357441401458C842D3DD4C35B8F561D816B336216CE0C14BF77648AF5
  1329. E33912CF95872A1E1AB9A18980A0B29A881D13397C15E1CBA5D3E0B27943EBE2
  1330. F3003D15EB446BCFC1C231832475D5B7AA19E4CFDE119D6CD62D053C6D29C333
  1331. 5F729791D17B3F7108074EEF4D1BD101CB33E01004532CB0D716D2E54D169C6E
  1332. 80163E70C0E9081F31A1ECBAE079D2A518B790B0CB2CD03DFD034A0F4788E800
  1333. B0CD2DC1FAFDD487C2F381EBAB2A2F3F3AF82021B211DC9CD2FBA6A1BB3D4AEA
  1334. 4C7F3D9A5C21DFF284CCB827D205A69638E98D5DD8E36AFC1A4481B5CB2A2E8F
  1335. D6C838DA6F81990F5ED928DC7457501B5C979FF4CD20A830896A460C5DB13D56
  1336. A3B2B5D9B292374A9BF392894DD99FCD6A1E655AB395E839F074D1596488700C
  1337. 4E2891C8AEEF66568E82A8B826F9A28FF84D4D9BDA21F638EAF96880B4EBE0D8
  1338. 081982F34831A03BEE81FC177700C2360D2A48915EC40D5FE85B400E175D5AF1
  1339. 067FA0097904FB647757BB44B4042D30D1557BD0F7922D731142FD682139CEB7
  1340. 58CA4C8C240A0B86B1888CACC507E24E04020BF1882BD9B4CAECFA97DB24D7F5
  1341. AD64C69454027F198BA35881B94EE9159A2D73E450C3BDAED66B886D6DEBC84B
  1342. 653E165176228F88993F12A170775A8D7038BDF2FE8DC1F7B98BDC02D1E6686E
  1343. 9B834F6C0AD90780B17DFE25F0A4E470CBA84E73F2D22BEE09A040F14CFA2C14
  1344. 0FDA5A5149B5FAFFE49F55EEFC43831BC43A8326FEE9C7F469C0FC3B000884FA
  1345. 41DA7318EB57262CB96FC4EC7F16CA07FE1C3BE8C2DBC8A8135953D6DDF20BDF
  1346. 75A2B6D26074FCE752BD32FB9F5CA797775E8DB9BB9786B469A3CD65A0D9DDDA
  1347. C2A166E454A94860EEF5B5C12172DDFC576A03F6E6F8A735FF21A3E9CCB4CAA1
  1348. 3064893487697986A42CB5888B2B0A79FA3C74E8187BDDF7BEAB884B70B8D4AA
  1349. AC6615745AEB906E08BF831CFDE222F58D02B428D55E9D5A3CDE74E42D8A2CB7
  1350. E1A3A9439B678AD438793ABBEB72B21C58981DAF3EDCE4BB93D95F4A1E943BBC
  1351. B3A012DE92FED4F232A3A7D60CE60B605151F9C7C18A5C653E5D6D15E5B49A63
  1352. 73E7A339504D0ACC74B8B116EA88C3EBA2CC631AAB29F761E5F062966AD2FD28
  1353. 7FFE52FA8A115DBE23E471094FFB3CBAFBDF11B7E9058313F2D069B2CE98A962
  1354. 64645738F02A31E2F2AC11628724034ADBCEE012721EBF0A567893411F950410
  1355. B20754A7510D041FFA6144AC9CC46D846B82581F20BBD001D34D9764010824BE
  1356. 61C30D05E5C5D100A24F1917F01799CF5BC4E50FCECFEA732CB50196825F0E08
  1357. 8A1EC868C6D4357857EE2957E081A0E4372E31A8ABEF23C3F2EA0FEE57DE4D08
  1358. 61C570175C41AA0C7A3A579ADF593F18B4AE3782D2552E4E0759C32E059EE741
  1359. 2D8191E381731769F6648B3581CAF11DAE46471896666F18F02918B0860BDA3C
  1360. BD5DE777672447C23C62ACFC2611ED5239D6A266FDA6031EBC5A530C1A2FF7A6
  1361. B4380B9A4C877267854AD1F1677CB5433F28894ADF93D39EAB94541A8D232E08
  1362. 22D082D0951A60F62B87DC028714EC74133A4D65F7D0D1296C0E189C4A42AA98
  1363. 28E8AE7ECBB9FC8DFABCC6EEB1E9FB06227F90808EF31331CCC5D4C9A6182181
  1364. 047902DC9FD0444FB94B60FC74F3B677758088CE6A159D940C5CF682335E756A
  1365. 8BACF06AD7225D49B0002392C889B0FE2C71311D2596F4903D12FA20BA2FFE25
  1366. A0804B4BC282929BE31E0F46B34532CB5795A65218CFAE21F390792DA67775C7
  1367. B91A2BF4C16DE4F6551DAE3A5827F616BE9040EE6B1008DA2F99A01EF66D697A
  1368. 6CD1A44E0A15D1F39EA8025E886A68A1E9C334327C7703EE721E497CA924AC90
  1369. 7723106D913C5ED4BA4FC743CEA8D0F5172526107DA65775C0B1B77179D336C2
  1370. 9B09B608D80B1A1E87CA1A84A833A00D980D919BFF56F6390E9D5B45E9935CF5
  1371. E69D003564462F750F7DCE02DC23CC215A0696B74D8BD3156A392A94F557655E
  1372. 00BFAA035647568ED66157FACC585E411F7F428569C147DC43F6E4FDE693D0F3
  1373. 9917BEFEDF61FB980B85515FF6424824E2D995B05CA1E5D3E8BD8D3281DB7CE4
  1374. E54923E84058FFC0A8A2C491327D0F87CE4C352B724167CEE224DABA3B95757E
  1375. 4A419594BE4F92E78BA6D35D4C93D31ECC3134B24A45DC32445725BB044F09A3
  1376. AA8C31EFC0A2944ACE2F2CE054CF24DB350FB3C71115518C24BDC0F7E54250AF
  1377. 9D3378D38480E1CB9029F31570C619A28F065CA4FED5665EDB96712ABEB33B9B
  1378. 4232C00C1B0215F08D53F7E430887035AC25BEAF06942FD1B6C442253C887AB7
  1379. D694C1A6115C8990B4CAF1E81DD1FDDD6B03C00055BE956BE7FD8A4E1049AE69
  1380. EDA8593CBA8C4A41E046C689FBBF9F1B64E5856A7FB1C61EC815A56DE2A8ED33
  1381. 41F370B8203D4E5B19C63AE9E6E0D26F4F3814B5AF48AD30EC9B8402C941FDD9
  1382. 722FCAFC638FBB835F83DC77F93D367266FA7DFFFCB567EF82B1695AB4D94D09
  1383. B18AC041811027229DF431F5CB2BBF6ACCE9D500C8F075A74590641C1A607C56
  1384. D2B8624797BCD9C91C3177818691FBB4744EDB6056464A0B95B8D63F7C22309B
  1385. 82D6126E2057BCC9FE5566D96B7A9B201A09B0D3252A5494C8CA2C8BA8A13C29
  1386. 37EF2A882D61DA708C279F663D88A8E2999A0F3B6F98C49901A7631BF7708B67
  1387. 54D0B4C52BF4BE0DA0439E6763A7C9D639AD4092E77B13D3510DAE1475C978AC
  1388. 796F9B2AAD3BFF35C5A3E19B5E2BF704B3BBDF68CE48BA4FA2496D60E58888EA
  1389. 28AE12D00E9F0816FAC190590A865BB58569A91BF0345D01230ABA361442006D
  1390. BA2C90EC2036BBAB79EBAFC3F217DBD5854C519235F9627A1C3C71D21ED38AEF
  1391. 0BB40F3B86BB9F09A3F309473D8757AB7E638DC1C59A7F9BCD49DE4107A2E54F
  1392. 422767FB94048987847205584309397F554744690ACFFDF5902FE5DB355930B8
  1393. 71863217830DD7A563B0B3A4025ACE75B0E777B4414B62A13B50C54E0E6D47E9
  1394. D43BF769B9411B74E1069BF71BA873B4B8973EC9BA492A5DEA58D267872BB246
  1395. 10AA67B143D0E2223FFB4991E583E629413CC894C3FA4869B72D19CE1A0CEC8C
  1396. 0FF5E5A3EC1FCB7D3C4289813F0D249A11B55104BD60B2A89BEF44CC77CCDA9A
  1397. 065B8B83B4F4253AA1D535290DCFAA4773452D110D2B3370F9E2FE5432B54A9E
  1398. 644EB3BA9BFF62347F376839024CD5EF3C5DFD30F412DD5474B7933E6A1AB63B
  1399. 4B12F2417C72D0543C26A263AEA53E5BAEBD67E23553A72E949DEC556BEB5D09
  1400. C4D7A89B14FE4EC68D0E3E9D65A64B285E53590F418EDA8175113CA375A29930
  1401. DDCF4C71ABB26CEB800C2C2B253AC1F53651C88A56ABE5A74F3B54CB4FFDDB92
  1402. 60AD7272BA25EC2F6FB759AA6E1E7964FB55AD09F4EB25DE45FD01833947BD05
  1403. 6266AA8ABB7DD792941C7A070FCF3A4636FBF8921C70298D42FE92F079DBA2AD
  1404. 6149D9CF9EF7264DE6DFCD4429949B15EA90B596340713BD61926DDB2BB23BE8
  1405. F9DE38A31620A817420A245946E551463960A8C5C7295E3B3D6A59BCDF5E472A
  1406. 40B7A2CDDAA43CD8AAFC411D037142579D11054A903E102DF0D0C7B5BB854DBA
  1407. F3F086AF991F7F5D5C730F8F9AF213F25786F3EC0E54530FF912F4876FDE16B6
  1408. A07D0DC4FC46EC6363BCB68B83ACC448B801EC43FDD2F8BE0E93D809FF81E38E
  1409. 176AE17C67C85FEA58EC95435434C49A950AA955D8B20989C550AB1F1C31B7FF
  1410. 99422E1F48FB7D6F327C6DBC4695A03903DB275B94CB39386E46579271870A25
  1411. 21823E75C377E9D5B46655E8CD8F986372CF8BA846423E26582315A9D19E0BF5
  1412. 305C32B2A0EAC3ECB275B1D8BE11A37ADF524944219D94EA2C5DBDA768828B6D
  1413. 775DA8CDB09E0570E4ADDF462EFD8D3FA3F86B1DEECDFFB699AF6507257C1879
  1414. 16FC615868C2D51F03CD57BA38D42995D9164B257441210084DC409B6EE4C119
  1415. 0B2E17B0A8D5326DD0010E4A325D5F77BF935693BC90A00A28C7B5F74817DA39
  1416. F47A41E32F4F92AA04D30D810F7B1484EB53AD8CFC8CE8928B570314E0F713F8
  1417. AF127227190F9C16BB73D2A217FF801C391A29095DA5E4974D137A0CAA7DE702
  1418. E20DD4755B1D78739756A5E7EC3542B96AD6844199FFA2F5F2E9C64E2DA4FB2A
  1419. ED79869F745C59D235438251BC2E6D26112AAED20E06021D1AB896EE1F1DD2EB
  1420. 437FBD4A25E42245C5A647493FCC9922E6DD7AF57D5D482921D1CBD6F0F02949
  1421. C27777144751C1E72F4EE2BC343D4AE7A8A8758123B54FB1A026144C643651EF
  1422. 0907A376945E19A8FC7F98A034832A5820A481B0823F980F59623E0511593FEA
  1423. BDE6EFBCC0383242CBD4954027B075B21F10472059A480D6E5ED01C3B07461CE
  1424. 9810251A5C5643EC7403130C2246E8616CEA25EAC7A0076731FEA8CC43BCE3BE
  1425. 933FCE61067F5FD402E67E2B9DAD954AA77C5BC86BC5E4BCE2ED676D8D8EC7D0
  1426. ABC5C86D82180B9D5D7451C71B5149B6B67883578DE9909317928C0A92E3205E
  1427. F23015400A1763A6FBF67FDE3318AD2696685A1832FC31CF38589EBC7CA1C818
  1428. 60D2B2211E04EFCCEA88D9A9082E82951EEB123924A267CB03C48889032F2892
  1429. 4227E217FA28F87E01CBF27BF1EA60641A4238258CB7AA355908FE36D90F5CAD
  1430. FE992D03A33E47CA9AEBEFDA57793F39DC6A9E85D5B289F6B862B35DBCF82E43
  1431. 5CD6A862F6FFAC36478C384C3BDB0148CB1FEDF55969C776E77917635B5A65EB
  1432. F2AD351D21CD3822D43289FE8EB0FED58182997097C7E9F4373553AE1CA92083
  1433. EDE3BBE6C3BC7009D15AB5FEC6A59E9FD1BCC7B2099CA15FEF083B9CBF7B890E
  1434. CDDDE6BA0AFF306C76500C945DC91BD533FF9A585CEEDEF79238C54E6168001E
  1435. 26FEB29E523EE501BFA4F60B782B1499B07084C35A2434B4D29D3D8E2C8F945F
  1436. A9922443B68D07DF7EAA1F4CDEFFC438B597D8943E231B5216808A85F30EDC81
  1437. 9DF5DD22F54A45335B4C2203887475F39D247F0E7347BACFEAF220ED82F9263A
  1438. 6488E73C1910023E505FDEB143006C1A351D441AC57F9D52D2C6D63D78C75605
  1439. 999885676BBBAD56074298E0BFDACBA1830BA58E87F436CC670EE8EB1870154D
  1440. 72DDBBF3794F8CAAA3F1E11DE29752DD99EAC695838A19BB67A1FA3829B6E0BC
  1441. 5301610A0351AAA749F456AE31ADD87D6ABADCDD1FB3CE81C3713F48780DF407
  1442. 530CB284B2AC709F52EE7AD647DEF9FA4D2A867CCEF728F3D40CF34C28D21527
  1443. 10160B3DAFB5FE16AFC9D36C6EC4021FC189005862082BEA60AC72B63AD27D72
  1444. FAF3C2D89DA2648FC4C65104A069212D87144E8533CD86A6D73DC7CD9DBA25CE
  1445. 7DA53B000266F3871B24663C77723703315C5E4A89DFCDBAB384AE7EB2F455AE
  1446. AB191FED406F7F6EC9E5B8276EF5C4CBA041AC7E8BCEC7CAE840154BDCA3232F
  1447. 15711ABD1E867A434E9787CA0A6D1F197597DA27ED2402CB2D84ED082E8D3A39
  1448. 81E6EB270DCA4E7A90E2BEBD3CBB3A2BE3CAB926192D7292CC16845B6399A543
  1449. BCFD224BB52F21352732DB5154FA3442733066CDC3E186D8AA97CD801DFBE43A
  1450. 116C86889BE198DA88CA978B8C40ACB67E8F7BA499DE68A6FF0DC72C3D00BA1A
  1451. B378B39610F15CA026F95ED8155CE3FFFFA2E2FEB352DBE14CEE1669F2387B70
  1452. 55B91185FBBED764266215D518716EDA3DFC9E5DB6B148A553E75AE5E38E1CFC
  1453. 6EF47B314D54CF24BC13856F4F7C976BB91D143DE32FF49BFFC87E17885A1893
  1454. BA1B8E441B08EFC04F7D103C1FFBB665194B3D0920473740C55FB1C50EBCF717
  1455. A2359B687FCEAD65616EE89A68F8D91AFACAA0B238EE4AF0279AF5BE5294C3DE
  1456. A7E1F5E6248C0210E7D40683F04B12A933C746ECB517CF94BBCC6E4CF49AC715
  1457. D8005AFECBDFB7A6B417DB8A28F8E9EAF39CEC1CA64DF37A5E66A76C26F721F8
  1458. A63B003A040A62F87DCF61B298F960D510BEFA453F118E59E7DE8CA3DD002EF0
  1459. 127EAF733D5C61B5132348D280F84D159809CC71A3C6F7373BBFD8D6EF715D34
  1460. 0016DEFF14AA5F960BF1BB9AC304A1823722843547BB4CA5EA4C41C6C2701C8F
  1461. 7BDC810443F9DF34BA469A3260009B799871BAF8523C8763544DCD0B382D44C5
  1462. F75046AFF85F0B5A3188C2EE786CEEE5496A5AF4BCB0B429CAFC403FB983EFE3
  1463. 61FD9F52ADFC38E07A0FD7BACBA530D2E4DAB2592AA9564843E7E2305047F060
  1464. C5FE4243FA8FDF1B5D4F61ACA7850A604FBC6D6970959752695C90F78961B4E2
  1465. C8CFA41082B1A37405AABCEE5BA3DC2B9EA76F486117B84728EC6D8AE6379CCB
  1466. 402C2AA89078EC992C00D53151E9D82C65643F549A572A20F05107A41BE5AC57
  1467. 8EDE92AE20B05E2D0C98151CC92D5389A675DFE39DF546A33A84A4C534337ADE
  1468. B17C34E09145B37CE1EB1D10D42CC8D6E6B127A3809F7202381FDB88D42084CD
  1469. 0AEAEB8A8288CB56870EA2BE9D0B9DC8291021CA561E2BA388DA3494E433E0EE
  1470. 5E69DA51D0AC505C9F71562D3E9750F23CF14D2C8ECF0692FBBCB4A92B48B4B0
  1471. AA2163A447D5FBE86D961AE4D4251149F11C4BC269E10B48E8C42DC2484EDE87
  1472. 6540CB8A5EA2494148D09CC9D5014EB7272F10897FEB361AAC8C7642DA07EFEE
  1473. 356790B9D0755C63CE287BB6533A5A2B6BAB27E291ABCC443BF097D5FD49B9CB
  1474. ACCF7387D6B618E76141EEC43B566C2C8D40E2FB8B9812DDA376AFD07DA6A127
  1475. DC81AC7CC79D5484D5FEB9D68F9D154E0E6D9C10C0D5F74695745B5B14649F37
  1476. CDBAD5DB780F512C2E1790C0F62C82200E5F245CB75E3CF291ADBC2600D221D9
  1477. 958484FCDAF56C4F0074103CFA58117204614502D59D2D6AA1475906C91007DC
  1478. D9F035A6D2DE39976DA36879EFE35031F340BA6C211667BF29E32EDB93DAA76B
  1479. BD21192CB456B6BD178CBD6BF5FFD5E0C92DA1807D2DD318
  1480. 0000000000000000000000000000000000000000000000000000000000000000
  1481. 0000000000000000000000000000000000000000000000000000000000000000
  1482. 0000000000000000000000000000000000000000000000000000000000000000
  1483. 0000000000000000000000000000000000000000000000000000000000000000
  1484. 0000000000000000000000000000000000000000000000000000000000000000
  1485. 0000000000000000000000000000000000000000000000000000000000000000
  1486. 0000000000000000000000000000000000000000000000000000000000000000
  1487. 0000000000000000000000000000000000000000000000000000000000000000
  1488. cleartomark
  1489. {restore}if
  1490. %%EndFont
  1491. %%BeginFont: CMMI10
  1492. %!PS-AdobeFont-1.0: CMMI10 003.002
  1493. %%Title: CMMI10
  1494. %Version: 003.002
  1495. %%CreationDate: Mon Jul 13 16:17:00 2009
  1496. %%Creator: David M. Jones
  1497. %Copyright: Copyright (c) 1997, 2009 American Mathematical Society
  1498. %Copyright: (<http://www.ams.org>), with Reserved Font Name CMMI10.
  1499. % This Font Software is licensed under the SIL Open Font License, Version 1.1.
  1500. % This license is in the accompanying file OFL.txt, and is also
  1501. % available with a FAQ at: http://scripts.sil.org/OFL.
  1502. %%EndComments
  1503. FontDirectory/CMMI10 known{/CMMI10 findfont dup/UniqueID known{dup
  1504. /UniqueID get 5087385 eq exch/FontType get 1 eq and}{pop false}ifelse
  1505. {save true}{false}ifelse}{false}ifelse
  1506. 11 dict begin
  1507. /FontType 1 def
  1508. /FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
  1509. /FontName /CMMI10 def
  1510. /FontBBox {-32 -250 1048 750 }readonly def
  1511. /PaintType 0 def
  1512. /FontInfo 10 dict dup begin
  1513. /version (003.002) readonly def
  1514. /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMMI10.) readonly def
  1515. /FullName (CMMI10) readonly def
  1516. /FamilyName (Computer Modern) readonly def
  1517. /Weight (Medium) readonly def
  1518. /ItalicAngle -14.04 def
  1519. /isFixedPitch false def
  1520. /UnderlinePosition -100 def
  1521. /UnderlineThickness 50 def
  1522. /ascent 750 def
  1523. end readonly def
  1524. /Encoding 256 array
  1525. 0 1 255 {1 index exch /.notdef put} for
  1526. dup 27 /sigma put
  1527. dup 120 /x put
  1528. dup 121 /y put
  1529. readonly def
  1530. currentdict end
  1531. currentfile eexec
  1532. D9D66F633B846AB284BCF8B0411B772DE5CE3C05EF98F858322DCEA45E0874C5
  1533. 45D25FE192539D9CDA4BAA46D9C431465E6ABF4E4271F89EDED7F37BE4B31FB4
  1534. 7934F62D1F46E8671F6290D6FFF601D4937BF71C22D60FB800A15796421E3AA7
  1535. 72C500501D8B10C0093F6467C553250F7C27B2C3D893772614A846374A85BC4E
  1536. BEC0B0A89C4C161C3956ECE25274B962C854E535F418279FE26D8F83E38C5C89
  1537. 974E9A224B3CBEF90A9277AF10E0C7CAC8DC11C41DC18B814A7682E5F0248674
  1538. 11453BC81C443407AF41AF8A831A85A700CFC65E2181BCBFBC7878DFBD546AC2
  1539. 1EF6CC527FEEA044B7C8E686367E920F575AD585387358FFF41BCB212922791C
  1540. 7B0BD3BED7C6D8F3D9D52D0F181CD4D164E75851D04F64309D810A0DEA1E257B
  1541. 0D7633CEFE93FEF9D2FB7901453A46F8ACA007358D904E0189AE7B7221545085
  1542. EDD3D5A3CEACD6023861F13C8A345A68115425E94B8FDCCEC1255454EC3E7A37
  1543. 404F6C00A3BCCF851B929D4FE66B6D8FD1C0C80130541609759F18EF07BCD133
  1544. 78CBC4A0D8A796A2574260C6A952CA73D9EB5C28356F5C90D1A59DC788762BFF
  1545. A1B6F0614958D09751C0DB2309406F6B4489125B31C5DD365B2F140CB5E42CEE
  1546. 88BE11C7176E6BBC90D24E40956279FBDC9D89A6C4A1F4D27EC57F496602FBC4
  1547. C854143903A53EF1188D117C49F8B6F2498B4698C25F2C5E8D8BD833206F88FC
  1548. BD5B495EB993A26B6055BD0BBA2B3DDFD462C39E022D4A1760C845EA448DED88
  1549. 98C44BAAB85CD0423E00154C4741240EB3A2290B67144A4C80C88BE3D59AD760
  1550. E553DAC4E8BA00B06398B1D0DFE96FB89449D4AE18CE8B27AFE75D2B84EFDB44
  1551. 143FD887F8FB364D000651912E40B0BAEDDA5AD57A3BC0E411E1AD908C77DCE3
  1552. 981985F98E258A9BB3A1B845FC4A21BCC54559E51BC0E6C22F0C38540F8C9490
  1553. 88A0E23EA504FA79F8960CC9D58611C519D3ACDC63FB2FBCAE6674357D7F2285
  1554. 4BCC9F54D3DA421D744D3A341DA3B494BB526C0734E1A8FC71501745399F7683
  1555. FD17EC3044419A88C3979FD2ABA5B0130907B145A8462AAF0A9B511D2C8A7C7F
  1556. 347FF6AC057E6512902BFD2918E2CD31DE615F5D643764E900B60287670AE18F
  1557. FDE15545D8BC69591A8CBBB275AFFC9B14BD68DF0AAB32268FB84844D4DBC7BB
  1558. C591C1AC5102C50A9C7BAAA848DA88B0519F0F5F0813BF055CF0E3C86F633A04
  1559. B779D2E8E656DB1E09A66A85FE21CA8BA5523F472A229E83F2C4E91ABA46C733
  1560. F3C7B5775B06C97782BC225C46385BEBDC61572458EFC5CF4190AB7A9C1C92DA
  1561. 29F84BAACF552089195966E3AD9E57CC914D20B6962BE80429A16D4DF1ECAA66
  1562. 36C4343FADF0B2B48F12E2EB8443C4AA29D00949255F3968617F98B8ABD4CC12
  1563. 048B838EE243A21AC808BD295195E4AE9027005F52258BFCA915C8D9AED9A2C0
  1564. 80814F79CF943FBE3594C530A22A92E11BE80FCEC1684C4F56712D5846B0749C
  1565. 9B54A979B315222F209DEE72583B03093EC38F7C5B9F9BCB21DBE8EDDAE9BE8B
  1566. 75ACE6B12A31083AC8348EC84D1D29D2297A266284B7E9734E207DAF59A25F4E
  1567. 4AA38509E993C5394FED76E6A2F25462685C4C86C6E8CFC9863338EC1428BDFC
  1568. 74616BB1BC8948B0ED4C87C15B4405F3A7796F9DB3798FFFE8BD0A94E834817B
  1569. D5E9812E308D0CC920470A6F2CD088FCB80462BF7CB3F039A7DF3DAF5B2B5355
  1570. E083A385CD2EAF0FC181E40E96DD7E9AB9EF5C7E6866A13B8A54718E950FE097
  1571. EF0951A357114F18CE9933D28B3A77AA71E3CE884661F13284BCED5D5FD1A86D
  1572. 543E588FF473DC2CF9A4DC312500135F29C2D0174B32018C8DBD40EF9A232883
  1573. 710A1F2AB2CD11312300ACDF789A9B7B93D2035D81D1C84984D92D78A53A00C6
  1574. EDA94B24BBAC1AD17774A4E07E6F74ABD90415965616AD540C8ECD8C3A44EE4F
  1575. 7F4F6BB6238C5062D63FA59B7BF08BE93FAEA70A2AB08FBEAAF7DBF56B95FD93
  1576. 03CA406543BA6C9527D0DF01F5108D31A51778A5EB1C93F27B72B46146A353A2
  1577. 01CACBC829603B9989A87CF64528682CCBA0562A8165B185C58A5C6BB72F5E89
  1578. 500ACCAAB8ECEFBB2640E99EAEEC4EA979AA793D013D61D8ACF8784FF8D9398F
  1579. F6A252A709324FB39509F0B3A4E725E82F53543383C6765BE556CC897C758208
  1580. AA3AD37B0406E4A79F8F0A6C1983FC73E71CD858C0DB66ED66D5D992978614EE
  1581. 1EA91EBE191E082EBA1FC040AF19A2202575C2EBEB8058833E3520FA03D2F915
  1582. 85C1ED337E457B9FEEB0C6EF2735EFDA6E0D05FA641BCF698AC6B97751E8306C
  1583. 4DF00A39B8581FF53DB8F8525FDB196D85950906CCB59B8EF171349AA3B567B1
  1584. 6A00819947A995FB383C3C1709C9A2C113B2E40BB832B7D4A0FBA0B16A2C455F
  1585. 55809CC425C403E9668DC66BE45B71A81C332FD4DB279D22A2959962304A8F18
  1586. 085893DAC61317D24A8F198FDAB95F3B86F0AFD35047B868A9A17037A2829A02
  1587. BAB042F75F349E197A7EED41984C2859754CAFD0251439921C248B463B516951
  1588. 2E1322C80D73F9CBCAA63A585450275AC2492E4D3FB78E800F788254DB5E610D
  1589. CF788DF5C70FF99892BCDF16133E34B24B77C8F097F546B87C603DDB8998B66E
  1590. BACB68BA27462AF54AA405682EC96D701F0D474DECD5F95CA2102DF639EB169E
  1591. D518162C2BAE45FF698B6DE15FC6E7DE48C336C40A670FD26952A6BAB09115E1
  1592. 991F0073419F2CC2A1C08BE91096936AA0C37E4ED3CCCEE235476074B8FF1125
  1593. 6BDE3701F85532D8BB64CCC927CC335281C95EA689706F0AC717DC2CF680C754
  1594. E5EFD7FA4BB8880B2B727A964C876D4A223069D4E6001771F0E23EAD2A4BBC80
  1595. E76675297B2EF05F52BF4E71B3EE2BE3048CF088C79540113C66AE98B2FD3CB1
  1596. B0741A215FD070882C52765009D7D711DAA2508F19AE7DDA15229A856AC49BC3
  1597. 4DDF40814FF96500E4B9B02D412E94623C5FDCC76C0FB8E42DF56A904FE49D65
  1598. 1DA7C53901B2EA71AB658A464D3ABDE27D9DB8D9E0B48F64E61A2495AD5D8DAB
  1599. B5E72424AD017DF37964AF911BD7FA21A5EB4775DC8E95EF0C0EB856B00D89D7
  1600. 8172A1DE8530767D317B8256103E53CFB877E10686A04F5A08F8DC58D843DEBA
  1601. FD5F40597588663D103689F6EB3EB14D06E18C8078F2538B43E712DF491FC5C6
  1602. AF639256C8C6134B64D560D8476DEA6329D995E46CC4BC78841C59E73648B47E
  1603. BFA7DE0846422F738454AE77E822A083405289247BD7C478BE4974F742CD6051
  1604. E99FBB1D1B3FBABFEE855174734EE45E87D0AADF32B1283B911162A9955847FD
  1605. 38944D70584FAA6B1A7191C5C134B73F98EB632B69E2F0C0F94156787C34C8A3
  1606. 7622A029D58F9626B74F8A8A1F3803E0BC20E0EADEB1E99B70F1BD9F980FB751
  1607. 2A842843DE42EB142A84D5D3138629AE9EAF6F3479C423E8829C8816FA6EFA27
  1608. DCE5580E65AA9854B1C64163DC318420CD993C15BFD76A8BA1182860A6B03D6D
  1609. 22B8CF43CFE6C8AB27C64842E239CAE707D3086BADDE1D7C94E3BC96319470D6
  1610. 8D26915C575CFDD03271D6BB9DE86A0EB6EEA6E768B224A626C62A9AB48A6EDB
  1611. 44F70BB5AF991CDF9736D65933E81CC57A78F623F33EC9AF535F2F25FA4EEC90
  1612. D50DB7E87F31E971A75A33A301CA6013EEC5A4E179D695B33DADF2C98364434A
  1613. 42926776000B610E17524162253F6FA638D6581C18F99EA0BD1D2E24D2424ADF
  1614. C05010D08192485153DD03930C7BF45237593E484F9851E6D464FA10FECA5D9E
  1615. 0C8CCC97DE029030900CDBB491C5CF226DBF903CFE7735D939C3FDF3A20B70CE
  1616. 66579B28B99313FEE914E295388C7BC8E055A2E54EA3A8206D3C8F4F7C0BA5E6
  1617. E519419FD8CE215F7B8E9BEC604A9E3FE272A0328A24E31997C8A91E0946BCF1
  1618. 6943A97CBED2AB9FC636B49828BBB8B89E0BBC2653796431224895ABA5DAC41E
  1619. 1854BD9764E86147FD7624F736F40DE3B7582EDDFD15C2BDE3F22B5A54D7DF10
  1620. B87A1301CE85CFC061689A890A321412A13314AE96DCD3EDA75035FDD8F4AB9B
  1621. 897A2C68263A68457032C469987970648BA2D88B1C5375DFEAA35A917B8A952E
  1622. EE670427942AEDB3CB599C5746180E392837D371E15D860620ABDB6AA7772C40
  1623. A5E346661673ACA530BE3D8E3FFB895E5DA3DC23B1B43C080C77F7E47847F0F3
  1624. F3AA5CA9E4BF75FC5EBD18D19F21A7DAA3B11CABC6E4070A15F7DBC8B05EB6AA
  1625. A02EF1B078EB66D61D6AFE41DA9B36FE7EC9EF94D1EA26282A9871E2CACB3126
  1626. 2AD49C2D9B50A6E47D8F2CCAD50992D1B430979A45FD9E76182A19964BB2A1F6
  1627. 51779A2B258DC1DF4C2F3074621286831F3848AC152DDD2BA561E6586ADA88D3
  1628. 598A2CE2CD048F027CE0008B828BD915887D7785341E8305DF2346ADB76BE99F
  1629. 87B02173BDC334E9221C8DF54114A6B24C1C5340299512FA6C8C51AB4C8778CE
  1630. 178CEF531C6D1B5FF0A1BE8EFF767F959BD4C345C52699A29A17B2A230842BF6
  1631. 4B011217D6D24EDAC3F6D53482786F1CA33169B90ECD499407D37CE9B70DDF78
  1632. 7B7547B32952535BA9ACD1E244447AE3FCED3AF28717083CF9590A09780984D6
  1633. AF0743C82AE4FB3E2BB2856A4153A3967A023FFC35382D6C22D84A924900B6A6
  1634. 3DDD400E6D2418DA6C27F2FA34C075C902B89EBAE658B3C9A18EEE449DA5A379
  1635. 337DE95CB7AB3F0970CF1A5D8FAD8090E495570FDFB2FBBA79244780D8035547
  1636. C5A55BB21A2270F724BF5D442CDC5BB9F09BE0CAE59B1C2270F0BDACE698F2C5
  1637. DE8F66BFB9634904B161F5BA2B1950048300D69BABD312D58D89C4ED527AF7BA
  1638. 7DA2478EDC2CDEE3473DD8A8ED9D891CD1FC21F23013228BB3281B71FCE959BD
  1639. 6F8E9059D682A7FCC5265A0620992D4FA8D78377EB34CE3ECA070EE3707239BC
  1640. 98907DB0120CE42ABA32CF97127E28382BDDFD685674279F588D4F951216C355
  1641. 821361790F64C2CC720DE97E8ECB57326C43EE47367628E05769E106868B54F4
  1642. C33C9951908DF6FC4F5ED2C7787BD8FA591BBB3E9C6C1DA94CC5E38D9B20C886
  1643. 7D237572FF46DD896A4D6163408EA6CEFAC398EE041EAE29D577E75326CA17A6
  1644. B072D47A7B13EC441CE6DAA042ECD02134CBFA6809A435050413817193DAEB16
  1645. A5882C8AEA44BCF36E74E9ECCDFE7E19FF5A5DD7A94E5AB4F8702C3DA7F42325
  1646. 23C808670A0490F5B373DADE40814FF9650241D3D69C91FBC5ECE728F827D9BF
  1647. C928602E05477903449E079164CA39859C4BCA60C579F490AA455F82B5050BB3
  1648. 969AFB478E0D4A257B3356EA3CD62051FCE6C6B1929CFF85BFDF166BEF658E10
  1649. 3A55E007F38EBBB248B3F0B8ED1925106B499B762E45113AE1AC9DE09644C84B
  1650. 9C08034B297314EE69BC32DB6E7D7FB9913CE5AC17E7335979E9DCCE2BAB3725
  1651. 1976155551F9706A576FE0E3ADCCF72C87683291528ECB749CB0ED291966E239
  1652. B5E3630676BD409E08F85BC1AEC9A2D4135376284A96EA24431243BD6FE8B966
  1653. 95F11A4BB53F392E0AEFEA623064FF8A7002367B0A515635CB2D2DDFB9B4A8D7
  1654. FE721754E81BBA548848A235B91AD4E4F7DB19CCE2F61D277FC00AB956EB93BE
  1655. 44AB4970CA56BF59506C94ED160FB1E25D3DF2988A532BDB787BFB8539D22986
  1656. FDC378AC31444E63C4727FEE121A43751043849E6DCAC5B59D0FC703AAFBBFD4
  1657. E8B7C268F21615AD02CE9DABEFA27B5FE6A6441B619539CAB1F810F1263447AA
  1658. 633F5DAF483752EF1A0421740E3A811D2D2898CBF53E7F686C9223FD7235F02D
  1659. 6F90D2D48CC20AB87778DE3C6FB335E0F0EC20B5DC5B65223FE117526DE2C72F
  1660. FE839DF93CB2A7D66CD900CB325F891E311BEC932F703FB4FEFA29DB8B9C88DD
  1661. 375EC71B3D58C7BC59ADA91971A3BDA1ADEA629CE6CC92BD542CDDFAA7706FB2
  1662. 6CDDE2DF07E56D6741916AE8E8744339816F3E6C38062747AA9FDA2A2678A6B7
  1663. EFEA870AA3A4D71B25EE3013EAB1DBA34401B867C7A41AE51E0421D41D3BB83C
  1664. E120C8FEABA6E5DEC53A689C21426D4BBCB68CB37568761C360E6D4E3596FB7D
  1665. F4DEC7918E58C0293D12D6DDA7E9DCDAAD7C939F55CD1BC4A228B31E9A904156
  1666. DA6B40B08E6ACE674618B768DD681C772A3E55FE096CF949CF3B0460ABDCD891
  1667. D17B37B355B29AB5137899C036F31DA026244FA25FB798FBE5105BDA29F46538
  1668. D3D3AC1001A7BCECE64DE94FFE6C354166A0F97256137BDFA07F6E22A3D1D2F4
  1669. 9588DBAE95E895BC5E64DDCBBAA8D0A22C229B42CB717FC711E7E9DF793DF80B
  1670. 9F14754585A3C7E17F37B32924B9F9870DA8635E3E18BD1DCD81EDF01834D9C6
  1671. B33F23C956C2FCBFA47D84422F583459D827D1E120B97694D12F1F54D02379C0
  1672. D288F7104F3FFCF4F76E3494F4ACBD1BE3A15543CC680924C78A473F8E311ADF
  1673. 8FE00A04C6C393DE61AD3EDA5BC031E2353076A2489391B52632387CA28A7B93
  1674. FBB065A6EF3658AE80B1ADA47E9B2539E73A71FA75645F85ED8ECC257FB4CF26
  1675. B6C912DE9D0F9899E70BECCB934AD32CF49A093371A9F73DE6255EBC39DE1E7F
  1676. 00D0CBDABD4D0383977E694890E71FBE5C376BE5F3A80C28987417504F515C50
  1677. 909F3D31178BB9B1D085BE514F71B910A9085BD6122DDC72A150BFE266920E49
  1678. 5661BCB4BAB51D6DEFE32B616963DBD989FCDD1637B294CE4E288655FBEFA1BF
  1679. 7F25BBF8CF17C2D5FD161A7C2CC9CC7490D9BF15A1D35B3BFA43ADE256E88BDA
  1680. BD490D92907C57BAC408A575EC84D6AEE070148C7C9A91C03B09FDBD792E8FF0
  1681. C0B886AAD2EDD86541E5E579359D40E3AC312ACD3D8FD49F71BD533DDF8859B1
  1682. BAF17F1884E331DD07CEEF93B71D492AEBAADF7A263450A7A72210CE630A0D37
  1683. BF024BDC09ACC882816B8C22C62AE38A3A8D0F6EBC2B1B2C0B8161A8B076DD5D
  1684. 4B779C0788546BB4CF57332230D237856B00D79C28A7C01D11F44B7304F69075
  1685. 94B97A745DA43D1BE561372CE611C345A843834E46AD9DDB16CABCD3FA33D6F1
  1686. F6B5C0497F5EE5400B305CDC16A7EC286AA4D45D0EEBB9DA06AC9C5294D68EC9
  1687. E4DC3CA2B92CE8FC0526184A86EDC7AB34D67E60AC12D9CA8FD300235EC968BA
  1688. 92C6FBDA47572BC5600F25249F60AD287CBDAE980E747FCBE7EE5CD323E733F0
  1689. 63553B494D3DDEB9CC1480B5C3BB79A28E419AA65B18CB297AB383419E890E2A
  1690. CE6F98C9900CCB4675280A10CF060B8D220DDA1BE55DFA65715EABCC1AFAA271
  1691. B1F8732341613E17B231231A0D24D4D7FC198AE04D89A99C4536217769C6FBD9
  1692. 5EE24A6302F97438F7C0E311C878F674B4477A5ADA3952CDE4055AC408B8174E
  1693. 86F8FB797646DFFFE0ECA25D1BAB9A9F71F3926D3D85AA63E7A8C931D71E79E0
  1694. AF1EAC26FADE468F4FF7F3861D14C10E3BE1F9EAFD6D3A544E8108D5DAB5B180
  1695. 3950C74818BC8AF4758A108F462EF1826647A49667F5E482038C54716856D9BC
  1696. 35F29922846D2148F92F943E951D7438C73D6A60459A8003174036C64E1629CD
  1697. 155D47FD04B03C023AD67CD5A70C98AB556EEAB8C48169706E5B352F6505D580
  1698. AC945171BFE62E81F8F500438AC3B64D857BA5BC54C2C4BBB237F8FA51296255
  1699. E66A92A61FE13FDE781D393557EB72CEBAD86511035F775FAC39A0479CCD400F
  1700. 226709118F887F47CC2ECC8F79816D4A945B2845F50AFD62D8C9A9BBF4739496
  1701. 9E644BC9F7B04803B7EE75A09EAE94365F6F374B4FCEB0B506C76297564B9B6B
  1702. 8B812BC3A33929AA94692572B010E6210AEAA312BDFC88BF302244AB9D587A9B
  1703. 919823FD01DE12438D960944D1977800FEB49E638C32E5B188B1CA033E0C37EE
  1704. A142F746367888AA119535F0CCAF7EAA461B790EB089D2D6962E28A398439BB7
  1705. 9C9943654D7A2D765B46BC0DD1F915327F369162E1BA1BA83110B93F442905E0
  1706. 523BFF5E279508A98568CD5CFD18FABBE9D17265A9081E7BF64155A2CE3C0DF7
  1707. 88D00671AD65654709589BAD7EA65BBA811387ABA5CA0BC3F66D3D48597A0D1D
  1708. 2C268375DF47CCF62166262AE4840AB03BF49BE67A05EF66328EC729F03CA5FF
  1709. AD3937FC053E223303565DC771ACF32E63DFB96D5030E787961D72D02C195C66
  1710. B48E9AF0309DC169CFE8D16E2818DA94693A18F027DEA0D91051800EE6C54285
  1711. AB0594D87D05EB4CB44FFC094DA0072AE7D4BF2F4F9BB812FED256B937BC2574
  1712. 8C529F97ABADF6DFA7FA36E1DC6143DACC84C67787EED07D03C8A9D1FD9B4833
  1713. 129C36514145052CBB94273E6C6E08B75FE1789915FC4DA4A244EEEBBD6A82F7
  1714. 91A505955F57E74018CAD8385ECB4A1765FC97C59CFC61C1BFF5CB2135D8CDB1
  1715. 942BCD7837CC79347BBF68CABF6AF8D69BF07370073363F6293292ABD69CCD7A
  1716. A0766E0DFB4D4EF1B102C6A0079CCBF0642CD37869BC08F1A1060E0AAB8AB746
  1717. A6B456FE0F1D22662FE34FC981ECA211D4C334DA87474A364FFA26300B4E96F1
  1718. C163B586D0BEEC7EA0E1DEC29EE2D54D07A2E031C6BCF0D55D4667D08746DB7A
  1719. 0F79101D49B2DF6E86C821176FC77CBE76EA96F615132604EC5F9AE6DCE1534A
  1720. 272FFEA3118FA3B049132370A8637A043DB4BD5D188B7C2CBA5CF89FA268428A
  1721. F7677645A1814A80F3E9A12A27AB4609A3A498F2CD16FD5E4FE953907F1DB785
  1722. 43D91872492A38250A0B3CA33BC18A009F3F48E6E124AF0BA53A495F98A0465A
  1723. 992562EF08D5B53F05FB5ADAE148F90E8CA62B214EA0562234CB744BA59A333A
  1724. 2F60DCD2ED410F9EA4B099B02CD0883905424A5EAF5AE47F2E34567FD9B077C8
  1725. E0728DC8EC7CB7F1CA70B5867858EA77B98ADDF26F85F37175010A169E0BB757
  1726. 1CBDCC2F63E97F801A2279E9D03A3ED897DE82F4D556AA21A52D8229C83FE07D
  1727. AABEC916CE68253CF74821915DB1F0C4EC670FF97A9B380B2C1FEB7D0B697EFC
  1728. AF8BE55A14EE39037AACB6A7E54CD5E07AC63F7D3D4B8A37C99940458956FDA2
  1729. 9FCF6B85EC15D79FDA2216750723BAB22B95917DB36F1BCCB25B0230C46E6B97
  1730. 5EEC84F12782514DECB3D371EDD2F91D9C7056A03F18AEF4CC771AB8F4C82AAE
  1731. 1C233C82E0608D898001F451F6E5AB212C2C80CA136EE95B7534A051A6DA5A25
  1732. 8617F2693A38E0C15A91266174F932219FE142FE808C017487CAD0F350AB52C3
  1733. 246BE36A23757B48F510906DD4
  1734. 0000000000000000000000000000000000000000000000000000000000000000
  1735. 0000000000000000000000000000000000000000000000000000000000000000
  1736. 0000000000000000000000000000000000000000000000000000000000000000
  1737. 0000000000000000000000000000000000000000000000000000000000000000
  1738. 0000000000000000000000000000000000000000000000000000000000000000
  1739. 0000000000000000000000000000000000000000000000000000000000000000
  1740. 0000000000000000000000000000000000000000000000000000000000000000
  1741. 0000000000000000000000000000000000000000000000000000000000000000
  1742. cleartomark
  1743. {restore}if
  1744. %%EndFont
  1745. %%BeginFont: CMR10
  1746. %!PS-AdobeFont-1.0: CMR10 003.002
  1747. %%Title: CMR10
  1748. %Version: 003.002
  1749. %%CreationDate: Mon Jul 13 16:17:00 2009
  1750. %%Creator: David M. Jones
  1751. %Copyright: Copyright (c) 1997, 2009 American Mathematical Society
  1752. %Copyright: (<http://www.ams.org>), with Reserved Font Name CMR10.
  1753. % This Font Software is licensed under the SIL Open Font License, Version 1.1.
  1754. % This license is in the accompanying file OFL.txt, and is also
  1755. % available with a FAQ at: http://scripts.sil.org/OFL.
  1756. %%EndComments
  1757. FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup
  1758. /UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse
  1759. {save true}{false}ifelse}{false}ifelse
  1760. 11 dict begin
  1761. /FontType 1 def
  1762. /FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
  1763. /FontName /CMR10 def
  1764. /FontBBox {-40 -250 1009 750 }readonly def
  1765. /PaintType 0 def
  1766. /FontInfo 9 dict dup begin
  1767. /version (003.002) readonly def
  1768. /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMR10.) readonly def
  1769. /FullName (CMR10) readonly def
  1770. /FamilyName (Computer Modern) readonly def
  1771. /Weight (Medium) readonly def
  1772. /ItalicAngle 0 def
  1773. /isFixedPitch false def
  1774. /UnderlinePosition -100 def
  1775. /UnderlineThickness 50 def
  1776. end readonly def
  1777. /Encoding 256 array
  1778. 0 1 255 {1 index exch /.notdef put} for
  1779. dup 1 /Delta put
  1780. dup 43 /plus put
  1781. dup 61 /equal put
  1782. readonly def
  1783. currentdict end
  1784. currentfile eexec
  1785. D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA
  1786. 0E079529AF9C82DF72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA93
  1787. 51BBFB7CFC5F9152D1E5BB0AD8D016C6CFA4EB41B3C51D091C2D5440E67CFD71
  1788. 7C56816B03B901BF4A25A07175380E50A213F877C44778B3C5AADBCC86D6E551
  1789. E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078
  1790. 0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273
  1791. C01924195A181D03F5054A93B71E5065F8D92FE23794D2DB9B8591E5F01442D8
  1792. 569672CF86B91C3F79C5DDC97C190EE0082814A5B5A2A5E77C790F087E729079
  1793. 24A5AC880DDED58334DD5E8DC6A0B2BD4F04B17334A74BF8FF5D88B7B678A04A
  1794. 2255C050CB39A389106B0C672A1912AFA86A49EFD02E61E6509E50EE35E67944
  1795. 8FC63D91C3D2794B49A0C2993832BC4CDC8F7BD7575AD61BCDF42E2E421AA93E
  1796. 3FF9E4FAD980256D8B377043A07FC75D6169338028692CCA8CD1FE92FD60AD26
  1797. D57B7519B80A8F8DCE9CEE5CDF720AF268D3C14099498A843D76E3B6C0328F24
  1798. D36EFE7F5C4E5B5C612786200C8DE3A41EE5F1FFAF4097653CFCDC8F4FD32E0B
  1799. 03EDB3E413283B9EFB0AC33B055617005BC9B0057FD68C52D1B0E67F0C571685
  1800. 767F2AA85ADE4E0104A1C777733D5E318A22A9944336E5B98D965E50D31F357A
  1801. 8B6EA5A0EA98E1B027CE68C2EDB149EDDD04ED74A1B3D206D471A0C11C11449B
  1802. DE190BBFEBC08C9E1B7513B43DA3134D6B11A2516E6E86B67F68C970A320D05E
  1803. 94FEC57FB347606DF89989C33482BD09D011C55AA920319E7B26A205D3D0F004
  1804. 22466F09C0482A164CFB27EF6ED2B040ECCC3DCAF345B5A73676F193D43123B7
  1805. 72FD6CFC5E37930E61EBD5A6307E4DE70194E6384EC0D79DB6AD86D3B319A31C
  1806. 8B0589D0FE28241D8ACE280D0530EE99C80723E560BB72AE9D53F4713181F491
  1807. 344B06D3027BA4E9E94D4305BE1D817197C54C8FF56CD6964165F6448ECC8A8A
  1808. 64B48B4F0FD69299A137589E2491A283509B21A3A5772F75B7602A9F60AE559B
  1809. 07A58436D04222C73EAEA72DE9A5A441F88D27C11F4F91255EFE280E91A4ACAC
  1810. 1E98A4E5E6C57B9AE86FD218C3CD8F24A4104156A80F13821384E529783C52C8
  1811. 78B94AB3A0096090867ED32E8A30980E737922037F75F062BD83BF4F5929BC51
  1812. CC22AEE2DBBAAA001CFFBFF41D258424FAD888FFF1BEAB796A44E3126159E120
  1813. 7E4025C676CF94888A1971AEF8B6764B3AF4A92D36FAF6FC56FD049710EE3782
  1814. BC2CD84FE2473F133BE03C1346B875463F126DCAB15C7A9BCC9A727D23611462
  1815. 4E8D2BFD2466600285D79518712B8681ABCD69608E6AA9578F7BD771EC36E01A
  1816. 5A17BC17E375020ECA59B43790ABEB9DF5F4FBBEF807E5699EFEAC563E1ACC5D
  1817. EFA336E75DE6D8248E9381BB110884FDC89C2F9A41EBBC9A8A1F98E6A41F68BE
  1818. EE30E25CA148C1EFF42DFF8C214A6537AB11F260B8C329A4947B5FC8DC9C5622
  1819. 4DF7BF4FBFB00380D47BABB03BC30627AA74103E553F55278F538EDD8C1E64CE
  1820. 0F1398CA0AB5A86630139B4A7E8FC02804CAFF3830114640AE50D2FDA3B561B5
  1821. C63AD7EE3347804CBB40FB1E77A6C89735DD870351C3A1811591AB493251B904
  1822. 314F65791963C0412377C1D02362C5E9655F1C3D4803CD379A8EF24C48218C2E
  1823. DF1165840462BF37DDE1B8D5FF09FA2C3B261E2F1A65ECFBE5D4EAD43B52C029
  1824. EEB3948CB8A252CBAF545C8FA1C31E920E23A12DD7222CEF2D2A513BD758EA13
  1825. DA33BF5FBF1D734653EB83DA2D374A5B9A0CE316F24EE375D6DF6BDA49954C2E
  1826. DB25A88821193636119D469BA66E5DAA9C92520FD4F84426A4E54273FA469084
  1827. 7517817A6EE3E21176D333825E88046F50B3CF6938AF9BA79A2F51398239EB91
  1828. 1A2D07F7FCD948427FF62F40FF95E39FE1A1AA8451411563FD5388472251C155
  1829. 69BDE9283B41900B21EB1190D06E6B13B7794FED020D2C1BDD205AE77B084BCE
  1830. EF628249398B496DE85B406FC2E1939EF00DFC84C07E26CF72EC401BAAE756E5
  1831. 7F6673216E7560D1C2A723CB405EE5CA474A07F61B81F8836482F73DC9516D67
  1832. CE0CB770EAD755B6B356198B4B97EBB29C63456953270CCC8D5650C1D006E69D
  1833. 38DE2DFEAB27DAD50A817F0D645D30AF5B75A7B53CBD3D2B8D87BD0A7E525AF3
  1834. 22F7ADDFCE31716914C2318260C2E2B4664893921B68C5A93334A361D94A759C
  1835. 0D7B146D6FD94F0442D672BDA0F6432E18F3C5DFA37ADA378D95B75F413C9ED1
  1836. BB5C606A3EC7DFB3F796F59B0478C13FD1900381EFE0BB5242D5B5D34D03AF1D
  1837. 4BDC93EAF8020E26CA23C8B0E7DDEBBC6762A557067A4CE05A524188A8F02E2F
  1838. 3625DA38DFCF381727887F5646A3995A8A38A5FB1E5D5EBB395FDD0B7C8E71AD
  1839. B48EEDB62AB2CE99D121435EFBBFCEEA69AE9ED8238B60CC7288DE33C766CDFE
  1840. 15B767B4AE2E6CE0965E77272AC9F86023DA620548CFAC85BC751C44218A29C9
  1841. 849F1C2DCBDFAD895B54E51A569952ED50F82DC8A19F367E7E44643854EFD6B3
  1842. FCAEB04E55E4661C82D31E2932611748480EF61FB2FBFB0CFB940BEA81AFCD84
  1843. 4C6A6332D7A600170E38A8EAFCD4F93DC153C43175434C86BC747348FAC61B76
  1844. 1FEC9027C1A193E55C80F1F20B5317AA0A05AAA36AE235F6E49F06E570FEE798
  1845. 84857D7552EA92EF3EFAD52DE39C2F8F43C59E3A957B7B926FC95FC4B60186DF
  1846. 7F3523EE2AB74E294C8C4BCD8B4975E84849E0FBDA6C0B0F24A636DFA578B122
  1847. CF97BC5089E21E9F5298D1C9F30CB8BAFF6A3A11BB4D9A0A5CF2B18D055C44CA
  1848. 4FD4D8FE1AF3630907DE7E585AA811F9CD11FB2C8FC791851D651009FA5DF20B
  1849. 3C33FD2FF848A9E3F5652BD294965A332DD3F246C91B0ADA34017FF2451D1394
  1850. F9C3C95AAC6EC8062BE98E8914D51DA6A164AD13938693D446044859D03A949D
  1851. F9AC5DF4A000CDA98BB516D762CB9F6D44B5268FD0C26E88BC4A760C0F75A140
  1852. DEBDECA4F511128B7D2805872160C55236F0A0FA7637FF0D4E94AC079CD3C8A7
  1853. D03A5A56F26B0438B577C46011A10532FEBCAD14FBD6032E224F45691A726886
  1854. 56F305231EB2FCDF59C8BBFCB5DBD2D093A0E84D62AC93A2312CA69295E937C4
  1855. 8DBA1802B85F54B5E7E6D6216A918F911FF705D3B5CF055F1D873B96283A0B53
  1856. 59344D910CD396D883F6F7836BA65FAB4393A773A8F6BC298069E5BA38210EED
  1857. 49C9D920F718E3FCE692527DC7CCE6963BF744F2C91BC5952564196D60574E86
  1858. 87A0FAB21F2DB2BD5A51D7FBD8FC19946D24E5A228462C4772F978E650ADCE3B
  1859. 8D66B9C21279C531CA1C3A8ECE3420BB65837287A7222CC3673A2A5F8BBFDB60
  1860. C719CD073EF9A23675198462C7C87B24CC92D6AEE5C25AC63855CC3281494342
  1861. D28F3D2FDE0C183486769A4FD5B0143193D31FCB2C2A14E487BBD96D0BADBB64
  1862. D1B56021C363A795BF10E2DB448261C363A54A4AC1182B470C457AA82DF3F5D1
  1863. F4B329806141EBD53CAE309319B94133D7EBDC2D0453A905ADD207364371E178
  1864. 0A95C2686E3B34C4A978BFC0EE968C39ABA00889BC5149162C2B54483D44FD3B
  1865. 5CFF41F611C7E03B94945F414560E874D7CF27FFD0630890D7D7EA66CBD15448
  1866. 229059E1C436BB33D69552B5367AB5D53591C4678D0C704DD3EA23F5D9E8A7AC
  1867. 17D003C19E333E726FFFA2961F33C70F429085F7BFE3E2510F59B78F58B19CB4
  1868. 01B48E184BAD9020FECCE3AF52048A056981DAEA02AE78197E65855DDB170616
  1869. F54278395D9EA50DC83761AE759F9CDEF9E1948E7002414FC05286ED793E6662
  1870. 3347F2A9AF8917493D7305B92CF93E8E9185F70015F5594084298A6C2F9FD3C0
  1871. 689F262AC9FEDC9B89577ECDE92F08D3142209FBCE7B5C0A840CC767BCA56C20
  1872. 4E4E545E2BE4D21C53855CEE4CD0AB35D1A604C0FFFF77DBAE4289752276559F
  1873. A05FEE65F45ECAF44E95E23FAB6052195C7948AF0B1126482D4E02D72BF8AB03
  1874. DE0F1A632F7672AD9DDE70EDC82AA993678A82BEAD0BC2649C4707FD8509810D
  1875. 364B5C6FE0E10772E95288C622C2F06C634F4DF8C7FD1432BC9310D5F24FEE3F
  1876. 7AB324863D6DABAA1576E70643CA79EF4D7DF4105093D66CEE0F3B87D2164A7F
  1877. 26EA05F5C4645B22D3E1BFD2219657712C168FD90DE801FB0F32759E80DEC1E1
  1878. 43CEEB19FED12D757205043FC98FEC62D6A8D8B97BC083B4A0E985AF7850D6FD
  1879. 8716B9957C1C35A0675BC53DF672C425C79F43FDABAEE7D63F092CF271C9A9D7
  1880. C41F40C4189510987887942E60A412B3EEC84C9A6E1AC7D54D528F5604B72C08
  1881. 94B7882621A5BF1F325B92FF96B80878CC550D1AE4D8196E41CB1251856609A5
  1882. C4D3BD05A922D0D45E039D9450DEF8490A3E924E41434194910BF60BA1B08BE1
  1883. B41824345627745541A4F1703E956328F6227D11C74946B38CFB096139979E56
  1884. 4E723B889B44C6D78673868C89912F8B4F0B4B485F1587A637B630F92E6072D5
  1885. 7F3B44EA6FD96BBD4FC28A6C1D90805E3BE3E42A7BC9C880762966C55BC04E01
  1886. 204D083AE976FAE6F37C94F27E68F8C0F28D52B17F6C0FD7C9150701FD78F8CE
  1887. B8E8DC9260E3974005EB5CA728171F482D765016C94D4ADFE4A42EF42212BC56
  1888. 7E4EEEE8B0D2A7856CD4E44F55C0BAB762F92CB8D64C17022D4BF3A47C12F5E6
  1889. 279FC23101FEE93753653CE8CEDC3B75C9CCB29BF1D4554C6120DE8EE750FCBB
  1890. E38B5D915206974962E320362E59B3F21B3AB1875703191043D03284D4467346
  1891. CFF2F98CEB4845B73ED8E003E0DC94251B73E13A9B51A3F1430BCF6A21EB9B7A
  1892. 65E17FA411F53BE6432F1506232B8159E008FA257F884A4A01AC53BE91754D78
  1893. BF14A5B0FBFB9C31BF4908355F8A762052968DF526D118708CCB0B7CB5BEE285
  1894. 6DAB6CD2E3934178E60BECB11AAB5478623CF6C50C92F8BB5D1A583609028FA7
  1895. B8A53B791BDC9EF76A124F3F7641857E4BEA0837CB36176EC9A522EA7F41B8D3
  1896. 63C37D1145367BD300F17B54522A834BBB74DE12BF9EB26ACE6F24A046D58F89
  1897. 4D4B7DF74875F1A0C1C9D97BE0849593D7B398EB4B00BEBC8C8D1497B6EF831A
  1898. A35380FFB7F1AFA4D888AA52C9482E8B1755CC209905F98F40D95B44D4DCBCB6
  1899. 67423D1BC2F3560FF0A8B4F0CAC352A4EE2C1D946E45AAEC8A6AD40303F3382C
  1900. DF0756BFA3B1ED64C169E56ED1C760F2FF0E24DC5C9F41306EF8D2628153D30A
  1901. 5DCB0791126BEFD4947D7EF08301FE015F2B0008DFFCBF9F2D4D859FD43EC7D9
  1902. C5BE237E9BF6665B7B1BEBB362F0C0C3A8D86010B9C97FA741C97C2E0513386C
  1903. 9C26C235B14DD2A58BFDAC7B5F63DB4DA6D5D37D0098175A9071590E1DF66A3D
  1904. B8173A047C29D7D35557F06132CC920B5460B8AFC11D23D09A4E45D089F5EB51
  1905. 963FA1A6256E359D485107FD143B2BF21FDE9DA5744BC2615E86C31C89470CF0
  1906. D06C6397D9FCCB316EA9989430240759D2C4945D941F159FC02327F34B042BAB
  1907. B5C3A47C78E8C1A6FBCD396B1A51CC4B020B8AD401841EDABACECDB482D6EC5B
  1908. 72D2BFEB4556720FADD49D07307C8B22ACB7E310CA4151A85C71EEF70E8D15DE
  1909. B3B00F26E0E166C14647A65ADA228A3D1C89025BE059306565DB1B1EFC37D358
  1910. 8C1EB024254AFD049BA977BD4C2C605050E17940A89D0D4C5D963E792320F5DB
  1911. 3706682E03D25D9E02487247819551465092CC22B6B56E93F3AB528038FEC3F0
  1912. 668F866707A19B0463BE706EC729D2EE1653AAC7E29BD25BFB3241D4792F5152
  1913. ED415B4E7FA92C2EE5A22E27E8B75542C492E56D811C192E95542A6FE0BFE5A5
  1914. 69273C2ABED4300D491B92D2AECDD278404CB84B1BB1BD7AFEC858215837D118
  1915. C0E928BE7E07CFEEB51A6D21375B772B8248C994564014015232A0DA4BEA1754
  1916. 3274F407FED0837A236371F1A32056240F2015B1E7F4B2CA72C6B58610A66F13
  1917. 407CFFBA5E0A2893C1F572D50F51286E9133B5A84239C9493B0574E77D281D01
  1918. 11D00683354A000C9700EAFBC1FD104EA19DFCB87470190E7E2CE26E3A6FD0FF
  1919. 2620B87B82AC8686B6206B530F17E9348BC7D04B948348802CE53A312443DB87
  1920. 4DBBA5313A6A2A8DAB8A1CC9A594FF8C299281C0A261C8CB2226B732FBEEDE40
  1921. 2C6ACC74A1A61379E2E1CD5548CD908268A32FA83D8504C442EA0E183ADBF7FF
  1922. 9FD09C037AB03516ECCA93FF048235BD11A25DB07F164512A079C5392AC7F889
  1923. CE96AE5C8D9580BCAFCC087C35E76EED1A671E87C12E3045E15A687134736DF8
  1924. DA984772AFD189D68571A2ED7256F1E204230E41D3D9DD876F938951714A3973
  1925. 0CA9310489F8E807C1C7A4E51AEA5BC030610A5D7263FF7E0F9FDE3E5E37A362
  1926. 5B919000BD94D978583B942EB79CF2BEAC33FEBC9A67272EB10865BA8FB75FD7
  1927. 9D280AB59F91B96C16C982DE848D76D8FA8620DFD7C80B7DEAE7264350D6FB3A
  1928. EF04794DA3305844A7CF718F6D1A4A3AFF6826173A076A1372ABFC54ED3AC6C2
  1929. 09C9287FC830556CA694E21CA5342ECA7B10C90AFC4783D841D7B1E34FA3DB7A
  1930. 2B706F3E21B0FBAB23E7257962FC3BC309CEA2C7239A9D6B44CC96825115ABD2
  1931. AF9A2566D2F3382C01569FBDB94C8D664A5DA0F7DC3DD140CA77C743D7BC1420
  1932. 324ECF9E4780280EB119885E96A6C619CE3C0C8E1E264E2DEB137E5DC8149786
  1933. 486D65667ECF47B1A1E20E9E6E4FC8323E0BC8E61BDD3BCDFC6575C69C03E31A
  1934. EFFC290472CBBD049DE3F840AEE37A2486034240F80E75D8A79E0762377DF660
  1935. 52B12EAA16D678990B11A9BFBC03C1D4FCDA9FD4FFBB3E88352438102F10B7C5
  1936. 9F04C013B6575B5E948FAB58EA691984A0E54E6B9F3F505FFFEF74D06FA1CDF3
  1937. 4B8A95904C8A2763AA8AF5B71D00F5DE09DC1CDF87A08B6D181453063E14C12D
  1938. B7BB3775A6E2A901636273D9EEB833EA8CF20FD83AE899E28DADE10EEEC20BD7
  1939. BD93085A4B1AC80AC1AE8280C14767F1A487BD066007A0D050317BD081131A14
  1940. 6EA0898ED59E46DA7B6254BDCCBC660686E2EDA0E77A705A653733BB5C5497D0
  1941. B130359F866CF293FB6EF0C2AC5BAA2DB0DED045E2DED3A2612D078333260359
  1942. 16CF0CCB272D34767EA069E0F0B0D42327A18529D72E890EDA6195C2688438ED
  1943. E9ACDBEED41E81CA8EB5E43C2B09CE266EFCA03F2D7FF57F12B06F9E54FCC6A6
  1944. 546676F6FFC5B8B7D3F0982B6FF0D21D949309F0C0B175CC1D0976F8C55C6AED
  1945. 6E821C39041E22D91AB30922F2B2EC2746BC7DAB484991542FBC82D87B487507
  1946. 559AB466F73EE23C2D3194DC5CE4C9AE66D3164613AC5CBB3DB501B64DA7C91B
  1947. C7ED2EE9027FC0906820B35D4F2CF66C4F9CE4A884B7C07155BCA884ECA5EB3A
  1948. ABB83F84DB1F5639599DC7D3F51241AB5D95C3BCB7AB1EC90B4BC989F74FB354
  1949. 04B2D7366A34D335A47B8C00C05CB423482BF6C7970A95545424A08AFF9A035B
  1950. 7F83F52B65A9799CE76E303B85664B624C65E9CA58184C7BE2BB9D9C86A4DE5A
  1951. 8165EE3DA2E652B5022EE7893896BABD88931DE1D538F615787645DF5ACBBA0B
  1952. A8E5B899A37321AA7D4B283AC9234978C2DD81813A1EE5DB6EC170DAC1B6EF02
  1953. 94892635B498765C07A38D2E9DB0B7581B11056C28278F89B0E60998379C07EB
  1954. C0EAEDC32AA69B8B836F92A61AFD35688315B2C3F860632FC13E4BDFB63214BC
  1955. 41CC6859EAB3AC3034449213CAB99FA1D216563419CD6D6CE4E1B56F33E6C654
  1956. 7AA9DCB5B05FC068DF02AC32408C8010AD004F6CCA9887830927F8CBCD49CDB5
  1957. 18CAC1EAFF815FF2F6F527F936948201565003022C6C7390B4E3C2B219FB4F76
  1958. 9F12BD25CA7B3B61D1A2F8DFEE795D04D5428B42FB66E0C254AF7B7A10CEF7FD
  1959. E0B5622DF6FC4BF52147208D9A91EB49B03BB40DE7F8FBFB566F251942C8FFB1
  1960. 1DFA50465919400C21CE4724D12E4EB47AA5F392BA927329DBCA28A78FC1DF2E
  1961. 6FF27F4E4E3F8971D7BCB5F3FBF8F30C214A26E5E32E0E8CBC71BF20AE573BBB
  1962. 163DD66E89F2C4E2B1A1532AE81C060146F755A1ABA3F1365FEA30B403DE7B22
  1963. 76F43EDB1A2230934225C290D98237E3E19012E75EB1297250A477781904F794
  1964. 39BEC3C61A62874766DC1356C9D659D498EA3DF55CC7F54C4962A697CA30668A
  1965. A94027D0B8EBBFDCF529C1627E12881EC48992F59AE9BE899E0B6EA87DEA3ABC
  1966. 016587F24EF9A5740A91FF6D2700B09BD13D0968D366B30CB4FF2BF06FDE1F5E
  1967. B5C5652E6148A64331B03FA6288A12BAC04DFA3F0241AAE667682465F356ABD5
  1968. D2C8BA51EC4CE912963118A25C50C70C56B6CBB9AD7829AC9C7B77E74980A504
  1969. 7619A41F16ADC7532A1CA8F6A6CA10F217965867981A9DD526DB6D6341E9200B
  1970. 94F00C83DB74EBF830C1D5C1851380B6886B6887E8487284F94CDD35E730F9B6
  1971. 7110EFDA91B8739F3A2698E3E7E08AA5E529FF79C55E43EB37ED42C8D302F638
  1972. 8B8A7198C98D8292D8C7B84A06A82DF38B2CEE2A1751CC4713EDEB502D2F755A
  1973. C2E9DF0E01466670AFA2C67B1235A1D1F8E54DAAF6525531EA528D77AA1249DC
  1974. 67FFC32ADFEB57DECFCC221C70996382B662D354EEEAB0D79C87242739FAB394
  1975. 73F9A0B813C57FE6AB3D18522CEF385B973FE9C257DAC12715A1D43B88DAB684
  1976. E95B566E35CB88674F0EF0A3EA1823B84207717ACFF53DDF5574
  1977. 0000000000000000000000000000000000000000000000000000000000000000
  1978. 0000000000000000000000000000000000000000000000000000000000000000
  1979. 0000000000000000000000000000000000000000000000000000000000000000
  1980. 0000000000000000000000000000000000000000000000000000000000000000
  1981. 0000000000000000000000000000000000000000000000000000000000000000
  1982. 0000000000000000000000000000000000000000000000000000000000000000
  1983. 0000000000000000000000000000000000000000000000000000000000000000
  1984. 0000000000000000000000000000000000000000000000000000000000000000
  1985. cleartomark
  1986. {restore}if
  1987. %%EndFont
  1988. TeXDict begin 40258437 52099154 1000 600 600 (gmt_eq.dvi)
  1989. @start /Fa 205[33 50[{}1 58.1154 /CMR7 rf /Fb 134[41
  1990. 47 92[47 27[{}3 83.022 /CMMI10 rf /Fc 194[65 17[65 41[69
  1991. 1[{}3 83.022 /CMR10 rf end
  1992. %%EndProlog
  1993. %%BeginSetup
  1994. %%Feature: *Resolution 600dpi
  1995. TeXDict begin
  1996. end
  1997. %%EndSetup
  1998. TeXDict begin 1 0 bop 639 523 a Fc(\001)p Fb(\033)27
  1999. b Fc(=)c Fb(x)917 493 y Fa(2)973 523 y Fc(+)18 b Fb(y)1100
  2000. 493 y Fa(2)p eop end
  2001. %%Trailer
  2002. userdict /end-hook known{end-hook}if
  2003. %%EOF
  2004. %%EndDocument
  2005. PSL_eps_end
  2006. U
  2007. PSL_cliprestore
  2008. 23 W
  2009. 0 A
  2010. /PSL_slant_y 0 def /PSL_slant_x 0 def
  2011. 2 setlinecap
  2012. N 0 3780 M 0 -3780 D S
  2013. /PSL_A0_y 61 def
  2014. /PSL_A1_y 0 def
  2015. 8 W
  2016. N 0 0 M -61 0 D S
  2017. N 0 945 M -61 0 D S
  2018. N 0 1890 M -61 0 D S
  2019. N 0 2835 M -61 0 D S
  2020. N 0 3780 M -61 0 D S
  2021. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2022. /MM {neg exch M} def
  2023. /PSL_AH0 0
  2024. 153 F0
  2025. (0) sw mx
  2026. (2) sw mx
  2027. (4) sw mx
  2028. (6) sw mx
  2029. (8) sw mx
  2030. def
  2031. /PSL_A0_y PSL_A0_y 46 add def
  2032. 0 PSL_A0_y MM
  2033. (0) mr Z
  2034. 945 PSL_A0_y MM
  2035. (2) mr Z
  2036. 1890 PSL_A0_y MM
  2037. (4) mr Z
  2038. 2835 PSL_A0_y MM
  2039. (6) mr Z
  2040. 3780 PSL_A0_y MM
  2041. (8) mr Z
  2042. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2043. N 0 472 M -31 0 D S
  2044. N 0 1417 M -31 0 D S
  2045. N 0 2362 M -31 0 D S
  2046. N 0 3307 M -31 0 D S
  2047. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2048. 7559 0 T
  2049. 23 W
  2050. N 0 3780 M 0 -3780 D S
  2051. -7559 0 T
  2052. N 0 0 M 7559 0 D S
  2053. /PSL_A0_y 61 def
  2054. /PSL_A1_y 0 def
  2055. 8 W
  2056. N 0 0 M 0 -61 D S
  2057. N 945 0 M 0 -61 D S
  2058. N 1890 0 M 0 -61 D S
  2059. N 2835 0 M 0 -61 D S
  2060. N 3780 0 M 0 -61 D S
  2061. N 4724 0 M 0 -61 D S
  2062. N 5669 0 M 0 -61 D S
  2063. N 6614 0 M 0 -61 D S
  2064. N 7559 0 M 0 -61 D S
  2065. /MM {neg M} def
  2066. /PSL_AH0 0
  2067. (0) sh mx
  2068. (2) sh mx
  2069. (4) sh mx
  2070. (6) sh mx
  2071. (8) sh mx
  2072. (10) sh mx
  2073. (12) sh mx
  2074. (14) sh mx
  2075. (16) sh mx
  2076. def
  2077. /PSL_A0_y PSL_A0_y 46 add PSL_AH0 add def
  2078. 0 PSL_A0_y MM
  2079. (0) bc Z
  2080. 945 PSL_A0_y MM
  2081. (2) bc Z
  2082. 1890 PSL_A0_y MM
  2083. (4) bc Z
  2084. 2835 PSL_A0_y MM
  2085. (6) bc Z
  2086. 3780 PSL_A0_y MM
  2087. (8) bc Z
  2088. 4724 PSL_A0_y MM
  2089. (10) bc Z
  2090. 5669 PSL_A0_y MM
  2091. (12) bc Z
  2092. 6614 PSL_A0_y MM
  2093. (14) bc Z
  2094. 7559 PSL_A0_y MM
  2095. (16) bc Z
  2096. N 472 0 M 0 -31 D S
  2097. N 1417 0 M 0 -31 D S
  2098. N 2362 0 M 0 -31 D S
  2099. N 3307 0 M 0 -31 D S
  2100. N 4252 0 M 0 -31 D S
  2101. N 5197 0 M 0 -31 D S
  2102. N 6142 0 M 0 -31 D S
  2103. N 7087 0 M 0 -31 D S
  2104. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2105. 0 3780 T
  2106. 23 W
  2107. N 0 0 M 7559 0 D S
  2108. 0 -3780 T
  2109. 0 setlinecap
  2110. %%EndObject
  2111. grestore
  2112. PSL_movie_label_completion /PSL_movie_label_completion {} def
  2113. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  2114. %PSL_Begin_Trailer
  2115. %%PageTrailer
  2116. U
  2117. showpage
  2118. %%Trailer
  2119. end
  2120. %%EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...