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

symbol_orientation_cart.ps 61 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
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.2.0_6bfbe61_2021.03.11 [64-bit] Document from text
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Mar 11 14:38:24 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. 2362 472 TM
  702. % PostScript produced by:
  703. %@GMT: gmt text -R0/4.51626/0/9.21808 -Jx1i -N -F+jBC+f23.52p,Helvetica-Bold,black @GMTAPI@-S-I-D-D-N-N-000000 -Xr1.9685i -Yr0.393701i --GMT_HISTORY=readonly
  704. %@PROJ: xy 0.00000000 4.51626000 0.00000000 9.21808000 0.000 4.516 0.000 9.218 +xy
  705. %%BeginObject PSL_Layer_1
  706. 0 setlinecap
  707. 0 setlinejoin
  708. 3.32550952342 setmiterlimit
  709. PSL_font_encode 1 get 0 eq {Standard+_Encoding /Helvetica-Bold /Helvetica-Bold PSL_reencode PSL_font_encode 1 1 put} if
  710. 2710 11369 M 392 F1
  711. PSL_font_encode 10 get 0 eq {Standard+_Encoding /Courier-Oblique /Courier-Oblique PSL_reencode PSL_font_encode 10 1 put} if
  712. V MU 0 0 M (Symbol Orientation ) FP 392 F10 (-S~:+sk+ap) FP pathbbox N pop exch pop add U -2 div 0 G
  713. (Symbol Orientation ) Z
  714. 392 F10 (-S~:+sk+ap) Z
  715. %%EndObject
  716. PSL_plot_completion /PSL_plot_completion {} def
  717. 0 A
  718. FQ
  719. O0
  720. 0 8463 TM
  721. % PostScript produced by:
  722. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa0i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  723. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  724. %%BeginObject PSL_Layer_2
  725. 0 setlinecap
  726. 0 setlinejoin
  727. 3.32550952342 setmiterlimit
  728. /PSL_plot_completion {
  729. V
  730. 0 8463 T
  731. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  732. 224 F0
  733. (a\)) tl Z
  734. U
  735. }!
  736. 4 W
  737. 0 A
  738. 0 0 M
  739. 0 2598 D
  740. S
  741. 1299 0 M
  742. 0 2598 D
  743. S
  744. 2598 0 M
  745. 0 2598 D
  746. S
  747. 0 0 M
  748. 2598 0 D
  749. S
  750. 0 1299 M
  751. 2598 0 D
  752. S
  753. 0 2598 M
  754. 2598 0 D
  755. S
  756. 21 W
  757. /PSL_slant_y 0 def /PSL_slant_x 0 def
  758. 2 setlinecap
  759. N 0 2598 M 0 -2598 D S
  760. /PSL_A0_y 56 def
  761. /PSL_A1_y 0 def
  762. 7 W
  763. N 0 0 M -56 0 D S
  764. N 0 650 M -56 0 D S
  765. N 0 1299 M -56 0 D S
  766. N 0 1949 M -56 0 D S
  767. N 0 2598 M -56 0 D S
  768. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  769. 2598 0 T
  770. 21 W
  771. N 0 2598 M 0 -2598 D S
  772. /PSL_A0_y 56 def
  773. /PSL_A1_y 0 def
  774. 7 W
  775. N 0 0 M 56 0 D S
  776. N 0 650 M 56 0 D S
  777. N 0 1299 M 56 0 D S
  778. N 0 1949 M 56 0 D S
  779. N 0 2598 M 56 0 D S
  780. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  781. -2598 0 T
  782. 21 W
  783. N 0 0 M 2598 0 D S
  784. /PSL_A0_y 56 def
  785. /PSL_A1_y 0 def
  786. 7 W
  787. N 0 0 M 0 -56 D S
  788. N 650 0 M 0 -56 D S
  789. N 1299 0 M 0 -56 D S
  790. N 1949 0 M 0 -56 D S
  791. N 2598 0 M 0 -56 D S
  792. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  793. 0 2598 T
  794. 21 W
  795. N 0 0 M 2598 0 D S
  796. /PSL_A0_y 56 def
  797. /PSL_A1_y 0 def
  798. 7 W
  799. N 0 0 M 0 56 D S
  800. N 650 0 M 0 56 D S
  801. N 1299 0 M 0 56 D S
  802. N 1949 0 M 0 56 D S
  803. N 2598 0 M 0 56 D S
  804. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  805. 0 -2598 T
  806. 0 setlinecap
  807. 0 A
  808. %%EndObject
  809. 0 -8463 TM
  810. 0 A
  811. FQ
  812. O0
  813. 0 8463 TM
  814. % PostScript produced by:
  815. %@GMT: gmt plot pathWE+ap.txt -W2p,darkgrey,8_4 -S~n1:+skdir/1c+p1p,black+gwhite+ap -Xa0i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  816. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  817. %%BeginObject PSL_Layer_3
  818. 0 setlinecap
  819. 0 setlinejoin
  820. 3.32550952342 setmiterlimit
  821. V
  822. 33 W
  823. [133 67] 0 B
  824. 0.663 A
  825. clipsave
  826. 0 0 M
  827. 2598 0 D
  828. 0 2598 D
  829. -2598 0 D
  830. P
  831. PSL_clip N
  832. 650 1819 M
  833. 1299 260 D
  834. S
  835. 650 1299 M
  836. 1299 0 D
  837. S
  838. 650 780 M
  839. 1299 -260 D
  840. S
  841. PSL_cliprestore
  842. U
  843. [] 0 B
  844. 0 A
  845. FQ
  846. O0
  847. 0 0 TM
  848. % PostScript produced by:
  849. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41261 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  850. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  851. %%BeginObject PSL_Layer_4
  852. 0 setlinecap
  853. 0 setlinejoin
  854. 3.32550952342 setmiterlimit
  855. clipsave
  856. 0 0 M
  857. 2598 0 D
  858. 0 2598 D
  859. -2598 0 D
  860. P
  861. PSL_clip N
  862. V
  863. 4 W
  864. {1 A} FS
  865. O1
  866. 17 W
  867. V 1299 1949 T
  868. 11.309932474 R
  869. -472 -118 472 -118 2 -236 118 SP
  870. {1 0 0 C} FS
  871. O0
  872. 47 -236 118 Sc
  873. {0 1 0 C} FS
  874. 47 -236 -118 Sc
  875. U
  876. {1 A} FS
  877. O1
  878. V 1299 1299 T
  879. -472 -118 472 -118 2 -236 118 SP
  880. {1 0 0 C} FS
  881. O0
  882. 47 -236 118 Sc
  883. {0 1 0 C} FS
  884. 47 -236 -118 Sc
  885. U
  886. {1 A} FS
  887. O1
  888. V 1299 650 T
  889. -11.309932474 R
  890. -472 -118 472 -118 2 -236 118 SP
  891. {1 0 0 C} FS
  892. O0
  893. 47 -236 118 Sc
  894. {0 1 0 C} FS
  895. 47 -236 -118 Sc
  896. U
  897. U
  898. PSL_cliprestore
  899. %%EndObject
  900. 0 0 TM
  901. %%EndObject
  902. 0 -8463 TM
  903. 0 A
  904. FQ
  905. O0
  906. 0 8463 TM
  907. % PostScript produced by:
  908. %@GMT: gmt plot pathWE+ap.txt '-SqN-1:+i+l START ' -Xa0i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  909. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  910. %%BeginObject PSL_Layer_5
  911. 0 setlinecap
  912. 0 setlinejoin
  913. 3.32550952342 setmiterlimit
  914. V
  915. clipsave
  916. 0 0 M
  917. 2598 0 D
  918. 0 2598 D
  919. -2598 0 D
  920. P
  921. PSL_clip N
  922. PSL_cliprestore
  923. U
  924. V
  925. /PSL_setboxpen {4 W 0 A [] 0 B} def
  926. /PSL_setboxrgb {1 A} def
  927. /PSL_path_pen [
  928. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  929. (4 W 0 A \[\] 0 B)
  930. (4 W 0 A \[\] 0 B)
  931. (4 W 0 A \[\] 0 B)
  932. ] def
  933. /PSL_label_justify [ 7 7 7 ] def
  934. /PSL_label_font [
  935. (0 A 150 F0)
  936. (0 A 150 F0)
  937. (0 A 150 F0)
  938. ] def
  939. /PSL_gap_x 22 def
  940. /PSL_gap_y 22 def
  941. /PSL_label_angle [ 11.31 0.00 348.69 ] def
  942. /PSL_label_str [
  943. ( START )
  944. ( START )
  945. ( START )
  946. ] def
  947. /PSL_label_n [ 1 1 1 ] def
  948. /PSL_n_paths 3 def
  949. /PSL_n_labels 3 def
  950. /PSL_txt_x [ 650 650 650 ] def
  951. /PSL_txt_y [ 1819 1299 780 ] def
  952. /PSL_txt_n [ 3 ] def
  953. PSL_set_label_heights
  954. 2 PSL_straight_path_labels
  955. V
  956. 4 PSL_straight_path_clip
  957. PSL_cliprestore
  958. U
  959. [] 0 B
  960. U
  961. %%EndObject
  962. 0 -8463 TM
  963. 0 A
  964. FQ
  965. O0
  966. 0 8463 TM
  967. % PostScript produced by:
  968. %@GMT: gmt plot pathWE+ap.txt '-SqN+1:+i+l END ' -Xa0i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  969. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  970. %%BeginObject PSL_Layer_6
  971. 0 setlinecap
  972. 0 setlinejoin
  973. 3.32550952342 setmiterlimit
  974. V
  975. clipsave
  976. 0 0 M
  977. 2598 0 D
  978. 0 2598 D
  979. -2598 0 D
  980. P
  981. PSL_clip N
  982. PSL_cliprestore
  983. U
  984. V
  985. /PSL_setboxpen {4 W 0 A [] 0 B} def
  986. /PSL_setboxrgb {1 A} def
  987. /PSL_path_pen [
  988. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  989. (4 W 0 A \[\] 0 B)
  990. (4 W 0 A \[\] 0 B)
  991. (4 W 0 A \[\] 0 B)
  992. ] def
  993. /PSL_label_justify [ 5 5 5 ] def
  994. /PSL_label_font [
  995. (0 A 150 F0)
  996. (0 A 150 F0)
  997. (0 A 150 F0)
  998. ] def
  999. /PSL_gap_x 22 def
  1000. /PSL_gap_y 22 def
  1001. /PSL_label_angle [ 11.31 0.00 348.69 ] def
  1002. /PSL_label_str [
  1003. ( END )
  1004. ( END )
  1005. ( END )
  1006. ] def
  1007. /PSL_label_n [ 1 1 1 ] def
  1008. /PSL_n_paths 3 def
  1009. /PSL_n_labels 3 def
  1010. /PSL_txt_x [ 1949 1949 1949 ] def
  1011. /PSL_txt_y [ 2079 1299 520 ] def
  1012. /PSL_txt_n [ 3 ] def
  1013. PSL_set_label_heights
  1014. 2 PSL_straight_path_labels
  1015. V
  1016. 4 PSL_straight_path_clip
  1017. PSL_cliprestore
  1018. U
  1019. [] 0 B
  1020. U
  1021. %%EndObject
  1022. 0 -8463 TM
  1023. PSL_plot_completion /PSL_plot_completion {} def
  1024. 0 A
  1025. FQ
  1026. O0
  1027. 2877 8463 TM
  1028. % PostScript produced by:
  1029. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa2.3976i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  1030. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1031. %%BeginObject PSL_Layer_2
  1032. 0 setlinecap
  1033. 0 setlinejoin
  1034. 3.32550952342 setmiterlimit
  1035. /PSL_plot_completion {
  1036. V
  1037. 2877 8463 T
  1038. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1039. 224 F0
  1040. (b\)) tl Z
  1041. U
  1042. }!
  1043. 4 W
  1044. 0 A
  1045. 0 0 M
  1046. 0 2598 D
  1047. S
  1048. 1299 0 M
  1049. 0 2598 D
  1050. S
  1051. 2598 0 M
  1052. 0 2598 D
  1053. S
  1054. 0 0 M
  1055. 2598 0 D
  1056. S
  1057. 0 1299 M
  1058. 2598 0 D
  1059. S
  1060. 0 2598 M
  1061. 2598 0 D
  1062. S
  1063. 21 W
  1064. /PSL_slant_y 0 def /PSL_slant_x 0 def
  1065. 2 setlinecap
  1066. N 0 2598 M 0 -2598 D S
  1067. /PSL_A0_y 56 def
  1068. /PSL_A1_y 0 def
  1069. 7 W
  1070. N 0 0 M -56 0 D S
  1071. N 0 650 M -56 0 D S
  1072. N 0 1299 M -56 0 D S
  1073. N 0 1949 M -56 0 D S
  1074. N 0 2598 M -56 0 D S
  1075. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1076. 2598 0 T
  1077. 21 W
  1078. N 0 2598 M 0 -2598 D S
  1079. /PSL_A0_y 56 def
  1080. /PSL_A1_y 0 def
  1081. 7 W
  1082. N 0 0 M 56 0 D S
  1083. N 0 650 M 56 0 D S
  1084. N 0 1299 M 56 0 D S
  1085. N 0 1949 M 56 0 D S
  1086. N 0 2598 M 56 0 D S
  1087. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1088. -2598 0 T
  1089. 21 W
  1090. N 0 0 M 2598 0 D S
  1091. /PSL_A0_y 56 def
  1092. /PSL_A1_y 0 def
  1093. 7 W
  1094. N 0 0 M 0 -56 D S
  1095. N 650 0 M 0 -56 D S
  1096. N 1299 0 M 0 -56 D S
  1097. N 1949 0 M 0 -56 D S
  1098. N 2598 0 M 0 -56 D S
  1099. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1100. 0 2598 T
  1101. 21 W
  1102. N 0 0 M 2598 0 D S
  1103. /PSL_A0_y 56 def
  1104. /PSL_A1_y 0 def
  1105. 7 W
  1106. N 0 0 M 0 56 D S
  1107. N 650 0 M 0 56 D S
  1108. N 1299 0 M 0 56 D S
  1109. N 1949 0 M 0 56 D S
  1110. N 2598 0 M 0 56 D S
  1111. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1112. 0 -2598 T
  1113. 0 setlinecap
  1114. 0 A
  1115. %%EndObject
  1116. -2877 -8463 TM
  1117. 0 A
  1118. FQ
  1119. O0
  1120. 2877 8463 TM
  1121. % PostScript produced by:
  1122. %@GMT: gmt plot pathEW+ap.txt -W2p,darkgrey,8_4 -S~n1:+skdir/1c+p1p,black+gwhite+ap -Xa2.3976i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  1123. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1124. %%BeginObject PSL_Layer_3
  1125. 0 setlinecap
  1126. 0 setlinejoin
  1127. 3.32550952342 setmiterlimit
  1128. V
  1129. 33 W
  1130. [133 67] 0 B
  1131. 0.663 A
  1132. clipsave
  1133. 0 0 M
  1134. 2598 0 D
  1135. 0 2598 D
  1136. -2598 0 D
  1137. P
  1138. PSL_clip N
  1139. 1949 2079 M
  1140. -1299 -260 D
  1141. S
  1142. 1949 1299 M
  1143. -1299 0 D
  1144. S
  1145. 1949 520 M
  1146. -1299 260 D
  1147. S
  1148. PSL_cliprestore
  1149. U
  1150. [] 0 B
  1151. 0 A
  1152. FQ
  1153. O0
  1154. 0 0 TM
  1155. % PostScript produced by:
  1156. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41370 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  1157. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  1158. %%BeginObject PSL_Layer_4
  1159. 0 setlinecap
  1160. 0 setlinejoin
  1161. 3.32550952342 setmiterlimit
  1162. clipsave
  1163. 0 0 M
  1164. 2598 0 D
  1165. 0 2598 D
  1166. -2598 0 D
  1167. P
  1168. PSL_clip N
  1169. V
  1170. 4 W
  1171. {1 A} FS
  1172. O1
  1173. 17 W
  1174. V 1299 1949 T
  1175. -168.690067526 R
  1176. -472 -118 472 -118 2 -236 118 SP
  1177. {1 0 0 C} FS
  1178. O0
  1179. 47 -236 118 Sc
  1180. {0 1 0 C} FS
  1181. 47 -236 -118 Sc
  1182. U
  1183. {1 A} FS
  1184. O1
  1185. V 1299 1299 T
  1186. 180 R
  1187. -472 -118 472 -118 2 -236 118 SP
  1188. {1 0 0 C} FS
  1189. O0
  1190. 47 -236 118 Sc
  1191. {0 1 0 C} FS
  1192. 47 -236 -118 Sc
  1193. U
  1194. {1 A} FS
  1195. O1
  1196. V 1299 650 T
  1197. 168.690067526 R
  1198. -472 -118 472 -118 2 -236 118 SP
  1199. {1 0 0 C} FS
  1200. O0
  1201. 47 -236 118 Sc
  1202. {0 1 0 C} FS
  1203. 47 -236 -118 Sc
  1204. U
  1205. U
  1206. PSL_cliprestore
  1207. %%EndObject
  1208. 0 0 TM
  1209. %%EndObject
  1210. -2877 -8463 TM
  1211. 0 A
  1212. FQ
  1213. O0
  1214. 2877 8463 TM
  1215. % PostScript produced by:
  1216. %@GMT: gmt plot pathEW+ap.txt '-SqN-1:+i+l START ' -Xa2.3976i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  1217. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1218. %%BeginObject PSL_Layer_5
  1219. 0 setlinecap
  1220. 0 setlinejoin
  1221. 3.32550952342 setmiterlimit
  1222. V
  1223. clipsave
  1224. 0 0 M
  1225. 2598 0 D
  1226. 0 2598 D
  1227. -2598 0 D
  1228. P
  1229. PSL_clip N
  1230. PSL_cliprestore
  1231. U
  1232. V
  1233. /PSL_setboxpen {4 W 0 A [] 0 B} def
  1234. /PSL_setboxrgb {1 A} def
  1235. /PSL_path_pen [
  1236. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1237. (4 W 0 A \[\] 0 B)
  1238. (4 W 0 A \[\] 0 B)
  1239. (4 W 0 A \[\] 0 B)
  1240. ] def
  1241. /PSL_label_justify [ 5 5 5 ] def
  1242. /PSL_label_font [
  1243. (0 A 150 F0)
  1244. (0 A 150 F0)
  1245. (0 A 150 F0)
  1246. ] def
  1247. /PSL_gap_x 22 def
  1248. /PSL_gap_y 22 def
  1249. /PSL_label_angle [ 11.31 0.00 -11.31 ] def
  1250. /PSL_label_str [
  1251. ( START )
  1252. ( START )
  1253. ( START )
  1254. ] def
  1255. /PSL_label_n [ 1 1 1 ] def
  1256. /PSL_n_paths 3 def
  1257. /PSL_n_labels 3 def
  1258. /PSL_txt_x [ 1949 1949 1949 ] def
  1259. /PSL_txt_y [ 2079 1299 520 ] def
  1260. /PSL_txt_n [ 3 ] def
  1261. PSL_set_label_heights
  1262. 2 PSL_straight_path_labels
  1263. V
  1264. 4 PSL_straight_path_clip
  1265. PSL_cliprestore
  1266. U
  1267. [] 0 B
  1268. U
  1269. %%EndObject
  1270. -2877 -8463 TM
  1271. 0 A
  1272. FQ
  1273. O0
  1274. 2877 8463 TM
  1275. % PostScript produced by:
  1276. %@GMT: gmt plot pathEW+ap.txt '-SqN+1:+i+l END ' -Xa2.3976i -Ya7.0527i -R-1/1/-1/1 -JX5.5c
  1277. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1278. %%BeginObject PSL_Layer_6
  1279. 0 setlinecap
  1280. 0 setlinejoin
  1281. 3.32550952342 setmiterlimit
  1282. V
  1283. clipsave
  1284. 0 0 M
  1285. 2598 0 D
  1286. 0 2598 D
  1287. -2598 0 D
  1288. P
  1289. PSL_clip N
  1290. PSL_cliprestore
  1291. U
  1292. V
  1293. /PSL_setboxpen {4 W 0 A [] 0 B} def
  1294. /PSL_setboxrgb {1 A} def
  1295. /PSL_path_pen [
  1296. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1297. (4 W 0 A \[\] 0 B)
  1298. (4 W 0 A \[\] 0 B)
  1299. (4 W 0 A \[\] 0 B)
  1300. ] def
  1301. /PSL_label_justify [ 7 7 7 ] def
  1302. /PSL_label_font [
  1303. (0 A 150 F0)
  1304. (0 A 150 F0)
  1305. (0 A 150 F0)
  1306. ] def
  1307. /PSL_gap_x 22 def
  1308. /PSL_gap_y 22 def
  1309. /PSL_label_angle [ 11.31 0.00 -11.31 ] def
  1310. /PSL_label_str [
  1311. ( END )
  1312. ( END )
  1313. ( END )
  1314. ] def
  1315. /PSL_label_n [ 1 1 1 ] def
  1316. /PSL_n_paths 3 def
  1317. /PSL_n_labels 3 def
  1318. /PSL_txt_x [ 650 650 650 ] def
  1319. /PSL_txt_y [ 1819 1299 780 ] def
  1320. /PSL_txt_n [ 3 ] def
  1321. PSL_set_label_heights
  1322. 2 PSL_straight_path_labels
  1323. V
  1324. 4 PSL_straight_path_clip
  1325. PSL_cliprestore
  1326. U
  1327. [] 0 B
  1328. U
  1329. %%EndObject
  1330. -2877 -8463 TM
  1331. PSL_plot_completion /PSL_plot_completion {} def
  1332. 0 A
  1333. FQ
  1334. O0
  1335. 0 5586 TM
  1336. % PostScript produced by:
  1337. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa0i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1338. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1339. %%BeginObject PSL_Layer_2
  1340. 0 setlinecap
  1341. 0 setlinejoin
  1342. 3.32550952342 setmiterlimit
  1343. /PSL_plot_completion {
  1344. V
  1345. 0 5586 T
  1346. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1347. 224 F0
  1348. (c\)) tl Z
  1349. U
  1350. }!
  1351. 4 W
  1352. 0 A
  1353. 0 0 M
  1354. 0 2598 D
  1355. S
  1356. 1299 0 M
  1357. 0 2598 D
  1358. S
  1359. 2598 0 M
  1360. 0 2598 D
  1361. S
  1362. 0 0 M
  1363. 2598 0 D
  1364. S
  1365. 0 1299 M
  1366. 2598 0 D
  1367. S
  1368. 0 2598 M
  1369. 2598 0 D
  1370. S
  1371. 21 W
  1372. /PSL_slant_y 0 def /PSL_slant_x 0 def
  1373. 2 setlinecap
  1374. N 0 2598 M 0 -2598 D S
  1375. /PSL_A0_y 56 def
  1376. /PSL_A1_y 0 def
  1377. 7 W
  1378. N 0 0 M -56 0 D S
  1379. N 0 650 M -56 0 D S
  1380. N 0 1299 M -56 0 D S
  1381. N 0 1949 M -56 0 D S
  1382. N 0 2598 M -56 0 D S
  1383. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1384. 2598 0 T
  1385. 21 W
  1386. N 0 2598 M 0 -2598 D S
  1387. /PSL_A0_y 56 def
  1388. /PSL_A1_y 0 def
  1389. 7 W
  1390. N 0 0 M 56 0 D S
  1391. N 0 650 M 56 0 D S
  1392. N 0 1299 M 56 0 D S
  1393. N 0 1949 M 56 0 D S
  1394. N 0 2598 M 56 0 D S
  1395. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1396. -2598 0 T
  1397. 21 W
  1398. N 0 0 M 2598 0 D S
  1399. /PSL_A0_y 56 def
  1400. /PSL_A1_y 0 def
  1401. 7 W
  1402. N 0 0 M 0 -56 D S
  1403. N 650 0 M 0 -56 D S
  1404. N 1299 0 M 0 -56 D S
  1405. N 1949 0 M 0 -56 D S
  1406. N 2598 0 M 0 -56 D S
  1407. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1408. 0 2598 T
  1409. 21 W
  1410. N 0 0 M 2598 0 D S
  1411. /PSL_A0_y 56 def
  1412. /PSL_A1_y 0 def
  1413. 7 W
  1414. N 0 0 M 0 56 D S
  1415. N 650 0 M 0 56 D S
  1416. N 1299 0 M 0 56 D S
  1417. N 1949 0 M 0 56 D S
  1418. N 2598 0 M 0 56 D S
  1419. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1420. 0 -2598 T
  1421. 0 setlinecap
  1422. 0 A
  1423. %%EndObject
  1424. 0 -5586 TM
  1425. 0 A
  1426. FQ
  1427. O0
  1428. 0 5586 TM
  1429. % PostScript produced by:
  1430. %@GMT: gmt plot pathWE_v+ap.txt -W2p,darkgrey,8_4 -S~n1:+skdir/1c+p1p,black+gwhite+ap -Xa0i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1431. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1432. %%BeginObject PSL_Layer_3
  1433. 0 setlinecap
  1434. 0 setlinejoin
  1435. 3.32550952342 setmiterlimit
  1436. V
  1437. 33 W
  1438. [133 67] 0 B
  1439. 0.663 A
  1440. clipsave
  1441. 0 0 M
  1442. 2598 0 D
  1443. 0 2598 D
  1444. -2598 0 D
  1445. P
  1446. PSL_clip N
  1447. 650 1949 M
  1448. 649 0 D
  1449. 0 -1299 D
  1450. 650 0 D
  1451. S
  1452. PSL_cliprestore
  1453. U
  1454. [] 0 B
  1455. 0 A
  1456. FQ
  1457. O0
  1458. 0 0 TM
  1459. % PostScript produced by:
  1460. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41461 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  1461. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  1462. %%BeginObject PSL_Layer_4
  1463. 0 setlinecap
  1464. 0 setlinejoin
  1465. 3.32550952342 setmiterlimit
  1466. clipsave
  1467. 0 0 M
  1468. 2598 0 D
  1469. 0 2598 D
  1470. -2598 0 D
  1471. P
  1472. PSL_clip N
  1473. V
  1474. 4 W
  1475. {1 A} FS
  1476. O1
  1477. 17 W
  1478. V 1299 1299 T
  1479. -90 R
  1480. -472 -118 472 -118 2 -236 118 SP
  1481. {1 0 0 C} FS
  1482. O0
  1483. 47 -236 118 Sc
  1484. {0 1 0 C} FS
  1485. 47 -236 -118 Sc
  1486. U
  1487. U
  1488. PSL_cliprestore
  1489. %%EndObject
  1490. 0 0 TM
  1491. %%EndObject
  1492. 0 -5586 TM
  1493. 0 A
  1494. FQ
  1495. O0
  1496. 0 5586 TM
  1497. % PostScript produced by:
  1498. %@GMT: gmt plot pathWE_v+ap.txt '-SqN-1:+i+l START ' -Xa0i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1499. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1500. %%BeginObject PSL_Layer_5
  1501. 0 setlinecap
  1502. 0 setlinejoin
  1503. 3.32550952342 setmiterlimit
  1504. V
  1505. clipsave
  1506. 0 0 M
  1507. 2598 0 D
  1508. 0 2598 D
  1509. -2598 0 D
  1510. P
  1511. PSL_clip N
  1512. PSL_cliprestore
  1513. U
  1514. V
  1515. /PSL_setboxpen {4 W 0 A [] 0 B} def
  1516. /PSL_setboxrgb {1 A} def
  1517. /PSL_path_pen [
  1518. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1519. (4 W 0 A \[\] 0 B)
  1520. ] def
  1521. /PSL_label_justify [ 7 ] def
  1522. /PSL_label_font [
  1523. (0 A 150 F0)
  1524. ] def
  1525. /PSL_gap_x 22 def
  1526. /PSL_gap_y 22 def
  1527. /PSL_label_angle [ 0.00 ] def
  1528. /PSL_label_str [
  1529. ( START )
  1530. ] def
  1531. /PSL_label_n [ 1 ] def
  1532. /PSL_n_paths 1 def
  1533. /PSL_n_labels 1 def
  1534. /PSL_txt_x [ 650 ] def
  1535. /PSL_txt_y [ 1949 ] def
  1536. /PSL_txt_n [ 1 ] def
  1537. PSL_set_label_heights
  1538. 2 PSL_straight_path_labels
  1539. V
  1540. 4 PSL_straight_path_clip
  1541. PSL_cliprestore
  1542. U
  1543. [] 0 B
  1544. U
  1545. %%EndObject
  1546. 0 -5586 TM
  1547. 0 A
  1548. FQ
  1549. O0
  1550. 0 5586 TM
  1551. % PostScript produced by:
  1552. %@GMT: gmt plot pathWE_v+ap.txt '-SqN+1:+i+l END ' -Xa0i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1553. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1554. %%BeginObject PSL_Layer_6
  1555. 0 setlinecap
  1556. 0 setlinejoin
  1557. 3.32550952342 setmiterlimit
  1558. V
  1559. clipsave
  1560. 0 0 M
  1561. 2598 0 D
  1562. 0 2598 D
  1563. -2598 0 D
  1564. P
  1565. PSL_clip N
  1566. PSL_cliprestore
  1567. U
  1568. V
  1569. /PSL_setboxpen {4 W 0 A [] 0 B} def
  1570. /PSL_setboxrgb {1 A} def
  1571. /PSL_path_pen [
  1572. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1573. (4 W 0 A \[\] 0 B)
  1574. ] def
  1575. /PSL_label_justify [ 7 ] def
  1576. /PSL_label_font [
  1577. (0 A 150 F0)
  1578. ] def
  1579. /PSL_gap_x 22 def
  1580. /PSL_gap_y 22 def
  1581. /PSL_label_angle [ 0.00 ] def
  1582. /PSL_label_str [
  1583. ( END )
  1584. ] def
  1585. /PSL_label_n [ 1 ] def
  1586. /PSL_n_paths 1 def
  1587. /PSL_n_labels 1 def
  1588. /PSL_txt_x [ 1949 ] def
  1589. /PSL_txt_y [ 650 ] def
  1590. /PSL_txt_n [ 1 ] def
  1591. PSL_set_label_heights
  1592. 2 PSL_straight_path_labels
  1593. V
  1594. 4 PSL_straight_path_clip
  1595. PSL_cliprestore
  1596. U
  1597. [] 0 B
  1598. U
  1599. %%EndObject
  1600. 0 -5586 TM
  1601. PSL_plot_completion /PSL_plot_completion {} def
  1602. 0 A
  1603. FQ
  1604. O0
  1605. 2877 5586 TM
  1606. % PostScript produced by:
  1607. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa2.3976i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1608. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1609. %%BeginObject PSL_Layer_2
  1610. 0 setlinecap
  1611. 0 setlinejoin
  1612. 3.32550952342 setmiterlimit
  1613. /PSL_plot_completion {
  1614. V
  1615. 2877 5586 T
  1616. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1617. 224 F0
  1618. (d\)) tl Z
  1619. U
  1620. }!
  1621. 4 W
  1622. 0 A
  1623. 0 0 M
  1624. 0 2598 D
  1625. S
  1626. 1299 0 M
  1627. 0 2598 D
  1628. S
  1629. 2598 0 M
  1630. 0 2598 D
  1631. S
  1632. 0 0 M
  1633. 2598 0 D
  1634. S
  1635. 0 1299 M
  1636. 2598 0 D
  1637. S
  1638. 0 2598 M
  1639. 2598 0 D
  1640. S
  1641. 21 W
  1642. /PSL_slant_y 0 def /PSL_slant_x 0 def
  1643. 2 setlinecap
  1644. N 0 2598 M 0 -2598 D S
  1645. /PSL_A0_y 56 def
  1646. /PSL_A1_y 0 def
  1647. 7 W
  1648. N 0 0 M -56 0 D S
  1649. N 0 650 M -56 0 D S
  1650. N 0 1299 M -56 0 D S
  1651. N 0 1949 M -56 0 D S
  1652. N 0 2598 M -56 0 D S
  1653. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1654. 2598 0 T
  1655. 21 W
  1656. N 0 2598 M 0 -2598 D S
  1657. /PSL_A0_y 56 def
  1658. /PSL_A1_y 0 def
  1659. 7 W
  1660. N 0 0 M 56 0 D S
  1661. N 0 650 M 56 0 D S
  1662. N 0 1299 M 56 0 D S
  1663. N 0 1949 M 56 0 D S
  1664. N 0 2598 M 56 0 D S
  1665. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1666. -2598 0 T
  1667. 21 W
  1668. N 0 0 M 2598 0 D S
  1669. /PSL_A0_y 56 def
  1670. /PSL_A1_y 0 def
  1671. 7 W
  1672. N 0 0 M 0 -56 D S
  1673. N 650 0 M 0 -56 D S
  1674. N 1299 0 M 0 -56 D S
  1675. N 1949 0 M 0 -56 D S
  1676. N 2598 0 M 0 -56 D S
  1677. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1678. 0 2598 T
  1679. 21 W
  1680. N 0 0 M 2598 0 D S
  1681. /PSL_A0_y 56 def
  1682. /PSL_A1_y 0 def
  1683. 7 W
  1684. N 0 0 M 0 56 D S
  1685. N 650 0 M 0 56 D S
  1686. N 1299 0 M 0 56 D S
  1687. N 1949 0 M 0 56 D S
  1688. N 2598 0 M 0 56 D S
  1689. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1690. 0 -2598 T
  1691. 0 setlinecap
  1692. 0 A
  1693. %%EndObject
  1694. -2877 -5586 TM
  1695. 0 A
  1696. FQ
  1697. O0
  1698. 2877 5586 TM
  1699. % PostScript produced by:
  1700. %@GMT: gmt plot pathEW_v+ap.txt -W2p,darkgrey,8_4 -S~n1:+skdir/1c+p1p,black+gwhite+ap -Xa2.3976i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1701. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1702. %%BeginObject PSL_Layer_3
  1703. 0 setlinecap
  1704. 0 setlinejoin
  1705. 3.32550952342 setmiterlimit
  1706. V
  1707. 33 W
  1708. [133 67] 0 B
  1709. 0.663 A
  1710. clipsave
  1711. 0 0 M
  1712. 2598 0 D
  1713. 0 2598 D
  1714. -2598 0 D
  1715. P
  1716. PSL_clip N
  1717. 1949 650 M
  1718. -650 0 D
  1719. 0 1299 D
  1720. -649 0 D
  1721. S
  1722. PSL_cliprestore
  1723. U
  1724. [] 0 B
  1725. 0 A
  1726. FQ
  1727. O0
  1728. 0 0 TM
  1729. % PostScript produced by:
  1730. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41583 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  1731. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  1732. %%BeginObject PSL_Layer_4
  1733. 0 setlinecap
  1734. 0 setlinejoin
  1735. 3.32550952342 setmiterlimit
  1736. clipsave
  1737. 0 0 M
  1738. 2598 0 D
  1739. 0 2598 D
  1740. -2598 0 D
  1741. P
  1742. PSL_clip N
  1743. V
  1744. 4 W
  1745. {1 A} FS
  1746. O1
  1747. 17 W
  1748. V 1299 1299 T
  1749. 90 R
  1750. -472 -118 472 -118 2 -236 118 SP
  1751. {1 0 0 C} FS
  1752. O0
  1753. 47 -236 118 Sc
  1754. {0 1 0 C} FS
  1755. 47 -236 -118 Sc
  1756. U
  1757. U
  1758. PSL_cliprestore
  1759. %%EndObject
  1760. 0 0 TM
  1761. %%EndObject
  1762. -2877 -5586 TM
  1763. 0 A
  1764. FQ
  1765. O0
  1766. 2877 5586 TM
  1767. % PostScript produced by:
  1768. %@GMT: gmt plot pathEW_v+ap.txt '-SqN-1:+i+l START ' -Xa2.3976i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1769. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1770. %%BeginObject PSL_Layer_5
  1771. 0 setlinecap
  1772. 0 setlinejoin
  1773. 3.32550952342 setmiterlimit
  1774. V
  1775. clipsave
  1776. 0 0 M
  1777. 2598 0 D
  1778. 0 2598 D
  1779. -2598 0 D
  1780. P
  1781. PSL_clip N
  1782. PSL_cliprestore
  1783. U
  1784. V
  1785. /PSL_setboxpen {4 W 0 A [] 0 B} def
  1786. /PSL_setboxrgb {1 A} def
  1787. /PSL_path_pen [
  1788. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1789. (4 W 0 A \[\] 0 B)
  1790. ] def
  1791. /PSL_label_justify [ 7 ] def
  1792. /PSL_label_font [
  1793. (0 A 150 F0)
  1794. ] def
  1795. /PSL_gap_x 22 def
  1796. /PSL_gap_y 22 def
  1797. /PSL_label_angle [ 0.00 ] def
  1798. /PSL_label_str [
  1799. ( START )
  1800. ] def
  1801. /PSL_label_n [ 1 ] def
  1802. /PSL_n_paths 1 def
  1803. /PSL_n_labels 1 def
  1804. /PSL_txt_x [ 1949 ] def
  1805. /PSL_txt_y [ 650 ] def
  1806. /PSL_txt_n [ 1 ] def
  1807. PSL_set_label_heights
  1808. 2 PSL_straight_path_labels
  1809. V
  1810. 4 PSL_straight_path_clip
  1811. PSL_cliprestore
  1812. U
  1813. [] 0 B
  1814. U
  1815. %%EndObject
  1816. -2877 -5586 TM
  1817. 0 A
  1818. FQ
  1819. O0
  1820. 2877 5586 TM
  1821. % PostScript produced by:
  1822. %@GMT: gmt plot pathEW_v+ap.txt '-SqN+1:+i+l END ' -Xa2.3976i -Ya4.6552i -R-1/1/-1/1 -JX5.5c
  1823. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1824. %%BeginObject PSL_Layer_6
  1825. 0 setlinecap
  1826. 0 setlinejoin
  1827. 3.32550952342 setmiterlimit
  1828. V
  1829. clipsave
  1830. 0 0 M
  1831. 2598 0 D
  1832. 0 2598 D
  1833. -2598 0 D
  1834. P
  1835. PSL_clip N
  1836. PSL_cliprestore
  1837. U
  1838. V
  1839. /PSL_setboxpen {4 W 0 A [] 0 B} def
  1840. /PSL_setboxrgb {1 A} def
  1841. /PSL_path_pen [
  1842. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1843. (4 W 0 A \[\] 0 B)
  1844. ] def
  1845. /PSL_label_justify [ 7 ] def
  1846. /PSL_label_font [
  1847. (0 A 150 F0)
  1848. ] def
  1849. /PSL_gap_x 22 def
  1850. /PSL_gap_y 22 def
  1851. /PSL_label_angle [ 0.00 ] def
  1852. /PSL_label_str [
  1853. ( END )
  1854. ] def
  1855. /PSL_label_n [ 1 ] def
  1856. /PSL_n_paths 1 def
  1857. /PSL_n_labels 1 def
  1858. /PSL_txt_x [ 650 ] def
  1859. /PSL_txt_y [ 1949 ] def
  1860. /PSL_txt_n [ 1 ] def
  1861. PSL_set_label_heights
  1862. 2 PSL_straight_path_labels
  1863. V
  1864. 4 PSL_straight_path_clip
  1865. PSL_cliprestore
  1866. U
  1867. [] 0 B
  1868. U
  1869. %%EndObject
  1870. -2877 -5586 TM
  1871. PSL_plot_completion /PSL_plot_completion {} def
  1872. 0 A
  1873. FQ
  1874. O0
  1875. 0 2709 TM
  1876. % PostScript produced by:
  1877. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa0i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  1878. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1879. %%BeginObject PSL_Layer_2
  1880. 0 setlinecap
  1881. 0 setlinejoin
  1882. 3.32550952342 setmiterlimit
  1883. /PSL_plot_completion {
  1884. V
  1885. 0 2709 T
  1886. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1887. 224 F0
  1888. (e\)) tl Z
  1889. U
  1890. }!
  1891. 4 W
  1892. 0 A
  1893. 0 0 M
  1894. 0 2598 D
  1895. S
  1896. 1299 0 M
  1897. 0 2598 D
  1898. S
  1899. 2598 0 M
  1900. 0 2598 D
  1901. S
  1902. 0 0 M
  1903. 2598 0 D
  1904. S
  1905. 0 1299 M
  1906. 2598 0 D
  1907. S
  1908. 0 2598 M
  1909. 2598 0 D
  1910. S
  1911. 21 W
  1912. /PSL_slant_y 0 def /PSL_slant_x 0 def
  1913. 2 setlinecap
  1914. N 0 2598 M 0 -2598 D S
  1915. /PSL_A0_y 56 def
  1916. /PSL_A1_y 0 def
  1917. 7 W
  1918. N 0 0 M -56 0 D S
  1919. N 0 650 M -56 0 D S
  1920. N 0 1299 M -56 0 D S
  1921. N 0 1949 M -56 0 D S
  1922. N 0 2598 M -56 0 D S
  1923. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1924. 2598 0 T
  1925. 21 W
  1926. N 0 2598 M 0 -2598 D S
  1927. /PSL_A0_y 56 def
  1928. /PSL_A1_y 0 def
  1929. 7 W
  1930. N 0 0 M 56 0 D S
  1931. N 0 650 M 56 0 D S
  1932. N 0 1299 M 56 0 D S
  1933. N 0 1949 M 56 0 D S
  1934. N 0 2598 M 56 0 D S
  1935. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1936. -2598 0 T
  1937. 21 W
  1938. N 0 0 M 2598 0 D S
  1939. /PSL_A0_y 56 def
  1940. /PSL_A1_y 0 def
  1941. 7 W
  1942. N 0 0 M 0 -56 D S
  1943. N 650 0 M 0 -56 D S
  1944. N 1299 0 M 0 -56 D S
  1945. N 1949 0 M 0 -56 D S
  1946. N 2598 0 M 0 -56 D S
  1947. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1948. 0 2598 T
  1949. 21 W
  1950. N 0 0 M 2598 0 D S
  1951. /PSL_A0_y 56 def
  1952. /PSL_A1_y 0 def
  1953. 7 W
  1954. N 0 0 M 0 56 D S
  1955. N 650 0 M 0 56 D S
  1956. N 1299 0 M 0 56 D S
  1957. N 1949 0 M 0 56 D S
  1958. N 2598 0 M 0 56 D S
  1959. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1960. 0 -2598 T
  1961. 0 setlinecap
  1962. 0 A
  1963. %%EndObject
  1964. 0 -2709 TM
  1965. 0 A
  1966. FQ
  1967. O0
  1968. 0 2709 TM
  1969. % PostScript produced by:
  1970. %@GMT: gmt plot pathWE_n+ap.txt -W2p,darkgrey,8_4 -S~n3:+skdir/1c+p1p,black+gwhite+ap -Xa0i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  1971. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  1972. %%BeginObject PSL_Layer_3
  1973. 0 setlinecap
  1974. 0 setlinejoin
  1975. 3.32550952342 setmiterlimit
  1976. V
  1977. 33 W
  1978. [133 67] 0 B
  1979. 0.663 A
  1980. clipsave
  1981. 0 0 M
  1982. 2598 0 D
  1983. 0 2598 D
  1984. -2598 0 D
  1985. P
  1986. PSL_clip N
  1987. 650 1949 M
  1988. 0 -1299 D
  1989. 1299 1299 D
  1990. 0 -1299 D
  1991. S
  1992. PSL_cliprestore
  1993. U
  1994. [] 0 B
  1995. 0 A
  1996. FQ
  1997. O0
  1998. 0 0 TM
  1999. % PostScript produced by:
  2000. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41664 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  2001. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  2002. %%BeginObject PSL_Layer_4
  2003. 0 setlinecap
  2004. 0 setlinejoin
  2005. 3.32550952342 setmiterlimit
  2006. clipsave
  2007. 0 0 M
  2008. 2598 0 D
  2009. 0 2598 D
  2010. -2598 0 D
  2011. P
  2012. PSL_clip N
  2013. V
  2014. 4 W
  2015. {1 A} FS
  2016. O1
  2017. 17 W
  2018. V 650 840 T
  2019. -90 R
  2020. -472 -118 472 -118 2 -236 118 SP
  2021. {1 0 0 C} FS
  2022. O0
  2023. 47 -236 118 Sc
  2024. {0 1 0 C} FS
  2025. 47 -236 -118 Sc
  2026. U
  2027. {1 A} FS
  2028. O1
  2029. V 1299 1299 T
  2030. 45 R
  2031. -472 -118 472 -118 2 -236 118 SP
  2032. {1 0 0 C} FS
  2033. O0
  2034. 47 -236 118 Sc
  2035. {0 1 0 C} FS
  2036. 47 -236 -118 Sc
  2037. U
  2038. {1 A} FS
  2039. O1
  2040. V 1949 1759 T
  2041. -90 R
  2042. -472 -118 472 -118 2 -236 118 SP
  2043. {1 0 0 C} FS
  2044. O0
  2045. 47 -236 118 Sc
  2046. {0 1 0 C} FS
  2047. 47 -236 -118 Sc
  2048. U
  2049. U
  2050. PSL_cliprestore
  2051. %%EndObject
  2052. 0 0 TM
  2053. %%EndObject
  2054. 0 -2709 TM
  2055. 0 A
  2056. FQ
  2057. O0
  2058. 0 2709 TM
  2059. % PostScript produced by:
  2060. %@GMT: gmt plot pathWE_n+ap.txt '-SqN-1:+i+l START ' -Xa0i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  2061. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2062. %%BeginObject PSL_Layer_5
  2063. 0 setlinecap
  2064. 0 setlinejoin
  2065. 3.32550952342 setmiterlimit
  2066. V
  2067. clipsave
  2068. 0 0 M
  2069. 2598 0 D
  2070. 0 2598 D
  2071. -2598 0 D
  2072. P
  2073. PSL_clip N
  2074. PSL_cliprestore
  2075. U
  2076. V
  2077. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2078. /PSL_setboxrgb {1 A} def
  2079. /PSL_path_pen [
  2080. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2081. (4 W 0 A \[\] 0 B)
  2082. ] def
  2083. /PSL_label_justify [ 7 ] def
  2084. /PSL_label_font [
  2085. (0 A 150 F0)
  2086. ] def
  2087. /PSL_gap_x 22 def
  2088. /PSL_gap_y 22 def
  2089. /PSL_label_angle [ 270.00 ] def
  2090. /PSL_label_str [
  2091. ( START )
  2092. ] def
  2093. /PSL_label_n [ 1 ] def
  2094. /PSL_n_paths 1 def
  2095. /PSL_n_labels 1 def
  2096. /PSL_txt_x [ 650 ] def
  2097. /PSL_txt_y [ 1949 ] def
  2098. /PSL_txt_n [ 1 ] def
  2099. PSL_set_label_heights
  2100. 2 PSL_straight_path_labels
  2101. V
  2102. 4 PSL_straight_path_clip
  2103. PSL_cliprestore
  2104. U
  2105. [] 0 B
  2106. U
  2107. %%EndObject
  2108. 0 -2709 TM
  2109. 0 A
  2110. FQ
  2111. O0
  2112. 0 2709 TM
  2113. % PostScript produced by:
  2114. %@GMT: gmt plot pathWE_n+ap.txt '-SqN+1:+i+l END ' -Xa0i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  2115. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2116. %%BeginObject PSL_Layer_6
  2117. 0 setlinecap
  2118. 0 setlinejoin
  2119. 3.32550952342 setmiterlimit
  2120. V
  2121. clipsave
  2122. 0 0 M
  2123. 2598 0 D
  2124. 0 2598 D
  2125. -2598 0 D
  2126. P
  2127. PSL_clip N
  2128. PSL_cliprestore
  2129. U
  2130. V
  2131. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2132. /PSL_setboxrgb {1 A} def
  2133. /PSL_path_pen [
  2134. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2135. (4 W 0 A \[\] 0 B)
  2136. ] def
  2137. /PSL_label_justify [ 5 ] def
  2138. /PSL_label_font [
  2139. (0 A 150 F0)
  2140. ] def
  2141. /PSL_gap_x 22 def
  2142. /PSL_gap_y 22 def
  2143. /PSL_label_angle [ 270.00 ] def
  2144. /PSL_label_str [
  2145. ( END )
  2146. ] def
  2147. /PSL_label_n [ 1 ] def
  2148. /PSL_n_paths 1 def
  2149. /PSL_n_labels 1 def
  2150. /PSL_txt_x [ 1949 ] def
  2151. /PSL_txt_y [ 650 ] def
  2152. /PSL_txt_n [ 1 ] def
  2153. PSL_set_label_heights
  2154. 2 PSL_straight_path_labels
  2155. V
  2156. 4 PSL_straight_path_clip
  2157. PSL_cliprestore
  2158. U
  2159. [] 0 B
  2160. U
  2161. %%EndObject
  2162. 0 -2709 TM
  2163. PSL_plot_completion /PSL_plot_completion {} def
  2164. 0 A
  2165. FQ
  2166. O0
  2167. 2877 2709 TM
  2168. % PostScript produced by:
  2169. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa2.3976i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  2170. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2171. %%BeginObject PSL_Layer_2
  2172. 0 setlinecap
  2173. 0 setlinejoin
  2174. 3.32550952342 setmiterlimit
  2175. /PSL_plot_completion {
  2176. V
  2177. 2877 2709 T
  2178. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2179. 224 F0
  2180. (f\)) tl Z
  2181. U
  2182. }!
  2183. 4 W
  2184. 0 A
  2185. 0 0 M
  2186. 0 2598 D
  2187. S
  2188. 1299 0 M
  2189. 0 2598 D
  2190. S
  2191. 2598 0 M
  2192. 0 2598 D
  2193. S
  2194. 0 0 M
  2195. 2598 0 D
  2196. S
  2197. 0 1299 M
  2198. 2598 0 D
  2199. S
  2200. 0 2598 M
  2201. 2598 0 D
  2202. S
  2203. 21 W
  2204. /PSL_slant_y 0 def /PSL_slant_x 0 def
  2205. 2 setlinecap
  2206. N 0 2598 M 0 -2598 D S
  2207. /PSL_A0_y 56 def
  2208. /PSL_A1_y 0 def
  2209. 7 W
  2210. N 0 0 M -56 0 D S
  2211. N 0 650 M -56 0 D S
  2212. N 0 1299 M -56 0 D S
  2213. N 0 1949 M -56 0 D S
  2214. N 0 2598 M -56 0 D S
  2215. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2216. 2598 0 T
  2217. 21 W
  2218. N 0 2598 M 0 -2598 D S
  2219. /PSL_A0_y 56 def
  2220. /PSL_A1_y 0 def
  2221. 7 W
  2222. N 0 0 M 56 0 D S
  2223. N 0 650 M 56 0 D S
  2224. N 0 1299 M 56 0 D S
  2225. N 0 1949 M 56 0 D S
  2226. N 0 2598 M 56 0 D S
  2227. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2228. -2598 0 T
  2229. 21 W
  2230. N 0 0 M 2598 0 D S
  2231. /PSL_A0_y 56 def
  2232. /PSL_A1_y 0 def
  2233. 7 W
  2234. N 0 0 M 0 -56 D S
  2235. N 650 0 M 0 -56 D S
  2236. N 1299 0 M 0 -56 D S
  2237. N 1949 0 M 0 -56 D S
  2238. N 2598 0 M 0 -56 D S
  2239. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2240. 0 2598 T
  2241. 21 W
  2242. N 0 0 M 2598 0 D S
  2243. /PSL_A0_y 56 def
  2244. /PSL_A1_y 0 def
  2245. 7 W
  2246. N 0 0 M 0 56 D S
  2247. N 650 0 M 0 56 D S
  2248. N 1299 0 M 0 56 D S
  2249. N 1949 0 M 0 56 D S
  2250. N 2598 0 M 0 56 D S
  2251. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2252. 0 -2598 T
  2253. 0 setlinecap
  2254. 0 A
  2255. %%EndObject
  2256. -2877 -2709 TM
  2257. 0 A
  2258. FQ
  2259. O0
  2260. 2877 2709 TM
  2261. % PostScript produced by:
  2262. %@GMT: gmt plot pathEW_n+ap.txt -W2p,darkgrey,8_4 -S~n3:+skdir/1c+p1p,black+gwhite+ap -Xa2.3976i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  2263. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2264. %%BeginObject PSL_Layer_3
  2265. 0 setlinecap
  2266. 0 setlinejoin
  2267. 3.32550952342 setmiterlimit
  2268. V
  2269. 33 W
  2270. [133 67] 0 B
  2271. 0.663 A
  2272. clipsave
  2273. 0 0 M
  2274. 2598 0 D
  2275. 0 2598 D
  2276. -2598 0 D
  2277. P
  2278. PSL_clip N
  2279. 1949 650 M
  2280. 0 1299 D
  2281. -1299 -1299 D
  2282. 0 1299 D
  2283. S
  2284. PSL_cliprestore
  2285. U
  2286. [] 0 B
  2287. 0 A
  2288. FQ
  2289. O0
  2290. 0 0 TM
  2291. % PostScript produced by:
  2292. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41821 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  2293. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  2294. %%BeginObject PSL_Layer_4
  2295. 0 setlinecap
  2296. 0 setlinejoin
  2297. 3.32550952342 setmiterlimit
  2298. clipsave
  2299. 0 0 M
  2300. 2598 0 D
  2301. 0 2598 D
  2302. -2598 0 D
  2303. P
  2304. PSL_clip N
  2305. V
  2306. 4 W
  2307. {1 A} FS
  2308. O1
  2309. 17 W
  2310. V 1949 1759 T
  2311. 90 R
  2312. -472 -118 472 -118 2 -236 118 SP
  2313. {1 0 0 C} FS
  2314. O0
  2315. 47 -236 118 Sc
  2316. {0 1 0 C} FS
  2317. 47 -236 -118 Sc
  2318. U
  2319. {1 A} FS
  2320. O1
  2321. V 1299 1299 T
  2322. -135 R
  2323. -472 -118 472 -118 2 -236 118 SP
  2324. {1 0 0 C} FS
  2325. O0
  2326. 47 -236 118 Sc
  2327. {0 1 0 C} FS
  2328. 47 -236 -118 Sc
  2329. U
  2330. {1 A} FS
  2331. O1
  2332. V 650 840 T
  2333. 90 R
  2334. -472 -118 472 -118 2 -236 118 SP
  2335. {1 0 0 C} FS
  2336. O0
  2337. 47 -236 118 Sc
  2338. {0 1 0 C} FS
  2339. 47 -236 -118 Sc
  2340. U
  2341. U
  2342. PSL_cliprestore
  2343. %%EndObject
  2344. 0 0 TM
  2345. %%EndObject
  2346. -2877 -2709 TM
  2347. 0 A
  2348. FQ
  2349. O0
  2350. 2877 2709 TM
  2351. % PostScript produced by:
  2352. %@GMT: gmt plot pathEW_n+ap.txt '-SqN-1:+i+l START ' -Xa2.3976i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  2353. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2354. %%BeginObject PSL_Layer_5
  2355. 0 setlinecap
  2356. 0 setlinejoin
  2357. 3.32550952342 setmiterlimit
  2358. V
  2359. clipsave
  2360. 0 0 M
  2361. 2598 0 D
  2362. 0 2598 D
  2363. -2598 0 D
  2364. P
  2365. PSL_clip N
  2366. PSL_cliprestore
  2367. U
  2368. V
  2369. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2370. /PSL_setboxrgb {1 A} def
  2371. /PSL_path_pen [
  2372. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2373. (4 W 0 A \[\] 0 B)
  2374. ] def
  2375. /PSL_label_justify [ 5 ] def
  2376. /PSL_label_font [
  2377. (0 A 150 F0)
  2378. ] def
  2379. /PSL_gap_x 22 def
  2380. /PSL_gap_y 22 def
  2381. /PSL_label_angle [ 90.00 ] def
  2382. /PSL_label_str [
  2383. ( START )
  2384. ] def
  2385. /PSL_label_n [ 1 ] def
  2386. /PSL_n_paths 1 def
  2387. /PSL_n_labels 1 def
  2388. /PSL_txt_x [ 1949 ] def
  2389. /PSL_txt_y [ 650 ] def
  2390. /PSL_txt_n [ 1 ] def
  2391. PSL_set_label_heights
  2392. 2 PSL_straight_path_labels
  2393. V
  2394. 4 PSL_straight_path_clip
  2395. PSL_cliprestore
  2396. U
  2397. [] 0 B
  2398. U
  2399. %%EndObject
  2400. -2877 -2709 TM
  2401. 0 A
  2402. FQ
  2403. O0
  2404. 2877 2709 TM
  2405. % PostScript produced by:
  2406. %@GMT: gmt plot pathEW_n+ap.txt '-SqN+1:+i+l END ' -Xa2.3976i -Ya2.2576i -R-1/1/-1/1 -JX5.5c
  2407. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2408. %%BeginObject PSL_Layer_6
  2409. 0 setlinecap
  2410. 0 setlinejoin
  2411. 3.32550952342 setmiterlimit
  2412. V
  2413. clipsave
  2414. 0 0 M
  2415. 2598 0 D
  2416. 0 2598 D
  2417. -2598 0 D
  2418. P
  2419. PSL_clip N
  2420. PSL_cliprestore
  2421. U
  2422. V
  2423. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2424. /PSL_setboxrgb {1 A} def
  2425. /PSL_path_pen [
  2426. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2427. (4 W 0 A \[\] 0 B)
  2428. ] def
  2429. /PSL_label_justify [ 7 ] def
  2430. /PSL_label_font [
  2431. (0 A 150 F0)
  2432. ] def
  2433. /PSL_gap_x 22 def
  2434. /PSL_gap_y 22 def
  2435. /PSL_label_angle [ 90.00 ] def
  2436. /PSL_label_str [
  2437. ( END )
  2438. ] def
  2439. /PSL_label_n [ 1 ] def
  2440. /PSL_n_paths 1 def
  2441. /PSL_n_labels 1 def
  2442. /PSL_txt_x [ 650 ] def
  2443. /PSL_txt_y [ 1949 ] def
  2444. /PSL_txt_n [ 1 ] def
  2445. PSL_set_label_heights
  2446. 2 PSL_straight_path_labels
  2447. V
  2448. 4 PSL_straight_path_clip
  2449. PSL_cliprestore
  2450. U
  2451. [] 0 B
  2452. U
  2453. %%EndObject
  2454. -2877 -2709 TM
  2455. PSL_plot_completion /PSL_plot_completion {} def
  2456. 0 A
  2457. FQ
  2458. O0
  2459. 0 -168 TM
  2460. % PostScript produced by:
  2461. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa0i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2462. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2463. %%BeginObject PSL_Layer_2
  2464. 0 setlinecap
  2465. 0 setlinejoin
  2466. 3.32550952342 setmiterlimit
  2467. /PSL_plot_completion {
  2468. V
  2469. 0 -168 T
  2470. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2471. 224 F0
  2472. (g\)) tl Z
  2473. U
  2474. }!
  2475. 4 W
  2476. 0 A
  2477. 0 0 M
  2478. 0 2598 D
  2479. S
  2480. 1299 0 M
  2481. 0 2598 D
  2482. S
  2483. 2598 0 M
  2484. 0 2598 D
  2485. S
  2486. 0 0 M
  2487. 2598 0 D
  2488. S
  2489. 0 1299 M
  2490. 2598 0 D
  2491. S
  2492. 0 2598 M
  2493. 2598 0 D
  2494. S
  2495. 21 W
  2496. /PSL_slant_y 0 def /PSL_slant_x 0 def
  2497. 2 setlinecap
  2498. N 0 2598 M 0 -2598 D S
  2499. /PSL_A0_y 56 def
  2500. /PSL_A1_y 0 def
  2501. 7 W
  2502. N 0 0 M -56 0 D S
  2503. N 0 650 M -56 0 D S
  2504. N 0 1299 M -56 0 D S
  2505. N 0 1949 M -56 0 D S
  2506. N 0 2598 M -56 0 D S
  2507. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2508. 2598 0 T
  2509. 21 W
  2510. N 0 2598 M 0 -2598 D S
  2511. /PSL_A0_y 56 def
  2512. /PSL_A1_y 0 def
  2513. 7 W
  2514. N 0 0 M 56 0 D S
  2515. N 0 650 M 56 0 D S
  2516. N 0 1299 M 56 0 D S
  2517. N 0 1949 M 56 0 D S
  2518. N 0 2598 M 56 0 D S
  2519. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2520. -2598 0 T
  2521. 21 W
  2522. N 0 0 M 2598 0 D S
  2523. /PSL_A0_y 56 def
  2524. /PSL_A1_y 0 def
  2525. 7 W
  2526. N 0 0 M 0 -56 D S
  2527. N 650 0 M 0 -56 D S
  2528. N 1299 0 M 0 -56 D S
  2529. N 1949 0 M 0 -56 D S
  2530. N 2598 0 M 0 -56 D S
  2531. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2532. 0 2598 T
  2533. 21 W
  2534. N 0 0 M 2598 0 D S
  2535. /PSL_A0_y 56 def
  2536. /PSL_A1_y 0 def
  2537. 7 W
  2538. N 0 0 M 0 56 D S
  2539. N 650 0 M 0 56 D S
  2540. N 1299 0 M 0 56 D S
  2541. N 1949 0 M 0 56 D S
  2542. N 2598 0 M 0 56 D S
  2543. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2544. 0 -2598 T
  2545. 0 setlinecap
  2546. 0 A
  2547. %%EndObject
  2548. 0 168 TM
  2549. 0 A
  2550. FQ
  2551. O0
  2552. 0 -168 TM
  2553. % PostScript produced by:
  2554. %@GMT: gmt plot pathWE_z+ap.txt -W2p,darkgrey,8_4 -S~n3:+skdir/1c+p1p,black+gwhite+ap -Xa0i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2555. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2556. %%BeginObject PSL_Layer_3
  2557. 0 setlinecap
  2558. 0 setlinejoin
  2559. 3.32550952342 setmiterlimit
  2560. V
  2561. 33 W
  2562. [133 67] 0 B
  2563. 0.663 A
  2564. clipsave
  2565. 0 0 M
  2566. 2598 0 D
  2567. 0 2598 D
  2568. -2598 0 D
  2569. P
  2570. PSL_clip N
  2571. 650 1949 M
  2572. 1299 0 D
  2573. -1299 -1299 D
  2574. 1299 0 D
  2575. S
  2576. PSL_cliprestore
  2577. U
  2578. [] 0 B
  2579. 0 A
  2580. FQ
  2581. O0
  2582. 0 0 TM
  2583. % PostScript produced by:
  2584. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol41990 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  2585. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  2586. %%BeginObject PSL_Layer_4
  2587. 0 setlinecap
  2588. 0 setlinejoin
  2589. 3.32550952342 setmiterlimit
  2590. clipsave
  2591. 0 0 M
  2592. 2598 0 D
  2593. 0 2598 D
  2594. -2598 0 D
  2595. P
  2596. PSL_clip N
  2597. V
  2598. 4 W
  2599. {1 A} FS
  2600. O1
  2601. 17 W
  2602. V 1759 1949 T
  2603. -472 -118 472 -118 2 -236 118 SP
  2604. {1 0 0 C} FS
  2605. O0
  2606. 47 -236 118 Sc
  2607. {0 1 0 C} FS
  2608. 47 -236 -118 Sc
  2609. U
  2610. {1 A} FS
  2611. O1
  2612. V 1299 1299 T
  2613. -135 R
  2614. -472 -118 472 -118 2 -236 118 SP
  2615. {1 0 0 C} FS
  2616. O0
  2617. 47 -236 118 Sc
  2618. {0 1 0 C} FS
  2619. 47 -236 -118 Sc
  2620. U
  2621. {1 A} FS
  2622. O1
  2623. V 840 650 T
  2624. -472 -118 472 -118 2 -236 118 SP
  2625. {1 0 0 C} FS
  2626. O0
  2627. 47 -236 118 Sc
  2628. {0 1 0 C} FS
  2629. 47 -236 -118 Sc
  2630. U
  2631. U
  2632. PSL_cliprestore
  2633. %%EndObject
  2634. 0 0 TM
  2635. %%EndObject
  2636. 0 168 TM
  2637. 0 A
  2638. FQ
  2639. O0
  2640. 0 -168 TM
  2641. % PostScript produced by:
  2642. %@GMT: gmt plot pathWE_z+ap.txt '-SqN-1:+i+l START ' -Xa0i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2643. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2644. %%BeginObject PSL_Layer_5
  2645. 0 setlinecap
  2646. 0 setlinejoin
  2647. 3.32550952342 setmiterlimit
  2648. V
  2649. clipsave
  2650. 0 0 M
  2651. 2598 0 D
  2652. 0 2598 D
  2653. -2598 0 D
  2654. P
  2655. PSL_clip N
  2656. PSL_cliprestore
  2657. U
  2658. V
  2659. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2660. /PSL_setboxrgb {1 A} def
  2661. /PSL_path_pen [
  2662. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2663. (4 W 0 A \[\] 0 B)
  2664. ] def
  2665. /PSL_label_justify [ 7 ] def
  2666. /PSL_label_font [
  2667. (0 A 150 F0)
  2668. ] def
  2669. /PSL_gap_x 22 def
  2670. /PSL_gap_y 22 def
  2671. /PSL_label_angle [ 0.00 ] def
  2672. /PSL_label_str [
  2673. ( START )
  2674. ] def
  2675. /PSL_label_n [ 1 ] def
  2676. /PSL_n_paths 1 def
  2677. /PSL_n_labels 1 def
  2678. /PSL_txt_x [ 650 ] def
  2679. /PSL_txt_y [ 1949 ] def
  2680. /PSL_txt_n [ 1 ] def
  2681. PSL_set_label_heights
  2682. 2 PSL_straight_path_labels
  2683. V
  2684. 4 PSL_straight_path_clip
  2685. PSL_cliprestore
  2686. U
  2687. [] 0 B
  2688. U
  2689. %%EndObject
  2690. 0 168 TM
  2691. 0 A
  2692. FQ
  2693. O0
  2694. 0 -168 TM
  2695. % PostScript produced by:
  2696. %@GMT: gmt plot pathWE_z+ap.txt '-SqN+1:+i+l END ' -Xa0i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2697. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2698. %%BeginObject PSL_Layer_6
  2699. 0 setlinecap
  2700. 0 setlinejoin
  2701. 3.32550952342 setmiterlimit
  2702. V
  2703. clipsave
  2704. 0 0 M
  2705. 2598 0 D
  2706. 0 2598 D
  2707. -2598 0 D
  2708. P
  2709. PSL_clip N
  2710. PSL_cliprestore
  2711. U
  2712. V
  2713. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2714. /PSL_setboxrgb {1 A} def
  2715. /PSL_path_pen [
  2716. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2717. (4 W 0 A \[\] 0 B)
  2718. ] def
  2719. /PSL_label_justify [ 7 ] def
  2720. /PSL_label_font [
  2721. (0 A 150 F0)
  2722. ] def
  2723. /PSL_gap_x 22 def
  2724. /PSL_gap_y 22 def
  2725. /PSL_label_angle [ 0.00 ] def
  2726. /PSL_label_str [
  2727. ( END )
  2728. ] def
  2729. /PSL_label_n [ 1 ] def
  2730. /PSL_n_paths 1 def
  2731. /PSL_n_labels 1 def
  2732. /PSL_txt_x [ 1949 ] def
  2733. /PSL_txt_y [ 650 ] def
  2734. /PSL_txt_n [ 1 ] def
  2735. PSL_set_label_heights
  2736. 2 PSL_straight_path_labels
  2737. V
  2738. 4 PSL_straight_path_clip
  2739. PSL_cliprestore
  2740. U
  2741. [] 0 B
  2742. U
  2743. %%EndObject
  2744. 0 168 TM
  2745. PSL_plot_completion /PSL_plot_completion {} def
  2746. 0 A
  2747. FQ
  2748. O0
  2749. 2877 -168 TM
  2750. % PostScript produced by:
  2751. %@GMT: gmt basemap -Bwens -Bxag1d -Byag1d -Xa2.3976i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2752. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2753. %%BeginObject PSL_Layer_2
  2754. 0 setlinecap
  2755. 0 setlinejoin
  2756. 3.32550952342 setmiterlimit
  2757. /PSL_plot_completion {
  2758. V
  2759. 2877 -168 T
  2760. 0 A 45 2554 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2761. 224 F0
  2762. (h\)) tl Z
  2763. U
  2764. }!
  2765. 4 W
  2766. 0 A
  2767. 0 0 M
  2768. 0 2598 D
  2769. S
  2770. 1299 0 M
  2771. 0 2598 D
  2772. S
  2773. 2598 0 M
  2774. 0 2598 D
  2775. S
  2776. 0 0 M
  2777. 2598 0 D
  2778. S
  2779. 0 1299 M
  2780. 2598 0 D
  2781. S
  2782. 0 2598 M
  2783. 2598 0 D
  2784. S
  2785. 21 W
  2786. /PSL_slant_y 0 def /PSL_slant_x 0 def
  2787. 2 setlinecap
  2788. N 0 2598 M 0 -2598 D S
  2789. /PSL_A0_y 56 def
  2790. /PSL_A1_y 0 def
  2791. 7 W
  2792. N 0 0 M -56 0 D S
  2793. N 0 650 M -56 0 D S
  2794. N 0 1299 M -56 0 D S
  2795. N 0 1949 M -56 0 D S
  2796. N 0 2598 M -56 0 D S
  2797. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2798. 2598 0 T
  2799. 21 W
  2800. N 0 2598 M 0 -2598 D S
  2801. /PSL_A0_y 56 def
  2802. /PSL_A1_y 0 def
  2803. 7 W
  2804. N 0 0 M 56 0 D S
  2805. N 0 650 M 56 0 D S
  2806. N 0 1299 M 56 0 D S
  2807. N 0 1949 M 56 0 D S
  2808. N 0 2598 M 56 0 D S
  2809. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2810. -2598 0 T
  2811. 21 W
  2812. N 0 0 M 2598 0 D S
  2813. /PSL_A0_y 56 def
  2814. /PSL_A1_y 0 def
  2815. 7 W
  2816. N 0 0 M 0 -56 D S
  2817. N 650 0 M 0 -56 D S
  2818. N 1299 0 M 0 -56 D S
  2819. N 1949 0 M 0 -56 D S
  2820. N 2598 0 M 0 -56 D S
  2821. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2822. 0 2598 T
  2823. 21 W
  2824. N 0 0 M 2598 0 D S
  2825. /PSL_A0_y 56 def
  2826. /PSL_A1_y 0 def
  2827. 7 W
  2828. N 0 0 M 0 56 D S
  2829. N 650 0 M 0 56 D S
  2830. N 1299 0 M 0 56 D S
  2831. N 1949 0 M 0 56 D S
  2832. N 2598 0 M 0 56 D S
  2833. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2834. 0 -2598 T
  2835. 0 setlinecap
  2836. 0 A
  2837. %%EndObject
  2838. -2877 168 TM
  2839. 0 A
  2840. FQ
  2841. O0
  2842. 2877 -168 TM
  2843. % PostScript produced by:
  2844. %@GMT: gmt plot pathEW_z+ap.txt -W2p,darkgrey,8_4 -S~n3:+skdir/1c+p1p,black+gwhite+ap -Xa2.3976i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2845. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2846. %%BeginObject PSL_Layer_3
  2847. 0 setlinecap
  2848. 0 setlinejoin
  2849. 3.32550952342 setmiterlimit
  2850. V
  2851. 33 W
  2852. [133 67] 0 B
  2853. 0.663 A
  2854. clipsave
  2855. 0 0 M
  2856. 2598 0 D
  2857. 0 2598 D
  2858. -2598 0 D
  2859. P
  2860. PSL_clip N
  2861. 1949 650 M
  2862. -1299 0 D
  2863. 1299 1299 D
  2864. -1299 0 D
  2865. S
  2866. PSL_cliprestore
  2867. U
  2868. [] 0 B
  2869. 0 A
  2870. FQ
  2871. O0
  2872. 0 0 TM
  2873. % PostScript produced by:
  2874. %@GMT: gmt plot -R0/2.1654/0/2.1654 -Jx1i -O -K -Sk/tmp/GMT_symbol42107 @GMTAPI@-S-I-D-D-T-N-000001 --GMT_HISTORY=readonly
  2875. %@PROJ: xy 0.00000000 2.16540000 0.00000000 2.16540000 0.000 2.165 0.000 2.165 +xy
  2876. %%BeginObject PSL_Layer_4
  2877. 0 setlinecap
  2878. 0 setlinejoin
  2879. 3.32550952342 setmiterlimit
  2880. clipsave
  2881. 0 0 M
  2882. 2598 0 D
  2883. 0 2598 D
  2884. -2598 0 D
  2885. P
  2886. PSL_clip N
  2887. V
  2888. 4 W
  2889. {1 A} FS
  2890. O1
  2891. 17 W
  2892. V 840 650 T
  2893. 180 R
  2894. -472 -118 472 -118 2 -236 118 SP
  2895. {1 0 0 C} FS
  2896. O0
  2897. 47 -236 118 Sc
  2898. {0 1 0 C} FS
  2899. 47 -236 -118 Sc
  2900. U
  2901. {1 A} FS
  2902. O1
  2903. V 1299 1299 T
  2904. 45 R
  2905. -472 -118 472 -118 2 -236 118 SP
  2906. {1 0 0 C} FS
  2907. O0
  2908. 47 -236 118 Sc
  2909. {0 1 0 C} FS
  2910. 47 -236 -118 Sc
  2911. U
  2912. {1 A} FS
  2913. O1
  2914. V 1759 1949 T
  2915. 180 R
  2916. -472 -118 472 -118 2 -236 118 SP
  2917. {1 0 0 C} FS
  2918. O0
  2919. 47 -236 118 Sc
  2920. {0 1 0 C} FS
  2921. 47 -236 -118 Sc
  2922. U
  2923. U
  2924. PSL_cliprestore
  2925. %%EndObject
  2926. 0 0 TM
  2927. %%EndObject
  2928. -2877 168 TM
  2929. 0 A
  2930. FQ
  2931. O0
  2932. 2877 -168 TM
  2933. % PostScript produced by:
  2934. %@GMT: gmt plot pathEW_z+ap.txt '-SqN-1:+i+l START ' -Xa2.3976i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2935. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2936. %%BeginObject PSL_Layer_5
  2937. 0 setlinecap
  2938. 0 setlinejoin
  2939. 3.32550952342 setmiterlimit
  2940. V
  2941. clipsave
  2942. 0 0 M
  2943. 2598 0 D
  2944. 0 2598 D
  2945. -2598 0 D
  2946. P
  2947. PSL_clip N
  2948. PSL_cliprestore
  2949. U
  2950. V
  2951. /PSL_setboxpen {4 W 0 A [] 0 B} def
  2952. /PSL_setboxrgb {1 A} def
  2953. /PSL_path_pen [
  2954. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2955. (4 W 0 A \[\] 0 B)
  2956. ] def
  2957. /PSL_label_justify [ 7 ] def
  2958. /PSL_label_font [
  2959. (0 A 150 F0)
  2960. ] def
  2961. /PSL_gap_x 22 def
  2962. /PSL_gap_y 22 def
  2963. /PSL_label_angle [ 0.00 ] def
  2964. /PSL_label_str [
  2965. ( START )
  2966. ] def
  2967. /PSL_label_n [ 1 ] def
  2968. /PSL_n_paths 1 def
  2969. /PSL_n_labels 1 def
  2970. /PSL_txt_x [ 1949 ] def
  2971. /PSL_txt_y [ 650 ] def
  2972. /PSL_txt_n [ 1 ] def
  2973. PSL_set_label_heights
  2974. 2 PSL_straight_path_labels
  2975. V
  2976. 4 PSL_straight_path_clip
  2977. PSL_cliprestore
  2978. U
  2979. [] 0 B
  2980. U
  2981. %%EndObject
  2982. -2877 168 TM
  2983. 0 A
  2984. FQ
  2985. O0
  2986. 2877 -168 TM
  2987. % PostScript produced by:
  2988. %@GMT: gmt plot pathEW_z+ap.txt '-SqN+1:+i+l END ' -Xa2.3976i -Ya-0.14i -R-1/1/-1/1 -JX5.5c
  2989. %@PROJ: xy -1.00000000 1.00000000 -1.00000000 1.00000000 -1.000 1.000 -1.000 1.000 +xy
  2990. %%BeginObject PSL_Layer_6
  2991. 0 setlinecap
  2992. 0 setlinejoin
  2993. 3.32550952342 setmiterlimit
  2994. V
  2995. clipsave
  2996. 0 0 M
  2997. 2598 0 D
  2998. 0 2598 D
  2999. -2598 0 D
  3000. P
  3001. PSL_clip N
  3002. PSL_cliprestore
  3003. U
  3004. V
  3005. /PSL_setboxpen {4 W 0 A [] 0 B} def
  3006. /PSL_setboxrgb {1 A} def
  3007. /PSL_path_pen [
  3008. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3009. (4 W 0 A \[\] 0 B)
  3010. ] def
  3011. /PSL_label_justify [ 7 ] def
  3012. /PSL_label_font [
  3013. (0 A 150 F0)
  3014. ] def
  3015. /PSL_gap_x 22 def
  3016. /PSL_gap_y 22 def
  3017. /PSL_label_angle [ 0.00 ] def
  3018. /PSL_label_str [
  3019. ( END )
  3020. ] def
  3021. /PSL_label_n [ 1 ] def
  3022. /PSL_n_paths 1 def
  3023. /PSL_n_labels 1 def
  3024. /PSL_txt_x [ 650 ] def
  3025. /PSL_txt_y [ 1949 ] def
  3026. /PSL_txt_n [ 1 ] def
  3027. PSL_set_label_heights
  3028. 2 PSL_straight_path_labels
  3029. V
  3030. 4 PSL_straight_path_clip
  3031. PSL_cliprestore
  3032. U
  3033. [] 0 B
  3034. U
  3035. %%EndObject
  3036. -2877 168 TM
  3037. PSL_plot_completion /PSL_plot_completion {} def
  3038. grestore
  3039. PSL_movie_label_completion /PSL_movie_label_completion {} def
  3040. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  3041. %PSL_Begin_Trailer
  3042. %%PageTrailer
  3043. U
  3044. showpage
  3045. %%Trailer
  3046. end
  3047. %%EOF
Tip!

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

Comments

Loading...