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

cyltest.ps 50 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
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_1ded948 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Dec 6 10:52:12 2018
  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. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /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
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { /psl_fnt PSL_fnt k get def
  339. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  340. psl_fnt cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. /psl_fnt PSL_label_font psl_k get def
  597. psl_fnt cvx exec
  598. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  599. /PSL_height PSL_heights psl_k get def
  600. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  601. /PSL_just PSL_label_justify psl_k get def
  602. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  603. /PSL_justy PSL_just 4 idiv 2 div neg def
  604. /psl_SW psl_label stringwidth pop def
  605. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  606. /psl_x0 psl_SW PSL_justx mul def
  607. /psl_y0 PSL_justy PSL_height mul def
  608. /psl_angle PSL_label_angle psl_k get def
  609. } def
  610. /PSL_ST_textbox_rect
  611. {
  612. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  613. PSL_gap_x neg PSL_gap_y neg M
  614. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  615. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  616. } def
  617. /PSL_ST_textbox_round
  618. {
  619. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  620. /psl_xd PSL_gap_x psl_BoxR sub def
  621. /psl_yd PSL_gap_y psl_BoxR sub def
  622. /psl_xL PSL_gap_x neg def
  623. /psl_yB PSL_gap_y neg def
  624. /psl_yT psl_boxH psl_yB add def
  625. /psl_H2 PSL_height psl_yd 2 mul add def
  626. /psl_W2 psl_SW psl_xd 2 mul add def
  627. /psl_xR psl_xL psl_boxW add def
  628. /psl_x0 psl_SW PSL_justx mul def
  629. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  630. psl_xL psl_yd M
  631. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  632. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  633. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  634. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  635. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  636. } def
  637. /PSL_ST_place_label
  638. {
  639. V psl_xp psl_yp T psl_angle R
  640. psl_SW PSL_justx mul psl_y0 M
  641. psl_label dup sd neg 0 exch G
  642. PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
  643. U
  644. } def
  645. /PSL_nclip 0 def
  646. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  647. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  648. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  649. %%EndProlog
  650. %%BeginSetup
  651. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  652. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  653. %%EndSetup
  654. %%Page: 1 1
  655. %%BeginPageSetup
  656. V 0.06 0.06 scale
  657. %%EndPageSetup
  658. /PSL_page_xsize 10200 def
  659. /PSL_page_ysize 13200 def
  660. /PSL_completion {} def
  661. /PSL_movie_completion {} def
  662. %PSL_End_Header
  663. gsave
  664. 0 A
  665. FQ
  666. O0
  667. -3600 PSL_xorig sub PSL_page_xsize 2 div add 4800 TM
  668. % PostScript produced by:
  669. %@GMT: gmt psxy -R-100/100/-100/250 -JX6i/6i -P -Glightgray tmp -i1,0 -K -Xc -Y4i
  670. %@PROJ: xy -100.00000000 100.00000000 -100.00000000 250.00000000 -100.000 100.000 -100.000 250.000 +xy
  671. %GMTBoundingBox: -216 288 432 432
  672. %%BeginObject PSL_Layer_1
  673. 0 setlinecap
  674. 0 setlinejoin
  675. 3.32551 setmiterlimit
  676. 4 W
  677. {0.827 A} FS
  678. /FO {P}!
  679. 0 -7200 1800 0 0 7200 3 2700 0 SP
  680. /FO {fs os}!
  681. FO
  682. %%EndObject
  683. 0 A
  684. FQ
  685. O0
  686. 0 0 TM
  687. % PostScript produced by:
  688. %@GMT: gmt psxy -R-100000/100000/-100/250 -JX6i/6i -Wfaint,blue -O -K
  689. %@PROJ: xy -100000.00000000 100000.00000000 -100.00000000 250.00000000 -100000.000 100000.000 -100.000 250.000 +xy
  690. %%BeginObject PSL_Layer_2
  691. 0 setlinecap
  692. 0 setlinejoin
  693. 3.32551 setmiterlimit
  694. 0 W
  695. 0 0 1 C
  696. 0 2039 M
  697. 324 -6 D
  698. 306 -9 D
  699. 252 -11 D
  700. 198 -12 D
  701. 180 -16 D
  702. 144 -17 D
  703. 126 -20 D
  704. 126 -27 D
  705. 54 -14 D
  706. 90 -29 D
  707. 72 -29 D
  708. 54 -26 D
  709. 54 -31 D
  710. 18 -11 D
  711. 54 -40 D
  712. 18 -14 D
  713. 36 -33 D
  714. 54 -57 D
  715. 36 -46 D
  716. 36 -53 D
  717. 36 -62 D
  718. 36 -72 D
  719. 36 -85 D
  720. 36 -101 D
  721. 36 -119 D
  722. 36 -140 D
  723. 36 -164 D
  724. 72 -372 D
  725. 18 -82 D
  726. 18 -57 D
  727. 18 -9 D
  728. 18 78 D
  729. 18 233 D
  730. 18 489 D
  731. 18 860 D
  732. 36 2425 D
  733. 18 894 D
  734. 18 522 D
  735. 18 254 D
  736. 18 89 D
  737. 18 -7 D
  738. 18 -62 D
  739. 18 -92 D
  740. 90 -543 D
  741. 36 -190 D
  742. 36 -167 D
  743. 36 -144 D
  744. 36 -124 D
  745. 36 -106 D
  746. 36 -92 D
  747. 36 -79 D
  748. 36 -69 D
  749. 36 -58 D
  750. 36 -50 D
  751. 36 -43 D
  752. 36 -35 D
  753. 18 -16 D
  754. 36 -27 D
  755. 36 -21 D
  756. 18 -9 D
  757. 36 -14 D
  758. 36 -9 D
  759. 18 -3 D
  760. 36 -2 D
  761. 36 2 D
  762. 36 7 D
  763. 18 5 D
  764. 36 14 D
  765. 36 19 D
  766. 18 11 D
  767. 36 27 D
  768. 36 33 D
  769. 18 18 D
  770. 36 43 D
  771. 36 50 D
  772. 36 58 D
  773. 36 69 D
  774. 36 79 D
  775. 36 92 D
  776. 36 106 D
  777. 36 124 D
  778. 36 144 D
  779. 36 167 D
  780. 36 190 D
  781. 90 543 D
  782. 18 92 D
  783. 18 62 D
  784. 18 7 D
  785. 18 -89 D
  786. 18 -254 D
  787. 18 -522 D
  788. 18 -894 D
  789. 36 -2425 D
  790. 18 -860 D
  791. 18 -489 D
  792. 18 -233 D
  793. 18 -78 D
  794. 18 9 D
  795. 18 57 D
  796. 18 82 D
  797. 72 372 D
  798. 36 164 D
  799. 36 140 D
  800. 36 119 D
  801. 36 101 D
  802. 36 85 D
  803. 36 72 D
  804. 36 62 D
  805. 36 53 D
  806. 36 46 D
  807. 54 57 D
  808. 36 33 D
  809. 54 41 D
  810. 18 13 D
  811. 54 32 D
  812. 54 28 D
  813. 54 23 D
  814. 54 20 D
  815. 90 28 D
  816. 126 29 D
  817. 126 22 D
  818. 162 20 D
  819. 90 9 D
  820. 144 11 D
  821. 234 14 D
  822. 324 12 D
  823. 360 8 D
  824. 126 2 D
  825. S
  826. %%EndObject
  827. 0 A
  828. FQ
  829. O0
  830. 0 0 TM
  831. % PostScript produced by:
  832. %@GMT: gmt psxy -R-100000/100000/-100/250 -JX6i/6i -Sc0.1c -Gblue -O -K
  833. %@PROJ: xy -100000.00000000 100000.00000000 -100.00000000 250.00000000 -100000.000 100000.000 -100.000 250.000 +xy
  834. %%BeginObject PSL_Layer_3
  835. 0 setlinecap
  836. 0 setlinejoin
  837. 3.32551 setmiterlimit
  838. clipsave
  839. 0 0 M
  840. 7200 0 D
  841. 0 7200 D
  842. -7200 0 D
  843. P
  844. PSL_clip N
  845. 4 W
  846. V
  847. {0 0 1 C} FS
  848. 24 0 2039 Sc
  849. 24 18 2039 Sc
  850. 24 36 2039 Sc
  851. 24 54 2038 Sc
  852. 24 72 2038 Sc
  853. 24 90 2038 Sc
  854. 24 108 2037 Sc
  855. 24 126 2037 Sc
  856. 24 144 2037 Sc
  857. 24 162 2036 Sc
  858. 24 180 2036 Sc
  859. 24 198 2036 Sc
  860. 24 216 2035 Sc
  861. 24 234 2035 Sc
  862. 24 252 2035 Sc
  863. 24 270 2034 Sc
  864. 24 288 2034 Sc
  865. 24 306 2033 Sc
  866. 24 324 2033 Sc
  867. 24 342 2032 Sc
  868. 24 360 2032 Sc
  869. 24 378 2032 Sc
  870. 24 396 2031 Sc
  871. 24 414 2031 Sc
  872. 24 432 2030 Sc
  873. 24 450 2030 Sc
  874. 24 468 2029 Sc
  875. 24 486 2029 Sc
  876. 24 504 2028 Sc
  877. 24 522 2028 Sc
  878. 24 540 2027 Sc
  879. 24 558 2026 Sc
  880. 24 576 2026 Sc
  881. 24 594 2025 Sc
  882. 24 612 2025 Sc
  883. 24 630 2024 Sc
  884. 24 648 2023 Sc
  885. 24 666 2023 Sc
  886. 24 684 2022 Sc
  887. 24 702 2021 Sc
  888. 24 720 2021 Sc
  889. 24 738 2020 Sc
  890. 24 756 2019 Sc
  891. 24 774 2018 Sc
  892. 24 792 2017 Sc
  893. 24 810 2017 Sc
  894. 24 828 2016 Sc
  895. 24 846 2015 Sc
  896. 24 864 2014 Sc
  897. 24 882 2013 Sc
  898. 24 900 2012 Sc
  899. 24 918 2011 Sc
  900. 24 936 2010 Sc
  901. 24 954 2009 Sc
  902. 24 972 2008 Sc
  903. 24 990 2007 Sc
  904. 24 1008 2006 Sc
  905. 24 1026 2004 Sc
  906. 24 1044 2003 Sc
  907. 24 1062 2002 Sc
  908. 24 1080 2001 Sc
  909. 24 1098 1999 Sc
  910. 24 1116 1998 Sc
  911. 24 1134 1996 Sc
  912. 24 1152 1995 Sc
  913. 24 1170 1993 Sc
  914. 24 1188 1992 Sc
  915. 24 1206 1990 Sc
  916. 24 1224 1989 Sc
  917. 24 1242 1987 Sc
  918. 24 1260 1985 Sc
  919. 24 1278 1983 Sc
  920. 24 1296 1981 Sc
  921. 24 1314 1979 Sc
  922. 24 1332 1977 Sc
  923. 24 1350 1975 Sc
  924. 24 1368 1972 Sc
  925. 24 1386 1970 Sc
  926. 24 1404 1968 Sc
  927. 24 1422 1965 Sc
  928. 24 1440 1963 Sc
  929. 24 1458 1960 Sc
  930. 24 1476 1957 Sc
  931. 24 1494 1954 Sc
  932. 24 1512 1951 Sc
  933. 24 1530 1948 Sc
  934. 24 1548 1944 Sc
  935. 24 1566 1941 Sc
  936. 24 1584 1937 Sc
  937. 24 1602 1933 Sc
  938. 24 1620 1929 Sc
  939. 24 1638 1925 Sc
  940. 24 1656 1921 Sc
  941. 24 1674 1916 Sc
  942. 24 1692 1912 Sc
  943. 24 1710 1907 Sc
  944. 24 1728 1901 Sc
  945. 24 1746 1896 Sc
  946. 24 1764 1890 Sc
  947. 24 1782 1884 Sc
  948. 24 1800 1878 Sc
  949. 24 1818 1871 Sc
  950. 24 1836 1864 Sc
  951. 24 1854 1857 Sc
  952. 24 1872 1849 Sc
  953. 24 1890 1841 Sc
  954. 24 1908 1832 Sc
  955. 24 1926 1823 Sc
  956. 24 1944 1813 Sc
  957. 24 1962 1803 Sc
  958. 24 1980 1792 Sc
  959. 24 1998 1781 Sc
  960. 24 2016 1768 Sc
  961. 24 2034 1755 Sc
  962. 24 2052 1741 Sc
  963. 24 2070 1727 Sc
  964. 24 2088 1711 Sc
  965. 24 2106 1694 Sc
  966. 24 2124 1676 Sc
  967. 24 2142 1657 Sc
  968. 24 2160 1637 Sc
  969. 24 2178 1615 Sc
  970. 24 2196 1591 Sc
  971. 24 2214 1565 Sc
  972. 24 2232 1538 Sc
  973. 24 2250 1508 Sc
  974. 24 2268 1476 Sc
  975. 24 2286 1441 Sc
  976. 24 2304 1404 Sc
  977. 24 2322 1363 Sc
  978. 24 2340 1319 Sc
  979. 24 2358 1271 Sc
  980. 24 2376 1218 Sc
  981. 24 2394 1161 Sc
  982. 24 2412 1099 Sc
  983. 24 2430 1032 Sc
  984. 24 2448 959 Sc
  985. 24 2466 880 Sc
  986. 24 2484 795 Sc
  987. 24 2502 705 Sc
  988. 24 2520 611 Sc
  989. 24 2538 516 Sc
  990. 24 2556 423 Sc
  991. 24 2574 341 Sc
  992. 24 2592 284 Sc
  993. 24 2610 275 Sc
  994. 24 2628 353 Sc
  995. 24 2646 586 Sc
  996. 24 2664 1075 Sc
  997. 24 2682 1935 Sc
  998. 24 2700 3139 Sc
  999. 24 2718 4360 Sc
  1000. 24 2736 5254 Sc
  1001. 24 2754 5776 Sc
  1002. 24 2772 6030 Sc
  1003. 24 2790 6119 Sc
  1004. 24 2808 6112 Sc
  1005. 24 2826 6050 Sc
  1006. 24 2844 5958 Sc
  1007. 24 2862 5852 Sc
  1008. 24 2880 5740 Sc
  1009. 24 2898 5628 Sc
  1010. 24 2916 5519 Sc
  1011. 24 2934 5415 Sc
  1012. 24 2952 5317 Sc
  1013. 24 2970 5225 Sc
  1014. 24 2988 5139 Sc
  1015. 24 3006 5058 Sc
  1016. 24 3024 4984 Sc
  1017. 24 3042 4914 Sc
  1018. 24 3060 4850 Sc
  1019. 24 3078 4790 Sc
  1020. 24 3096 4735 Sc
  1021. 24 3114 4684 Sc
  1022. 24 3132 4636 Sc
  1023. 24 3150 4592 Sc
  1024. 24 3168 4551 Sc
  1025. 24 3186 4513 Sc
  1026. 24 3204 4477 Sc
  1027. 24 3222 4444 Sc
  1028. 24 3240 4414 Sc
  1029. 24 3258 4386 Sc
  1030. 24 3276 4360 Sc
  1031. 24 3294 4336 Sc
  1032. 24 3312 4314 Sc
  1033. 24 3330 4293 Sc
  1034. 24 3348 4275 Sc
  1035. 24 3366 4258 Sc
  1036. 24 3384 4242 Sc
  1037. 24 3402 4228 Sc
  1038. 24 3420 4215 Sc
  1039. 24 3438 4204 Sc
  1040. 24 3456 4194 Sc
  1041. 24 3474 4185 Sc
  1042. 24 3492 4178 Sc
  1043. 24 3510 4171 Sc
  1044. 24 3528 4166 Sc
  1045. 24 3546 4162 Sc
  1046. 24 3564 4159 Sc
  1047. 24 3582 4158 Sc
  1048. 24 3600 4157 Sc
  1049. 24 3618 4158 Sc
  1050. 24 3636 4159 Sc
  1051. 24 3654 4162 Sc
  1052. 24 3672 4166 Sc
  1053. 24 3690 4171 Sc
  1054. 24 3708 4178 Sc
  1055. 24 3726 4185 Sc
  1056. 24 3744 4194 Sc
  1057. 24 3762 4204 Sc
  1058. 24 3780 4215 Sc
  1059. 24 3798 4228 Sc
  1060. 24 3816 4242 Sc
  1061. 24 3834 4258 Sc
  1062. 24 3852 4275 Sc
  1063. 24 3870 4293 Sc
  1064. 24 3888 4314 Sc
  1065. 24 3906 4336 Sc
  1066. 24 3924 4360 Sc
  1067. 24 3942 4386 Sc
  1068. 24 3960 4414 Sc
  1069. 24 3978 4444 Sc
  1070. 24 3996 4477 Sc
  1071. 24 4014 4513 Sc
  1072. 24 4032 4551 Sc
  1073. 24 4050 4592 Sc
  1074. 24 4068 4636 Sc
  1075. 24 4086 4684 Sc
  1076. 24 4104 4735 Sc
  1077. 24 4122 4790 Sc
  1078. 24 4140 4850 Sc
  1079. 24 4158 4914 Sc
  1080. 24 4176 4984 Sc
  1081. 24 4194 5058 Sc
  1082. 24 4212 5139 Sc
  1083. 24 4230 5225 Sc
  1084. 24 4248 5317 Sc
  1085. 24 4266 5415 Sc
  1086. 24 4284 5519 Sc
  1087. 24 4302 5628 Sc
  1088. 24 4320 5740 Sc
  1089. 24 4338 5852 Sc
  1090. 24 4356 5958 Sc
  1091. 24 4374 6050 Sc
  1092. 24 4392 6112 Sc
  1093. 24 4410 6119 Sc
  1094. 24 4428 6030 Sc
  1095. 24 4446 5776 Sc
  1096. 24 4464 5254 Sc
  1097. 24 4482 4360 Sc
  1098. 24 4500 3139 Sc
  1099. 24 4518 1935 Sc
  1100. 24 4536 1075 Sc
  1101. 24 4554 586 Sc
  1102. 24 4572 353 Sc
  1103. 24 4590 275 Sc
  1104. 24 4608 284 Sc
  1105. 24 4626 341 Sc
  1106. 24 4644 423 Sc
  1107. 24 4662 516 Sc
  1108. 24 4680 611 Sc
  1109. 24 4698 705 Sc
  1110. 24 4716 795 Sc
  1111. 24 4734 880 Sc
  1112. 24 4752 959 Sc
  1113. 24 4770 1032 Sc
  1114. 24 4788 1099 Sc
  1115. 24 4806 1161 Sc
  1116. 24 4824 1218 Sc
  1117. 24 4842 1271 Sc
  1118. 24 4860 1319 Sc
  1119. 24 4878 1363 Sc
  1120. 24 4896 1404 Sc
  1121. 24 4914 1441 Sc
  1122. 24 4932 1476 Sc
  1123. 24 4950 1508 Sc
  1124. 24 4968 1538 Sc
  1125. 24 4986 1565 Sc
  1126. 24 5004 1591 Sc
  1127. 24 5022 1615 Sc
  1128. 24 5040 1637 Sc
  1129. 24 5058 1657 Sc
  1130. 24 5076 1676 Sc
  1131. 24 5094 1694 Sc
  1132. 24 5112 1711 Sc
  1133. 24 5130 1727 Sc
  1134. 24 5148 1741 Sc
  1135. 24 5166 1755 Sc
  1136. 24 5184 1768 Sc
  1137. 24 5202 1781 Sc
  1138. 24 5220 1792 Sc
  1139. 24 5238 1803 Sc
  1140. 24 5256 1813 Sc
  1141. 24 5274 1823 Sc
  1142. 24 5292 1832 Sc
  1143. 24 5310 1841 Sc
  1144. 24 5328 1849 Sc
  1145. 24 5346 1857 Sc
  1146. 24 5364 1864 Sc
  1147. 24 5382 1871 Sc
  1148. 24 5400 1878 Sc
  1149. 24 5418 1884 Sc
  1150. 24 5436 1890 Sc
  1151. 24 5454 1896 Sc
  1152. 24 5472 1901 Sc
  1153. 24 5490 1907 Sc
  1154. 24 5508 1912 Sc
  1155. 24 5526 1916 Sc
  1156. 24 5544 1921 Sc
  1157. 24 5562 1925 Sc
  1158. 24 5580 1929 Sc
  1159. 24 5598 1933 Sc
  1160. 24 5616 1937 Sc
  1161. 24 5634 1941 Sc
  1162. 24 5652 1944 Sc
  1163. 24 5670 1948 Sc
  1164. 24 5688 1951 Sc
  1165. 24 5706 1954 Sc
  1166. 24 5724 1957 Sc
  1167. 24 5742 1960 Sc
  1168. 24 5760 1963 Sc
  1169. 24 5778 1965 Sc
  1170. 24 5796 1968 Sc
  1171. 24 5814 1970 Sc
  1172. 24 5832 1972 Sc
  1173. 24 5850 1975 Sc
  1174. 24 5868 1977 Sc
  1175. 24 5886 1979 Sc
  1176. 24 5904 1981 Sc
  1177. 24 5922 1983 Sc
  1178. 24 5940 1985 Sc
  1179. 24 5958 1987 Sc
  1180. 24 5976 1989 Sc
  1181. 24 5994 1990 Sc
  1182. 24 6012 1992 Sc
  1183. 24 6030 1993 Sc
  1184. 24 6048 1995 Sc
  1185. 24 6066 1996 Sc
  1186. 24 6084 1998 Sc
  1187. 24 6102 1999 Sc
  1188. 24 6120 2001 Sc
  1189. 24 6138 2002 Sc
  1190. 24 6156 2003 Sc
  1191. 24 6174 2004 Sc
  1192. 24 6192 2006 Sc
  1193. 24 6210 2007 Sc
  1194. 24 6228 2008 Sc
  1195. 24 6246 2009 Sc
  1196. 24 6264 2010 Sc
  1197. 24 6282 2011 Sc
  1198. 24 6300 2012 Sc
  1199. 24 6318 2013 Sc
  1200. 24 6336 2014 Sc
  1201. 24 6354 2015 Sc
  1202. 24 6372 2016 Sc
  1203. 24 6390 2017 Sc
  1204. 24 6408 2017 Sc
  1205. 24 6426 2018 Sc
  1206. 24 6444 2019 Sc
  1207. 24 6462 2020 Sc
  1208. 24 6480 2021 Sc
  1209. 24 6498 2021 Sc
  1210. 24 6516 2022 Sc
  1211. 24 6534 2023 Sc
  1212. 24 6552 2023 Sc
  1213. 24 6570 2024 Sc
  1214. 24 6588 2025 Sc
  1215. 24 6606 2025 Sc
  1216. 24 6624 2026 Sc
  1217. 24 6642 2026 Sc
  1218. 24 6660 2027 Sc
  1219. 24 6678 2028 Sc
  1220. 24 6696 2028 Sc
  1221. 24 6714 2029 Sc
  1222. 24 6732 2029 Sc
  1223. 24 6750 2030 Sc
  1224. 24 6768 2030 Sc
  1225. 24 6786 2031 Sc
  1226. 24 6804 2031 Sc
  1227. 24 6822 2032 Sc
  1228. 24 6840 2032 Sc
  1229. 24 6858 2032 Sc
  1230. 24 6876 2033 Sc
  1231. 24 6894 2033 Sc
  1232. 24 6912 2034 Sc
  1233. 24 6930 2034 Sc
  1234. 24 6948 2035 Sc
  1235. 24 6966 2035 Sc
  1236. 24 6984 2035 Sc
  1237. 24 7002 2036 Sc
  1238. 24 7020 2036 Sc
  1239. 24 7038 2036 Sc
  1240. 24 7056 2037 Sc
  1241. 24 7074 2037 Sc
  1242. 24 7092 2037 Sc
  1243. 24 7110 2038 Sc
  1244. 24 7128 2038 Sc
  1245. 24 7146 2038 Sc
  1246. 24 7164 2039 Sc
  1247. 24 7182 2039 Sc
  1248. 24 7200 2039 Sc
  1249. U
  1250. PSL_cliprestore
  1251. %%EndObject
  1252. 0 A
  1253. FQ
  1254. O0
  1255. 0 0 TM
  1256. % PostScript produced by:
  1257. %@GMT: gmt psxy -R-100000/100000/-100/250 -JX6i/6i -Sc0.1c -Gred -O -K
  1258. %@PROJ: xy -100000.00000000 100000.00000000 -100.00000000 250.00000000 -100000.000 100000.000 -100.000 250.000 +xy
  1259. %%BeginObject PSL_Layer_4
  1260. 0 setlinecap
  1261. 0 setlinejoin
  1262. 3.32551 setmiterlimit
  1263. clipsave
  1264. 0 0 M
  1265. 7200 0 D
  1266. 0 7200 D
  1267. -7200 0 D
  1268. P
  1269. PSL_clip N
  1270. 4 W
  1271. V
  1272. {1 0 0 C} FS
  1273. 24 0 2063 Sc
  1274. 24 18 2063 Sc
  1275. 24 36 2063 Sc
  1276. 24 54 2063 Sc
  1277. 24 72 2063 Sc
  1278. 24 90 2063 Sc
  1279. 24 108 2064 Sc
  1280. 24 126 2064 Sc
  1281. 24 144 2064 Sc
  1282. 24 162 2064 Sc
  1283. 24 180 2064 Sc
  1284. 24 198 2064 Sc
  1285. 24 216 2064 Sc
  1286. 24 234 2064 Sc
  1287. 24 252 2064 Sc
  1288. 24 270 2065 Sc
  1289. 24 288 2065 Sc
  1290. 24 306 2065 Sc
  1291. 24 324 2065 Sc
  1292. 24 342 2065 Sc
  1293. 24 360 2065 Sc
  1294. 24 378 2065 Sc
  1295. 24 396 2066 Sc
  1296. 24 414 2066 Sc
  1297. 24 432 2066 Sc
  1298. 24 450 2066 Sc
  1299. 24 468 2066 Sc
  1300. 24 486 2066 Sc
  1301. 24 504 2067 Sc
  1302. 24 522 2067 Sc
  1303. 24 540 2067 Sc
  1304. 24 558 2067 Sc
  1305. 24 576 2067 Sc
  1306. 24 594 2067 Sc
  1307. 24 612 2068 Sc
  1308. 24 630 2068 Sc
  1309. 24 648 2068 Sc
  1310. 24 666 2068 Sc
  1311. 24 684 2068 Sc
  1312. 24 702 2069 Sc
  1313. 24 720 2069 Sc
  1314. 24 738 2069 Sc
  1315. 24 756 2069 Sc
  1316. 24 774 2070 Sc
  1317. 24 792 2070 Sc
  1318. 24 810 2070 Sc
  1319. 24 828 2071 Sc
  1320. 24 846 2071 Sc
  1321. 24 864 2071 Sc
  1322. 24 882 2071 Sc
  1323. 24 900 2072 Sc
  1324. 24 918 2072 Sc
  1325. 24 936 2072 Sc
  1326. 24 954 2073 Sc
  1327. 24 972 2073 Sc
  1328. 24 990 2073 Sc
  1329. 24 1008 2074 Sc
  1330. 24 1026 2074 Sc
  1331. 24 1044 2075 Sc
  1332. 24 1062 2075 Sc
  1333. 24 1080 2075 Sc
  1334. 24 1098 2076 Sc
  1335. 24 1116 2076 Sc
  1336. 24 1134 2077 Sc
  1337. 24 1152 2077 Sc
  1338. 24 1170 2078 Sc
  1339. 24 1188 2078 Sc
  1340. 24 1206 2079 Sc
  1341. 24 1224 2079 Sc
  1342. 24 1242 2080 Sc
  1343. 24 1260 2081 Sc
  1344. 24 1278 2081 Sc
  1345. 24 1296 2082 Sc
  1346. 24 1314 2082 Sc
  1347. 24 1332 2083 Sc
  1348. 24 1350 2084 Sc
  1349. 24 1368 2085 Sc
  1350. 24 1386 2085 Sc
  1351. 24 1404 2086 Sc
  1352. 24 1422 2087 Sc
  1353. 24 1440 2088 Sc
  1354. 24 1458 2089 Sc
  1355. 24 1476 2090 Sc
  1356. 24 1494 2091 Sc
  1357. 24 1512 2092 Sc
  1358. 24 1530 2093 Sc
  1359. 24 1548 2094 Sc
  1360. 24 1566 2095 Sc
  1361. 24 1584 2096 Sc
  1362. 24 1602 2098 Sc
  1363. 24 1620 2099 Sc
  1364. 24 1638 2100 Sc
  1365. 24 1656 2102 Sc
  1366. 24 1674 2103 Sc
  1367. 24 1692 2105 Sc
  1368. 24 1710 2106 Sc
  1369. 24 1728 2108 Sc
  1370. 24 1746 2110 Sc
  1371. 24 1764 2112 Sc
  1372. 24 1782 2114 Sc
  1373. 24 1800 2116 Sc
  1374. 24 1818 2118 Sc
  1375. 24 1836 2121 Sc
  1376. 24 1854 2123 Sc
  1377. 24 1872 2126 Sc
  1378. 24 1890 2128 Sc
  1379. 24 1908 2131 Sc
  1380. 24 1926 2134 Sc
  1381. 24 1944 2138 Sc
  1382. 24 1962 2141 Sc
  1383. 24 1980 2145 Sc
  1384. 24 1998 2149 Sc
  1385. 24 2016 2153 Sc
  1386. 24 2034 2157 Sc
  1387. 24 2052 2162 Sc
  1388. 24 2070 2167 Sc
  1389. 24 2088 2173 Sc
  1390. 24 2106 2179 Sc
  1391. 24 2124 2185 Sc
  1392. 24 2142 2192 Sc
  1393. 24 2160 2199 Sc
  1394. 24 2178 2207 Sc
  1395. 24 2196 2215 Sc
  1396. 24 2214 2225 Sc
  1397. 24 2232 2235 Sc
  1398. 24 2250 2246 Sc
  1399. 24 2268 2257 Sc
  1400. 24 2286 2270 Sc
  1401. 24 2304 2285 Sc
  1402. 24 2322 2301 Sc
  1403. 24 2340 2318 Sc
  1404. 24 2358 2337 Sc
  1405. 24 2376 2359 Sc
  1406. 24 2394 2383 Sc
  1407. 24 2412 2409 Sc
  1408. 24 2430 2440 Sc
  1409. 24 2448 2474 Sc
  1410. 24 2466 2513 Sc
  1411. 24 2484 2557 Sc
  1412. 24 2502 2608 Sc
  1413. 24 2520 2667 Sc
  1414. 24 2538 2736 Sc
  1415. 24 2556 2816 Sc
  1416. 24 2574 2911 Sc
  1417. 24 2592 3023 Sc
  1418. 24 2610 3157 Sc
  1419. 24 2628 3318 Sc
  1420. 24 2646 3511 Sc
  1421. 24 2664 3741 Sc
  1422. 24 2682 4009 Sc
  1423. 24 2700 4304 Sc
  1424. 24 2718 4603 Sc
  1425. 24 2736 4879 Sc
  1426. 24 2754 5121 Sc
  1427. 24 2772 5327 Sc
  1428. 24 2790 5503 Sc
  1429. 24 2808 5652 Sc
  1430. 24 2826 5779 Sc
  1431. 24 2844 5888 Sc
  1432. 24 2862 5982 Sc
  1433. 24 2880 6064 Sc
  1434. 24 2898 6135 Sc
  1435. 24 2916 6198 Sc
  1436. 24 2934 6253 Sc
  1437. 24 2952 6302 Sc
  1438. 24 2970 6346 Sc
  1439. 24 2988 6386 Sc
  1440. 24 3006 6421 Sc
  1441. 24 3024 6453 Sc
  1442. 24 3042 6482 Sc
  1443. 24 3060 6508 Sc
  1444. 24 3078 6532 Sc
  1445. 24 3096 6554 Sc
  1446. 24 3114 6574 Sc
  1447. 24 3132 6592 Sc
  1448. 24 3150 6609 Sc
  1449. 24 3168 6624 Sc
  1450. 24 3186 6638 Sc
  1451. 24 3204 6651 Sc
  1452. 24 3222 6663 Sc
  1453. 24 3240 6675 Sc
  1454. 24 3258 6685 Sc
  1455. 24 3276 6694 Sc
  1456. 24 3294 6703 Sc
  1457. 24 3312 6711 Sc
  1458. 24 3330 6718 Sc
  1459. 24 3348 6725 Sc
  1460. 24 3366 6731 Sc
  1461. 24 3384 6736 Sc
  1462. 24 3402 6741 Sc
  1463. 24 3420 6746 Sc
  1464. 24 3438 6750 Sc
  1465. 24 3456 6753 Sc
  1466. 24 3474 6756 Sc
  1467. 24 3492 6759 Sc
  1468. 24 3510 6761 Sc
  1469. 24 3528 6763 Sc
  1470. 24 3546 6764 Sc
  1471. 24 3564 6765 Sc
  1472. 24 3582 6766 Sc
  1473. 24 3600 6766 Sc
  1474. 24 3618 6766 Sc
  1475. 24 3636 6765 Sc
  1476. 24 3654 6764 Sc
  1477. 24 3672 6763 Sc
  1478. 24 3690 6761 Sc
  1479. 24 3708 6759 Sc
  1480. 24 3726 6756 Sc
  1481. 24 3744 6753 Sc
  1482. 24 3762 6750 Sc
  1483. 24 3780 6746 Sc
  1484. 24 3798 6741 Sc
  1485. 24 3816 6736 Sc
  1486. 24 3834 6731 Sc
  1487. 24 3852 6725 Sc
  1488. 24 3870 6718 Sc
  1489. 24 3888 6711 Sc
  1490. 24 3906 6703 Sc
  1491. 24 3924 6694 Sc
  1492. 24 3942 6685 Sc
  1493. 24 3960 6675 Sc
  1494. 24 3978 6663 Sc
  1495. 24 3996 6651 Sc
  1496. 24 4014 6638 Sc
  1497. 24 4032 6624 Sc
  1498. 24 4050 6609 Sc
  1499. 24 4068 6592 Sc
  1500. 24 4086 6574 Sc
  1501. 24 4104 6554 Sc
  1502. 24 4122 6532 Sc
  1503. 24 4140 6508 Sc
  1504. 24 4158 6482 Sc
  1505. 24 4176 6453 Sc
  1506. 24 4194 6421 Sc
  1507. 24 4212 6386 Sc
  1508. 24 4230 6346 Sc
  1509. 24 4248 6302 Sc
  1510. 24 4266 6253 Sc
  1511. 24 4284 6198 Sc
  1512. 24 4302 6135 Sc
  1513. 24 4320 6064 Sc
  1514. 24 4338 5982 Sc
  1515. 24 4356 5888 Sc
  1516. 24 4374 5779 Sc
  1517. 24 4392 5652 Sc
  1518. 24 4410 5503 Sc
  1519. 24 4428 5327 Sc
  1520. 24 4446 5121 Sc
  1521. 24 4464 4879 Sc
  1522. 24 4482 4603 Sc
  1523. 24 4500 4304 Sc
  1524. 24 4518 4009 Sc
  1525. 24 4536 3741 Sc
  1526. 24 4554 3511 Sc
  1527. 24 4572 3318 Sc
  1528. 24 4590 3157 Sc
  1529. 24 4608 3023 Sc
  1530. 24 4626 2911 Sc
  1531. 24 4644 2816 Sc
  1532. 24 4662 2736 Sc
  1533. 24 4680 2667 Sc
  1534. 24 4698 2608 Sc
  1535. 24 4716 2557 Sc
  1536. 24 4734 2513 Sc
  1537. 24 4752 2474 Sc
  1538. 24 4770 2440 Sc
  1539. 24 4788 2409 Sc
  1540. 24 4806 2383 Sc
  1541. 24 4824 2359 Sc
  1542. 24 4842 2337 Sc
  1543. 24 4860 2318 Sc
  1544. 24 4878 2301 Sc
  1545. 24 4896 2285 Sc
  1546. 24 4914 2270 Sc
  1547. 24 4932 2257 Sc
  1548. 24 4950 2246 Sc
  1549. 24 4968 2235 Sc
  1550. 24 4986 2225 Sc
  1551. 24 5004 2215 Sc
  1552. 24 5022 2207 Sc
  1553. 24 5040 2199 Sc
  1554. 24 5058 2192 Sc
  1555. 24 5076 2185 Sc
  1556. 24 5094 2179 Sc
  1557. 24 5112 2173 Sc
  1558. 24 5130 2167 Sc
  1559. 24 5148 2162 Sc
  1560. 24 5166 2157 Sc
  1561. 24 5184 2153 Sc
  1562. 24 5202 2149 Sc
  1563. 24 5220 2145 Sc
  1564. 24 5238 2141 Sc
  1565. 24 5256 2138 Sc
  1566. 24 5274 2134 Sc
  1567. 24 5292 2131 Sc
  1568. 24 5310 2128 Sc
  1569. 24 5328 2126 Sc
  1570. 24 5346 2123 Sc
  1571. 24 5364 2121 Sc
  1572. 24 5382 2118 Sc
  1573. 24 5400 2116 Sc
  1574. 24 5418 2114 Sc
  1575. 24 5436 2112 Sc
  1576. 24 5454 2110 Sc
  1577. 24 5472 2108 Sc
  1578. 24 5490 2106 Sc
  1579. 24 5508 2105 Sc
  1580. 24 5526 2103 Sc
  1581. 24 5544 2102 Sc
  1582. 24 5562 2100 Sc
  1583. 24 5580 2099 Sc
  1584. 24 5598 2098 Sc
  1585. 24 5616 2096 Sc
  1586. 24 5634 2095 Sc
  1587. 24 5652 2094 Sc
  1588. 24 5670 2093 Sc
  1589. 24 5688 2092 Sc
  1590. 24 5706 2091 Sc
  1591. 24 5724 2090 Sc
  1592. 24 5742 2089 Sc
  1593. 24 5760 2088 Sc
  1594. 24 5778 2087 Sc
  1595. 24 5796 2086 Sc
  1596. 24 5814 2085 Sc
  1597. 24 5832 2085 Sc
  1598. 24 5850 2084 Sc
  1599. 24 5868 2083 Sc
  1600. 24 5886 2082 Sc
  1601. 24 5904 2082 Sc
  1602. 24 5922 2081 Sc
  1603. 24 5940 2081 Sc
  1604. 24 5958 2080 Sc
  1605. 24 5976 2079 Sc
  1606. 24 5994 2079 Sc
  1607. 24 6012 2078 Sc
  1608. 24 6030 2078 Sc
  1609. 24 6048 2077 Sc
  1610. 24 6066 2077 Sc
  1611. 24 6084 2076 Sc
  1612. 24 6102 2076 Sc
  1613. 24 6120 2075 Sc
  1614. 24 6138 2075 Sc
  1615. 24 6156 2075 Sc
  1616. 24 6174 2074 Sc
  1617. 24 6192 2074 Sc
  1618. 24 6210 2073 Sc
  1619. 24 6228 2073 Sc
  1620. 24 6246 2073 Sc
  1621. 24 6264 2072 Sc
  1622. 24 6282 2072 Sc
  1623. 24 6300 2072 Sc
  1624. 24 6318 2071 Sc
  1625. 24 6336 2071 Sc
  1626. 24 6354 2071 Sc
  1627. 24 6372 2071 Sc
  1628. 24 6390 2070 Sc
  1629. 24 6408 2070 Sc
  1630. 24 6426 2070 Sc
  1631. 24 6444 2069 Sc
  1632. 24 6462 2069 Sc
  1633. 24 6480 2069 Sc
  1634. 24 6498 2069 Sc
  1635. 24 6516 2068 Sc
  1636. 24 6534 2068 Sc
  1637. 24 6552 2068 Sc
  1638. 24 6570 2068 Sc
  1639. 24 6588 2068 Sc
  1640. 24 6606 2067 Sc
  1641. 24 6624 2067 Sc
  1642. 24 6642 2067 Sc
  1643. 24 6660 2067 Sc
  1644. 24 6678 2067 Sc
  1645. 24 6696 2067 Sc
  1646. 24 6714 2066 Sc
  1647. 24 6732 2066 Sc
  1648. 24 6750 2066 Sc
  1649. 24 6768 2066 Sc
  1650. 24 6786 2066 Sc
  1651. 24 6804 2066 Sc
  1652. 24 6822 2065 Sc
  1653. 24 6840 2065 Sc
  1654. 24 6858 2065 Sc
  1655. 24 6876 2065 Sc
  1656. 24 6894 2065 Sc
  1657. 24 6912 2065 Sc
  1658. 24 6930 2065 Sc
  1659. 24 6948 2064 Sc
  1660. 24 6966 2064 Sc
  1661. 24 6984 2064 Sc
  1662. 24 7002 2064 Sc
  1663. 24 7020 2064 Sc
  1664. 24 7038 2064 Sc
  1665. 24 7056 2064 Sc
  1666. 24 7074 2064 Sc
  1667. 24 7092 2064 Sc
  1668. 24 7110 2063 Sc
  1669. 24 7128 2063 Sc
  1670. 24 7146 2063 Sc
  1671. 24 7164 2063 Sc
  1672. 24 7182 2063 Sc
  1673. 24 7200 2063 Sc
  1674. U
  1675. PSL_cliprestore
  1676. %%EndObject
  1677. 0 A
  1678. FQ
  1679. O0
  1680. 0 0 TM
  1681. % PostScript produced by:
  1682. %@GMT: gmt psxy -R-100/100/-100/250 -JX6i/6i faa.txt -W0.25p,red -O -K -Bxafg1000 -Byafg1000 '-BWsne+tTesting FAA and VGG over cylinder'
  1683. %@PROJ: xy -100.00000000 100.00000000 -100.00000000 250.00000000 -100.000 100.000 -100.000 250.000 +xy
  1684. %%BeginObject PSL_Layer_5
  1685. 0 setlinecap
  1686. 0 setlinejoin
  1687. 3.32551 setmiterlimit
  1688. 4 W
  1689. 1 0 0 C
  1690. 0 2062 M
  1691. 612 3 D
  1692. 540 8 D
  1693. 360 11 D
  1694. 216 13 D
  1695. 144 13 D
  1696. 144 21 D
  1697. 72 15 D
  1698. 36 9 D
  1699. 72 23 D
  1700. 36 14 D
  1701. 36 17 D
  1702. 36 21 D
  1703. 36 24 D
  1704. 36 30 D
  1705. 36 37 D
  1706. 36 47 D
  1707. 36 61 D
  1708. 36 81 D
  1709. 36 109 D
  1710. 36 155 D
  1711. 36 226 D
  1712. 36 339 D
  1713. 36 484 D
  1714. 36 546 D
  1715. 36 458 D
  1716. 36 342 D
  1717. 36 251 D
  1718. 36 186 D
  1719. 36 141 D
  1720. 36 109 D
  1721. 36 86 D
  1722. 36 69 D
  1723. 36 55 D
  1724. 36 46 D
  1725. 36 38 D
  1726. 36 32 D
  1727. 36 26 D
  1728. 36 23 D
  1729. 36 19 D
  1730. 36 16 D
  1731. 36 13 D
  1732. 36 11 D
  1733. 36 9 D
  1734. 36 7 D
  1735. 72 9 D
  1736. 72 3 D
  1737. 72 -3 D
  1738. 72 -9 D
  1739. 36 -7 D
  1740. 36 -9 D
  1741. 36 -11 D
  1742. 36 -13 D
  1743. 36 -16 D
  1744. 36 -19 D
  1745. 36 -23 D
  1746. 36 -26 D
  1747. 36 -32 D
  1748. 36 -38 D
  1749. 36 -46 D
  1750. 36 -55 D
  1751. 36 -69 D
  1752. 36 -86 D
  1753. 36 -109 D
  1754. 36 -141 D
  1755. 36 -186 D
  1756. 36 -251 D
  1757. 36 -342 D
  1758. 36 -458 D
  1759. 36 -546 D
  1760. 36 -484 D
  1761. 36 -339 D
  1762. 36 -226 D
  1763. 36 -155 D
  1764. 36 -109 D
  1765. 36 -81 D
  1766. 36 -61 D
  1767. 36 -47 D
  1768. 36 -37 D
  1769. 36 -30 D
  1770. 36 -24 D
  1771. 36 -21 D
  1772. 36 -17 D
  1773. 36 -14 D
  1774. 72 -23 D
  1775. 72 -17 D
  1776. 72 -13 D
  1777. 144 -19 D
  1778. 180 -14 D
  1779. 216 -11 D
  1780. 432 -11 D
  1781. 468 -5 D
  1782. 540 -3 D
  1783. S
  1784. 25 W
  1785. 0 A
  1786. 4 W
  1787. 3600 0 M
  1788. 0 7200 D
  1789. S
  1790. 0 2057 M
  1791. 7200 0 D
  1792. S
  1793. 2 setlinecap
  1794. 25 W
  1795. N 0 7200 M 0 -7200 D S
  1796. /PSL_A0_y 83 def
  1797. /PSL_A1_y 0 def
  1798. 8 W
  1799. N 0 0 M -83 0 D S
  1800. N 0 1029 M -83 0 D S
  1801. N 0 2057 M -83 0 D S
  1802. N 0 3086 M -83 0 D S
  1803. N 0 4114 M -83 0 D S
  1804. N 0 5143 M -83 0 D S
  1805. N 0 6171 M -83 0 D S
  1806. N 0 7200 M -83 0 D S
  1807. /PSL_AH0 0
  1808. /MM {neg exch M} def
  1809. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1810. 200 F0
  1811. (”100) sw mx
  1812. (”50) sw mx
  1813. (0) sw mx
  1814. (50) sw mx
  1815. (100) sw mx
  1816. (150) sw mx
  1817. (200) sw mx
  1818. (250) sw mx
  1819. def
  1820. /PSL_A0_y PSL_A0_y 83 add def
  1821. 0 PSL_A0_y MM
  1822. (”100) mr Z
  1823. 1029 PSL_A0_y MM
  1824. (”50) mr Z
  1825. 2057 PSL_A0_y MM
  1826. (0) mr Z
  1827. 3086 PSL_A0_y MM
  1828. (50) mr Z
  1829. 4114 PSL_A0_y MM
  1830. (100) mr Z
  1831. 5143 PSL_A0_y MM
  1832. (150) mr Z
  1833. 6171 PSL_A0_y MM
  1834. (200) mr Z
  1835. 7200 PSL_A0_y MM
  1836. (250) mr Z
  1837. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1838. N 0 206 M -42 0 D S
  1839. N 0 411 M -42 0 D S
  1840. N 0 617 M -42 0 D S
  1841. N 0 823 M -42 0 D S
  1842. N 0 1234 M -42 0 D S
  1843. N 0 1440 M -42 0 D S
  1844. N 0 1646 M -42 0 D S
  1845. N 0 1851 M -42 0 D S
  1846. N 0 2263 M -42 0 D S
  1847. N 0 2469 M -42 0 D S
  1848. N 0 2674 M -42 0 D S
  1849. N 0 2880 M -42 0 D S
  1850. N 0 3291 M -42 0 D S
  1851. N 0 3497 M -42 0 D S
  1852. N 0 3703 M -42 0 D S
  1853. N 0 3909 M -42 0 D S
  1854. N 0 4320 M -42 0 D S
  1855. N 0 4526 M -42 0 D S
  1856. N 0 4731 M -42 0 D S
  1857. N 0 4937 M -42 0 D S
  1858. N 0 5349 M -42 0 D S
  1859. N 0 5554 M -42 0 D S
  1860. N 0 5760 M -42 0 D S
  1861. N 0 5966 M -42 0 D S
  1862. N 0 6377 M -42 0 D S
  1863. N 0 6583 M -42 0 D S
  1864. N 0 6789 M -42 0 D S
  1865. N 0 6994 M -42 0 D S
  1866. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1867. 7200 0 T
  1868. 25 W
  1869. N 0 7200 M 0 -7200 D S
  1870. /PSL_A0_y 83 def
  1871. /PSL_A1_y 0 def
  1872. 8 W
  1873. N 0 0 M 83 0 D S
  1874. N 0 1029 M 83 0 D S
  1875. N 0 2057 M 83 0 D S
  1876. N 0 3086 M 83 0 D S
  1877. N 0 4114 M 83 0 D S
  1878. N 0 5143 M 83 0 D S
  1879. N 0 6171 M 83 0 D S
  1880. N 0 7200 M 83 0 D S
  1881. N 0 206 M 42 0 D S
  1882. N 0 411 M 42 0 D S
  1883. N 0 617 M 42 0 D S
  1884. N 0 823 M 42 0 D S
  1885. N 0 1234 M 42 0 D S
  1886. N 0 1440 M 42 0 D S
  1887. N 0 1646 M 42 0 D S
  1888. N 0 1851 M 42 0 D S
  1889. N 0 2263 M 42 0 D S
  1890. N 0 2469 M 42 0 D S
  1891. N 0 2674 M 42 0 D S
  1892. N 0 2880 M 42 0 D S
  1893. N 0 3291 M 42 0 D S
  1894. N 0 3497 M 42 0 D S
  1895. N 0 3703 M 42 0 D S
  1896. N 0 3909 M 42 0 D S
  1897. N 0 4320 M 42 0 D S
  1898. N 0 4526 M 42 0 D S
  1899. N 0 4731 M 42 0 D S
  1900. N 0 4937 M 42 0 D S
  1901. N 0 5349 M 42 0 D S
  1902. N 0 5554 M 42 0 D S
  1903. N 0 5760 M 42 0 D S
  1904. N 0 5966 M 42 0 D S
  1905. N 0 6377 M 42 0 D S
  1906. N 0 6583 M 42 0 D S
  1907. N 0 6789 M 42 0 D S
  1908. N 0 6994 M 42 0 D S
  1909. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1910. -7200 0 T
  1911. 25 W
  1912. N 0 0 M 7200 0 D S
  1913. /PSL_A0_y 83 def
  1914. /PSL_A1_y 0 def
  1915. 8 W
  1916. N 0 0 M 0 -83 D S
  1917. N 1800 0 M 0 -83 D S
  1918. N 3600 0 M 0 -83 D S
  1919. N 5400 0 M 0 -83 D S
  1920. N 7200 0 M 0 -83 D S
  1921. N 360 0 M 0 -42 D S
  1922. N 720 0 M 0 -42 D S
  1923. N 1080 0 M 0 -42 D S
  1924. N 1440 0 M 0 -42 D S
  1925. N 2160 0 M 0 -42 D S
  1926. N 2520 0 M 0 -42 D S
  1927. N 2880 0 M 0 -42 D S
  1928. N 3240 0 M 0 -42 D S
  1929. N 3960 0 M 0 -42 D S
  1930. N 4320 0 M 0 -42 D S
  1931. N 4680 0 M 0 -42 D S
  1932. N 5040 0 M 0 -42 D S
  1933. N 5760 0 M 0 -42 D S
  1934. N 6120 0 M 0 -42 D S
  1935. N 6480 0 M 0 -42 D S
  1936. N 6840 0 M 0 -42 D S
  1937. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1938. 0 7200 T
  1939. 25 W
  1940. N 0 0 M 7200 0 D S
  1941. /PSL_A0_y 83 def
  1942. /PSL_A1_y 0 def
  1943. 8 W
  1944. N 0 0 M 0 83 D S
  1945. N 1800 0 M 0 83 D S
  1946. N 3600 0 M 0 83 D S
  1947. N 5400 0 M 0 83 D S
  1948. N 7200 0 M 0 83 D S
  1949. N 360 0 M 0 42 D S
  1950. N 720 0 M 0 42 D S
  1951. N 1080 0 M 0 42 D S
  1952. N 1440 0 M 0 42 D S
  1953. N 2160 0 M 0 42 D S
  1954. N 2520 0 M 0 42 D S
  1955. N 2880 0 M 0 42 D S
  1956. N 3240 0 M 0 42 D S
  1957. N 3960 0 M 0 42 D S
  1958. N 4320 0 M 0 42 D S
  1959. N 4680 0 M 0 42 D S
  1960. N 5040 0 M 0 42 D S
  1961. N 5760 0 M 0 42 D S
  1962. N 6120 0 M 0 42 D S
  1963. N 6480 0 M 0 42 D S
  1964. N 6840 0 M 0 42 D S
  1965. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1966. 0 -7200 T
  1967. 0 setlinecap
  1968. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  1969. 3600 7200 PSL_H_y add M
  1970. 400 F0
  1971. (Testing FAA and VGG over cylinder) bc Z
  1972. %%EndObject
  1973. 0 A
  1974. FQ
  1975. O0
  1976. 0 0 TM
  1977. % PostScript produced by:
  1978. %@GMT: gmt psxy -R-100/100/-100/250 -JX6i/6i -O -K tmp -W0.5p,-
  1979. %@PROJ: xy -100.00000000 100.00000000 -100.00000000 250.00000000 -100.000 100.000 -100.000 250.000 +xy
  1980. %%BeginObject PSL_Layer_6
  1981. 0 setlinecap
  1982. 0 setlinejoin
  1983. 3.32551 setmiterlimit
  1984. 8 W
  1985. [67 33] 0 B
  1986. 0 6774 M
  1987. 7200 0 D
  1988. S
  1989. [] 0 B
  1990. %%EndObject
  1991. 0 A
  1992. FQ
  1993. O0
  1994. 0 0 TM
  1995. % PostScript produced by:
  1996. %@GMT: gmt psxy -R-100/100/-100/250 -JX6i/6i -O -K vgg.txt -W0.5p,darkgreen
  1997. %@PROJ: xy -100.00000000 100.00000000 -100.00000000 250.00000000 -100.000 100.000 -100.000 250.000 +xy
  1998. %%BeginObject PSL_Layer_7
  1999. 0 setlinecap
  2000. 0 setlinejoin
  2001. 3.32551 setmiterlimit
  2002. 8 W
  2003. 0 0.392 0 C
  2004. 0 2042 M
  2005. 504 -9 D
  2006. 288 -9 D
  2007. 252 -12 D
  2008. 180 -12 D
  2009. 180 -17 D
  2010. 108 -14 D
  2011. 144 -25 D
  2012. 108 -25 D
  2013. 108 -34 D
  2014. 72 -29 D
  2015. 72 -37 D
  2016. 36 -22 D
  2017. 36 -24 D
  2018. 36 -29 D
  2019. 36 -32 D
  2020. 36 -37 D
  2021. 36 -43 D
  2022. 36 -50 D
  2023. 36 -58 D
  2024. 36 -69 D
  2025. 36 -82 D
  2026. 36 -98 D
  2027. 36 -117 D
  2028. 36 -139 D
  2029. 36 -163 D
  2030. 36 -178 D
  2031. 36 -162 D
  2032. 36 -32 D
  2033. 36 458 D
  2034. 36 1701 D
  2035. 36 2192 D
  2036. 36 999 D
  2037. 36 189 D
  2038. 36 -121 D
  2039. 36 -218 D
  2040. 36 -232 D
  2041. 36 -216 D
  2042. 36 -192 D
  2043. 36 -165 D
  2044. 36 -143 D
  2045. 36 -121 D
  2046. 36 -105 D
  2047. 36 -89 D
  2048. 36 -76 D
  2049. 36 -65 D
  2050. 36 -56 D
  2051. 36 -47 D
  2052. 36 -40 D
  2053. 36 -33 D
  2054. 36 -27 D
  2055. 36 -22 D
  2056. 36 -16 D
  2057. 36 -12 D
  2058. 36 -7 D
  2059. 36 -2 D
  2060. 36 2 D
  2061. 36 7 D
  2062. 36 12 D
  2063. 36 16 D
  2064. 36 22 D
  2065. 36 27 D
  2066. 36 33 D
  2067. 36 40 D
  2068. 36 47 D
  2069. 36 56 D
  2070. 36 65 D
  2071. 36 76 D
  2072. 36 89 D
  2073. 36 105 D
  2074. 36 121 D
  2075. 36 143 D
  2076. 36 165 D
  2077. 36 192 D
  2078. 36 216 D
  2079. 36 232 D
  2080. 36 218 D
  2081. 36 121 D
  2082. 36 -189 D
  2083. 36 -999 D
  2084. 36 -2192 D
  2085. 36 -1701 D
  2086. 36 -458 D
  2087. 36 32 D
  2088. 36 162 D
  2089. 36 178 D
  2090. 36 163 D
  2091. 36 139 D
  2092. 36 117 D
  2093. 36 98 D
  2094. 36 82 D
  2095. 36 69 D
  2096. 36 58 D
  2097. 36 50 D
  2098. 36 43 D
  2099. 36 37 D
  2100. 36 32 D
  2101. 36 29 D
  2102. 36 24 D
  2103. 36 22 D
  2104. 72 37 D
  2105. 72 29 D
  2106. 108 34 D
  2107. 108 25 D
  2108. 144 25 D
  2109. 144 18 D
  2110. 180 16 D
  2111. 252 15 D
  2112. 360 13 D
  2113. 252 6 D
  2114. 324 5 D
  2115. S
  2116. %%EndObject
  2117. 0 A
  2118. FQ
  2119. O0
  2120. 0 0 TM
  2121. % PostScript produced by:
  2122. %@GMT: gmt pslegend -R-100/100/-100/250 -JX6i/6i -O -K -DjTL+w2i+jTL+o0.1i/0.1i legend.txt -F+gwhite+p
  2123. %@PROJ: xy -100.00000000 100.00000000 -100.00000000 250.00000000 -100.000 100.000 -100.000 250.000 +xy
  2124. %%BeginObject PSL_Layer_8
  2125. 0 setlinecap
  2126. 0 setlinejoin
  2127. 3.32551 setmiterlimit
  2128. 120 5847 T
  2129. {1 A} FS
  2130. 1233 2400 1200 617 Sr
  2131. 25 W
  2132. FQ
  2133. O1
  2134. 1233 2400 1200 617 Sr
  2135. 0 A
  2136. FQ
  2137. O0
  2138. 0 0 TM
  2139. % PostScript produced by:
  2140. %@GMT: gmt psxy -R0/6/0/6 -Jx1i -O -K -N -S @GMTAPI@-000001 --GMT_HISTORY=false
  2141. %@PROJ: xy 0.00000000 6.00000000 0.00000000 6.00000000 0.000 6.000 0.000 6.000 +xy
  2142. %%BeginObject PSL_Layer_9
  2143. 0 setlinecap
  2144. 0 setlinejoin
  2145. 3.32551 setmiterlimit
  2146. 4 W
  2147. V
  2148. O1
  2149. 8 W
  2150. [67 33] 0 B
  2151. 180 307 1057 S-
  2152. {1 0 0 C} FS
  2153. O0
  2154. 4 W
  2155. [] 0 B
  2156. 30 307 837 Sc
  2157. {0 0 1 C} FS
  2158. 30 307 617 Sc
  2159. FQ
  2160. O1
  2161. 25 W
  2162. 1 0 0 C
  2163. 180 307 397 S-
  2164. 0 0.392 0 C
  2165. 180 307 177 S-
  2166. U
  2167. %%EndObject
  2168. 0 A
  2169. FQ
  2170. O0
  2171. 0 0 TM
  2172. % PostScript produced by:
  2173. %@GMT: gmt pstext -R0/6/0/6 -Jx1i -O -K -N -F+f+j @GMTAPI@-000002 --GMT_HISTORY=false
  2174. %@PROJ: xy 0.00000000 6.00000000 0.00000000 6.00000000 0.000 6.000 0.000 6.000 +xy
  2175. %%BeginObject PSL_Layer_10
  2176. 0 setlinecap
  2177. 0 setlinejoin
  2178. 3.32551 setmiterlimit
  2179. 667 987 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2180. 200 F0
  2181. (FAA \(at x = 0\)) bl Z
  2182. 667 767 M (FAA \(brute force\)) bl Z
  2183. 667 547 M (VGG \(brute force\)) bl Z
  2184. 667 327 M (FAA \(Talwani\)) bl Z
  2185. 667 107 M (VGG) bl Z
  2186. %%EndObject
  2187. -120 -5847 T
  2188. %%EndObject
  2189. 0 A
  2190. FQ
  2191. O0
  2192. 0 -3300 TM
  2193. % PostScript produced by:
  2194. %@GMT: gmt psxy -R-100/100/0/5084 -JX6i/-2.5i -O -K -Y-2.75i -Gblack '-Bxafg1000+u km' -Byaf -BWSne
  2195. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2196. %%BeginObject PSL_Layer_11
  2197. 0 setlinecap
  2198. 0 setlinejoin
  2199. 3.32551 setmiterlimit
  2200. 4 W
  2201. {0 A} FS
  2202. /FO {P}!
  2203. -1800 0 0 2213 1800 0 3 2700 0 SP
  2204. /FO {fs os}!
  2205. FO
  2206. 25 W
  2207. 4 W
  2208. 3600 3000 M
  2209. 0 -3000 D
  2210. S
  2211. 2 setlinecap
  2212. 25 W
  2213. N 0 3000 M 0 -3000 D S
  2214. /PSL_A0_y 83 def
  2215. /PSL_A1_y 0 def
  2216. 8 W
  2217. N 0 3000 M -83 0 D S
  2218. N 0 1820 M -83 0 D S
  2219. N 0 640 M -83 0 D S
  2220. /PSL_AH0 0
  2221. /MM {neg exch M} def
  2222. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2223. 200 F0
  2224. (0) sw mx
  2225. (2000) sw mx
  2226. (4000) sw mx
  2227. def
  2228. /PSL_A0_y PSL_A0_y 83 add def
  2229. 3000 PSL_A0_y MM
  2230. (0) mr Z
  2231. 1820 PSL_A0_y MM
  2232. (2000) mr Z
  2233. 640 PSL_A0_y MM
  2234. (4000) mr Z
  2235. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2236. N 0 2410 M -42 0 D S
  2237. N 0 1230 M -42 0 D S
  2238. N 0 50 M -42 0 D S
  2239. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2240. 7200 0 T
  2241. 25 W
  2242. N 0 3000 M 0 -3000 D S
  2243. /PSL_A0_y 83 def
  2244. /PSL_A1_y 0 def
  2245. 8 W
  2246. N 0 3000 M 83 0 D S
  2247. N 0 1820 M 83 0 D S
  2248. N 0 640 M 83 0 D S
  2249. N 0 2410 M 42 0 D S
  2250. N 0 1230 M 42 0 D S
  2251. N 0 50 M 42 0 D S
  2252. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2253. -7200 0 T
  2254. 25 W
  2255. N 0 0 M 7200 0 D S
  2256. /PSL_A0_y 83 def
  2257. /PSL_A1_y 0 def
  2258. 8 W
  2259. N 0 0 M 0 -83 D S
  2260. N 1800 0 M 0 -83 D S
  2261. N 3600 0 M 0 -83 D S
  2262. N 5400 0 M 0 -83 D S
  2263. N 7200 0 M 0 -83 D S
  2264. /PSL_AH0 0
  2265. /MM {neg M} def
  2266. (”100 km) sh mx
  2267. (”50 km) sh mx
  2268. (0 km) sh mx
  2269. (50 km) sh mx
  2270. (100 km) sh mx
  2271. def
  2272. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2273. 0 PSL_A0_y MM
  2274. (”100 km) bc Z
  2275. 1800 PSL_A0_y MM
  2276. (”50 km) bc Z
  2277. 3600 PSL_A0_y MM
  2278. (0 km) bc Z
  2279. 5400 PSL_A0_y MM
  2280. (50 km) bc Z
  2281. 7200 PSL_A0_y MM
  2282. (100 km) bc Z
  2283. N 360 0 M 0 -42 D S
  2284. N 720 0 M 0 -42 D S
  2285. N 1080 0 M 0 -42 D S
  2286. N 1440 0 M 0 -42 D S
  2287. N 2160 0 M 0 -42 D S
  2288. N 2520 0 M 0 -42 D S
  2289. N 2880 0 M 0 -42 D S
  2290. N 3240 0 M 0 -42 D S
  2291. N 3960 0 M 0 -42 D S
  2292. N 4320 0 M 0 -42 D S
  2293. N 4680 0 M 0 -42 D S
  2294. N 5040 0 M 0 -42 D S
  2295. N 5760 0 M 0 -42 D S
  2296. N 6120 0 M 0 -42 D S
  2297. N 6480 0 M 0 -42 D S
  2298. N 6840 0 M 0 -42 D S
  2299. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2300. 0 3000 T
  2301. 25 W
  2302. N 0 0 M 7200 0 D S
  2303. /PSL_A0_y 83 def
  2304. /PSL_A1_y 0 def
  2305. 8 W
  2306. N 0 0 M 0 83 D S
  2307. N 1800 0 M 0 83 D S
  2308. N 3600 0 M 0 83 D S
  2309. N 5400 0 M 0 83 D S
  2310. N 7200 0 M 0 83 D S
  2311. N 360 0 M 0 42 D S
  2312. N 720 0 M 0 42 D S
  2313. N 1080 0 M 0 42 D S
  2314. N 1440 0 M 0 42 D S
  2315. N 2160 0 M 0 42 D S
  2316. N 2520 0 M 0 42 D S
  2317. N 2880 0 M 0 42 D S
  2318. N 3240 0 M 0 42 D S
  2319. N 3960 0 M 0 42 D S
  2320. N 4320 0 M 0 42 D S
  2321. N 4680 0 M 0 42 D S
  2322. N 5040 0 M 0 42 D S
  2323. N 5760 0 M 0 42 D S
  2324. N 6120 0 M 0 42 D S
  2325. N 6480 0 M 0 42 D S
  2326. N 6840 0 M 0 42 D S
  2327. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2328. 0 -3000 T
  2329. 0 setlinecap
  2330. %%EndObject
  2331. 0 A
  2332. FQ
  2333. O0
  2334. 0 0 TM
  2335. % PostScript produced by:
  2336. %@GMT: gmt psxy -R-100/100/0/5084 -JX6i/-2.5i -O -K -Sv0.2i+bt+et+s -W0.5p
  2337. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2338. %%BeginObject PSL_Layer_12
  2339. 0 setlinecap
  2340. 0 setlinejoin
  2341. 3.32551 setmiterlimit
  2342. clipsave
  2343. 0 0 M
  2344. 7200 0 D
  2345. 0 3000 D
  2346. -7200 0 D
  2347. P
  2348. PSL_clip N
  2349. 8 W
  2350. V
  2351. O1
  2352. 8 W
  2353. V 4680 2213 T -90 R
  2354. N 0 0 M 2213 0 D S
  2355. 0 -64 M
  2356. 0 128 D
  2357. S
  2358. U
  2359. V 4680 0 T -90 R
  2360. 0 -64 M
  2361. 0 128 D
  2362. S
  2363. U
  2364. U
  2365. PSL_cliprestore
  2366. %%EndObject
  2367. 0 A
  2368. FQ
  2369. O0
  2370. 0 0 TM
  2371. % PostScript produced by:
  2372. %@GMT: gmt psxy -R-100/100/0/5084 -JX6i/-2.5i -O -K -Sv0.2i+bt+et+s -W0.5p
  2373. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2374. %%BeginObject PSL_Layer_13
  2375. 0 setlinecap
  2376. 0 setlinejoin
  2377. 3.32551 setmiterlimit
  2378. clipsave
  2379. 0 0 M
  2380. 7200 0 D
  2381. 0 3000 D
  2382. -7200 0 D
  2383. P
  2384. PSL_clip N
  2385. 8 W
  2386. V
  2387. O1
  2388. 8 W
  2389. V 2700 2410 T N 0 0 M 1800 0 D S
  2390. 0 -64 M
  2391. 0 128 D
  2392. S
  2393. U
  2394. V 4500 2410 T 0 -64 M
  2395. 0 128 D
  2396. S
  2397. U
  2398. U
  2399. PSL_cliprestore
  2400. %%EndObject
  2401. 0 A
  2402. FQ
  2403. O0
  2404. 0 0 TM
  2405. % PostScript produced by:
  2406. %@GMT: gmt pstext -R-100/100/0/5084 -JX6i/-2.5i -O -K -F+f18p,Helvetica,white+jCM
  2407. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2408. %%BeginObject PSL_Layer_14
  2409. 0 setlinecap
  2410. 0 setlinejoin
  2411. 3.32551 setmiterlimit
  2412. clipsave
  2413. 0 0 M
  2414. 7200 0 D
  2415. 0 3000 D
  2416. -7200 0 D
  2417. P
  2418. PSL_clip N
  2419. 1 A
  2420. 3600 1525 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2421. 300 F0
  2422. V MU 0 0 M 300 F12 (Dr = 1670) FP pathbbox N 4 1 roll exch pop add exch U -2 div exch -2 div exch G
  2423. 300 F12 (Dr = 1670) Z
  2424. PSL_cliprestore
  2425. %%EndObject
  2426. 0 A
  2427. FQ
  2428. O0
  2429. 0 0 TM
  2430. % PostScript produced by:
  2431. %@GMT: gmt pstext -R-100/100/0/5084 -JX6i/-2.5i -O -K -F+f14p,Times-Italic+jCM -Gwhite
  2432. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2433. %%BeginObject PSL_Layer_15
  2434. 0 setlinecap
  2435. 0 setlinejoin
  2436. 3.32551 setmiterlimit
  2437. clipsave
  2438. 0 0 M
  2439. 7200 0 D
  2440. 0 3000 D
  2441. -7200 0 D
  2442. P
  2443. PSL_clip N
  2444. PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if
  2445. 4 W
  2446. {1 A} FS
  2447. 233 F6
  2448. V
  2449. (d = 50 km) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2450. /PSL_dx 35 def
  2451. /PSL_dy 35 def
  2452. 3600 2410 T PSL_dim_w -2 div PSL_dim_h -2 div T
  2453. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  2454. U
  2455. 3600 2410 M (d = 50 km) mc Z
  2456. PSL_cliprestore
  2457. %%EndObject
  2458. 0 A
  2459. FQ
  2460. O0
  2461. 0 0 TM
  2462. % PostScript produced by:
  2463. %@GMT: gmt pstext -R-100/100/0/5084 -JX6i/-2.5i -O -K -F+f14p,Times-Italic+jCM+a90 -Gwhite
  2464. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2465. %%BeginObject PSL_Layer_16
  2466. 0 setlinecap
  2467. 0 setlinejoin
  2468. 3.32551 setmiterlimit
  2469. clipsave
  2470. 0 0 M
  2471. 7200 0 D
  2472. 0 3000 D
  2473. -7200 0 D
  2474. P
  2475. PSL_clip N
  2476. PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if
  2477. 4 W
  2478. {1 A} FS
  2479. 233 F6
  2480. V
  2481. (3751 m) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2482. /PSL_dx 35 def
  2483. /PSL_dy 35 def
  2484. 4680 1107 T 90 R PSL_dim_w -2 div PSL_dim_h -2 div T
  2485. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  2486. U
  2487. 4680 1107 M V 90 R (3751 m) mc Z U
  2488. PSL_cliprestore
  2489. %%EndObject
  2490. 0 A
  2491. FQ
  2492. O0
  2493. 0 0 TM
  2494. % PostScript produced by:
  2495. %@GMT: gmt pstext -R-100/100/0/5084 -JX6i/-2.5i -O -K -F+f14p,Times-Italic+jLM -Dj0.1i/0.1i
  2496. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2497. %%BeginObject PSL_Layer_17
  2498. 0 setlinecap
  2499. 0 setlinejoin
  2500. 3.32551 setmiterlimit
  2501. clipsave
  2502. 0 0 M
  2503. 7200 0 D
  2504. 0 3000 D
  2505. -7200 0 D
  2506. P
  2507. PSL_clip N
  2508. PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if
  2509. 4872 2213 M 233 F6
  2510. V MU 0 0 M (z) FP 0 -58 G 163 F6 (1) FP 0 58 G 233 F6 ( = 1333 m) FP pathbbox N 4 1 roll pop pop pop U -2 div 0 exch G
  2511. (z) Z
  2512. 0 -58 G 163 F6 (1) Z
  2513. 0 58 G 233 F6 ( = 1333 m) Z
  2514. PSL_cliprestore
  2515. %%EndObject
  2516. 0 A
  2517. FQ
  2518. O0
  2519. 0 0 TM
  2520. % PostScript produced by:
  2521. %@GMT: gmt pstext -R-100/100/0/5084 -JX6i/-2.5i -O -K -F+f14p,Times-Italic+jLB -Dj0.1i/0.1i
  2522. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2523. %%BeginObject PSL_Layer_18
  2524. 0 setlinecap
  2525. 0 setlinejoin
  2526. 3.32551 setmiterlimit
  2527. clipsave
  2528. 0 0 M
  2529. 7200 0 D
  2530. 0 3000 D
  2531. -7200 0 D
  2532. P
  2533. PSL_clip N
  2534. PSL_font_encode 6 get 0 eq {Standard+_Encoding /Times-Italic /Times-Italic PSL_reencode PSL_font_encode 6 1 put} if
  2535. 4872 120 M 233 F6
  2536. (z) Z
  2537. 0 -58 G 163 F6 (2) Z
  2538. 0 58 G 233 F6 ( = 5084 m) Z
  2539. PSL_cliprestore
  2540. %%EndObject
  2541. 0 A
  2542. FQ
  2543. O0
  2544. 0 0 TM
  2545. % PostScript produced by:
  2546. %@GMT: gmt psxy -R-100/100/0/5084 -JX6i/-2.5i -O -T
  2547. %@PROJ: xy -100.00000000 100.00000000 0.00000000 5084.00000000 -100.000 100.000 5084.000 -0.000 +xy
  2548. %%BeginObject PSL_Layer_19
  2549. 0 setlinecap
  2550. 0 setlinejoin
  2551. 3.32551 setmiterlimit
  2552. %%EndObject
  2553. grestore
  2554. PSL_movie_completion /PSL_movie_completion {} def
  2555. %PSL_Begin_Trailer
  2556. %%PageTrailer
  2557. U
  2558. showpage
  2559. %%Trailer
  2560. end
  2561. %%EOF
Tip!

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

Comments

Loading...