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

variablerho.ps 49 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
  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_7cac10a-dirty_2020.10.08 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Oct 8 16:17:10 2020
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  648. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  649. %%EndSetup
  650. %%Page: 1 1
  651. %%BeginPageSetup
  652. V 0.06 0.06 scale
  653. %%EndPageSetup
  654. /PSL_page_xsize 10200 def
  655. /PSL_page_ysize 13200 def
  656. /PSL_plot_completion {} def
  657. /PSL_movie_label_completion {} def
  658. /PSL_movie_prog_indicator_completion {} def
  659. %PSL_End_Header
  660. gsave
  661. 0 A
  662. FQ
  663. O0
  664. 1800 1200 TM
  665. % PostScript produced by:
  666. %@GMT: gmt psxy -R-256/256/-5000/0 -JX5.5i/2.75i -P -K -Ggray -L+yb -BWSn -Baf -Bx+ukm '-By+lDepth (m)' plateau.trk -X1.5i
  667. %@PROJ: xy -256.00000000 256.00000000 -5000.00000000 0.00000000 -256.000 256.000 -5000.000 0.000 +xy
  668. %GMTBoundingBox: 108 72 396 198
  669. %%BeginObject PSL_Layer_1
  670. 0 setlinecap
  671. 0 setlinejoin
  672. 3.32550952342 setmiterlimit
  673. 4 W
  674. clipsave
  675. 0 0 M
  676. 6600 0 D
  677. 0 3300 D
  678. -6600 0 D
  679. P
  680. PSL_clip N
  681. {0.745 A} FS
  682. 0 0 M
  683. 2652 0 D
  684. 3 2310 D
  685. 1286 0 D
  686. 4 -2310 D
  687. 2655 0 D
  688. P
  689. FO
  690. PSL_cliprestore
  691. 0 A [] 0 B
  692. 25 W
  693. /PSL_slant_y 0 def
  694. 2 setlinecap
  695. N 0 3300 M 0 -3300 D S
  696. /PSL_A0_y 83 def
  697. /PSL_A1_y 0 def
  698. 8 W
  699. N 0 660 M -83 0 D S
  700. N 0 1980 M -83 0 D S
  701. N 0 3300 M -83 0 D S
  702. /MM {neg exch M} def
  703. /PSL_AH0 0
  704. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  705. 200 F0
  706. (”4000) sw mx
  707. (”2000) sw mx
  708. (0) sw mx
  709. def
  710. /PSL_A0_y PSL_A0_y 83 add def
  711. 660 PSL_A0_y MM
  712. (”4000) mr Z
  713. 1980 PSL_A0_y MM
  714. (”2000) mr Z
  715. 3300 PSL_A0_y MM
  716. (0) mr Z
  717. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  718. N 0 0 M -42 0 D S
  719. N 0 1320 M -42 0 D S
  720. N 0 2640 M -42 0 D S
  721. /PSL_LH 267 F0
  722. (M) sh def
  723. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  724. 1650 PSL_L_y MM
  725. V 90 R (Depth \(m\)) bc Z U
  726. 25 W
  727. N 0 0 M 6600 0 D S
  728. /PSL_A0_y 83 def
  729. /PSL_A1_y 0 def
  730. 8 W
  731. N 722 0 M 0 -83 D S
  732. N 2011 0 M 0 -83 D S
  733. N 3300 0 M 0 -83 D S
  734. N 4589 0 M 0 -83 D S
  735. N 5878 0 M 0 -83 D S
  736. /MM {neg M} def
  737. /PSL_AH0 0
  738. 200 F0
  739. (”200km) sh mx
  740. (”100km) sh mx
  741. (0km) sh mx
  742. (100km) sh mx
  743. (200km) sh mx
  744. def
  745. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  746. 722 PSL_A0_y MM
  747. (”200km) bc Z
  748. 2011 PSL_A0_y MM
  749. (”100km) bc Z
  750. 3300 PSL_A0_y MM
  751. (0km) bc Z
  752. 4589 PSL_A0_y MM
  753. (100km) bc Z
  754. 5878 PSL_A0_y MM
  755. (200km) bc Z
  756. N 206 0 M 0 -42 D S
  757. N 464 0 M 0 -42 D S
  758. N 980 0 M 0 -42 D S
  759. N 1238 0 M 0 -42 D S
  760. N 1495 0 M 0 -42 D S
  761. N 1753 0 M 0 -42 D S
  762. N 2269 0 M 0 -42 D S
  763. N 2527 0 M 0 -42 D S
  764. N 2784 0 M 0 -42 D S
  765. N 3042 0 M 0 -42 D S
  766. N 3558 0 M 0 -42 D S
  767. N 3816 0 M 0 -42 D S
  768. N 4073 0 M 0 -42 D S
  769. N 4331 0 M 0 -42 D S
  770. N 4847 0 M 0 -42 D S
  771. N 5105 0 M 0 -42 D S
  772. N 5362 0 M 0 -42 D S
  773. N 5620 0 M 0 -42 D S
  774. N 6136 0 M 0 -42 D S
  775. N 6394 0 M 0 -42 D S
  776. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  777. 0 3300 T
  778. 25 W
  779. N 0 0 M 6600 0 D S
  780. /PSL_A0_y 83 def
  781. /PSL_A1_y 0 def
  782. 8 W
  783. N 722 0 M 0 83 D S
  784. N 2011 0 M 0 83 D S
  785. N 3300 0 M 0 83 D S
  786. N 4589 0 M 0 83 D S
  787. N 5878 0 M 0 83 D S
  788. N 206 0 M 0 42 D S
  789. N 464 0 M 0 42 D S
  790. N 980 0 M 0 42 D S
  791. N 1238 0 M 0 42 D S
  792. N 1495 0 M 0 42 D S
  793. N 1753 0 M 0 42 D S
  794. N 2269 0 M 0 42 D S
  795. N 2527 0 M 0 42 D S
  796. N 2784 0 M 0 42 D S
  797. N 3042 0 M 0 42 D S
  798. N 3558 0 M 0 42 D S
  799. N 3816 0 M 0 42 D S
  800. N 4073 0 M 0 42 D S
  801. N 4331 0 M 0 42 D S
  802. N 4847 0 M 0 42 D S
  803. N 5105 0 M 0 42 D S
  804. N 5362 0 M 0 42 D S
  805. N 5620 0 M 0 42 D S
  806. N 6136 0 M 0 42 D S
  807. N 6394 0 M 0 42 D S
  808. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  809. 0 -3300 T
  810. 0 setlinecap
  811. %%EndObject
  812. 0 A
  813. FQ
  814. O0
  815. 0 0 TM
  816. % PostScript produced by:
  817. %@GMT: gmt pstext -R-256/256/-5000/0 -JX5.5i/2.75i -O -K -F+jTL+f14p,gray -Dj0.1i -Gwhite -C+tO
  818. %@PROJ: xy -256.00000000 256.00000000 -5000.00000000 0.00000000 -256.000 256.000 -5000.000 0.000 +xy
  819. %%BeginObject PSL_Layer_2
  820. 0 setlinecap
  821. 0 setlinejoin
  822. 3.32550952342 setmiterlimit
  823. clipsave
  824. 0 0 M
  825. 6600 0 D
  826. 0 3300 D
  827. -6600 0 D
  828. P
  829. PSL_clip N
  830. 4 W
  831. {1 A} FS
  832. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  833. 233 F0
  834. V
  835. (BATHYMETRY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  836. /PSL_dx 35 def
  837. /PSL_dy 35 def
  838. 120 3180 T 0 PSL_dim_h neg T
  839. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  840. U
  841. 0.745 A
  842. 120 3180 M (BATHYMETRY) tl Z
  843. PSL_cliprestore
  844. %%EndObject
  845. 0 A
  846. FQ
  847. O0
  848. 0 0 TM
  849. % PostScript produced by:
  850. %@GMT: gmt psxy -R-256/256/0/1800 -JX5.5i/2.75i -O -K -W1p,red rho.trk -BE -Baf '-By+lDensity (kg/m@+3@+)'
  851. %@PROJ: xy -256.00000000 256.00000000 0.00000000 1800.00000000 -256.000 256.000 0.000 1800.000 +xy
  852. %%BeginObject PSL_Layer_3
  853. 0 setlinecap
  854. 0 setlinejoin
  855. 3.32550952342 setmiterlimit
  856. 17 W
  857. 1 0 0 C
  858. clipsave
  859. 0 0 M
  860. 6600 0 D
  861. 0 3300 D
  862. -6600 0 D
  863. P
  864. PSL_clip N
  865. 0 0 M
  866. 2652 0 D
  867. 3 2391 D
  868. 7 0 D
  869. 6 29 D
  870. 7 0 D
  871. 6 29 D
  872. 7 0 D
  873. 6 30 D
  874. 7 0 D
  875. 6 29 D
  876. 6 0 D
  877. 7 29 D
  878. 6 0 D
  879. 7 30 D
  880. 6 0 D
  881. 7 29 D
  882. 6 0 D
  883. 7 29 D
  884. 6 0 D
  885. 6 30 D
  886. 7 0 D
  887. 6 29 D
  888. 7 0 D
  889. 6 29 D
  890. 7 0 D
  891. 6 30 D
  892. 7 0 D
  893. 6 29 D
  894. 6 0 D
  895. 7 29 D
  896. 6 0 D
  897. 7 30 D
  898. 6 0 D
  899. 7 29 D
  900. 6 0 D
  901. 7 29 D
  902. 6 0 D
  903. 7 30 D
  904. 6 0 D
  905. 6 29 D
  906. 7 0 D
  907. 6 29 D
  908. 7 0 D
  909. 6 30 D
  910. 7 0 D
  911. 6 29 D
  912. 7 0 D
  913. 6 29 D
  914. 6 0 D
  915. 7 30 D
  916. 6 0 D
  917. 7 22 D
  918. 641 0 D
  919. 3 -8 D
  920. 7 0 D
  921. 6 -29 D
  922. 7 0 D
  923. 6 -29 D
  924. 6 0 D
  925. 7 -30 D
  926. 6 0 D
  927. 7 -29 D
  928. 6 0 D
  929. 7 -29 D
  930. 6 0 D
  931. 7 -30 D
  932. 6 0 D
  933. 6 -29 D
  934. 7 0 D
  935. 6 -29 D
  936. 7 0 D
  937. 6 -30 D
  938. 7 0 D
  939. 6 -29 D
  940. 7 0 D
  941. 6 -29 D
  942. 7 0 D
  943. 6 -30 D
  944. 6 0 D
  945. 7 -29 D
  946. 6 0 D
  947. 7 -29 D
  948. 6 0 D
  949. 7 -30 D
  950. 6 0 D
  951. 7 -29 D
  952. 6 0 D
  953. 6 -29 D
  954. 7 0 D
  955. 6 -30 D
  956. 7 0 D
  957. 6 -29 D
  958. 7 0 D
  959. 6 -29 D
  960. 7 0 D
  961. 6 -30 D
  962. 6 0 D
  963. 7 -29 D
  964. 6 0 D
  965. 7 -29 D
  966. 6 0 D
  967. 7 -30 D
  968. 6 0 D
  969. 3 -14 D
  970. 4 -2391 D
  971. 2655 0 D
  972. S
  973. PSL_cliprestore
  974. 0 A [] 0 B
  975. 25 W
  976. 0 A
  977. /PSL_slant_y 0 def
  978. 2 setlinecap
  979. 6600 0 T
  980. N 0 3300 M 0 -3300 D S
  981. /PSL_A0_y 83 def
  982. /PSL_A1_y 0 def
  983. 8 W
  984. N 0 0 M 83 0 D S
  985. N 0 917 M 83 0 D S
  986. N 0 1833 M 83 0 D S
  987. N 0 2750 M 83 0 D S
  988. /MM {exch M} def
  989. /PSL_AH0 0
  990. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  991. 200 F0
  992. (0) sw mx
  993. (500) sw mx
  994. (1000) sw mx
  995. (1500) sw mx
  996. def
  997. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  998. 0 PSL_A0_y MM
  999. (0) mr Z
  1000. 917 PSL_A0_y MM
  1001. (500) mr Z
  1002. 1833 PSL_A0_y MM
  1003. (1000) mr Z
  1004. 2750 PSL_A0_y MM
  1005. (1500) mr Z
  1006. N 0 183 M 42 0 D S
  1007. N 0 367 M 42 0 D S
  1008. N 0 550 M 42 0 D S
  1009. N 0 733 M 42 0 D S
  1010. N 0 1100 M 42 0 D S
  1011. N 0 1283 M 42 0 D S
  1012. N 0 1467 M 42 0 D S
  1013. N 0 1650 M 42 0 D S
  1014. N 0 2017 M 42 0 D S
  1015. N 0 2200 M 42 0 D S
  1016. N 0 2383 M 42 0 D S
  1017. N 0 2567 M 42 0 D S
  1018. N 0 2933 M 42 0 D S
  1019. N 0 3117 M 42 0 D S
  1020. N 0 3300 M 42 0 D S
  1021. /PSL_LH 267 F0
  1022. (M) sh def
  1023. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add PSL_LH add def
  1024. 1650 PSL_L_y MM
  1025. V 90 R V MU 0 0 M (Density \(kg/m) FP 0 93 G 187 F0 (3) FP 0 -93 G 267 F0 (\)) FP pathbbox N pop exch pop add U -2 div 0 G
  1026. (Density \(kg/m) Z
  1027. 0 93 G 187 F0 (3) Z
  1028. 0 -93 G 267 F0 (\)) Z
  1029. U
  1030. -6600 0 T
  1031. 0 setlinecap
  1032. %%EndObject
  1033. 0 A
  1034. FQ
  1035. O0
  1036. 0 0 TM
  1037. % PostScript produced by:
  1038. %@GMT: gmt psxy -R-256/256/0/1800 -JX5.5i/2.75i -O -K -W1p,blue
  1039. %@PROJ: xy -256.00000000 256.00000000 0.00000000 1800.00000000 -256.000 256.000 0.000 1800.000 +xy
  1040. %%BeginObject PSL_Layer_4
  1041. 0 setlinecap
  1042. 0 setlinejoin
  1043. 3.32550952342 setmiterlimit
  1044. 17 W
  1045. 0 0 1 C
  1046. clipsave
  1047. 0 0 M
  1048. 6600 0 D
  1049. 0 3300 D
  1050. -6600 0 D
  1051. P
  1052. PSL_clip N
  1053. 0 0 M
  1054. 2655 0 D
  1055. 0 2811 D
  1056. 1290 0 D
  1057. 0 -2811 D
  1058. 2655 0 D
  1059. S
  1060. PSL_cliprestore
  1061. %%EndObject
  1062. 0 A
  1063. FQ
  1064. O0
  1065. 0 0 TM
  1066. % PostScript produced by:
  1067. %@GMT: gmt pstext -R-256/256/0/1800 -JX5.5i/2.75i -O -K -F+jTR+f14p,blue -Dj0.1i -Gwhite -C+tO
  1068. %@PROJ: xy -256.00000000 256.00000000 0.00000000 1800.00000000 -256.000 256.000 0.000 1800.000 +xy
  1069. %%BeginObject PSL_Layer_5
  1070. 0 setlinecap
  1071. 0 setlinejoin
  1072. 3.32550952342 setmiterlimit
  1073. clipsave
  1074. 0 0 M
  1075. 6600 0 D
  1076. 0 3300 D
  1077. -6600 0 D
  1078. P
  1079. PSL_clip N
  1080. 4 W
  1081. {1 A} FS
  1082. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1083. 233 F0
  1084. V
  1085. (CONSTANT DENSITY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1086. /PSL_dx 35 def
  1087. /PSL_dy 35 def
  1088. 6480 3180 T PSL_dim_w neg PSL_dim_h neg T
  1089. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  1090. U
  1091. 0 0 1 C
  1092. 6480 3180 M (CONSTANT DENSITY) tr Z
  1093. PSL_cliprestore
  1094. %%EndObject
  1095. 0 A
  1096. FQ
  1097. O0
  1098. 0 0 TM
  1099. % PostScript produced by:
  1100. %@GMT: gmt pstext -R-256/256/0/1800 -JX5.5i/2.75i -O -K -F+jTR+f14p,red -Dj0.1i/0.4i -Gwhite -C+tO
  1101. %@PROJ: xy -256.00000000 256.00000000 0.00000000 1800.00000000 -256.000 256.000 0.000 1800.000 +xy
  1102. %%BeginObject PSL_Layer_6
  1103. 0 setlinecap
  1104. 0 setlinejoin
  1105. 3.32550952342 setmiterlimit
  1106. clipsave
  1107. 0 0 M
  1108. 6600 0 D
  1109. 0 3300 D
  1110. -6600 0 D
  1111. P
  1112. PSL_clip N
  1113. 4 W
  1114. {1 A} FS
  1115. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1116. 233 F0
  1117. V
  1118. (VARIABLE DENSITY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  1119. /PSL_dx 35 def
  1120. /PSL_dy 35 def
  1121. 6480 2820 T PSL_dim_w neg PSL_dim_h neg T
  1122. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  1123. U
  1124. 1 0 0 C
  1125. 6480 2820 M (VARIABLE DENSITY) tr Z
  1126. PSL_cliprestore
  1127. %%EndObject
  1128. 0 A
  1129. FQ
  1130. O0
  1131. 0 3840 TM
  1132. % PostScript produced by:
  1133. %@GMT: gmt psxy -R-256/256/-100/250 -JX5.5i/2.75i -O -K -W1p,red vgg.trk -BWSne -Bafg1000 -Bx+ukm '-By+lVGG (E\371tv\371s)' -Y3.2i
  1134. %@PROJ: xy -256.00000000 256.00000000 -100.00000000 250.00000000 -256.000 256.000 -100.000 250.000 +xy
  1135. %%BeginObject PSL_Layer_7
  1136. 0 setlinecap
  1137. 0 setlinejoin
  1138. 3.32550952342 setmiterlimit
  1139. 4 W
  1140. 3300 0 M
  1141. 0 3300 D
  1142. S
  1143. 0 943 M
  1144. 6600 0 D
  1145. S
  1146. 17 W
  1147. 1 0 0 C
  1148. clipsave
  1149. 0 0 M
  1150. 6600 0 D
  1151. 0 3300 D
  1152. -6600 0 D
  1153. P
  1154. PSL_clip N
  1155. 0 938 M
  1156. 870 -1 D
  1157. 477 -4 D
  1158. 222 -4 D
  1159. 191 -6 D
  1160. 132 -7 D
  1161. 103 -8 D
  1162. 38 -4 D
  1163. 26 -3 D
  1164. 26 -3 D
  1165. 39 -6 D
  1166. 35 -5 D
  1167. 7 -3 D
  1168. 19 -2 D
  1169. 6 -3 D
  1170. 7 0 D
  1171. 6 -3 D
  1172. 7 0 D
  1173. 6 -4 D
  1174. 10 -1 D
  1175. 3 -2 D
  1176. 7 0 D
  1177. 6 -4 D
  1178. 6 0 D
  1179. 7 -4 D
  1180. 6 0 D
  1181. 7 -4 D
  1182. 6 0 D
  1183. 7 -5 D
  1184. 6 0 D
  1185. 7 -5 D
  1186. 6 0 D
  1187. 6 -5 D
  1188. 7 0 D
  1189. 6 -6 D
  1190. 7 0 D
  1191. 6 -7 D
  1192. 7 0 D
  1193. 6 -7 D
  1194. 7 0 D
  1195. 6 -8 D
  1196. 6 0 D
  1197. 7 -8 D
  1198. 6 0 D
  1199. 7 -10 D
  1200. 6 0 D
  1201. 7 -10 D
  1202. 6 0 D
  1203. 7 -12 D
  1204. 6 0 D
  1205. 6 -13 D
  1206. 7 0 D
  1207. 6 -15 D
  1208. 7 0 D
  1209. 6 -16 D
  1210. 7 0 D
  1211. 6 -19 D
  1212. 7 0 D
  1213. 6 -21 D
  1214. 6 0 D
  1215. 7 -24 D
  1216. 6 0 D
  1217. 7 -27 D
  1218. 6 0 D
  1219. 7 -33 D
  1220. 6 0 D
  1221. 7 -37 D
  1222. 6 0 D
  1223. 6 -44 D
  1224. 7 0 D
  1225. 6 -51 D
  1226. 7 0 D
  1227. 6 -60 D
  1228. 7 0 D
  1229. 6 -71 D
  1230. 7 0 D
  1231. 6 -77 D
  1232. 6 0 D
  1233. 7 -70 D
  1234. 6 0 D
  1235. 4 -22 D
  1236. 9 0 D
  1237. 7 121 D
  1238. 6 0 D
  1239. 7 371 D
  1240. 6 0 D
  1241. 6 566 D
  1242. 7 0 D
  1243. 6 501 D
  1244. 7 0 D
  1245. 6 254 D
  1246. 7 0 D
  1247. 3 44 D
  1248. 3 9 D
  1249. 7 0 D
  1250. 6 -37 D
  1251. 6 0 D
  1252. 7 -63 D
  1253. 6 0 D
  1254. 7 -62 D
  1255. 6 0 D
  1256. 7 -55 D
  1257. 6 0 D
  1258. 7 -46 D
  1259. 6 0 D
  1260. 6 -39 D
  1261. 7 0 D
  1262. 6 -32 D
  1263. 7 0 D
  1264. 6 -26 D
  1265. 7 0 D
  1266. 6 -22 D
  1267. 7 0 D
  1268. 6 -18 D
  1269. 6 0 D
  1270. 7 -15 D
  1271. 6 0 D
  1272. 7 -12 D
  1273. 6 0 D
  1274. 7 -8 D
  1275. 6 0 D
  1276. 3 -4 D
  1277. 4 -3 D
  1278. 6 0 D
  1279. 7 -4 D
  1280. 9 -1 D
  1281. 26 -1 D
  1282. 3 2 D
  1283. 10 1 D
  1284. 3 2 D
  1285. 7 0 D
  1286. 6 4 D
  1287. 19 1 D
  1288. 4 -1 D
  1289. 3 -3 D
  1290. 6 0 D
  1291. 7 -10 D
  1292. 6 0 D
  1293. 7 -14 D
  1294. 6 0 D
  1295. 6 -15 D
  1296. 7 0 D
  1297. 6 -15 D
  1298. 7 0 D
  1299. 6 -13 D
  1300. 7 0 D
  1301. 6 -12 D
  1302. 7 0 D
  1303. 6 -11 D
  1304. 6 0 D
  1305. 7 -10 D
  1306. 6 0 D
  1307. 7 -9 D
  1308. 6 0 D
  1309. 7 -8 D
  1310. 6 0 D
  1311. 7 -7 D
  1312. 6 0 D
  1313. 6 -6 D
  1314. 7 0 D
  1315. 6 -6 D
  1316. 7 0 D
  1317. 6 -5 D
  1318. 7 0 D
  1319. 6 -4 D
  1320. 7 0 D
  1321. 6 -4 D
  1322. 6 0 D
  1323. 10 -3 D
  1324. 13 -3 D
  1325. 13 -3 D
  1326. 26 -3 D
  1327. 16 -2 D
  1328. 51 -1 D
  1329. 42 4 D
  1330. 13 2 D
  1331. 3 2 D
  1332. 10 1 D
  1333. 10 1 D
  1334. 6 3 D
  1335. 7 0 D
  1336. 6 4 D
  1337. 6 0 D
  1338. 7 4 D
  1339. 6 0 D
  1340. 7 5 D
  1341. 6 0 D
  1342. 7 5 D
  1343. 6 0 D
  1344. 7 6 D
  1345. 6 0 D
  1346. 6 7 D
  1347. 7 0 D
  1348. 6 7 D
  1349. 7 0 D
  1350. 6 8 D
  1351. 7 0 D
  1352. 6 10 D
  1353. 7 0 D
  1354. 6 10 D
  1355. 6 0 D
  1356. 7 11 D
  1357. 6 0 D
  1358. 7 13 D
  1359. 6 0 D
  1360. 7 14 D
  1361. 6 0 D
  1362. 7 16 D
  1363. 6 0 D
  1364. 6 15 D
  1365. 7 0 D
  1366. 6 12 D
  1367. 7 0 D
  1368. 6 7 D
  1369. 20 1 D
  1370. 6 -3 D
  1371. 6 0 D
  1372. 7 -4 D
  1373. 10 -1 D
  1374. 3 -2 D
  1375. 32 1 D
  1376. 6 3 D
  1377. 7 0 D
  1378. 6 5 D
  1379. 7 0 D
  1380. 6 8 D
  1381. 7 0 D
  1382. 6 10 D
  1383. 7 0 D
  1384. 6 13 D
  1385. 7 0 D
  1386. 6 16 D
  1387. 6 0 D
  1388. 7 20 D
  1389. 6 0 D
  1390. 7 24 D
  1391. 6 0 D
  1392. 7 30 D
  1393. 6 0 D
  1394. 7 35 D
  1395. 6 0 D
  1396. 6 42 D
  1397. 7 0 D
  1398. 6 51 D
  1399. 7 0 D
  1400. 6 58 D
  1401. 7 0 D
  1402. 6 64 D
  1403. 7 0 D
  1404. 6 55 D
  1405. 6 0 D
  1406. 4 13 D
  1407. 3 -9 D
  1408. 6 0 D
  1409. 4 -44 D
  1410. 3 -95 D
  1411. 6 0 D
  1412. 7 -384 D
  1413. 6 0 D
  1414. 7 -570 D
  1415. 6 0 D
  1416. 6 -491 D
  1417. 7 0 D
  1418. 6 -238 D
  1419. 7 0 D
  1420. 3 -35 D
  1421. 10 0 D
  1422. 6 54 D
  1423. 7 0 D
  1424. 6 77 D
  1425. 6 0 D
  1426. 7 75 D
  1427. 6 0 D
  1428. 7 65 D
  1429. 6 0 D
  1430. 7 56 D
  1431. 6 0 D
  1432. 7 47 D
  1433. 6 0 D
  1434. 6 41 D
  1435. 7 0 D
  1436. 6 34 D
  1437. 7 0 D
  1438. 6 30 D
  1439. 7 0 D
  1440. 6 26 D
  1441. 7 0 D
  1442. 6 22 D
  1443. 6 0 D
  1444. 7 20 D
  1445. 6 0 D
  1446. 7 17 D
  1447. 6 0 D
  1448. 7 16 D
  1449. 6 0 D
  1450. 7 14 D
  1451. 6 0 D
  1452. 6 12 D
  1453. 7 0 D
  1454. 6 11 D
  1455. 7 0 D
  1456. 6 10 D
  1457. 7 0 D
  1458. 6 9 D
  1459. 7 0 D
  1460. 6 8 D
  1461. 6 0 D
  1462. 7 8 D
  1463. 6 0 D
  1464. 7 6 D
  1465. 6 0 D
  1466. 3 4 D
  1467. 4 3 D
  1468. 6 0 D
  1469. 7 5 D
  1470. 6 0 D
  1471. 6 6 D
  1472. 7 0 D
  1473. 6 5 D
  1474. 7 0 D
  1475. 6 4 D
  1476. 7 0 D
  1477. 6 4 D
  1478. 7 0 D
  1479. 6 4 D
  1480. 6 0 D
  1481. 7 4 D
  1482. 10 1 D
  1483. 3 2 D
  1484. 6 0 D
  1485. 7 3 D
  1486. 6 0 D
  1487. 7 3 D
  1488. 6 0 D
  1489. 6 3 D
  1490. 10 1 D
  1491. 10 1 D
  1492. 6 3 D
  1493. 10 1 D
  1494. 74 11 D
  1495. 16 2 D
  1496. 39 4 D
  1497. 113 9 D
  1498. 35 2 D
  1499. 100 5 D
  1500. 119 4 D
  1501. 107 3 D
  1502. 180 3 D
  1503. 184 2 D
  1504. 261 2 D
  1505. 635 2 D
  1506. 280 0 D
  1507. S
  1508. PSL_cliprestore
  1509. 0 A [] 0 B
  1510. 25 W
  1511. 0 A
  1512. /PSL_slant_y 0 def
  1513. 2 setlinecap
  1514. N 0 3300 M 0 -3300 D S
  1515. /PSL_A0_y 83 def
  1516. /PSL_A1_y 0 def
  1517. 8 W
  1518. N 0 0 M -83 0 D S
  1519. N 0 943 M -83 0 D S
  1520. N 0 1886 M -83 0 D S
  1521. N 0 2829 M -83 0 D S
  1522. /MM {neg exch M} def
  1523. /PSL_AH0 0
  1524. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1525. 200 F0
  1526. (”100) sw mx
  1527. (0) sw mx
  1528. (100) sw mx
  1529. (200) sw mx
  1530. def
  1531. /PSL_A0_y PSL_A0_y 83 add def
  1532. 0 PSL_A0_y MM
  1533. (”100) mr Z
  1534. 943 PSL_A0_y MM
  1535. (0) mr Z
  1536. 1886 PSL_A0_y MM
  1537. (100) mr Z
  1538. 2829 PSL_A0_y MM
  1539. (200) mr Z
  1540. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1541. N 0 189 M -42 0 D S
  1542. N 0 377 M -42 0 D S
  1543. N 0 566 M -42 0 D S
  1544. N 0 754 M -42 0 D S
  1545. N 0 1131 M -42 0 D S
  1546. N 0 1320 M -42 0 D S
  1547. N 0 1509 M -42 0 D S
  1548. N 0 1697 M -42 0 D S
  1549. N 0 2074 M -42 0 D S
  1550. N 0 2263 M -42 0 D S
  1551. N 0 2451 M -42 0 D S
  1552. N 0 2640 M -42 0 D S
  1553. N 0 3017 M -42 0 D S
  1554. N 0 3206 M -42 0 D S
  1555. /PSL_LH 267 F0
  1556. (M) sh def
  1557. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  1558. 1650 PSL_L_y MM
  1559. V 90 R (VGG \(E\371tv\371s\)) bc Z U
  1560. 6600 0 T
  1561. 25 W
  1562. N 0 3300 M 0 -3300 D S
  1563. /PSL_A0_y 83 def
  1564. /PSL_A1_y 0 def
  1565. 8 W
  1566. N 0 0 M 83 0 D S
  1567. N 0 943 M 83 0 D S
  1568. N 0 1886 M 83 0 D S
  1569. N 0 2829 M 83 0 D S
  1570. N 0 189 M 42 0 D S
  1571. N 0 377 M 42 0 D S
  1572. N 0 566 M 42 0 D S
  1573. N 0 754 M 42 0 D S
  1574. N 0 1131 M 42 0 D S
  1575. N 0 1320 M 42 0 D S
  1576. N 0 1509 M 42 0 D S
  1577. N 0 1697 M 42 0 D S
  1578. N 0 2074 M 42 0 D S
  1579. N 0 2263 M 42 0 D S
  1580. N 0 2451 M 42 0 D S
  1581. N 0 2640 M 42 0 D S
  1582. N 0 3017 M 42 0 D S
  1583. N 0 3206 M 42 0 D S
  1584. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1585. -6600 0 T
  1586. 25 W
  1587. N 0 0 M 6600 0 D S
  1588. /PSL_A0_y 83 def
  1589. /PSL_A1_y 0 def
  1590. 8 W
  1591. N 722 0 M 0 -83 D S
  1592. N 2011 0 M 0 -83 D S
  1593. N 3300 0 M 0 -83 D S
  1594. N 4589 0 M 0 -83 D S
  1595. N 5878 0 M 0 -83 D S
  1596. /MM {neg M} def
  1597. /PSL_AH0 0
  1598. 200 F0
  1599. (”200km) sh mx
  1600. (”100km) sh mx
  1601. (0km) sh mx
  1602. (100km) sh mx
  1603. (200km) sh mx
  1604. def
  1605. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1606. 722 PSL_A0_y MM
  1607. (”200km) bc Z
  1608. 2011 PSL_A0_y MM
  1609. (”100km) bc Z
  1610. 3300 PSL_A0_y MM
  1611. (0km) bc Z
  1612. 4589 PSL_A0_y MM
  1613. (100km) bc Z
  1614. 5878 PSL_A0_y MM
  1615. (200km) bc Z
  1616. N 206 0 M 0 -42 D S
  1617. N 464 0 M 0 -42 D S
  1618. N 980 0 M 0 -42 D S
  1619. N 1238 0 M 0 -42 D S
  1620. N 1495 0 M 0 -42 D S
  1621. N 1753 0 M 0 -42 D S
  1622. N 2269 0 M 0 -42 D S
  1623. N 2527 0 M 0 -42 D S
  1624. N 2784 0 M 0 -42 D S
  1625. N 3042 0 M 0 -42 D S
  1626. N 3558 0 M 0 -42 D S
  1627. N 3816 0 M 0 -42 D S
  1628. N 4073 0 M 0 -42 D S
  1629. N 4331 0 M 0 -42 D S
  1630. N 4847 0 M 0 -42 D S
  1631. N 5105 0 M 0 -42 D S
  1632. N 5362 0 M 0 -42 D S
  1633. N 5620 0 M 0 -42 D S
  1634. N 6136 0 M 0 -42 D S
  1635. N 6394 0 M 0 -42 D S
  1636. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1637. 0 3300 T
  1638. 25 W
  1639. N 0 0 M 6600 0 D S
  1640. /PSL_A0_y 83 def
  1641. /PSL_A1_y 0 def
  1642. 8 W
  1643. N 722 0 M 0 83 D S
  1644. N 2011 0 M 0 83 D S
  1645. N 3300 0 M 0 83 D S
  1646. N 4589 0 M 0 83 D S
  1647. N 5878 0 M 0 83 D S
  1648. N 206 0 M 0 42 D S
  1649. N 464 0 M 0 42 D S
  1650. N 980 0 M 0 42 D S
  1651. N 1238 0 M 0 42 D S
  1652. N 1495 0 M 0 42 D S
  1653. N 1753 0 M 0 42 D S
  1654. N 2269 0 M 0 42 D S
  1655. N 2527 0 M 0 42 D S
  1656. N 2784 0 M 0 42 D S
  1657. N 3042 0 M 0 42 D S
  1658. N 3558 0 M 0 42 D S
  1659. N 3816 0 M 0 42 D S
  1660. N 4073 0 M 0 42 D S
  1661. N 4331 0 M 0 42 D S
  1662. N 4847 0 M 0 42 D S
  1663. N 5105 0 M 0 42 D S
  1664. N 5362 0 M 0 42 D S
  1665. N 5620 0 M 0 42 D S
  1666. N 6136 0 M 0 42 D S
  1667. N 6394 0 M 0 42 D S
  1668. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1669. 0 -3300 T
  1670. 0 setlinecap
  1671. %%EndObject
  1672. 0 A
  1673. FQ
  1674. O0
  1675. 0 0 TM
  1676. % PostScript produced by:
  1677. %@GMT: gmt psxy -R-256/256/-100/250 -JX5.5i/2.75i -O -K -W1p,blue vgg.trk
  1678. %@PROJ: xy -256.00000000 256.00000000 -100.00000000 250.00000000 -256.000 256.000 -100.000 250.000 +xy
  1679. %%BeginObject PSL_Layer_8
  1680. 0 setlinecap
  1681. 0 setlinejoin
  1682. 3.32550952342 setmiterlimit
  1683. 17 W
  1684. 0 0 1 C
  1685. clipsave
  1686. 0 0 M
  1687. 6600 0 D
  1688. 0 3300 D
  1689. -6600 0 D
  1690. P
  1691. PSL_clip N
  1692. 0 938 M
  1693. 822 -1 D
  1694. 499 -4 D
  1695. 223 -4 D
  1696. 193 -6 D
  1697. 103 -5 D
  1698. 152 -11 D
  1699. 25 -3 D
  1700. 29 -3 D
  1701. 29 -4 D
  1702. 10 -1 D
  1703. 39 -6 D
  1704. 9 -1 D
  1705. 10 -3 D
  1706. 16 -2 D
  1707. 7 -3 D
  1708. 9 -1 D
  1709. 7 -2 D
  1710. 6 -1 D
  1711. 3 -2 D
  1712. 10 -1 D
  1713. 3 -2 D
  1714. 7 0 D
  1715. 6 -3 D
  1716. 7 0 D
  1717. 6 -4 D
  1718. 7 0 D
  1719. 6 -4 D
  1720. 6 0 D
  1721. 7 -5 D
  1722. 6 0 D
  1723. 7 -4 D
  1724. 6 0 D
  1725. 7 -5 D
  1726. 6 0 D
  1727. 7 -6 D
  1728. 6 0 D
  1729. 6 -6 D
  1730. 7 0 D
  1731. 6 -6 D
  1732. 7 0 D
  1733. 6 -7 D
  1734. 7 0 D
  1735. 6 -8 D
  1736. 7 0 D
  1737. 6 -8 D
  1738. 6 0 D
  1739. 7 -10 D
  1740. 6 0 D
  1741. 7 -10 D
  1742. 6 0 D
  1743. 7 -11 D
  1744. 6 0 D
  1745. 7 -13 D
  1746. 6 0 D
  1747. 6 -14 D
  1748. 7 0 D
  1749. 6 -16 D
  1750. 7 0 D
  1751. 6 -18 D
  1752. 7 0 D
  1753. 6 -21 D
  1754. 7 0 D
  1755. 6 -23 D
  1756. 6 0 D
  1757. 7 -26 D
  1758. 6 0 D
  1759. 7 -31 D
  1760. 6 0 D
  1761. 7 -35 D
  1762. 6 0 D
  1763. 7 -42 D
  1764. 6 0 D
  1765. 6 -48 D
  1766. 7 0 D
  1767. 6 -57 D
  1768. 7 0 D
  1769. 6 -67 D
  1770. 7 0 D
  1771. 6 -77 D
  1772. 7 0 D
  1773. 6 -84 D
  1774. 6 0 D
  1775. 7 -75 D
  1776. 6 0 D
  1777. 4 -20 D
  1778. 3 5 D
  1779. 6 0 D
  1780. 7 156 D
  1781. 6 0 D
  1782. 7 448 D
  1783. 6 0 D
  1784. 6 673 D
  1785. 7 0 D
  1786. 6 588 D
  1787. 7 0 D
  1788. 6 289 D
  1789. 7 0 D
  1790. 3 45 D
  1791. 3 3 D
  1792. 7 0 D
  1793. 6 -62 D
  1794. 6 0 D
  1795. 7 -91 D
  1796. 6 0 D
  1797. 7 -91 D
  1798. 6 0 D
  1799. 7 -81 D
  1800. 6 0 D
  1801. 7 -71 D
  1802. 6 0 D
  1803. 6 -61 D
  1804. 7 0 D
  1805. 6 -53 D
  1806. 7 0 D
  1807. 6 -47 D
  1808. 7 0 D
  1809. 6 -40 D
  1810. 7 0 D
  1811. 6 -36 D
  1812. 6 0 D
  1813. 7 -31 D
  1814. 6 0 D
  1815. 7 -28 D
  1816. 6 0 D
  1817. 7 -25 D
  1818. 6 0 D
  1819. 7 -22 D
  1820. 6 0 D
  1821. 7 -20 D
  1822. 6 0 D
  1823. 6 -18 D
  1824. 7 0 D
  1825. 6 -17 D
  1826. 7 0 D
  1827. 6 -15 D
  1828. 7 0 D
  1829. 6 -13 D
  1830. 7 0 D
  1831. 6 -13 D
  1832. 6 0 D
  1833. 7 -11 D
  1834. 6 0 D
  1835. 7 -11 D
  1836. 6 0 D
  1837. 7 -9 D
  1838. 6 0 D
  1839. 7 -9 D
  1840. 6 0 D
  1841. 6 -8 D
  1842. 7 0 D
  1843. 6 -8 D
  1844. 7 0 D
  1845. 6 -6 D
  1846. 7 0 D
  1847. 6 -7 D
  1848. 7 0 D
  1849. 6 -5 D
  1850. 6 0 D
  1851. 7 -6 D
  1852. 6 0 D
  1853. 7 -5 D
  1854. 6 0 D
  1855. 7 -4 D
  1856. 6 0 D
  1857. 7 -4 D
  1858. 6 0 D
  1859. 6 -4 D
  1860. 7 0 D
  1861. 6 -3 D
  1862. 7 0 D
  1863. 6 -3 D
  1864. 7 0 D
  1865. 6 -3 D
  1866. 10 -1 D
  1867. 55 -8 D
  1868. 54 -3 D
  1869. 55 1 D
  1870. 29 3 D
  1871. 39 6 D
  1872. 22 3 D
  1873. 10 3 D
  1874. 3 0 D
  1875. 7 3 D
  1876. 6 0 D
  1877. 7 4 D
  1878. 6 0 D
  1879. 6 4 D
  1880. 7 0 D
  1881. 6 4 D
  1882. 7 0 D
  1883. 6 5 D
  1884. 7 0 D
  1885. 6 5 D
  1886. 7 0 D
  1887. 6 5 D
  1888. 6 0 D
  1889. 7 6 D
  1890. 6 0 D
  1891. 7 7 D
  1892. 6 0 D
  1893. 7 7 D
  1894. 6 0 D
  1895. 7 8 D
  1896. 6 0 D
  1897. 6 8 D
  1898. 7 0 D
  1899. 6 9 D
  1900. 7 0 D
  1901. 6 10 D
  1902. 7 0 D
  1903. 6 11 D
  1904. 7 0 D
  1905. 6 12 D
  1906. 6 0 D
  1907. 7 13 D
  1908. 6 0 D
  1909. 7 15 D
  1910. 6 0 D
  1911. 7 15 D
  1912. 6 0 D
  1913. 7 17 D
  1914. 6 0 D
  1915. 6 20 D
  1916. 7 0 D
  1917. 6 21 D
  1918. 7 0 D
  1919. 6 23 D
  1920. 7 0 D
  1921. 6 27 D
  1922. 7 0 D
  1923. 6 29 D
  1924. 7 0 D
  1925. 6 34 D
  1926. 6 0 D
  1927. 7 38 D
  1928. 6 0 D
  1929. 7 43 D
  1930. 6 0 D
  1931. 7 49 D
  1932. 6 0 D
  1933. 7 57 D
  1934. 6 0 D
  1935. 6 66 D
  1936. 7 0 D
  1937. 6 76 D
  1938. 7 0 D
  1939. 6 87 D
  1940. 7 0 D
  1941. 6 92 D
  1942. 7 0 D
  1943. 6 83 D
  1944. 6 0 D
  1945. 4 24 D
  1946. 3 -3 D
  1947. 6 0 D
  1948. 4 -45 D
  1949. 3 -106 D
  1950. 6 0 D
  1951. 7 -446 D
  1952. 6 0 D
  1953. 7 -673 D
  1954. 6 0 D
  1955. 6 -589 D
  1956. 7 0 D
  1957. 6 -292 D
  1958. 7 0 D
  1959. 3 -48 D
  1960. 3 -5 D
  1961. 7 0 D
  1962. 6 54 D
  1963. 7 0 D
  1964. 6 83 D
  1965. 6 0 D
  1966. 7 82 D
  1967. 6 0 D
  1968. 7 72 D
  1969. 6 0 D
  1970. 7 62 D
  1971. 6 0 D
  1972. 7 52 D
  1973. 6 0 D
  1974. 6 45 D
  1975. 7 0 D
  1976. 6 38 D
  1977. 7 0 D
  1978. 6 33 D
  1979. 7 0 D
  1980. 6 28 D
  1981. 7 0 D
  1982. 6 25 D
  1983. 6 0 D
  1984. 7 22 D
  1985. 6 0 D
  1986. 7 19 D
  1987. 6 0 D
  1988. 7 17 D
  1989. 6 0 D
  1990. 7 15 D
  1991. 6 0 D
  1992. 6 13 D
  1993. 7 0 D
  1994. 6 13 D
  1995. 7 0 D
  1996. 6 10 D
  1997. 7 0 D
  1998. 6 10 D
  1999. 7 0 D
  2000. 6 9 D
  2001. 6 0 D
  2002. 7 8 D
  2003. 6 0 D
  2004. 7 8 D
  2005. 6 0 D
  2006. 7 6 D
  2007. 6 0 D
  2008. 7 6 D
  2009. 6 0 D
  2010. 6 6 D
  2011. 7 0 D
  2012. 6 5 D
  2013. 7 0 D
  2014. 6 5 D
  2015. 7 0 D
  2016. 6 5 D
  2017. 7 0 D
  2018. 6 4 D
  2019. 6 0 D
  2020. 7 4 D
  2021. 6 0 D
  2022. 10 3 D
  2023. 3 0 D
  2024. 7 4 D
  2025. 9 1 D
  2026. 7 2 D
  2027. 6 1 D
  2028. 3 2 D
  2029. 10 1 D
  2030. 10 1 D
  2031. 6 3 D
  2032. 10 1 D
  2033. 10 1 D
  2034. 6 3 D
  2035. 52 7 D
  2036. 22 3 D
  2037. 26 3 D
  2038. 39 4 D
  2039. 119 9 D
  2040. 77 4 D
  2041. 126 5 D
  2042. 158 4 D
  2043. 171 3 D
  2044. 196 2 D
  2045. 271 2 D
  2046. 673 2 D
  2047. 197 0 D
  2048. S
  2049. PSL_cliprestore
  2050. %%EndObject
  2051. 0 A
  2052. FQ
  2053. O0
  2054. 0 0 TM
  2055. % PostScript produced by:
  2056. %@GMT: gmt pstext -R-256/256/-100/250 -JX5.5i/2.75i -O -K -F+jTL+f14p -Dj0.1i -Gwhite -C+tO
  2057. %@PROJ: xy -256.00000000 256.00000000 -100.00000000 250.00000000 -256.000 256.000 -100.000 250.000 +xy
  2058. %%BeginObject PSL_Layer_9
  2059. 0 setlinecap
  2060. 0 setlinejoin
  2061. 3.32550952342 setmiterlimit
  2062. clipsave
  2063. 0 0 M
  2064. 6600 0 D
  2065. 0 3300 D
  2066. -6600 0 D
  2067. P
  2068. PSL_clip N
  2069. 4 W
  2070. {1 A} FS
  2071. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2072. 233 F0
  2073. V
  2074. (VGG) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2075. /PSL_dx 35 def
  2076. /PSL_dy 35 def
  2077. 120 3180 T 0 PSL_dim_h neg T
  2078. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  2079. U
  2080. 120 3180 M (VGG) tl Z
  2081. PSL_cliprestore
  2082. %%EndObject
  2083. 0 A
  2084. FQ
  2085. O0
  2086. 0 0 TM
  2087. % PostScript produced by:
  2088. %@GMT: gmt pstext -R-256/256/-100/250 -JX5.5i/2.75i -O -K -F+jTR+f14p,blue -Dj0.1i -Gwhite -C+tO
  2089. %@PROJ: xy -256.00000000 256.00000000 -100.00000000 250.00000000 -256.000 256.000 -100.000 250.000 +xy
  2090. %%BeginObject PSL_Layer_10
  2091. 0 setlinecap
  2092. 0 setlinejoin
  2093. 3.32550952342 setmiterlimit
  2094. clipsave
  2095. 0 0 M
  2096. 6600 0 D
  2097. 0 3300 D
  2098. -6600 0 D
  2099. P
  2100. PSL_clip N
  2101. 4 W
  2102. {1 A} FS
  2103. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2104. 233 F0
  2105. V
  2106. (CONSTANT DENSITY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2107. /PSL_dx 35 def
  2108. /PSL_dy 35 def
  2109. 6480 3180 T PSL_dim_w neg PSL_dim_h neg T
  2110. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  2111. U
  2112. 0 0 1 C
  2113. 6480 3180 M (CONSTANT DENSITY) tr Z
  2114. PSL_cliprestore
  2115. %%EndObject
  2116. 0 A
  2117. FQ
  2118. O0
  2119. 0 0 TM
  2120. % PostScript produced by:
  2121. %@GMT: gmt pstext -R-256/256/-100/250 -JX5.5i/2.75i -O -K -F+jTR+f14p,red -Dj0.1i/0.4i -Gwhite -C+tO
  2122. %@PROJ: xy -256.00000000 256.00000000 -100.00000000 250.00000000 -256.000 256.000 -100.000 250.000 +xy
  2123. %%BeginObject PSL_Layer_11
  2124. 0 setlinecap
  2125. 0 setlinejoin
  2126. 3.32550952342 setmiterlimit
  2127. clipsave
  2128. 0 0 M
  2129. 6600 0 D
  2130. 0 3300 D
  2131. -6600 0 D
  2132. P
  2133. PSL_clip N
  2134. 4 W
  2135. {1 A} FS
  2136. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2137. 233 F0
  2138. V
  2139. (VARIABLE DENSITY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2140. /PSL_dx 35 def
  2141. /PSL_dy 35 def
  2142. 6480 2820 T PSL_dim_w neg PSL_dim_h neg T
  2143. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  2144. U
  2145. 1 0 0 C
  2146. 6480 2820 M (VARIABLE DENSITY) tr Z
  2147. PSL_cliprestore
  2148. %%EndObject
  2149. 0 A
  2150. FQ
  2151. O0
  2152. 0 3840 TM
  2153. % PostScript produced by:
  2154. %@GMT: gmt psxy -R-256/256/-25/250 -JX5.5i/2.75i -O -K -W1p,red faa.trk -BWSne -Bafg1000 -Bx+ukm '-By+lFAA (mGal)' -Y3.2i
  2155. %@PROJ: xy -256.00000000 256.00000000 -25.00000000 250.00000000 -256.000 256.000 -25.000 250.000 +xy
  2156. %%BeginObject PSL_Layer_12
  2157. 0 setlinecap
  2158. 0 setlinejoin
  2159. 3.32550952342 setmiterlimit
  2160. 4 W
  2161. 3300 0 M
  2162. 0 3300 D
  2163. S
  2164. 0 300 M
  2165. 6600 0 D
  2166. S
  2167. 17 W
  2168. 1 0 0 C
  2169. clipsave
  2170. 0 0 M
  2171. 6600 0 D
  2172. 0 3300 D
  2173. -6600 0 D
  2174. P
  2175. PSL_clip N
  2176. 0 302 M
  2177. 1192 1 D
  2178. 439 3 D
  2179. 235 4 D
  2180. 203 7 D
  2181. 45 3 D
  2182. 87 7 D
  2183. 39 4 D
  2184. 29 4 D
  2185. 22 3 D
  2186. 7 2 D
  2187. 29 4 D
  2188. 6 3 D
  2189. 7 0 D
  2190. 6 3 D
  2191. 7 0 D
  2192. 6 3 D
  2193. 6 0 D
  2194. 7 4 D
  2195. 6 0 D
  2196. 7 4 D
  2197. 6 0 D
  2198. 7 5 D
  2199. 6 0 D
  2200. 7 5 D
  2201. 6 0 D
  2202. 6 5 D
  2203. 7 0 D
  2204. 6 7 D
  2205. 7 0 D
  2206. 6 7 D
  2207. 7 0 D
  2208. 6 8 D
  2209. 7 0 D
  2210. 6 9 D
  2211. 6 0 D
  2212. 7 11 D
  2213. 6 0 D
  2214. 7 13 D
  2215. 6 0 D
  2216. 7 15 D
  2217. 6 0 D
  2218. 7 18 D
  2219. 6 0 D
  2220. 6 22 D
  2221. 7 0 D
  2222. 6 27 D
  2223. 7 0 D
  2224. 6 34 D
  2225. 7 0 D
  2226. 6 44 D
  2227. 7 0 D
  2228. 6 57 D
  2229. 6 0 D
  2230. 7 78 D
  2231. 6 0 D
  2232. 7 109 D
  2233. 6 0 D
  2234. 7 153 D
  2235. 6 0 D
  2236. 7 203 D
  2237. 6 0 D
  2238. 6 236 D
  2239. 7 0 D
  2240. 6 229 D
  2241. 7 0 D
  2242. 6 191 D
  2243. 7 0 D
  2244. 6 146 D
  2245. 7 0 D
  2246. 6 111 D
  2247. 6 0 D
  2248. 7 88 D
  2249. 6 0 D
  2250. 7 72 D
  2251. 6 0 D
  2252. 7 62 D
  2253. 6 0 D
  2254. 7 53 D
  2255. 6 0 D
  2256. 6 49 D
  2257. 7 0 D
  2258. 6 44 D
  2259. 7 0 D
  2260. 6 40 D
  2261. 7 0 D
  2262. 6 39 D
  2263. 7 0 D
  2264. 6 35 D
  2265. 6 0 D
  2266. 7 35 D
  2267. 6 0 D
  2268. 7 32 D
  2269. 6 0 D
  2270. 7 32 D
  2271. 6 0 D
  2272. 7 30 D
  2273. 6 0 D
  2274. 7 29 D
  2275. 6 0 D
  2276. 6 28 D
  2277. 7 0 D
  2278. 6 27 D
  2279. 7 0 D
  2280. 6 26 D
  2281. 7 0 D
  2282. 6 24 D
  2283. 7 0 D
  2284. 6 22 D
  2285. 6 0 D
  2286. 7 20 D
  2287. 6 0 D
  2288. 7 17 D
  2289. 6 0 D
  2290. 3 8 D
  2291. 4 6 D
  2292. 6 0 D
  2293. 3 7 D
  2294. 4 5 D
  2295. 6 0 D
  2296. 6 9 D
  2297. 7 0 D
  2298. 6 8 D
  2299. 7 0 D
  2300. 6 7 D
  2301. 7 0 D
  2302. 6 5 D
  2303. 7 0 D
  2304. 6 5 D
  2305. 6 0 D
  2306. 7 5 D
  2307. 6 0 D
  2308. 7 4 D
  2309. 9 1 D
  2310. 7 2 D
  2311. 3 0 D
  2312. 7 3 D
  2313. 6 0 D
  2314. 6 3 D
  2315. 10 1 D
  2316. 39 6 D
  2317. 26 3 D
  2318. 41 3 D
  2319. 87 1 D
  2320. 62 -4 D
  2321. 16 -2 D
  2322. 61 -9 D
  2323. 6 -3 D
  2324. 7 0 D
  2325. 6 -4 D
  2326. 10 -1 D
  2327. 3 -2 D
  2328. 7 0 D
  2329. 6 -4 D
  2330. 7 0 D
  2331. 6 -5 D
  2332. 6 0 D
  2333. 7 -5 D
  2334. 6 0 D
  2335. 7 -6 D
  2336. 6 0 D
  2337. 7 -8 D
  2338. 6 0 D
  2339. 7 -8 D
  2340. 6 0 D
  2341. 6 -10 D
  2342. 7 0 D
  2343. 6 -13 D
  2344. 7 0 D
  2345. 6 -16 D
  2346. 7 0 D
  2347. 6 -18 D
  2348. 7 0 D
  2349. 6 -22 D
  2350. 6 0 D
  2351. 7 -23 D
  2352. 6 0 D
  2353. 7 -25 D
  2354. 6 0 D
  2355. 7 -26 D
  2356. 6 0 D
  2357. 7 -28 D
  2358. 6 0 D
  2359. 6 -28 D
  2360. 7 0 D
  2361. 6 -30 D
  2362. 7 0 D
  2363. 6 -31 D
  2364. 7 0 D
  2365. 6 -32 D
  2366. 7 0 D
  2367. 6 -33 D
  2368. 7 0 D
  2369. 6 -35 D
  2370. 6 0 D
  2371. 7 -37 D
  2372. 6 0 D
  2373. 7 -40 D
  2374. 6 0 D
  2375. 7 -42 D
  2376. 6 0 D
  2377. 7 -46 D
  2378. 6 0 D
  2379. 6 -51 D
  2380. 7 0 D
  2381. 6 -57 D
  2382. 7 0 D
  2383. 6 -66 D
  2384. 7 0 D
  2385. 6 -80 D
  2386. 7 0 D
  2387. 6 -98 D
  2388. 6 0 D
  2389. 7 -127 D
  2390. 6 0 D
  2391. 7 -168 D
  2392. 6 0 D
  2393. 7 -212 D
  2394. 6 0 D
  2395. 7 -238 D
  2396. 6 0 D
  2397. 6 -223 D
  2398. 7 0 D
  2399. 6 -179 D
  2400. 7 0 D
  2401. 6 -129 D
  2402. 7 0 D
  2403. 6 -92 D
  2404. 7 0 D
  2405. 6 -67 D
  2406. 6 0 D
  2407. 7 -50 D
  2408. 6 0 D
  2409. 7 -38 D
  2410. 6 0 D
  2411. 7 -30 D
  2412. 6 0 D
  2413. 7 -24 D
  2414. 6 0 D
  2415. 6 -20 D
  2416. 7 0 D
  2417. 6 -17 D
  2418. 7 0 D
  2419. 6 -13 D
  2420. 7 0 D
  2421. 6 -12 D
  2422. 7 0 D
  2423. 6 -10 D
  2424. 6 0 D
  2425. 7 -9 D
  2426. 6 0 D
  2427. 7 -8 D
  2428. 6 0 D
  2429. 7 -7 D
  2430. 6 0 D
  2431. 7 -6 D
  2432. 6 0 D
  2433. 6 -5 D
  2434. 7 0 D
  2435. 6 -5 D
  2436. 7 0 D
  2437. 6 -4 D
  2438. 7 0 D
  2439. 6 -4 D
  2440. 7 0 D
  2441. 6 -3 D
  2442. 6 0 D
  2443. 10 -3 D
  2444. 13 -3 D
  2445. 3 0 D
  2446. 7 -3 D
  2447. 22 -3 D
  2448. 3 -2 D
  2449. 10 -1 D
  2450. 26 -3 D
  2451. 29 -4 D
  2452. 68 -6 D
  2453. 87 -6 D
  2454. 96 -4 D
  2455. 65 -2 D
  2456. 87 -2 D
  2457. 113 -2 D
  2458. 170 -2 D
  2459. 297 -2 D
  2460. 841 -2 D
  2461. 406 0 D
  2462. S
  2463. PSL_cliprestore
  2464. 0 A [] 0 B
  2465. 25 W
  2466. 0 A
  2467. /PSL_slant_y 0 def
  2468. 2 setlinecap
  2469. N 0 3300 M 0 -3300 D S
  2470. /PSL_A0_y 83 def
  2471. /PSL_A1_y 0 def
  2472. 8 W
  2473. N 0 300 M -83 0 D S
  2474. N 0 1500 M -83 0 D S
  2475. N 0 2700 M -83 0 D S
  2476. /MM {neg exch M} def
  2477. /PSL_AH0 0
  2478. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2479. 200 F0
  2480. (0) sw mx
  2481. (100) sw mx
  2482. (200) sw mx
  2483. def
  2484. /PSL_A0_y PSL_A0_y 83 add def
  2485. 300 PSL_A0_y MM
  2486. (0) mr Z
  2487. 1500 PSL_A0_y MM
  2488. (100) mr Z
  2489. 2700 PSL_A0_y MM
  2490. (200) mr Z
  2491. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2492. N 0 60 M -42 0 D S
  2493. N 0 540 M -42 0 D S
  2494. N 0 780 M -42 0 D S
  2495. N 0 1020 M -42 0 D S
  2496. N 0 1260 M -42 0 D S
  2497. N 0 1740 M -42 0 D S
  2498. N 0 1980 M -42 0 D S
  2499. N 0 2220 M -42 0 D S
  2500. N 0 2460 M -42 0 D S
  2501. N 0 2940 M -42 0 D S
  2502. N 0 3180 M -42 0 D S
  2503. /PSL_LH 267 F0
  2504. (M) sh def
  2505. /PSL_L_y PSL_A0_y PSL_A1_y mx 133 add def
  2506. 1650 PSL_L_y MM
  2507. V 90 R (FAA \(mGal\)) bc Z U
  2508. 6600 0 T
  2509. 25 W
  2510. N 0 3300 M 0 -3300 D S
  2511. /PSL_A0_y 83 def
  2512. /PSL_A1_y 0 def
  2513. 8 W
  2514. N 0 300 M 83 0 D S
  2515. N 0 1500 M 83 0 D S
  2516. N 0 2700 M 83 0 D S
  2517. N 0 60 M 42 0 D S
  2518. N 0 540 M 42 0 D S
  2519. N 0 780 M 42 0 D S
  2520. N 0 1020 M 42 0 D S
  2521. N 0 1260 M 42 0 D S
  2522. N 0 1740 M 42 0 D S
  2523. N 0 1980 M 42 0 D S
  2524. N 0 2220 M 42 0 D S
  2525. N 0 2460 M 42 0 D S
  2526. N 0 2940 M 42 0 D S
  2527. N 0 3180 M 42 0 D S
  2528. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2529. -6600 0 T
  2530. 25 W
  2531. N 0 0 M 6600 0 D S
  2532. /PSL_A0_y 83 def
  2533. /PSL_A1_y 0 def
  2534. 8 W
  2535. N 722 0 M 0 -83 D S
  2536. N 2011 0 M 0 -83 D S
  2537. N 3300 0 M 0 -83 D S
  2538. N 4589 0 M 0 -83 D S
  2539. N 5878 0 M 0 -83 D S
  2540. /MM {neg M} def
  2541. /PSL_AH0 0
  2542. 200 F0
  2543. (”200km) sh mx
  2544. (”100km) sh mx
  2545. (0km) sh mx
  2546. (100km) sh mx
  2547. (200km) sh mx
  2548. def
  2549. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2550. 722 PSL_A0_y MM
  2551. (”200km) bc Z
  2552. 2011 PSL_A0_y MM
  2553. (”100km) bc Z
  2554. 3300 PSL_A0_y MM
  2555. (0km) bc Z
  2556. 4589 PSL_A0_y MM
  2557. (100km) bc Z
  2558. 5878 PSL_A0_y MM
  2559. (200km) bc Z
  2560. N 206 0 M 0 -42 D S
  2561. N 464 0 M 0 -42 D S
  2562. N 980 0 M 0 -42 D S
  2563. N 1238 0 M 0 -42 D S
  2564. N 1495 0 M 0 -42 D S
  2565. N 1753 0 M 0 -42 D S
  2566. N 2269 0 M 0 -42 D S
  2567. N 2527 0 M 0 -42 D S
  2568. N 2784 0 M 0 -42 D S
  2569. N 3042 0 M 0 -42 D S
  2570. N 3558 0 M 0 -42 D S
  2571. N 3816 0 M 0 -42 D S
  2572. N 4073 0 M 0 -42 D S
  2573. N 4331 0 M 0 -42 D S
  2574. N 4847 0 M 0 -42 D S
  2575. N 5105 0 M 0 -42 D S
  2576. N 5362 0 M 0 -42 D S
  2577. N 5620 0 M 0 -42 D S
  2578. N 6136 0 M 0 -42 D S
  2579. N 6394 0 M 0 -42 D S
  2580. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2581. 0 3300 T
  2582. 25 W
  2583. N 0 0 M 6600 0 D S
  2584. /PSL_A0_y 83 def
  2585. /PSL_A1_y 0 def
  2586. 8 W
  2587. N 722 0 M 0 83 D S
  2588. N 2011 0 M 0 83 D S
  2589. N 3300 0 M 0 83 D S
  2590. N 4589 0 M 0 83 D S
  2591. N 5878 0 M 0 83 D S
  2592. N 206 0 M 0 42 D S
  2593. N 464 0 M 0 42 D S
  2594. N 980 0 M 0 42 D S
  2595. N 1238 0 M 0 42 D S
  2596. N 1495 0 M 0 42 D S
  2597. N 1753 0 M 0 42 D S
  2598. N 2269 0 M 0 42 D S
  2599. N 2527 0 M 0 42 D S
  2600. N 2784 0 M 0 42 D S
  2601. N 3042 0 M 0 42 D S
  2602. N 3558 0 M 0 42 D S
  2603. N 3816 0 M 0 42 D S
  2604. N 4073 0 M 0 42 D S
  2605. N 4331 0 M 0 42 D S
  2606. N 4847 0 M 0 42 D S
  2607. N 5105 0 M 0 42 D S
  2608. N 5362 0 M 0 42 D S
  2609. N 5620 0 M 0 42 D S
  2610. N 6136 0 M 0 42 D S
  2611. N 6394 0 M 0 42 D S
  2612. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2613. 0 -3300 T
  2614. 0 setlinecap
  2615. %%EndObject
  2616. 0 A
  2617. FQ
  2618. O0
  2619. 0 0 TM
  2620. % PostScript produced by:
  2621. %@GMT: gmt psxy -R-256/256/-25/250 -JX5.5i/2.75i -O -K -W1p,blue faa.trk
  2622. %@PROJ: xy -256.00000000 256.00000000 -25.00000000 250.00000000 -256.000 256.000 -25.000 250.000 +xy
  2623. %%BeginObject PSL_Layer_13
  2624. 0 setlinecap
  2625. 0 setlinejoin
  2626. 3.32550952342 setmiterlimit
  2627. 17 W
  2628. 0 0 1 C
  2629. clipsave
  2630. 0 0 M
  2631. 6600 0 D
  2632. 0 3300 D
  2633. -6600 0 D
  2634. P
  2635. PSL_clip N
  2636. 0 301 M
  2637. 1234 1 D
  2638. 397 3 D
  2639. 261 5 D
  2640. 177 7 D
  2641. 35 2 D
  2642. 71 6 D
  2643. 39 4 D
  2644. 26 3 D
  2645. 64 10 D
  2646. 3 2 D
  2647. 10 1 D
  2648. 3 2 D
  2649. 10 1 D
  2650. 3 2 D
  2651. 10 1 D
  2652. 3 2 D
  2653. 7 0 D
  2654. 6 4 D
  2655. 6 0 D
  2656. 7 4 D
  2657. 6 0 D
  2658. 7 4 D
  2659. 6 0 D
  2660. 7 5 D
  2661. 6 0 D
  2662. 7 6 D
  2663. 6 0 D
  2664. 6 6 D
  2665. 7 0 D
  2666. 6 7 D
  2667. 7 0 D
  2668. 6 8 D
  2669. 7 0 D
  2670. 6 9 D
  2671. 7 0 D
  2672. 6 11 D
  2673. 6 0 D
  2674. 7 12 D
  2675. 6 0 D
  2676. 7 15 D
  2677. 6 0 D
  2678. 7 17 D
  2679. 6 0 D
  2680. 7 21 D
  2681. 6 0 D
  2682. 6 25 D
  2683. 7 0 D
  2684. 6 31 D
  2685. 7 0 D
  2686. 6 39 D
  2687. 7 0 D
  2688. 6 50 D
  2689. 7 0 D
  2690. 6 66 D
  2691. 6 0 D
  2692. 7 90 D
  2693. 6 0 D
  2694. 7 126 D
  2695. 6 0 D
  2696. 7 178 D
  2697. 6 0 D
  2698. 7 234 D
  2699. 6 0 D
  2700. 6 271 D
  2701. 7 0 D
  2702. 6 259 D
  2703. 7 0 D
  2704. 6 210 D
  2705. 7 0 D
  2706. 6 155 D
  2707. 7 0 D
  2708. 6 112 D
  2709. 6 0 D
  2710. 7 83 D
  2711. 6 0 D
  2712. 7 63 D
  2713. 6 0 D
  2714. 7 49 D
  2715. 6 0 D
  2716. 7 40 D
  2717. 6 0 D
  2718. 6 32 D
  2719. 7 0 D
  2720. 6 27 D
  2721. 7 0 D
  2722. 6 23 D
  2723. 7 0 D
  2724. 6 19 D
  2725. 7 0 D
  2726. 6 17 D
  2727. 6 0 D
  2728. 7 15 D
  2729. 6 0 D
  2730. 7 12 D
  2731. 6 0 D
  2732. 7 12 D
  2733. 6 0 D
  2734. 7 10 D
  2735. 6 0 D
  2736. 7 9 D
  2737. 6 0 D
  2738. 6 8 D
  2739. 7 0 D
  2740. 6 7 D
  2741. 7 0 D
  2742. 6 6 D
  2743. 7 0 D
  2744. 6 6 D
  2745. 7 0 D
  2746. 6 6 D
  2747. 6 0 D
  2748. 7 5 D
  2749. 6 0 D
  2750. 7 4 D
  2751. 6 0 D
  2752. 7 4 D
  2753. 6 0 D
  2754. 7 4 D
  2755. 6 0 D
  2756. 6 4 D
  2757. 10 1 D
  2758. 3 2 D
  2759. 10 1 D
  2760. 3 2 D
  2761. 10 1 D
  2762. 10 1 D
  2763. 6 3 D
  2764. 64 9 D
  2765. 10 1 D
  2766. 61 5 D
  2767. 39 2 D
  2768. 106 1 D
  2769. 87 -5 D
  2770. 13 -2 D
  2771. 29 -3 D
  2772. 39 -6 D
  2773. 22 -3 D
  2774. 10 -3 D
  2775. 7 -1 D
  2776. 3 -2 D
  2777. 9 -1 D
  2778. 7 -2 D
  2779. 13 -3 D
  2780. 3 0 D
  2781. 6 -4 D
  2782. 7 0 D
  2783. 6 -4 D
  2784. 7 0 D
  2785. 6 -4 D
  2786. 7 0 D
  2787. 6 -5 D
  2788. 7 0 D
  2789. 6 -5 D
  2790. 6 0 D
  2791. 7 -6 D
  2792. 6 0 D
  2793. 7 -6 D
  2794. 6 0 D
  2795. 7 -7 D
  2796. 6 0 D
  2797. 7 -7 D
  2798. 6 0 D
  2799. 6 -9 D
  2800. 7 0 D
  2801. 6 -9 D
  2802. 7 0 D
  2803. 6 -11 D
  2804. 7 0 D
  2805. 6 -12 D
  2806. 7 0 D
  2807. 6 -13 D
  2808. 7 0 D
  2809. 6 -16 D
  2810. 6 0 D
  2811. 7 -18 D
  2812. 6 0 D
  2813. 7 -21 D
  2814. 6 0 D
  2815. 7 -25 D
  2816. 6 0 D
  2817. 7 -29 D
  2818. 6 0 D
  2819. 6 -36 D
  2820. 7 0 D
  2821. 6 -44 D
  2822. 7 0 D
  2823. 6 -56 D
  2824. 7 0 D
  2825. 6 -71 D
  2826. 7 0 D
  2827. 6 -96 D
  2828. 6 0 D
  2829. 7 -132 D
  2830. 6 0 D
  2831. 7 -182 D
  2832. 6 0 D
  2833. 7 -237 D
  2834. 6 0 D
  2835. 7 -271 D
  2836. 6 0 D
  2837. 6 -258 D
  2838. 7 0 D
  2839. 6 -206 D
  2840. 7 0 D
  2841. 6 -150 D
  2842. 7 0 D
  2843. 6 -107 D
  2844. 7 0 D
  2845. 6 -77 D
  2846. 6 0 D
  2847. 7 -57 D
  2848. 6 0 D
  2849. 7 -44 D
  2850. 6 0 D
  2851. 7 -35 D
  2852. 6 0 D
  2853. 7 -27 D
  2854. 6 0 D
  2855. 6 -23 D
  2856. 7 0 D
  2857. 6 -19 D
  2858. 7 0 D
  2859. 6 -16 D
  2860. 7 0 D
  2861. 6 -13 D
  2862. 7 0 D
  2863. 6 -12 D
  2864. 6 0 D
  2865. 7 -9 D
  2866. 6 0 D
  2867. 7 -9 D
  2868. 6 0 D
  2869. 7 -8 D
  2870. 6 0 D
  2871. 7 -6 D
  2872. 6 0 D
  2873. 6 -6 D
  2874. 7 0 D
  2875. 6 -6 D
  2876. 7 0 D
  2877. 6 -4 D
  2878. 7 0 D
  2879. 6 -4 D
  2880. 7 0 D
  2881. 6 -4 D
  2882. 6 0 D
  2883. 7 -4 D
  2884. 10 -1 D
  2885. 3 -2 D
  2886. 9 -1 D
  2887. 7 -2 D
  2888. 13 -3 D
  2889. 38 -6 D
  2890. 42 -6 D
  2891. 29 -3 D
  2892. 116 -9 D
  2893. 87 -4 D
  2894. 84 -3 D
  2895. 132 -3 D
  2896. 139 -2 D
  2897. 196 -2 D
  2898. 403 -2 D
  2899. 1038 -1 D
  2900. S
  2901. PSL_cliprestore
  2902. %%EndObject
  2903. 0 A
  2904. FQ
  2905. O0
  2906. 0 0 TM
  2907. % PostScript produced by:
  2908. %@GMT: gmt pstext -R-256/256/-25/250 -JX5.5i/2.75i -O -K -F+jTL+f14p -Dj0.1i -Gwhite -C+tO
  2909. %@PROJ: xy -256.00000000 256.00000000 -25.00000000 250.00000000 -256.000 256.000 -25.000 250.000 +xy
  2910. %%BeginObject PSL_Layer_14
  2911. 0 setlinecap
  2912. 0 setlinejoin
  2913. 3.32550952342 setmiterlimit
  2914. clipsave
  2915. 0 0 M
  2916. 6600 0 D
  2917. 0 3300 D
  2918. -6600 0 D
  2919. P
  2920. PSL_clip N
  2921. 4 W
  2922. {1 A} FS
  2923. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2924. 233 F0
  2925. V
  2926. (FAA) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2927. /PSL_dx 35 def
  2928. /PSL_dy 35 def
  2929. 120 3180 T 0 PSL_dim_h neg T
  2930. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  2931. U
  2932. 120 3180 M (FAA) tl Z
  2933. PSL_cliprestore
  2934. %%EndObject
  2935. 0 A
  2936. FQ
  2937. O0
  2938. 0 0 TM
  2939. % PostScript produced by:
  2940. %@GMT: gmt pstext -R-256/256/-25/250 -JX5.5i/2.75i -O -K -F+jTR+f14p,blue -Dj0.1i -Gwhite -C+tO
  2941. %@PROJ: xy -256.00000000 256.00000000 -25.00000000 250.00000000 -256.000 256.000 -25.000 250.000 +xy
  2942. %%BeginObject PSL_Layer_15
  2943. 0 setlinecap
  2944. 0 setlinejoin
  2945. 3.32550952342 setmiterlimit
  2946. clipsave
  2947. 0 0 M
  2948. 6600 0 D
  2949. 0 3300 D
  2950. -6600 0 D
  2951. P
  2952. PSL_clip N
  2953. 4 W
  2954. {1 A} FS
  2955. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2956. 233 F0
  2957. V
  2958. (CONSTANT DENSITY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2959. /PSL_dx 35 def
  2960. /PSL_dy 35 def
  2961. 6480 3180 T PSL_dim_w neg PSL_dim_h neg T
  2962. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  2963. U
  2964. 0 0 1 C
  2965. 6480 3180 M (CONSTANT DENSITY) tr Z
  2966. PSL_cliprestore
  2967. %%EndObject
  2968. 0 A
  2969. FQ
  2970. O0
  2971. 0 0 TM
  2972. % PostScript produced by:
  2973. %@GMT: gmt pstext -R-256/256/-25/250 -JX5.5i/2.75i -O -F+jTR+f14p,red -Dj0.1i/0.4i -Gwhite -C+tO
  2974. %@PROJ: xy -256.00000000 256.00000000 -25.00000000 250.00000000 -256.000 256.000 -25.000 250.000 +xy
  2975. %%BeginObject PSL_Layer_16
  2976. 0 setlinecap
  2977. 0 setlinejoin
  2978. 3.32550952342 setmiterlimit
  2979. clipsave
  2980. 0 0 M
  2981. 6600 0 D
  2982. 0 3300 D
  2983. -6600 0 D
  2984. P
  2985. PSL_clip N
  2986. 4 W
  2987. {1 A} FS
  2988. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2989. 233 F0
  2990. V
  2991. (VARIABLE DENSITY) V MU 0 0 M E /PSL_dim_w edef FP pathbbox N /PSL_dim_h edef /PSL_dim_x1 edef /PSL_dim_d edef /PSL_dim_x0 edef U
  2992. /PSL_dx 35 def
  2993. /PSL_dy 35 def
  2994. 6480 2820 T PSL_dim_w neg PSL_dim_h neg T
  2995. PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add 35 PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB
  2996. U
  2997. 1 0 0 C
  2998. 6480 2820 M (VARIABLE DENSITY) tr Z
  2999. PSL_cliprestore
  3000. %%EndObject
  3001. grestore
  3002. PSL_movie_label_completion /PSL_movie_label_completion {} def
  3003. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  3004. %PSL_Begin_Trailer
  3005. %%PageTrailer
  3006. U
  3007. showpage
  3008. %%Trailer
  3009. end
  3010. %%EOF
Tip!

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

Comments

Loading...