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

masking.ps 64 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
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_831abca_2019.06.27 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Thu Jun 27 12:16:26 2019
  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 { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  648. %%EndSetup
  649. %%Page: 1 1
  650. %%BeginPageSetup
  651. V 0.06 0.06 scale
  652. %%EndPageSetup
  653. /PSL_page_xsize 10200 def
  654. /PSL_page_ysize 13200 def
  655. /PSL_completion {} def
  656. /PSL_movie_completion {} def
  657. %PSL_End_Header
  658. gsave
  659. 0 A
  660. FQ
  661. O0
  662. 1200 600 TM
  663. % PostScript produced by:
  664. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -P -Bafg1 -BWSne data.txt -Ss0.1i -Gblue -W0.25p -K -Y0.5i
  665. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  666. %GMTBoundingBox: 72 36 216 216
  667. %%BeginObject PSL_Layer_1
  668. 0 setlinecap
  669. 0 setlinejoin
  670. 3.32551 setmiterlimit
  671. 25 W
  672. 4 W
  673. 0 0 M
  674. 0 3600 D
  675. S
  676. 300 0 M
  677. 0 3600 D
  678. S
  679. 600 0 M
  680. 0 3600 D
  681. S
  682. 900 0 M
  683. 0 3600 D
  684. S
  685. 1200 0 M
  686. 0 3600 D
  687. S
  688. 1500 0 M
  689. 0 3600 D
  690. S
  691. 1800 0 M
  692. 0 3600 D
  693. S
  694. 2100 0 M
  695. 0 3600 D
  696. S
  697. 2400 0 M
  698. 0 3600 D
  699. S
  700. 2700 0 M
  701. 0 3600 D
  702. S
  703. 3000 0 M
  704. 0 3600 D
  705. S
  706. 3300 0 M
  707. 0 3600 D
  708. S
  709. 3600 0 M
  710. 0 3600 D
  711. S
  712. 0 0 M
  713. 3600 0 D
  714. S
  715. 0 300 M
  716. 3600 0 D
  717. S
  718. 0 600 M
  719. 3600 0 D
  720. S
  721. 0 900 M
  722. 3600 0 D
  723. S
  724. 0 1200 M
  725. 3600 0 D
  726. S
  727. 0 1500 M
  728. 3600 0 D
  729. S
  730. 0 1800 M
  731. 3600 0 D
  732. S
  733. 0 2100 M
  734. 3600 0 D
  735. S
  736. 0 2400 M
  737. 3600 0 D
  738. S
  739. 0 2700 M
  740. 3600 0 D
  741. S
  742. 0 3000 M
  743. 3600 0 D
  744. S
  745. 0 3300 M
  746. 3600 0 D
  747. S
  748. 0 3600 M
  749. 3600 0 D
  750. S
  751. 2 setlinecap
  752. 25 W
  753. N 0 3600 M 0 -3600 D S
  754. /PSL_A0_y 83 def
  755. /PSL_A1_y 0 def
  756. 8 W
  757. N 0 300 M -83 0 D S
  758. N 0 1800 M -83 0 D S
  759. N 0 3300 M -83 0 D S
  760. /PSL_AH0 0
  761. /MM {neg exch M} def
  762. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  763. 200 F0
  764. (0) sw mx
  765. (5) sw mx
  766. (10) sw mx
  767. def
  768. /PSL_A0_y PSL_A0_y 83 add def
  769. 300 PSL_A0_y MM
  770. (0) mr Z
  771. 1800 PSL_A0_y MM
  772. (5) mr Z
  773. 3300 PSL_A0_y MM
  774. (10) mr Z
  775. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  776. N 0 0 M -42 0 D S
  777. N 0 600 M -42 0 D S
  778. N 0 900 M -42 0 D S
  779. N 0 1200 M -42 0 D S
  780. N 0 1500 M -42 0 D S
  781. N 0 2100 M -42 0 D S
  782. N 0 2400 M -42 0 D S
  783. N 0 2700 M -42 0 D S
  784. N 0 3000 M -42 0 D S
  785. N 0 3600 M -42 0 D S
  786. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  787. 3600 0 T
  788. 25 W
  789. N 0 3600 M 0 -3600 D S
  790. /PSL_A0_y 83 def
  791. /PSL_A1_y 0 def
  792. 8 W
  793. N 0 300 M 83 0 D S
  794. N 0 1800 M 83 0 D S
  795. N 0 3300 M 83 0 D S
  796. N 0 0 M 42 0 D S
  797. N 0 600 M 42 0 D S
  798. N 0 900 M 42 0 D S
  799. N 0 1200 M 42 0 D S
  800. N 0 1500 M 42 0 D S
  801. N 0 2100 M 42 0 D S
  802. N 0 2400 M 42 0 D S
  803. N 0 2700 M 42 0 D S
  804. N 0 3000 M 42 0 D S
  805. N 0 3600 M 42 0 D S
  806. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  807. -3600 0 T
  808. 25 W
  809. N 0 0 M 3600 0 D S
  810. /PSL_A0_y 83 def
  811. /PSL_A1_y 0 def
  812. 8 W
  813. N 300 0 M 0 -83 D S
  814. N 1800 0 M 0 -83 D S
  815. N 3300 0 M 0 -83 D S
  816. /PSL_AH0 0
  817. /MM {neg M} def
  818. (0) sh mx
  819. (5) sh mx
  820. (10) sh mx
  821. def
  822. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  823. 300 PSL_A0_y MM
  824. (0) bc Z
  825. 1800 PSL_A0_y MM
  826. (5) bc Z
  827. 3300 PSL_A0_y MM
  828. (10) bc Z
  829. N 0 0 M 0 -42 D S
  830. N 600 0 M 0 -42 D S
  831. N 900 0 M 0 -42 D S
  832. N 1200 0 M 0 -42 D S
  833. N 1500 0 M 0 -42 D S
  834. N 2100 0 M 0 -42 D S
  835. N 2400 0 M 0 -42 D S
  836. N 2700 0 M 0 -42 D S
  837. N 3000 0 M 0 -42 D S
  838. N 3600 0 M 0 -42 D S
  839. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  840. 0 3600 T
  841. 25 W
  842. N 0 0 M 3600 0 D S
  843. /PSL_A0_y 83 def
  844. /PSL_A1_y 0 def
  845. 8 W
  846. N 300 0 M 0 83 D S
  847. N 1800 0 M 0 83 D S
  848. N 3300 0 M 0 83 D S
  849. N 0 0 M 0 42 D S
  850. N 600 0 M 0 42 D S
  851. N 900 0 M 0 42 D S
  852. N 1200 0 M 0 42 D S
  853. N 1500 0 M 0 42 D S
  854. N 2100 0 M 0 42 D S
  855. N 2400 0 M 0 42 D S
  856. N 2700 0 M 0 42 D S
  857. N 3000 0 M 0 42 D S
  858. N 3600 0 M 0 42 D S
  859. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  860. 0 -3600 T
  861. 0 setlinecap
  862. clipsave
  863. 0 0 M
  864. 3600 0 D
  865. 0 3600 D
  866. -3600 0 D
  867. P
  868. PSL_clip N
  869. 4 W
  870. V
  871. {0 0 1 C} FS
  872. O1
  873. 60 900 2097 Ss
  874. 60 918 2394 Ss
  875. 60 885 2658 Ss
  876. 60 1161 1476 Ss
  877. 60 1206 1788 Ss
  878. 60 1149 2142 Ss
  879. 60 1269 2361 Ss
  880. 60 1215 2643 Ss
  881. 60 1464 1209 Ss
  882. 60 1569 1482 Ss
  883. 60 1500 1812 Ss
  884. 60 1488 2058 Ss
  885. 60 1542 2391 Ss
  886. 60 1491 2709 Ss
  887. 60 1821 1191 Ss
  888. 60 1809 1500 Ss
  889. 60 1773 2364 Ss
  890. 60 1794 2670 Ss
  891. 60 2097 888 Ss
  892. 60 2085 1227 Ss
  893. 60 2082 1500 Ss
  894. 60 2109 2397 Ss
  895. 60 2076 2580 Ss
  896. 60 2382 1200 Ss
  897. 60 2412 1485 Ss
  898. 60 2403 1803 Ss
  899. 60 2442 2139 Ss
  900. 60 2409 2469 Ss
  901. 60 2385 2715 Ss
  902. 60 2742 1197 Ss
  903. 60 2667 1473 Ss
  904. 60 2703 1785 Ss
  905. 60 2721 2127 Ss
  906. 60 2685 2418 Ss
  907. U
  908. PSL_cliprestore
  909. %%EndObject
  910. 0 A
  911. FQ
  912. O0
  913. 0 0 TM
  914. % PostScript produced by:
  915. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sc0.03i -Gred
  916. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  917. %%BeginObject PSL_Layer_2
  918. 0 setlinecap
  919. 0 setlinejoin
  920. 3.32551 setmiterlimit
  921. clipsave
  922. 0 0 M
  923. 3600 0 D
  924. 0 3600 D
  925. -3600 0 D
  926. P
  927. PSL_clip N
  928. 4 W
  929. V
  930. {1 0 0 C} FS
  931. 18 900 2700 Sc
  932. 18 1200 2700 Sc
  933. 18 1500 2700 Sc
  934. 18 1800 2700 Sc
  935. 18 2100 2700 Sc
  936. 18 2400 2700 Sc
  937. 18 900 2400 Sc
  938. 18 1200 2400 Sc
  939. 18 1500 2400 Sc
  940. 18 1800 2400 Sc
  941. 18 2100 2400 Sc
  942. 18 2400 2400 Sc
  943. 18 2700 2400 Sc
  944. 18 900 2100 Sc
  945. 18 1200 2100 Sc
  946. 18 1500 2100 Sc
  947. 18 2400 2100 Sc
  948. 18 2700 2100 Sc
  949. 18 1200 1800 Sc
  950. 18 1500 1800 Sc
  951. 18 2400 1800 Sc
  952. 18 2700 1800 Sc
  953. 18 1200 1500 Sc
  954. 18 1500 1500 Sc
  955. 18 1800 1500 Sc
  956. 18 2100 1500 Sc
  957. 18 2400 1500 Sc
  958. 18 2700 1500 Sc
  959. 18 1500 1200 Sc
  960. 18 1800 1200 Sc
  961. 18 2100 1200 Sc
  962. 18 2400 1200 Sc
  963. 18 2700 1200 Sc
  964. 18 2100 900 Sc
  965. U
  966. PSL_cliprestore
  967. %%EndObject
  968. 0 A
  969. FQ
  970. O0
  971. 0 0 TM
  972. % PostScript produced by:
  973. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K clip.txt -W1p,red
  974. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  975. %%BeginObject PSL_Layer_3
  976. 0 setlinecap
  977. 0 setlinejoin
  978. 3.32551 setmiterlimit
  979. 17 W
  980. 1 0 0 C
  981. clipsave
  982. 0 0 M
  983. 3600 0 D
  984. 0 3600 D
  985. -3600 0 D
  986. P
  987. PSL_clip N
  988. 900 2850 M
  989. 1650 0 D
  990. 0 -300 D
  991. 300 0 D
  992. 0 -1500 D
  993. -150 0 D
  994. -300 0 D
  995. -150 0 D
  996. 0 -300 D
  997. -150 0 D
  998. -150 0 D
  999. 0 300 D
  1000. -150 0 D
  1001. -300 0 D
  1002. -150 0 D
  1003. 0 300 D
  1004. -150 0 D
  1005. -150 0 D
  1006. 0 600 D
  1007. -150 0 D
  1008. -150 0 D
  1009. 0 900 D
  1010. P S
  1011. 1800 2250 M
  1012. 450 0 D
  1013. 0 -600 D
  1014. -150 0 D
  1015. -300 0 D
  1016. -150 0 D
  1017. 0 600 D
  1018. P S
  1019. PSL_cliprestore
  1020. %%EndObject
  1021. 0 A
  1022. FQ
  1023. O0
  1024. 0 0 TM
  1025. % PostScript produced by:
  1026. %@GMT: gmt pstext -R-1/11/-1/11 -JX3i -O -K -F+f12p+jLB -Gwhite -W0.5p
  1027. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1028. %%BeginObject PSL_Layer_4
  1029. 0 setlinecap
  1030. 0 setlinejoin
  1031. 3.32551 setmiterlimit
  1032. clipsave
  1033. 0 0 M
  1034. 3600 0 D
  1035. 0 3600 D
  1036. -3600 0 D
  1037. P
  1038. PSL_clip N
  1039. 8 W
  1040. {1 A} FS
  1041. O1
  1042. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1043. 200 F0
  1044. V
  1045. (Unoriented) 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
  1046. /PSL_dx 30 def
  1047. /PSL_dy 30 def
  1048. 300 300 T PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1049. U
  1050. 300 300 M (Unoriented) bl Z
  1051. PSL_cliprestore
  1052. %%EndObject
  1053. 0 A
  1054. FQ
  1055. O0
  1056. 0 0 TM
  1057. % PostScript produced by:
  1058. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  1059. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1060. %%BeginObject PSL_Layer_5
  1061. 0 setlinecap
  1062. 0 setlinejoin
  1063. 3.32551 setmiterlimit
  1064. clipsave
  1065. 0 0 M
  1066. 3600 0 D
  1067. 0 3600 D
  1068. -3600 0 D
  1069. P
  1070. PSL_clip N
  1071. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  1072. 4 W
  1073. V
  1074. {0 A} FS
  1075. O1
  1076. 4 W
  1077. V 900 2850 T N 0 0 M 165 0 D S
  1078. U
  1079. V 1200 2850 T PSL_vecheadpen
  1080. 4 W
  1081. 0 0 M
  1082. -180 48 D
  1083. 45 -48 D
  1084. -45 -48 D
  1085. P clip fs P S
  1086. U
  1087. U
  1088. PSL_cliprestore
  1089. %%EndObject
  1090. 0 A
  1091. FQ
  1092. O0
  1093. 0 0 TM
  1094. % PostScript produced by:
  1095. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  1096. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1097. %%BeginObject PSL_Layer_6
  1098. 0 setlinecap
  1099. 0 setlinejoin
  1100. 3.32551 setmiterlimit
  1101. clipsave
  1102. 0 0 M
  1103. 3600 0 D
  1104. 0 3600 D
  1105. -3600 0 D
  1106. P
  1107. PSL_clip N
  1108. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  1109. 4 W
  1110. V
  1111. {0 A} FS
  1112. O1
  1113. 4 W
  1114. V 1800 2250 T N 0 0 M 165 0 D S
  1115. U
  1116. V 2100 2250 T PSL_vecheadpen
  1117. 4 W
  1118. 0 0 M
  1119. -180 48 D
  1120. 45 -48 D
  1121. -45 -48 D
  1122. P clip fs P S
  1123. U
  1124. U
  1125. PSL_cliprestore
  1126. %%EndObject
  1127. 0 A
  1128. FQ
  1129. O0
  1130. 3900 0 TM
  1131. % PostScript produced by:
  1132. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -Bafg1 -BwSnE data.txt -Ss0.1i -Gblue -W0.25p -K -X3.25i
  1133. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1134. %%BeginObject PSL_Layer_7
  1135. 0 setlinecap
  1136. 0 setlinejoin
  1137. 3.32551 setmiterlimit
  1138. 25 W
  1139. 4 W
  1140. 0 0 M
  1141. 0 3600 D
  1142. S
  1143. 300 0 M
  1144. 0 3600 D
  1145. S
  1146. 600 0 M
  1147. 0 3600 D
  1148. S
  1149. 900 0 M
  1150. 0 3600 D
  1151. S
  1152. 1200 0 M
  1153. 0 3600 D
  1154. S
  1155. 1500 0 M
  1156. 0 3600 D
  1157. S
  1158. 1800 0 M
  1159. 0 3600 D
  1160. S
  1161. 2100 0 M
  1162. 0 3600 D
  1163. S
  1164. 2400 0 M
  1165. 0 3600 D
  1166. S
  1167. 2700 0 M
  1168. 0 3600 D
  1169. S
  1170. 3000 0 M
  1171. 0 3600 D
  1172. S
  1173. 3300 0 M
  1174. 0 3600 D
  1175. S
  1176. 3600 0 M
  1177. 0 3600 D
  1178. S
  1179. 0 0 M
  1180. 3600 0 D
  1181. S
  1182. 0 300 M
  1183. 3600 0 D
  1184. S
  1185. 0 600 M
  1186. 3600 0 D
  1187. S
  1188. 0 900 M
  1189. 3600 0 D
  1190. S
  1191. 0 1200 M
  1192. 3600 0 D
  1193. S
  1194. 0 1500 M
  1195. 3600 0 D
  1196. S
  1197. 0 1800 M
  1198. 3600 0 D
  1199. S
  1200. 0 2100 M
  1201. 3600 0 D
  1202. S
  1203. 0 2400 M
  1204. 3600 0 D
  1205. S
  1206. 0 2700 M
  1207. 3600 0 D
  1208. S
  1209. 0 3000 M
  1210. 3600 0 D
  1211. S
  1212. 0 3300 M
  1213. 3600 0 D
  1214. S
  1215. 0 3600 M
  1216. 3600 0 D
  1217. S
  1218. 2 setlinecap
  1219. 25 W
  1220. N 0 3600 M 0 -3600 D S
  1221. /PSL_A0_y 83 def
  1222. /PSL_A1_y 0 def
  1223. 8 W
  1224. N 0 300 M -83 0 D S
  1225. N 0 1800 M -83 0 D S
  1226. N 0 3300 M -83 0 D S
  1227. N 0 0 M -42 0 D S
  1228. N 0 600 M -42 0 D S
  1229. N 0 900 M -42 0 D S
  1230. N 0 1200 M -42 0 D S
  1231. N 0 1500 M -42 0 D S
  1232. N 0 2100 M -42 0 D S
  1233. N 0 2400 M -42 0 D S
  1234. N 0 2700 M -42 0 D S
  1235. N 0 3000 M -42 0 D S
  1236. N 0 3600 M -42 0 D S
  1237. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1238. 3600 0 T
  1239. 25 W
  1240. N 0 3600 M 0 -3600 D S
  1241. /PSL_A0_y 83 def
  1242. /PSL_A1_y 0 def
  1243. 8 W
  1244. N 0 300 M 83 0 D S
  1245. N 0 1800 M 83 0 D S
  1246. N 0 3300 M 83 0 D S
  1247. /PSL_AH0 0
  1248. /MM {exch M} def
  1249. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1250. 200 F0
  1251. (0) sw mx
  1252. (5) sw mx
  1253. (10) sw mx
  1254. def
  1255. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1256. 300 PSL_A0_y MM
  1257. (0) mr Z
  1258. 1800 PSL_A0_y MM
  1259. (5) mr Z
  1260. 3300 PSL_A0_y MM
  1261. (10) mr Z
  1262. N 0 0 M 42 0 D S
  1263. N 0 600 M 42 0 D S
  1264. N 0 900 M 42 0 D S
  1265. N 0 1200 M 42 0 D S
  1266. N 0 1500 M 42 0 D S
  1267. N 0 2100 M 42 0 D S
  1268. N 0 2400 M 42 0 D S
  1269. N 0 2700 M 42 0 D S
  1270. N 0 3000 M 42 0 D S
  1271. N 0 3600 M 42 0 D S
  1272. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1273. -3600 0 T
  1274. 25 W
  1275. N 0 0 M 3600 0 D S
  1276. /PSL_A0_y 83 def
  1277. /PSL_A1_y 0 def
  1278. 8 W
  1279. N 300 0 M 0 -83 D S
  1280. N 1800 0 M 0 -83 D S
  1281. N 3300 0 M 0 -83 D S
  1282. /PSL_AH0 0
  1283. /MM {neg M} def
  1284. (0) sh mx
  1285. (5) sh mx
  1286. (10) sh mx
  1287. def
  1288. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1289. 300 PSL_A0_y MM
  1290. (0) bc Z
  1291. 1800 PSL_A0_y MM
  1292. (5) bc Z
  1293. 3300 PSL_A0_y MM
  1294. (10) bc Z
  1295. N 0 0 M 0 -42 D S
  1296. N 600 0 M 0 -42 D S
  1297. N 900 0 M 0 -42 D S
  1298. N 1200 0 M 0 -42 D S
  1299. N 1500 0 M 0 -42 D S
  1300. N 2100 0 M 0 -42 D S
  1301. N 2400 0 M 0 -42 D S
  1302. N 2700 0 M 0 -42 D S
  1303. N 3000 0 M 0 -42 D S
  1304. N 3600 0 M 0 -42 D S
  1305. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1306. 0 3600 T
  1307. 25 W
  1308. N 0 0 M 3600 0 D S
  1309. /PSL_A0_y 83 def
  1310. /PSL_A1_y 0 def
  1311. 8 W
  1312. N 300 0 M 0 83 D S
  1313. N 1800 0 M 0 83 D S
  1314. N 3300 0 M 0 83 D S
  1315. N 0 0 M 0 42 D S
  1316. N 600 0 M 0 42 D S
  1317. N 900 0 M 0 42 D S
  1318. N 1200 0 M 0 42 D S
  1319. N 1500 0 M 0 42 D S
  1320. N 2100 0 M 0 42 D S
  1321. N 2400 0 M 0 42 D S
  1322. N 2700 0 M 0 42 D S
  1323. N 3000 0 M 0 42 D S
  1324. N 3600 0 M 0 42 D S
  1325. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1326. 0 -3600 T
  1327. 0 setlinecap
  1328. clipsave
  1329. 0 0 M
  1330. 3600 0 D
  1331. 0 3600 D
  1332. -3600 0 D
  1333. P
  1334. PSL_clip N
  1335. 4 W
  1336. V
  1337. {0 0 1 C} FS
  1338. O1
  1339. 60 900 2097 Ss
  1340. 60 918 2394 Ss
  1341. 60 885 2658 Ss
  1342. 60 1161 1476 Ss
  1343. 60 1206 1788 Ss
  1344. 60 1149 2142 Ss
  1345. 60 1269 2361 Ss
  1346. 60 1215 2643 Ss
  1347. 60 1464 1209 Ss
  1348. 60 1569 1482 Ss
  1349. 60 1500 1812 Ss
  1350. 60 1488 2058 Ss
  1351. 60 1542 2391 Ss
  1352. 60 1491 2709 Ss
  1353. 60 1821 1191 Ss
  1354. 60 1809 1500 Ss
  1355. 60 1773 2364 Ss
  1356. 60 1794 2670 Ss
  1357. 60 2097 888 Ss
  1358. 60 2085 1227 Ss
  1359. 60 2082 1500 Ss
  1360. 60 2109 2397 Ss
  1361. 60 2076 2580 Ss
  1362. 60 2382 1200 Ss
  1363. 60 2412 1485 Ss
  1364. 60 2403 1803 Ss
  1365. 60 2442 2139 Ss
  1366. 60 2409 2469 Ss
  1367. 60 2385 2715 Ss
  1368. 60 2742 1197 Ss
  1369. 60 2667 1473 Ss
  1370. 60 2703 1785 Ss
  1371. 60 2721 2127 Ss
  1372. 60 2685 2418 Ss
  1373. U
  1374. PSL_cliprestore
  1375. %%EndObject
  1376. 0 A
  1377. FQ
  1378. O0
  1379. 0 0 TM
  1380. % PostScript produced by:
  1381. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sc0.03i -Gred
  1382. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1383. %%BeginObject PSL_Layer_8
  1384. 0 setlinecap
  1385. 0 setlinejoin
  1386. 3.32551 setmiterlimit
  1387. clipsave
  1388. 0 0 M
  1389. 3600 0 D
  1390. 0 3600 D
  1391. -3600 0 D
  1392. P
  1393. PSL_clip N
  1394. 4 W
  1395. V
  1396. {1 0 0 C} FS
  1397. 18 900 2700 Sc
  1398. 18 1200 2700 Sc
  1399. 18 1500 2700 Sc
  1400. 18 1800 2700 Sc
  1401. 18 2100 2700 Sc
  1402. 18 2400 2700 Sc
  1403. 18 900 2400 Sc
  1404. 18 1200 2400 Sc
  1405. 18 1500 2400 Sc
  1406. 18 1800 2400 Sc
  1407. 18 2100 2400 Sc
  1408. 18 2400 2400 Sc
  1409. 18 2700 2400 Sc
  1410. 18 900 2100 Sc
  1411. 18 1200 2100 Sc
  1412. 18 1500 2100 Sc
  1413. 18 2400 2100 Sc
  1414. 18 2700 2100 Sc
  1415. 18 1200 1800 Sc
  1416. 18 1500 1800 Sc
  1417. 18 2400 1800 Sc
  1418. 18 2700 1800 Sc
  1419. 18 1200 1500 Sc
  1420. 18 1500 1500 Sc
  1421. 18 1800 1500 Sc
  1422. 18 2100 1500 Sc
  1423. 18 2400 1500 Sc
  1424. 18 2700 1500 Sc
  1425. 18 1500 1200 Sc
  1426. 18 1800 1200 Sc
  1427. 18 2100 1200 Sc
  1428. 18 2400 1200 Sc
  1429. 18 2700 1200 Sc
  1430. 18 2100 900 Sc
  1431. U
  1432. PSL_cliprestore
  1433. %%EndObject
  1434. 0 A
  1435. FQ
  1436. O0
  1437. 0 0 TM
  1438. % PostScript produced by:
  1439. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K clipf.txt -W1p,red
  1440. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1441. %%BeginObject PSL_Layer_9
  1442. 0 setlinecap
  1443. 0 setlinejoin
  1444. 3.32551 setmiterlimit
  1445. 17 W
  1446. 1 0 0 C
  1447. clipsave
  1448. 0 0 M
  1449. 3600 0 D
  1450. 0 3600 D
  1451. -3600 0 D
  1452. P
  1453. PSL_clip N
  1454. 900 2850 M
  1455. 1650 0 D
  1456. 0 -300 D
  1457. 300 0 D
  1458. 0 -1500 D
  1459. -150 0 D
  1460. -300 0 D
  1461. -150 0 D
  1462. 0 -300 D
  1463. -150 0 D
  1464. -150 0 D
  1465. 0 300 D
  1466. -150 0 D
  1467. -300 0 D
  1468. -150 0 D
  1469. 0 300 D
  1470. -150 0 D
  1471. -150 0 D
  1472. 0 600 D
  1473. -150 0 D
  1474. -150 0 D
  1475. 0 900 D
  1476. P S
  1477. 1800 2250 M
  1478. -150 0 D
  1479. 0 -600 D
  1480. 600 0 D
  1481. 0 600 D
  1482. -150 0 D
  1483. P S
  1484. PSL_cliprestore
  1485. %%EndObject
  1486. 0 A
  1487. FQ
  1488. O0
  1489. 0 0 TM
  1490. % PostScript produced by:
  1491. %@GMT: gmt pstext -R-1/11/-1/11 -JX3i -O -K -F+f12p+jLB -Gwhite -W0.5p
  1492. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1493. %%BeginObject PSL_Layer_10
  1494. 0 setlinecap
  1495. 0 setlinejoin
  1496. 3.32551 setmiterlimit
  1497. clipsave
  1498. 0 0 M
  1499. 3600 0 D
  1500. 0 3600 D
  1501. -3600 0 D
  1502. P
  1503. PSL_clip N
  1504. 8 W
  1505. {1 A} FS
  1506. O1
  1507. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1508. 200 F0
  1509. V
  1510. (Oriented -Fr) 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
  1511. /PSL_dx 30 def
  1512. /PSL_dy 30 def
  1513. 300 300 T PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  1514. U
  1515. 300 300 M (Oriented -Fr) bl Z
  1516. PSL_cliprestore
  1517. %%EndObject
  1518. 0 A
  1519. FQ
  1520. O0
  1521. 0 0 TM
  1522. % PostScript produced by:
  1523. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  1524. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1525. %%BeginObject PSL_Layer_11
  1526. 0 setlinecap
  1527. 0 setlinejoin
  1528. 3.32551 setmiterlimit
  1529. clipsave
  1530. 0 0 M
  1531. 3600 0 D
  1532. 0 3600 D
  1533. -3600 0 D
  1534. P
  1535. PSL_clip N
  1536. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  1537. 4 W
  1538. V
  1539. {0 A} FS
  1540. O1
  1541. 4 W
  1542. V 900 2850 T N 0 0 M 165 0 D S
  1543. U
  1544. V 1200 2850 T PSL_vecheadpen
  1545. 4 W
  1546. 0 0 M
  1547. -180 48 D
  1548. 45 -48 D
  1549. -45 -48 D
  1550. P clip fs P S
  1551. U
  1552. U
  1553. PSL_cliprestore
  1554. %%EndObject
  1555. 0 A
  1556. FQ
  1557. O0
  1558. 0 0 TM
  1559. % PostScript produced by:
  1560. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  1561. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1562. %%BeginObject PSL_Layer_12
  1563. 0 setlinecap
  1564. 0 setlinejoin
  1565. 3.32551 setmiterlimit
  1566. clipsave
  1567. 0 0 M
  1568. 3600 0 D
  1569. 0 3600 D
  1570. -3600 0 D
  1571. P
  1572. PSL_clip N
  1573. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  1574. 4 W
  1575. V
  1576. {0 A} FS
  1577. O1
  1578. 4 W
  1579. V 1800 2250 T 180 R
  1580. N 0 0 M 15 0 D S
  1581. U
  1582. V 1650 2250 T 180 R
  1583. PSL_vecheadpen
  1584. 4 W
  1585. 0 0 M
  1586. -180 48 D
  1587. 45 -48 D
  1588. -45 -48 D
  1589. P clip fs P S
  1590. U
  1591. U
  1592. PSL_cliprestore
  1593. %%EndObject
  1594. 0 A
  1595. FQ
  1596. O0
  1597. -3900 4080 TM
  1598. % PostScript produced by:
  1599. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -Bafg1 -BWSne data.txt -Ss0.1i -Gblue -W0.25p -K -X-3.25i -Y3.4i
  1600. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1601. %%BeginObject PSL_Layer_13
  1602. 0 setlinecap
  1603. 0 setlinejoin
  1604. 3.32551 setmiterlimit
  1605. 25 W
  1606. 4 W
  1607. 0 0 M
  1608. 0 3600 D
  1609. S
  1610. 300 0 M
  1611. 0 3600 D
  1612. S
  1613. 600 0 M
  1614. 0 3600 D
  1615. S
  1616. 900 0 M
  1617. 0 3600 D
  1618. S
  1619. 1200 0 M
  1620. 0 3600 D
  1621. S
  1622. 1500 0 M
  1623. 0 3600 D
  1624. S
  1625. 1800 0 M
  1626. 0 3600 D
  1627. S
  1628. 2100 0 M
  1629. 0 3600 D
  1630. S
  1631. 2400 0 M
  1632. 0 3600 D
  1633. S
  1634. 2700 0 M
  1635. 0 3600 D
  1636. S
  1637. 3000 0 M
  1638. 0 3600 D
  1639. S
  1640. 3300 0 M
  1641. 0 3600 D
  1642. S
  1643. 3600 0 M
  1644. 0 3600 D
  1645. S
  1646. 0 0 M
  1647. 3600 0 D
  1648. S
  1649. 0 300 M
  1650. 3600 0 D
  1651. S
  1652. 0 600 M
  1653. 3600 0 D
  1654. S
  1655. 0 900 M
  1656. 3600 0 D
  1657. S
  1658. 0 1200 M
  1659. 3600 0 D
  1660. S
  1661. 0 1500 M
  1662. 3600 0 D
  1663. S
  1664. 0 1800 M
  1665. 3600 0 D
  1666. S
  1667. 0 2100 M
  1668. 3600 0 D
  1669. S
  1670. 0 2400 M
  1671. 3600 0 D
  1672. S
  1673. 0 2700 M
  1674. 3600 0 D
  1675. S
  1676. 0 3000 M
  1677. 3600 0 D
  1678. S
  1679. 0 3300 M
  1680. 3600 0 D
  1681. S
  1682. 0 3600 M
  1683. 3600 0 D
  1684. S
  1685. 2 setlinecap
  1686. 25 W
  1687. N 0 3600 M 0 -3600 D S
  1688. /PSL_A0_y 83 def
  1689. /PSL_A1_y 0 def
  1690. 8 W
  1691. N 0 300 M -83 0 D S
  1692. N 0 1800 M -83 0 D S
  1693. N 0 3300 M -83 0 D S
  1694. /PSL_AH0 0
  1695. /MM {neg exch M} def
  1696. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1697. 200 F0
  1698. (0) sw mx
  1699. (5) sw mx
  1700. (10) sw mx
  1701. def
  1702. /PSL_A0_y PSL_A0_y 83 add def
  1703. 300 PSL_A0_y MM
  1704. (0) mr Z
  1705. 1800 PSL_A0_y MM
  1706. (5) mr Z
  1707. 3300 PSL_A0_y MM
  1708. (10) mr Z
  1709. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1710. N 0 0 M -42 0 D S
  1711. N 0 600 M -42 0 D S
  1712. N 0 900 M -42 0 D S
  1713. N 0 1200 M -42 0 D S
  1714. N 0 1500 M -42 0 D S
  1715. N 0 2100 M -42 0 D S
  1716. N 0 2400 M -42 0 D S
  1717. N 0 2700 M -42 0 D S
  1718. N 0 3000 M -42 0 D S
  1719. N 0 3600 M -42 0 D S
  1720. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1721. 3600 0 T
  1722. 25 W
  1723. N 0 3600 M 0 -3600 D S
  1724. /PSL_A0_y 83 def
  1725. /PSL_A1_y 0 def
  1726. 8 W
  1727. N 0 300 M 83 0 D S
  1728. N 0 1800 M 83 0 D S
  1729. N 0 3300 M 83 0 D S
  1730. N 0 0 M 42 0 D S
  1731. N 0 600 M 42 0 D S
  1732. N 0 900 M 42 0 D S
  1733. N 0 1200 M 42 0 D S
  1734. N 0 1500 M 42 0 D S
  1735. N 0 2100 M 42 0 D S
  1736. N 0 2400 M 42 0 D S
  1737. N 0 2700 M 42 0 D S
  1738. N 0 3000 M 42 0 D S
  1739. N 0 3600 M 42 0 D S
  1740. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1741. -3600 0 T
  1742. 25 W
  1743. N 0 0 M 3600 0 D S
  1744. /PSL_A0_y 83 def
  1745. /PSL_A1_y 0 def
  1746. 8 W
  1747. N 300 0 M 0 -83 D S
  1748. N 1800 0 M 0 -83 D S
  1749. N 3300 0 M 0 -83 D S
  1750. /PSL_AH0 0
  1751. /MM {neg M} def
  1752. (0) sh mx
  1753. (5) sh mx
  1754. (10) sh mx
  1755. def
  1756. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1757. 300 PSL_A0_y MM
  1758. (0) bc Z
  1759. 1800 PSL_A0_y MM
  1760. (5) bc Z
  1761. 3300 PSL_A0_y MM
  1762. (10) bc Z
  1763. N 0 0 M 0 -42 D S
  1764. N 600 0 M 0 -42 D S
  1765. N 900 0 M 0 -42 D S
  1766. N 1200 0 M 0 -42 D S
  1767. N 1500 0 M 0 -42 D S
  1768. N 2100 0 M 0 -42 D S
  1769. N 2400 0 M 0 -42 D S
  1770. N 2700 0 M 0 -42 D S
  1771. N 3000 0 M 0 -42 D S
  1772. N 3600 0 M 0 -42 D S
  1773. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1774. 0 3600 T
  1775. 25 W
  1776. N 0 0 M 3600 0 D S
  1777. /PSL_A0_y 83 def
  1778. /PSL_A1_y 0 def
  1779. 8 W
  1780. N 300 0 M 0 83 D S
  1781. N 1800 0 M 0 83 D S
  1782. N 3300 0 M 0 83 D S
  1783. N 0 0 M 0 42 D S
  1784. N 600 0 M 0 42 D S
  1785. N 900 0 M 0 42 D S
  1786. N 1200 0 M 0 42 D S
  1787. N 1500 0 M 0 42 D S
  1788. N 2100 0 M 0 42 D S
  1789. N 2400 0 M 0 42 D S
  1790. N 2700 0 M 0 42 D S
  1791. N 3000 0 M 0 42 D S
  1792. N 3600 0 M 0 42 D S
  1793. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1794. 0 -3600 T
  1795. 0 setlinecap
  1796. clipsave
  1797. 0 0 M
  1798. 3600 0 D
  1799. 0 3600 D
  1800. -3600 0 D
  1801. P
  1802. PSL_clip N
  1803. 4 W
  1804. V
  1805. {0 0 1 C} FS
  1806. O1
  1807. 60 900 2097 Ss
  1808. 60 918 2394 Ss
  1809. 60 885 2658 Ss
  1810. 60 1161 1476 Ss
  1811. 60 1206 1788 Ss
  1812. 60 1149 2142 Ss
  1813. 60 1269 2361 Ss
  1814. 60 1215 2643 Ss
  1815. 60 1464 1209 Ss
  1816. 60 1569 1482 Ss
  1817. 60 1500 1812 Ss
  1818. 60 1488 2058 Ss
  1819. 60 1542 2391 Ss
  1820. 60 1491 2709 Ss
  1821. 60 1821 1191 Ss
  1822. 60 1809 1500 Ss
  1823. 60 1773 2364 Ss
  1824. 60 1794 2670 Ss
  1825. 60 2097 888 Ss
  1826. 60 2085 1227 Ss
  1827. 60 2082 1500 Ss
  1828. 60 2109 2397 Ss
  1829. 60 2076 2580 Ss
  1830. 60 2382 1200 Ss
  1831. 60 2412 1485 Ss
  1832. 60 2403 1803 Ss
  1833. 60 2442 2139 Ss
  1834. 60 2409 2469 Ss
  1835. 60 2385 2715 Ss
  1836. 60 2742 1197 Ss
  1837. 60 2667 1473 Ss
  1838. 60 2703 1785 Ss
  1839. 60 2721 2127 Ss
  1840. 60 2685 2418 Ss
  1841. U
  1842. PSL_cliprestore
  1843. %%EndObject
  1844. 0 A
  1845. FQ
  1846. O0
  1847. 0 0 TM
  1848. % PostScript produced by:
  1849. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sc0.03i -Gred
  1850. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1851. %%BeginObject PSL_Layer_14
  1852. 0 setlinecap
  1853. 0 setlinejoin
  1854. 3.32551 setmiterlimit
  1855. clipsave
  1856. 0 0 M
  1857. 3600 0 D
  1858. 0 3600 D
  1859. -3600 0 D
  1860. P
  1861. PSL_clip N
  1862. 4 W
  1863. V
  1864. {1 0 0 C} FS
  1865. 18 300 3300 Sc
  1866. 18 600 3300 Sc
  1867. 18 900 3300 Sc
  1868. 18 1200 3300 Sc
  1869. 18 1500 3300 Sc
  1870. 18 1800 3300 Sc
  1871. 18 2100 3300 Sc
  1872. 18 2400 3300 Sc
  1873. 18 2700 3300 Sc
  1874. 18 3000 3300 Sc
  1875. 18 3300 3300 Sc
  1876. 18 300 3000 Sc
  1877. 18 600 3000 Sc
  1878. 18 900 3000 Sc
  1879. 18 1200 3000 Sc
  1880. 18 1500 3000 Sc
  1881. 18 1800 3000 Sc
  1882. 18 2100 3000 Sc
  1883. 18 2400 3000 Sc
  1884. 18 2700 3000 Sc
  1885. 18 3000 3000 Sc
  1886. 18 3300 3000 Sc
  1887. 18 300 2700 Sc
  1888. 18 600 2700 Sc
  1889. 18 2700 2700 Sc
  1890. 18 3000 2700 Sc
  1891. 18 3300 2700 Sc
  1892. 18 300 2400 Sc
  1893. 18 600 2400 Sc
  1894. 18 3000 2400 Sc
  1895. 18 3300 2400 Sc
  1896. 18 300 2100 Sc
  1897. 18 600 2100 Sc
  1898. 18 1800 2100 Sc
  1899. 18 2100 2100 Sc
  1900. 18 3000 2100 Sc
  1901. 18 3300 2100 Sc
  1902. 18 300 1800 Sc
  1903. 18 600 1800 Sc
  1904. 18 900 1800 Sc
  1905. 18 1800 1800 Sc
  1906. 18 2100 1800 Sc
  1907. 18 3000 1800 Sc
  1908. 18 3300 1800 Sc
  1909. 18 300 1500 Sc
  1910. 18 600 1500 Sc
  1911. 18 900 1500 Sc
  1912. 18 3000 1500 Sc
  1913. 18 3300 1500 Sc
  1914. 18 300 1200 Sc
  1915. 18 600 1200 Sc
  1916. 18 900 1200 Sc
  1917. 18 1200 1200 Sc
  1918. 18 3000 1200 Sc
  1919. 18 3300 1200 Sc
  1920. 18 300 900 Sc
  1921. 18 600 900 Sc
  1922. 18 900 900 Sc
  1923. 18 1200 900 Sc
  1924. 18 1500 900 Sc
  1925. 18 1800 900 Sc
  1926. 18 2400 900 Sc
  1927. 18 2700 900 Sc
  1928. 18 3000 900 Sc
  1929. 18 3300 900 Sc
  1930. 18 300 600 Sc
  1931. 18 600 600 Sc
  1932. 18 900 600 Sc
  1933. 18 1200 600 Sc
  1934. 18 1500 600 Sc
  1935. 18 1800 600 Sc
  1936. 18 2100 600 Sc
  1937. 18 2400 600 Sc
  1938. 18 2700 600 Sc
  1939. 18 3000 600 Sc
  1940. 18 3300 600 Sc
  1941. 18 300 300 Sc
  1942. 18 600 300 Sc
  1943. 18 900 300 Sc
  1944. 18 1200 300 Sc
  1945. 18 1500 300 Sc
  1946. 18 1800 300 Sc
  1947. 18 2100 300 Sc
  1948. 18 2400 300 Sc
  1949. 18 2700 300 Sc
  1950. 18 3000 300 Sc
  1951. 18 3300 300 Sc
  1952. U
  1953. PSL_cliprestore
  1954. %%EndObject
  1955. 0 A
  1956. FQ
  1957. O0
  1958. 0 0 TM
  1959. % PostScript produced by:
  1960. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K clipn.txt -W1p,red
  1961. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  1962. %%BeginObject PSL_Layer_15
  1963. 0 setlinecap
  1964. 0 setlinejoin
  1965. 3.32551 setmiterlimit
  1966. 17 W
  1967. 1 0 0 C
  1968. clipsave
  1969. 0 0 M
  1970. 3600 0 D
  1971. 0 3600 D
  1972. -3600 0 D
  1973. P
  1974. PSL_clip N
  1975. 300 3450 M
  1976. 3150 0 D
  1977. 0 -3300 D
  1978. -150 0 D
  1979. -300 0 D
  1980. -300 0 D
  1981. -300 0 D
  1982. -300 0 D
  1983. -300 0 D
  1984. -300 0 D
  1985. -300 0 D
  1986. -300 0 D
  1987. -300 0 D
  1988. -300 0 D
  1989. -150 0 D
  1990. 0 3300 D
  1991. P S
  1992. 900 2850 M
  1993. 1650 0 D
  1994. 0 -300 D
  1995. 300 0 D
  1996. 0 -1500 D
  1997. -150 0 D
  1998. -300 0 D
  1999. -150 0 D
  2000. 0 -300 D
  2001. -150 0 D
  2002. -150 0 D
  2003. 0 300 D
  2004. -150 0 D
  2005. -300 0 D
  2006. -150 0 D
  2007. 0 300 D
  2008. -150 0 D
  2009. -150 0 D
  2010. 0 600 D
  2011. -150 0 D
  2012. -150 0 D
  2013. 0 900 D
  2014. P S
  2015. 1800 2250 M
  2016. 450 0 D
  2017. 0 -600 D
  2018. -150 0 D
  2019. -300 0 D
  2020. -150 0 D
  2021. 0 600 D
  2022. P S
  2023. PSL_cliprestore
  2024. %%EndObject
  2025. 0 A
  2026. FQ
  2027. O0
  2028. 0 0 TM
  2029. % PostScript produced by:
  2030. %@GMT: gmt pstext -R-1/11/-1/11 -JX3i -O -K -F+f12p+jLB -Gwhite -W0.5p
  2031. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2032. %%BeginObject PSL_Layer_16
  2033. 0 setlinecap
  2034. 0 setlinejoin
  2035. 3.32551 setmiterlimit
  2036. clipsave
  2037. 0 0 M
  2038. 3600 0 D
  2039. 0 3600 D
  2040. -3600 0 D
  2041. P
  2042. PSL_clip N
  2043. 8 W
  2044. {1 A} FS
  2045. O1
  2046. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2047. 200 F0
  2048. V
  2049. (Unoriented) 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
  2050. /PSL_dx 30 def
  2051. /PSL_dy 30 def
  2052. 300 300 T PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  2053. U
  2054. 300 300 M (Unoriented) bl Z
  2055. PSL_cliprestore
  2056. %%EndObject
  2057. 0 A
  2058. FQ
  2059. O0
  2060. 0 0 TM
  2061. % PostScript produced by:
  2062. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  2063. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2064. %%BeginObject PSL_Layer_17
  2065. 0 setlinecap
  2066. 0 setlinejoin
  2067. 3.32551 setmiterlimit
  2068. clipsave
  2069. 0 0 M
  2070. 3600 0 D
  2071. 0 3600 D
  2072. -3600 0 D
  2073. P
  2074. PSL_clip N
  2075. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  2076. 4 W
  2077. V
  2078. {0 A} FS
  2079. O1
  2080. 4 W
  2081. V 300 3450 T N 0 0 M 165 0 D S
  2082. U
  2083. V 600 3450 T PSL_vecheadpen
  2084. 4 W
  2085. 0 0 M
  2086. -180 48 D
  2087. 45 -48 D
  2088. -45 -48 D
  2089. P clip fs P S
  2090. U
  2091. U
  2092. PSL_cliprestore
  2093. %%EndObject
  2094. 0 A
  2095. FQ
  2096. O0
  2097. 0 0 TM
  2098. % PostScript produced by:
  2099. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  2100. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2101. %%BeginObject PSL_Layer_18
  2102. 0 setlinecap
  2103. 0 setlinejoin
  2104. 3.32551 setmiterlimit
  2105. clipsave
  2106. 0 0 M
  2107. 3600 0 D
  2108. 0 3600 D
  2109. -3600 0 D
  2110. P
  2111. PSL_clip N
  2112. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  2113. 4 W
  2114. V
  2115. {0 A} FS
  2116. O1
  2117. 4 W
  2118. V 900 2850 T N 0 0 M 165 0 D S
  2119. U
  2120. V 1200 2850 T PSL_vecheadpen
  2121. 4 W
  2122. 0 0 M
  2123. -180 48 D
  2124. 45 -48 D
  2125. -45 -48 D
  2126. P clip fs P S
  2127. U
  2128. U
  2129. PSL_cliprestore
  2130. %%EndObject
  2131. 0 A
  2132. FQ
  2133. O0
  2134. 0 0 TM
  2135. % PostScript produced by:
  2136. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  2137. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2138. %%BeginObject PSL_Layer_19
  2139. 0 setlinecap
  2140. 0 setlinejoin
  2141. 3.32551 setmiterlimit
  2142. clipsave
  2143. 0 0 M
  2144. 3600 0 D
  2145. 0 3600 D
  2146. -3600 0 D
  2147. P
  2148. PSL_clip N
  2149. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  2150. 4 W
  2151. V
  2152. {0 A} FS
  2153. O1
  2154. 4 W
  2155. V 1800 2250 T N 0 0 M 165 0 D S
  2156. U
  2157. V 2100 2250 T PSL_vecheadpen
  2158. 4 W
  2159. 0 0 M
  2160. -180 48 D
  2161. 45 -48 D
  2162. -45 -48 D
  2163. P clip fs P S
  2164. U
  2165. U
  2166. PSL_cliprestore
  2167. %%EndObject
  2168. 0 A
  2169. FQ
  2170. O0
  2171. 3900 0 TM
  2172. % PostScript produced by:
  2173. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -Bafg1 -BwSnE data.txt -Ss0.1i -Gblue -W0.25p -K -X3.25i
  2174. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2175. %%BeginObject PSL_Layer_20
  2176. 0 setlinecap
  2177. 0 setlinejoin
  2178. 3.32551 setmiterlimit
  2179. 25 W
  2180. 4 W
  2181. 0 0 M
  2182. 0 3600 D
  2183. S
  2184. 300 0 M
  2185. 0 3600 D
  2186. S
  2187. 600 0 M
  2188. 0 3600 D
  2189. S
  2190. 900 0 M
  2191. 0 3600 D
  2192. S
  2193. 1200 0 M
  2194. 0 3600 D
  2195. S
  2196. 1500 0 M
  2197. 0 3600 D
  2198. S
  2199. 1800 0 M
  2200. 0 3600 D
  2201. S
  2202. 2100 0 M
  2203. 0 3600 D
  2204. S
  2205. 2400 0 M
  2206. 0 3600 D
  2207. S
  2208. 2700 0 M
  2209. 0 3600 D
  2210. S
  2211. 3000 0 M
  2212. 0 3600 D
  2213. S
  2214. 3300 0 M
  2215. 0 3600 D
  2216. S
  2217. 3600 0 M
  2218. 0 3600 D
  2219. S
  2220. 0 0 M
  2221. 3600 0 D
  2222. S
  2223. 0 300 M
  2224. 3600 0 D
  2225. S
  2226. 0 600 M
  2227. 3600 0 D
  2228. S
  2229. 0 900 M
  2230. 3600 0 D
  2231. S
  2232. 0 1200 M
  2233. 3600 0 D
  2234. S
  2235. 0 1500 M
  2236. 3600 0 D
  2237. S
  2238. 0 1800 M
  2239. 3600 0 D
  2240. S
  2241. 0 2100 M
  2242. 3600 0 D
  2243. S
  2244. 0 2400 M
  2245. 3600 0 D
  2246. S
  2247. 0 2700 M
  2248. 3600 0 D
  2249. S
  2250. 0 3000 M
  2251. 3600 0 D
  2252. S
  2253. 0 3300 M
  2254. 3600 0 D
  2255. S
  2256. 0 3600 M
  2257. 3600 0 D
  2258. S
  2259. 2 setlinecap
  2260. 25 W
  2261. N 0 3600 M 0 -3600 D S
  2262. /PSL_A0_y 83 def
  2263. /PSL_A1_y 0 def
  2264. 8 W
  2265. N 0 300 M -83 0 D S
  2266. N 0 1800 M -83 0 D S
  2267. N 0 3300 M -83 0 D S
  2268. N 0 0 M -42 0 D S
  2269. N 0 600 M -42 0 D S
  2270. N 0 900 M -42 0 D S
  2271. N 0 1200 M -42 0 D S
  2272. N 0 1500 M -42 0 D S
  2273. N 0 2100 M -42 0 D S
  2274. N 0 2400 M -42 0 D S
  2275. N 0 2700 M -42 0 D S
  2276. N 0 3000 M -42 0 D S
  2277. N 0 3600 M -42 0 D S
  2278. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2279. 3600 0 T
  2280. 25 W
  2281. N 0 3600 M 0 -3600 D S
  2282. /PSL_A0_y 83 def
  2283. /PSL_A1_y 0 def
  2284. 8 W
  2285. N 0 300 M 83 0 D S
  2286. N 0 1800 M 83 0 D S
  2287. N 0 3300 M 83 0 D S
  2288. /PSL_AH0 0
  2289. /MM {exch M} def
  2290. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2291. 200 F0
  2292. (0) sw mx
  2293. (5) sw mx
  2294. (10) sw mx
  2295. def
  2296. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2297. 300 PSL_A0_y MM
  2298. (0) mr Z
  2299. 1800 PSL_A0_y MM
  2300. (5) mr Z
  2301. 3300 PSL_A0_y MM
  2302. (10) mr Z
  2303. N 0 0 M 42 0 D S
  2304. N 0 600 M 42 0 D S
  2305. N 0 900 M 42 0 D S
  2306. N 0 1200 M 42 0 D S
  2307. N 0 1500 M 42 0 D S
  2308. N 0 2100 M 42 0 D S
  2309. N 0 2400 M 42 0 D S
  2310. N 0 2700 M 42 0 D S
  2311. N 0 3000 M 42 0 D S
  2312. N 0 3600 M 42 0 D S
  2313. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2314. -3600 0 T
  2315. 25 W
  2316. N 0 0 M 3600 0 D S
  2317. /PSL_A0_y 83 def
  2318. /PSL_A1_y 0 def
  2319. 8 W
  2320. N 300 0 M 0 -83 D S
  2321. N 1800 0 M 0 -83 D S
  2322. N 3300 0 M 0 -83 D S
  2323. /PSL_AH0 0
  2324. /MM {neg M} def
  2325. (0) sh mx
  2326. (5) sh mx
  2327. (10) sh mx
  2328. def
  2329. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2330. 300 PSL_A0_y MM
  2331. (0) bc Z
  2332. 1800 PSL_A0_y MM
  2333. (5) bc Z
  2334. 3300 PSL_A0_y MM
  2335. (10) bc Z
  2336. N 0 0 M 0 -42 D S
  2337. N 600 0 M 0 -42 D S
  2338. N 900 0 M 0 -42 D S
  2339. N 1200 0 M 0 -42 D S
  2340. N 1500 0 M 0 -42 D S
  2341. N 2100 0 M 0 -42 D S
  2342. N 2400 0 M 0 -42 D S
  2343. N 2700 0 M 0 -42 D S
  2344. N 3000 0 M 0 -42 D S
  2345. N 3600 0 M 0 -42 D S
  2346. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2347. 0 3600 T
  2348. 25 W
  2349. N 0 0 M 3600 0 D S
  2350. /PSL_A0_y 83 def
  2351. /PSL_A1_y 0 def
  2352. 8 W
  2353. N 300 0 M 0 83 D S
  2354. N 1800 0 M 0 83 D S
  2355. N 3300 0 M 0 83 D S
  2356. N 0 0 M 0 42 D S
  2357. N 600 0 M 0 42 D S
  2358. N 900 0 M 0 42 D S
  2359. N 1200 0 M 0 42 D S
  2360. N 1500 0 M 0 42 D S
  2361. N 2100 0 M 0 42 D S
  2362. N 2400 0 M 0 42 D S
  2363. N 2700 0 M 0 42 D S
  2364. N 3000 0 M 0 42 D S
  2365. N 3600 0 M 0 42 D S
  2366. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2367. 0 -3600 T
  2368. 0 setlinecap
  2369. clipsave
  2370. 0 0 M
  2371. 3600 0 D
  2372. 0 3600 D
  2373. -3600 0 D
  2374. P
  2375. PSL_clip N
  2376. 4 W
  2377. V
  2378. {0 0 1 C} FS
  2379. O1
  2380. 60 900 2097 Ss
  2381. 60 918 2394 Ss
  2382. 60 885 2658 Ss
  2383. 60 1161 1476 Ss
  2384. 60 1206 1788 Ss
  2385. 60 1149 2142 Ss
  2386. 60 1269 2361 Ss
  2387. 60 1215 2643 Ss
  2388. 60 1464 1209 Ss
  2389. 60 1569 1482 Ss
  2390. 60 1500 1812 Ss
  2391. 60 1488 2058 Ss
  2392. 60 1542 2391 Ss
  2393. 60 1491 2709 Ss
  2394. 60 1821 1191 Ss
  2395. 60 1809 1500 Ss
  2396. 60 1773 2364 Ss
  2397. 60 1794 2670 Ss
  2398. 60 2097 888 Ss
  2399. 60 2085 1227 Ss
  2400. 60 2082 1500 Ss
  2401. 60 2109 2397 Ss
  2402. 60 2076 2580 Ss
  2403. 60 2382 1200 Ss
  2404. 60 2412 1485 Ss
  2405. 60 2403 1803 Ss
  2406. 60 2442 2139 Ss
  2407. 60 2409 2469 Ss
  2408. 60 2385 2715 Ss
  2409. 60 2742 1197 Ss
  2410. 60 2667 1473 Ss
  2411. 60 2703 1785 Ss
  2412. 60 2721 2127 Ss
  2413. 60 2685 2418 Ss
  2414. U
  2415. PSL_cliprestore
  2416. %%EndObject
  2417. 0 A
  2418. FQ
  2419. O0
  2420. 0 0 TM
  2421. % PostScript produced by:
  2422. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sc0.03i -Gred
  2423. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2424. %%BeginObject PSL_Layer_21
  2425. 0 setlinecap
  2426. 0 setlinejoin
  2427. 3.32551 setmiterlimit
  2428. clipsave
  2429. 0 0 M
  2430. 3600 0 D
  2431. 0 3600 D
  2432. -3600 0 D
  2433. P
  2434. PSL_clip N
  2435. 4 W
  2436. V
  2437. {1 0 0 C} FS
  2438. 18 300 3300 Sc
  2439. 18 600 3300 Sc
  2440. 18 900 3300 Sc
  2441. 18 1200 3300 Sc
  2442. 18 1500 3300 Sc
  2443. 18 1800 3300 Sc
  2444. 18 2100 3300 Sc
  2445. 18 2400 3300 Sc
  2446. 18 2700 3300 Sc
  2447. 18 3000 3300 Sc
  2448. 18 3300 3300 Sc
  2449. 18 300 3000 Sc
  2450. 18 600 3000 Sc
  2451. 18 900 3000 Sc
  2452. 18 1200 3000 Sc
  2453. 18 1500 3000 Sc
  2454. 18 1800 3000 Sc
  2455. 18 2100 3000 Sc
  2456. 18 2400 3000 Sc
  2457. 18 2700 3000 Sc
  2458. 18 3000 3000 Sc
  2459. 18 3300 3000 Sc
  2460. 18 300 2700 Sc
  2461. 18 600 2700 Sc
  2462. 18 2700 2700 Sc
  2463. 18 3000 2700 Sc
  2464. 18 3300 2700 Sc
  2465. 18 300 2400 Sc
  2466. 18 600 2400 Sc
  2467. 18 3000 2400 Sc
  2468. 18 3300 2400 Sc
  2469. 18 300 2100 Sc
  2470. 18 600 2100 Sc
  2471. 18 1800 2100 Sc
  2472. 18 2100 2100 Sc
  2473. 18 3000 2100 Sc
  2474. 18 3300 2100 Sc
  2475. 18 300 1800 Sc
  2476. 18 600 1800 Sc
  2477. 18 900 1800 Sc
  2478. 18 1800 1800 Sc
  2479. 18 2100 1800 Sc
  2480. 18 3000 1800 Sc
  2481. 18 3300 1800 Sc
  2482. 18 300 1500 Sc
  2483. 18 600 1500 Sc
  2484. 18 900 1500 Sc
  2485. 18 3000 1500 Sc
  2486. 18 3300 1500 Sc
  2487. 18 300 1200 Sc
  2488. 18 600 1200 Sc
  2489. 18 900 1200 Sc
  2490. 18 1200 1200 Sc
  2491. 18 3000 1200 Sc
  2492. 18 3300 1200 Sc
  2493. 18 300 900 Sc
  2494. 18 600 900 Sc
  2495. 18 900 900 Sc
  2496. 18 1200 900 Sc
  2497. 18 1500 900 Sc
  2498. 18 1800 900 Sc
  2499. 18 2400 900 Sc
  2500. 18 2700 900 Sc
  2501. 18 3000 900 Sc
  2502. 18 3300 900 Sc
  2503. 18 300 600 Sc
  2504. 18 600 600 Sc
  2505. 18 900 600 Sc
  2506. 18 1200 600 Sc
  2507. 18 1500 600 Sc
  2508. 18 1800 600 Sc
  2509. 18 2100 600 Sc
  2510. 18 2400 600 Sc
  2511. 18 2700 600 Sc
  2512. 18 3000 600 Sc
  2513. 18 3300 600 Sc
  2514. 18 300 300 Sc
  2515. 18 600 300 Sc
  2516. 18 900 300 Sc
  2517. 18 1200 300 Sc
  2518. 18 1500 300 Sc
  2519. 18 1800 300 Sc
  2520. 18 2100 300 Sc
  2521. 18 2400 300 Sc
  2522. 18 2700 300 Sc
  2523. 18 3000 300 Sc
  2524. 18 3300 300 Sc
  2525. U
  2526. PSL_cliprestore
  2527. %%EndObject
  2528. 0 A
  2529. FQ
  2530. O0
  2531. 0 0 TM
  2532. % PostScript produced by:
  2533. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K clipnf.txt -W1p,red
  2534. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2535. %%BeginObject PSL_Layer_22
  2536. 0 setlinecap
  2537. 0 setlinejoin
  2538. 3.32551 setmiterlimit
  2539. 17 W
  2540. 1 0 0 C
  2541. clipsave
  2542. 0 0 M
  2543. 3600 0 D
  2544. 0 3600 D
  2545. -3600 0 D
  2546. P
  2547. PSL_clip N
  2548. 300 3450 M
  2549. -150 0 D
  2550. 0 -3300 D
  2551. 3300 0 D
  2552. 0 3300 D
  2553. -150 0 D
  2554. -300 0 D
  2555. -300 0 D
  2556. -300 0 D
  2557. -300 0 D
  2558. -300 0 D
  2559. -300 0 D
  2560. -300 0 D
  2561. -300 0 D
  2562. -300 0 D
  2563. P S
  2564. 900 2850 M
  2565. 1650 0 D
  2566. 0 -300 D
  2567. 300 0 D
  2568. 0 -1500 D
  2569. -150 0 D
  2570. -300 0 D
  2571. -150 0 D
  2572. 0 -300 D
  2573. -150 0 D
  2574. -150 0 D
  2575. 0 300 D
  2576. -150 0 D
  2577. -300 0 D
  2578. -150 0 D
  2579. 0 300 D
  2580. -150 0 D
  2581. -150 0 D
  2582. 0 600 D
  2583. -150 0 D
  2584. -150 0 D
  2585. 0 900 D
  2586. P S
  2587. 1800 2250 M
  2588. -150 0 D
  2589. 0 -600 D
  2590. 600 0 D
  2591. 0 600 D
  2592. -150 0 D
  2593. P S
  2594. PSL_cliprestore
  2595. %%EndObject
  2596. 0 A
  2597. FQ
  2598. O0
  2599. 0 0 TM
  2600. % PostScript produced by:
  2601. %@GMT: gmt pstext -R-1/11/-1/11 -JX3i -O -K -F+f12p+jLB -Gwhite -W0.5p
  2602. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2603. %%BeginObject PSL_Layer_23
  2604. 0 setlinecap
  2605. 0 setlinejoin
  2606. 3.32551 setmiterlimit
  2607. clipsave
  2608. 0 0 M
  2609. 3600 0 D
  2610. 0 3600 D
  2611. -3600 0 D
  2612. P
  2613. PSL_clip N
  2614. 8 W
  2615. {1 A} FS
  2616. O1
  2617. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2618. 200 F0
  2619. V
  2620. (Oriented -Fl) 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
  2621. /PSL_dx 30 def
  2622. /PSL_dy 30 def
  2623. 300 300 T PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  2624. U
  2625. 300 300 M (Oriented -Fl) bl Z
  2626. PSL_cliprestore
  2627. %%EndObject
  2628. 0 A
  2629. FQ
  2630. O0
  2631. 0 0 TM
  2632. % PostScript produced by:
  2633. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  2634. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2635. %%BeginObject PSL_Layer_24
  2636. 0 setlinecap
  2637. 0 setlinejoin
  2638. 3.32551 setmiterlimit
  2639. clipsave
  2640. 0 0 M
  2641. 3600 0 D
  2642. 0 3600 D
  2643. -3600 0 D
  2644. P
  2645. PSL_clip N
  2646. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  2647. 4 W
  2648. V
  2649. {0 A} FS
  2650. O1
  2651. 4 W
  2652. V 300 3450 T 180 R
  2653. N 0 0 M 15 0 D S
  2654. U
  2655. V 150 3450 T 180 R
  2656. PSL_vecheadpen
  2657. 4 W
  2658. 0 0 M
  2659. -180 48 D
  2660. 45 -48 D
  2661. -45 -48 D
  2662. P clip fs P S
  2663. U
  2664. U
  2665. PSL_cliprestore
  2666. %%EndObject
  2667. 0 A
  2668. FQ
  2669. O0
  2670. 0 0 TM
  2671. % PostScript produced by:
  2672. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  2673. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2674. %%BeginObject PSL_Layer_25
  2675. 0 setlinecap
  2676. 0 setlinejoin
  2677. 3.32551 setmiterlimit
  2678. clipsave
  2679. 0 0 M
  2680. 3600 0 D
  2681. 0 3600 D
  2682. -3600 0 D
  2683. P
  2684. PSL_clip N
  2685. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  2686. 4 W
  2687. V
  2688. {0 A} FS
  2689. O1
  2690. 4 W
  2691. V 900 2850 T N 0 0 M 165 0 D S
  2692. U
  2693. V 1200 2850 T PSL_vecheadpen
  2694. 4 W
  2695. 0 0 M
  2696. -180 48 D
  2697. 45 -48 D
  2698. -45 -48 D
  2699. P clip fs P S
  2700. U
  2701. U
  2702. PSL_cliprestore
  2703. %%EndObject
  2704. 0 A
  2705. FQ
  2706. O0
  2707. 0 0 TM
  2708. % PostScript produced by:
  2709. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  2710. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2711. %%BeginObject PSL_Layer_26
  2712. 0 setlinecap
  2713. 0 setlinejoin
  2714. 3.32551 setmiterlimit
  2715. clipsave
  2716. 0 0 M
  2717. 3600 0 D
  2718. 0 3600 D
  2719. -3600 0 D
  2720. P
  2721. PSL_clip N
  2722. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  2723. 4 W
  2724. V
  2725. {0 A} FS
  2726. O1
  2727. 4 W
  2728. V 1800 2250 T 180 R
  2729. N 0 0 M 15 0 D S
  2730. U
  2731. V 1650 2250 T 180 R
  2732. PSL_vecheadpen
  2733. 4 W
  2734. 0 0 M
  2735. -180 48 D
  2736. 45 -48 D
  2737. -45 -48 D
  2738. P clip fs P S
  2739. U
  2740. U
  2741. PSL_cliprestore
  2742. %%EndObject
  2743. 0 A
  2744. FQ
  2745. O0
  2746. -3900 4080 TM
  2747. % PostScript produced by:
  2748. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -Bafg1 -BWSNe data.txt -Ss0.1i -Gblue -W0.25p -K -X-3.25i -Y3.4i
  2749. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  2750. %%BeginObject PSL_Layer_27
  2751. 0 setlinecap
  2752. 0 setlinejoin
  2753. 3.32551 setmiterlimit
  2754. 25 W
  2755. 4 W
  2756. 0 0 M
  2757. 0 3600 D
  2758. S
  2759. 300 0 M
  2760. 0 3600 D
  2761. S
  2762. 600 0 M
  2763. 0 3600 D
  2764. S
  2765. 900 0 M
  2766. 0 3600 D
  2767. S
  2768. 1200 0 M
  2769. 0 3600 D
  2770. S
  2771. 1500 0 M
  2772. 0 3600 D
  2773. S
  2774. 1800 0 M
  2775. 0 3600 D
  2776. S
  2777. 2100 0 M
  2778. 0 3600 D
  2779. S
  2780. 2400 0 M
  2781. 0 3600 D
  2782. S
  2783. 2700 0 M
  2784. 0 3600 D
  2785. S
  2786. 3000 0 M
  2787. 0 3600 D
  2788. S
  2789. 3300 0 M
  2790. 0 3600 D
  2791. S
  2792. 3600 0 M
  2793. 0 3600 D
  2794. S
  2795. 0 0 M
  2796. 3600 0 D
  2797. S
  2798. 0 300 M
  2799. 3600 0 D
  2800. S
  2801. 0 600 M
  2802. 3600 0 D
  2803. S
  2804. 0 900 M
  2805. 3600 0 D
  2806. S
  2807. 0 1200 M
  2808. 3600 0 D
  2809. S
  2810. 0 1500 M
  2811. 3600 0 D
  2812. S
  2813. 0 1800 M
  2814. 3600 0 D
  2815. S
  2816. 0 2100 M
  2817. 3600 0 D
  2818. S
  2819. 0 2400 M
  2820. 3600 0 D
  2821. S
  2822. 0 2700 M
  2823. 3600 0 D
  2824. S
  2825. 0 3000 M
  2826. 3600 0 D
  2827. S
  2828. 0 3300 M
  2829. 3600 0 D
  2830. S
  2831. 0 3600 M
  2832. 3600 0 D
  2833. S
  2834. 2 setlinecap
  2835. 25 W
  2836. N 0 3600 M 0 -3600 D S
  2837. /PSL_A0_y 83 def
  2838. /PSL_A1_y 0 def
  2839. 8 W
  2840. N 0 300 M -83 0 D S
  2841. N 0 1800 M -83 0 D S
  2842. N 0 3300 M -83 0 D S
  2843. /PSL_AH0 0
  2844. /MM {neg exch M} def
  2845. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2846. 200 F0
  2847. (0) sw mx
  2848. (5) sw mx
  2849. (10) sw mx
  2850. def
  2851. /PSL_A0_y PSL_A0_y 83 add def
  2852. 300 PSL_A0_y MM
  2853. (0) mr Z
  2854. 1800 PSL_A0_y MM
  2855. (5) mr Z
  2856. 3300 PSL_A0_y MM
  2857. (10) mr Z
  2858. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2859. N 0 0 M -42 0 D S
  2860. N 0 600 M -42 0 D S
  2861. N 0 900 M -42 0 D S
  2862. N 0 1200 M -42 0 D S
  2863. N 0 1500 M -42 0 D S
  2864. N 0 2100 M -42 0 D S
  2865. N 0 2400 M -42 0 D S
  2866. N 0 2700 M -42 0 D S
  2867. N 0 3000 M -42 0 D S
  2868. N 0 3600 M -42 0 D S
  2869. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2870. 3600 0 T
  2871. 25 W
  2872. N 0 3600 M 0 -3600 D S
  2873. /PSL_A0_y 83 def
  2874. /PSL_A1_y 0 def
  2875. 8 W
  2876. N 0 300 M 83 0 D S
  2877. N 0 1800 M 83 0 D S
  2878. N 0 3300 M 83 0 D S
  2879. N 0 0 M 42 0 D S
  2880. N 0 600 M 42 0 D S
  2881. N 0 900 M 42 0 D S
  2882. N 0 1200 M 42 0 D S
  2883. N 0 1500 M 42 0 D S
  2884. N 0 2100 M 42 0 D S
  2885. N 0 2400 M 42 0 D S
  2886. N 0 2700 M 42 0 D S
  2887. N 0 3000 M 42 0 D S
  2888. N 0 3600 M 42 0 D S
  2889. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2890. -3600 0 T
  2891. 25 W
  2892. N 0 0 M 3600 0 D S
  2893. /PSL_A0_y 83 def
  2894. /PSL_A1_y 0 def
  2895. 8 W
  2896. N 300 0 M 0 -83 D S
  2897. N 1800 0 M 0 -83 D S
  2898. N 3300 0 M 0 -83 D S
  2899. /PSL_AH0 0
  2900. /MM {neg M} def
  2901. (0) sh mx
  2902. (5) sh mx
  2903. (10) sh mx
  2904. def
  2905. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2906. 300 PSL_A0_y MM
  2907. (0) bc Z
  2908. 1800 PSL_A0_y MM
  2909. (5) bc Z
  2910. 3300 PSL_A0_y MM
  2911. (10) bc Z
  2912. N 0 0 M 0 -42 D S
  2913. N 600 0 M 0 -42 D S
  2914. N 900 0 M 0 -42 D S
  2915. N 1200 0 M 0 -42 D S
  2916. N 1500 0 M 0 -42 D S
  2917. N 2100 0 M 0 -42 D S
  2918. N 2400 0 M 0 -42 D S
  2919. N 2700 0 M 0 -42 D S
  2920. N 3000 0 M 0 -42 D S
  2921. N 3600 0 M 0 -42 D S
  2922. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2923. 0 3600 T
  2924. 25 W
  2925. N 0 0 M 3600 0 D S
  2926. /PSL_A0_y 83 def
  2927. /PSL_A1_y 0 def
  2928. 8 W
  2929. N 300 0 M 0 83 D S
  2930. N 1800 0 M 0 83 D S
  2931. N 3300 0 M 0 83 D S
  2932. /PSL_AH0 0
  2933. /MM {M} def
  2934. (0) sh mx
  2935. (5) sh mx
  2936. (10) sh mx
  2937. def
  2938. /PSL_A0_y PSL_A0_y 83 add def
  2939. 300 PSL_A0_y MM
  2940. (0) bc Z
  2941. 1800 PSL_A0_y MM
  2942. (5) bc Z
  2943. 3300 PSL_A0_y MM
  2944. (10) bc Z
  2945. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2946. N 0 0 M 0 42 D S
  2947. N 600 0 M 0 42 D S
  2948. N 900 0 M 0 42 D S
  2949. N 1200 0 M 0 42 D S
  2950. N 1500 0 M 0 42 D S
  2951. N 2100 0 M 0 42 D S
  2952. N 2400 0 M 0 42 D S
  2953. N 2700 0 M 0 42 D S
  2954. N 3000 0 M 0 42 D S
  2955. N 3600 0 M 0 42 D S
  2956. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2957. 0 -3600 T
  2958. 0 setlinecap
  2959. clipsave
  2960. 0 0 M
  2961. 3600 0 D
  2962. 0 3600 D
  2963. -3600 0 D
  2964. P
  2965. PSL_clip N
  2966. 4 W
  2967. V
  2968. {0 0 1 C} FS
  2969. O1
  2970. 60 900 2097 Ss
  2971. 60 918 2394 Ss
  2972. 60 885 2658 Ss
  2973. 60 1161 1476 Ss
  2974. 60 1206 1788 Ss
  2975. 60 1149 2142 Ss
  2976. 60 1269 2361 Ss
  2977. 60 1215 2643 Ss
  2978. 60 1464 1209 Ss
  2979. 60 1569 1482 Ss
  2980. 60 1500 1812 Ss
  2981. 60 1488 2058 Ss
  2982. 60 1542 2391 Ss
  2983. 60 1491 2709 Ss
  2984. 60 1821 1191 Ss
  2985. 60 1809 1500 Ss
  2986. 60 1773 2364 Ss
  2987. 60 1794 2670 Ss
  2988. 60 2097 888 Ss
  2989. 60 2085 1227 Ss
  2990. 60 2082 1500 Ss
  2991. 60 2109 2397 Ss
  2992. 60 2076 2580 Ss
  2993. 60 2382 1200 Ss
  2994. 60 2412 1485 Ss
  2995. 60 2403 1803 Ss
  2996. 60 2442 2139 Ss
  2997. 60 2409 2469 Ss
  2998. 60 2385 2715 Ss
  2999. 60 2742 1197 Ss
  3000. 60 2667 1473 Ss
  3001. 60 2703 1785 Ss
  3002. 60 2721 2127 Ss
  3003. 60 2685 2418 Ss
  3004. U
  3005. PSL_cliprestore
  3006. %%EndObject
  3007. 0 A
  3008. FQ
  3009. O0
  3010. 0 0 TM
  3011. % PostScript produced by:
  3012. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sc0.03i -Gred
  3013. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3014. %%BeginObject PSL_Layer_28
  3015. 0 setlinecap
  3016. 0 setlinejoin
  3017. 3.32551 setmiterlimit
  3018. clipsave
  3019. 0 0 M
  3020. 3600 0 D
  3021. 0 3600 D
  3022. -3600 0 D
  3023. P
  3024. PSL_clip N
  3025. 4 W
  3026. V
  3027. {1 0 0 C} FS
  3028. 18 300 3300 Sc
  3029. 18 600 3300 Sc
  3030. 18 900 3300 Sc
  3031. 18 1200 3300 Sc
  3032. 18 1500 3300 Sc
  3033. 18 1800 3300 Sc
  3034. 18 2100 3300 Sc
  3035. 18 2400 3300 Sc
  3036. 18 2700 3300 Sc
  3037. 18 3000 3300 Sc
  3038. 18 3300 3300 Sc
  3039. 18 300 3000 Sc
  3040. 18 600 3000 Sc
  3041. 18 2700 3000 Sc
  3042. 18 3000 3000 Sc
  3043. 18 3300 3000 Sc
  3044. 18 300 2700 Sc
  3045. 18 3000 2700 Sc
  3046. 18 3300 2700 Sc
  3047. 18 300 2400 Sc
  3048. 18 3300 2400 Sc
  3049. 18 300 2100 Sc
  3050. 18 3300 2100 Sc
  3051. 18 300 1800 Sc
  3052. 18 600 1800 Sc
  3053. 18 3300 1800 Sc
  3054. 18 300 1500 Sc
  3055. 18 600 1500 Sc
  3056. 18 3300 1500 Sc
  3057. 18 300 1200 Sc
  3058. 18 600 1200 Sc
  3059. 18 900 1200 Sc
  3060. 18 3300 1200 Sc
  3061. 18 300 900 Sc
  3062. 18 600 900 Sc
  3063. 18 900 900 Sc
  3064. 18 1200 900 Sc
  3065. 18 3000 900 Sc
  3066. 18 3300 900 Sc
  3067. 18 300 600 Sc
  3068. 18 600 600 Sc
  3069. 18 900 600 Sc
  3070. 18 1200 600 Sc
  3071. 18 1500 600 Sc
  3072. 18 1800 600 Sc
  3073. 18 2400 600 Sc
  3074. 18 2700 600 Sc
  3075. 18 3000 600 Sc
  3076. 18 3300 600 Sc
  3077. 18 300 300 Sc
  3078. 18 600 300 Sc
  3079. 18 900 300 Sc
  3080. 18 1200 300 Sc
  3081. 18 1500 300 Sc
  3082. 18 1800 300 Sc
  3083. 18 2100 300 Sc
  3084. 18 2400 300 Sc
  3085. 18 2700 300 Sc
  3086. 18 3000 300 Sc
  3087. 18 3300 300 Sc
  3088. U
  3089. PSL_cliprestore
  3090. %%EndObject
  3091. 0 A
  3092. FQ
  3093. O0
  3094. 0 0 TM
  3095. % PostScript produced by:
  3096. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K clipns.txt -W1p,red
  3097. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3098. %%BeginObject PSL_Layer_29
  3099. 0 setlinecap
  3100. 0 setlinejoin
  3101. 3.32551 setmiterlimit
  3102. 17 W
  3103. 1 0 0 C
  3104. clipsave
  3105. 0 0 M
  3106. 3600 0 D
  3107. 0 3600 D
  3108. -3600 0 D
  3109. P
  3110. PSL_clip N
  3111. 300 3450 M
  3112. 3150 0 D
  3113. 0 -3300 D
  3114. -150 0 D
  3115. -300 0 D
  3116. -300 0 D
  3117. -300 0 D
  3118. -300 0 D
  3119. -300 0 D
  3120. -300 0 D
  3121. -300 0 D
  3122. -300 0 D
  3123. -300 0 D
  3124. -300 0 D
  3125. -150 0 D
  3126. 0 3300 D
  3127. P S
  3128. 900 3150 M
  3129. 1650 0 D
  3130. 0 -300 D
  3131. 300 0 D
  3132. 0 -300 D
  3133. 300 0 D
  3134. 0 -1500 D
  3135. -150 0 D
  3136. -150 0 D
  3137. 0 -300 D
  3138. -150 0 D
  3139. -300 0 D
  3140. -150 0 D
  3141. 0 -300 D
  3142. -150 0 D
  3143. -150 0 D
  3144. 0 300 D
  3145. -150 0 D
  3146. -300 0 D
  3147. -150 0 D
  3148. 0 300 D
  3149. -150 0 D
  3150. -150 0 D
  3151. 0 300 D
  3152. -150 0 D
  3153. -150 0 D
  3154. 0 600 D
  3155. -150 0 D
  3156. -150 0 D
  3157. 0 900 D
  3158. 300 0 D
  3159. 0 300 D
  3160. P S
  3161. PSL_cliprestore
  3162. %%EndObject
  3163. 0 A
  3164. FQ
  3165. O0
  3166. 0 0 TM
  3167. % PostScript produced by:
  3168. %@GMT: gmt pstext -R-1/11/-1/11 -JX3i -O -K -F+f12p+jLB -Gwhite -W0.5p
  3169. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3170. %%BeginObject PSL_Layer_30
  3171. 0 setlinecap
  3172. 0 setlinejoin
  3173. 3.32551 setmiterlimit
  3174. clipsave
  3175. 0 0 M
  3176. 3600 0 D
  3177. 0 3600 D
  3178. -3600 0 D
  3179. P
  3180. PSL_clip N
  3181. 8 W
  3182. {1 A} FS
  3183. O1
  3184. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3185. 200 F0
  3186. V
  3187. (Unoriented -S1) 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
  3188. /PSL_dx 30 def
  3189. /PSL_dy 30 def
  3190. 300 300 T PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  3191. U
  3192. 300 300 M (Unoriented -S1) bl Z
  3193. PSL_cliprestore
  3194. %%EndObject
  3195. 0 A
  3196. FQ
  3197. O0
  3198. 0 0 TM
  3199. % PostScript produced by:
  3200. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  3201. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3202. %%BeginObject PSL_Layer_31
  3203. 0 setlinecap
  3204. 0 setlinejoin
  3205. 3.32551 setmiterlimit
  3206. clipsave
  3207. 0 0 M
  3208. 3600 0 D
  3209. 0 3600 D
  3210. -3600 0 D
  3211. P
  3212. PSL_clip N
  3213. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  3214. 4 W
  3215. V
  3216. {0 A} FS
  3217. O1
  3218. 4 W
  3219. V 300 3450 T N 0 0 M 165 0 D S
  3220. U
  3221. V 600 3450 T PSL_vecheadpen
  3222. 4 W
  3223. 0 0 M
  3224. -180 48 D
  3225. 45 -48 D
  3226. -45 -48 D
  3227. P clip fs P S
  3228. U
  3229. U
  3230. PSL_cliprestore
  3231. %%EndObject
  3232. 0 A
  3233. FQ
  3234. O0
  3235. 0 0 TM
  3236. % PostScript produced by:
  3237. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  3238. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3239. %%BeginObject PSL_Layer_32
  3240. 0 setlinecap
  3241. 0 setlinejoin
  3242. 3.32551 setmiterlimit
  3243. clipsave
  3244. 0 0 M
  3245. 3600 0 D
  3246. 0 3600 D
  3247. -3600 0 D
  3248. P
  3249. PSL_clip N
  3250. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  3251. 4 W
  3252. V
  3253. {0 A} FS
  3254. O1
  3255. 4 W
  3256. V 900 3150 T N 0 0 M 165 0 D S
  3257. U
  3258. V 1200 3150 T PSL_vecheadpen
  3259. 4 W
  3260. 0 0 M
  3261. -180 48 D
  3262. 45 -48 D
  3263. -45 -48 D
  3264. P clip fs P S
  3265. U
  3266. U
  3267. PSL_cliprestore
  3268. %%EndObject
  3269. 0 A
  3270. FQ
  3271. O0
  3272. 3900 0 TM
  3273. % PostScript produced by:
  3274. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -Bafg1 -BwSNE data.txt -Ss0.1i -Gblue -W0.25p -K -X3.25i
  3275. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3276. %%BeginObject PSL_Layer_33
  3277. 0 setlinecap
  3278. 0 setlinejoin
  3279. 3.32551 setmiterlimit
  3280. 25 W
  3281. 4 W
  3282. 0 0 M
  3283. 0 3600 D
  3284. S
  3285. 300 0 M
  3286. 0 3600 D
  3287. S
  3288. 600 0 M
  3289. 0 3600 D
  3290. S
  3291. 900 0 M
  3292. 0 3600 D
  3293. S
  3294. 1200 0 M
  3295. 0 3600 D
  3296. S
  3297. 1500 0 M
  3298. 0 3600 D
  3299. S
  3300. 1800 0 M
  3301. 0 3600 D
  3302. S
  3303. 2100 0 M
  3304. 0 3600 D
  3305. S
  3306. 2400 0 M
  3307. 0 3600 D
  3308. S
  3309. 2700 0 M
  3310. 0 3600 D
  3311. S
  3312. 3000 0 M
  3313. 0 3600 D
  3314. S
  3315. 3300 0 M
  3316. 0 3600 D
  3317. S
  3318. 3600 0 M
  3319. 0 3600 D
  3320. S
  3321. 0 0 M
  3322. 3600 0 D
  3323. S
  3324. 0 300 M
  3325. 3600 0 D
  3326. S
  3327. 0 600 M
  3328. 3600 0 D
  3329. S
  3330. 0 900 M
  3331. 3600 0 D
  3332. S
  3333. 0 1200 M
  3334. 3600 0 D
  3335. S
  3336. 0 1500 M
  3337. 3600 0 D
  3338. S
  3339. 0 1800 M
  3340. 3600 0 D
  3341. S
  3342. 0 2100 M
  3343. 3600 0 D
  3344. S
  3345. 0 2400 M
  3346. 3600 0 D
  3347. S
  3348. 0 2700 M
  3349. 3600 0 D
  3350. S
  3351. 0 3000 M
  3352. 3600 0 D
  3353. S
  3354. 0 3300 M
  3355. 3600 0 D
  3356. S
  3357. 0 3600 M
  3358. 3600 0 D
  3359. S
  3360. 2 setlinecap
  3361. 25 W
  3362. N 0 3600 M 0 -3600 D S
  3363. /PSL_A0_y 83 def
  3364. /PSL_A1_y 0 def
  3365. 8 W
  3366. N 0 300 M -83 0 D S
  3367. N 0 1800 M -83 0 D S
  3368. N 0 3300 M -83 0 D S
  3369. N 0 0 M -42 0 D S
  3370. N 0 600 M -42 0 D S
  3371. N 0 900 M -42 0 D S
  3372. N 0 1200 M -42 0 D S
  3373. N 0 1500 M -42 0 D S
  3374. N 0 2100 M -42 0 D S
  3375. N 0 2400 M -42 0 D S
  3376. N 0 2700 M -42 0 D S
  3377. N 0 3000 M -42 0 D S
  3378. N 0 3600 M -42 0 D S
  3379. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3380. 3600 0 T
  3381. 25 W
  3382. N 0 3600 M 0 -3600 D S
  3383. /PSL_A0_y 83 def
  3384. /PSL_A1_y 0 def
  3385. 8 W
  3386. N 0 300 M 83 0 D S
  3387. N 0 1800 M 83 0 D S
  3388. N 0 3300 M 83 0 D S
  3389. /PSL_AH0 0
  3390. /MM {exch M} def
  3391. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3392. 200 F0
  3393. (0) sw mx
  3394. (5) sw mx
  3395. (10) sw mx
  3396. def
  3397. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3398. 300 PSL_A0_y MM
  3399. (0) mr Z
  3400. 1800 PSL_A0_y MM
  3401. (5) mr Z
  3402. 3300 PSL_A0_y MM
  3403. (10) mr Z
  3404. N 0 0 M 42 0 D S
  3405. N 0 600 M 42 0 D S
  3406. N 0 900 M 42 0 D S
  3407. N 0 1200 M 42 0 D S
  3408. N 0 1500 M 42 0 D S
  3409. N 0 2100 M 42 0 D S
  3410. N 0 2400 M 42 0 D S
  3411. N 0 2700 M 42 0 D S
  3412. N 0 3000 M 42 0 D S
  3413. N 0 3600 M 42 0 D S
  3414. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3415. -3600 0 T
  3416. 25 W
  3417. N 0 0 M 3600 0 D S
  3418. /PSL_A0_y 83 def
  3419. /PSL_A1_y 0 def
  3420. 8 W
  3421. N 300 0 M 0 -83 D S
  3422. N 1800 0 M 0 -83 D S
  3423. N 3300 0 M 0 -83 D S
  3424. /PSL_AH0 0
  3425. /MM {neg M} def
  3426. (0) sh mx
  3427. (5) sh mx
  3428. (10) sh mx
  3429. def
  3430. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  3431. 300 PSL_A0_y MM
  3432. (0) bc Z
  3433. 1800 PSL_A0_y MM
  3434. (5) bc Z
  3435. 3300 PSL_A0_y MM
  3436. (10) bc Z
  3437. N 0 0 M 0 -42 D S
  3438. N 600 0 M 0 -42 D S
  3439. N 900 0 M 0 -42 D S
  3440. N 1200 0 M 0 -42 D S
  3441. N 1500 0 M 0 -42 D S
  3442. N 2100 0 M 0 -42 D S
  3443. N 2400 0 M 0 -42 D S
  3444. N 2700 0 M 0 -42 D S
  3445. N 3000 0 M 0 -42 D S
  3446. N 3600 0 M 0 -42 D S
  3447. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3448. 0 3600 T
  3449. 25 W
  3450. N 0 0 M 3600 0 D S
  3451. /PSL_A0_y 83 def
  3452. /PSL_A1_y 0 def
  3453. 8 W
  3454. N 300 0 M 0 83 D S
  3455. N 1800 0 M 0 83 D S
  3456. N 3300 0 M 0 83 D S
  3457. /PSL_AH0 0
  3458. /MM {M} def
  3459. (0) sh mx
  3460. (5) sh mx
  3461. (10) sh mx
  3462. def
  3463. /PSL_A0_y PSL_A0_y 83 add def
  3464. 300 PSL_A0_y MM
  3465. (0) bc Z
  3466. 1800 PSL_A0_y MM
  3467. (5) bc Z
  3468. 3300 PSL_A0_y MM
  3469. (10) bc Z
  3470. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  3471. N 0 0 M 0 42 D S
  3472. N 600 0 M 0 42 D S
  3473. N 900 0 M 0 42 D S
  3474. N 1200 0 M 0 42 D S
  3475. N 1500 0 M 0 42 D S
  3476. N 2100 0 M 0 42 D S
  3477. N 2400 0 M 0 42 D S
  3478. N 2700 0 M 0 42 D S
  3479. N 3000 0 M 0 42 D S
  3480. N 3600 0 M 0 42 D S
  3481. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  3482. 0 -3600 T
  3483. 0 setlinecap
  3484. clipsave
  3485. 0 0 M
  3486. 3600 0 D
  3487. 0 3600 D
  3488. -3600 0 D
  3489. P
  3490. PSL_clip N
  3491. 4 W
  3492. V
  3493. {0 0 1 C} FS
  3494. O1
  3495. 60 900 2097 Ss
  3496. 60 918 2394 Ss
  3497. 60 885 2658 Ss
  3498. 60 1161 1476 Ss
  3499. 60 1206 1788 Ss
  3500. 60 1149 2142 Ss
  3501. 60 1269 2361 Ss
  3502. 60 1215 2643 Ss
  3503. 60 1464 1209 Ss
  3504. 60 1569 1482 Ss
  3505. 60 1500 1812 Ss
  3506. 60 1488 2058 Ss
  3507. 60 1542 2391 Ss
  3508. 60 1491 2709 Ss
  3509. 60 1821 1191 Ss
  3510. 60 1809 1500 Ss
  3511. 60 1773 2364 Ss
  3512. 60 1794 2670 Ss
  3513. 60 2097 888 Ss
  3514. 60 2085 1227 Ss
  3515. 60 2082 1500 Ss
  3516. 60 2109 2397 Ss
  3517. 60 2076 2580 Ss
  3518. 60 2382 1200 Ss
  3519. 60 2412 1485 Ss
  3520. 60 2403 1803 Ss
  3521. 60 2442 2139 Ss
  3522. 60 2409 2469 Ss
  3523. 60 2385 2715 Ss
  3524. 60 2742 1197 Ss
  3525. 60 2667 1473 Ss
  3526. 60 2703 1785 Ss
  3527. 60 2721 2127 Ss
  3528. 60 2685 2418 Ss
  3529. U
  3530. PSL_cliprestore
  3531. %%EndObject
  3532. 0 A
  3533. FQ
  3534. O0
  3535. 0 0 TM
  3536. % PostScript produced by:
  3537. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sc0.03i -Gred
  3538. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3539. %%BeginObject PSL_Layer_34
  3540. 0 setlinecap
  3541. 0 setlinejoin
  3542. 3.32551 setmiterlimit
  3543. clipsave
  3544. 0 0 M
  3545. 3600 0 D
  3546. 0 3600 D
  3547. -3600 0 D
  3548. P
  3549. PSL_clip N
  3550. 4 W
  3551. V
  3552. {1 0 0 C} FS
  3553. 18 900 2700 Sc
  3554. 18 1200 2700 Sc
  3555. 18 1500 2700 Sc
  3556. 18 1800 2700 Sc
  3557. 18 2100 2700 Sc
  3558. 18 2400 2700 Sc
  3559. 18 900 2400 Sc
  3560. 18 1200 2400 Sc
  3561. 18 1500 2400 Sc
  3562. 18 1800 2400 Sc
  3563. 18 2100 2400 Sc
  3564. 18 2400 2400 Sc
  3565. 18 2700 2400 Sc
  3566. 18 900 2100 Sc
  3567. 18 1200 2100 Sc
  3568. 18 1500 2100 Sc
  3569. 18 2400 2100 Sc
  3570. 18 2700 2100 Sc
  3571. 18 1200 1800 Sc
  3572. 18 1500 1800 Sc
  3573. 18 2400 1800 Sc
  3574. 18 2700 1800 Sc
  3575. 18 1200 1500 Sc
  3576. 18 1500 1500 Sc
  3577. 18 1800 1500 Sc
  3578. 18 2100 1500 Sc
  3579. 18 2400 1500 Sc
  3580. 18 2700 1500 Sc
  3581. 18 1500 1200 Sc
  3582. 18 1800 1200 Sc
  3583. 18 2100 1200 Sc
  3584. 18 2400 1200 Sc
  3585. 18 2700 1200 Sc
  3586. 18 2100 900 Sc
  3587. U
  3588. PSL_cliprestore
  3589. %%EndObject
  3590. 0 A
  3591. FQ
  3592. O0
  3593. 0 0 TM
  3594. % PostScript produced by:
  3595. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K clipfs.txt -W1p,red
  3596. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3597. %%BeginObject PSL_Layer_35
  3598. 0 setlinecap
  3599. 0 setlinejoin
  3600. 3.32551 setmiterlimit
  3601. 17 W
  3602. 1 0 0 C
  3603. clipsave
  3604. 0 0 M
  3605. 3600 0 D
  3606. 0 3600 D
  3607. -3600 0 D
  3608. P
  3609. PSL_clip N
  3610. 900 2850 M
  3611. -150 0 D
  3612. 0 -900 D
  3613. 300 0 D
  3614. 0 -600 D
  3615. 300 0 D
  3616. 0 -300 D
  3617. 600 0 D
  3618. 0 -300 D
  3619. 300 0 D
  3620. 0 300 D
  3621. 600 0 D
  3622. 0 1500 D
  3623. -150 0 D
  3624. -150 0 D
  3625. 0 300 D
  3626. -150 0 D
  3627. -300 0 D
  3628. -300 0 D
  3629. -300 0 D
  3630. -300 0 D
  3631. P S
  3632. 1800 2250 M
  3633. 450 0 D
  3634. 0 -600 D
  3635. -150 0 D
  3636. -300 0 D
  3637. -150 0 D
  3638. 0 600 D
  3639. P S
  3640. PSL_cliprestore
  3641. %%EndObject
  3642. 0 A
  3643. FQ
  3644. O0
  3645. 0 0 TM
  3646. % PostScript produced by:
  3647. %@GMT: gmt pstext -R-1/11/-1/11 -JX3i -O -K -F+f12p+jLB -Gwhite -W0.5p
  3648. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3649. %%BeginObject PSL_Layer_36
  3650. 0 setlinecap
  3651. 0 setlinejoin
  3652. 3.32551 setmiterlimit
  3653. clipsave
  3654. 0 0 M
  3655. 3600 0 D
  3656. 0 3600 D
  3657. -3600 0 D
  3658. P
  3659. PSL_clip N
  3660. 8 W
  3661. {1 A} FS
  3662. O1
  3663. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  3664. 200 F0
  3665. V
  3666. (Oriented -Fl) 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
  3667. /PSL_dx 30 def
  3668. /PSL_dy 30 def
  3669. 300 300 T PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb
  3670. U
  3671. 300 300 M (Oriented -Fl) bl Z
  3672. PSL_cliprestore
  3673. %%EndObject
  3674. 0 A
  3675. FQ
  3676. O0
  3677. 0 0 TM
  3678. % PostScript produced by:
  3679. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  3680. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3681. %%BeginObject PSL_Layer_37
  3682. 0 setlinecap
  3683. 0 setlinejoin
  3684. 3.32551 setmiterlimit
  3685. clipsave
  3686. 0 0 M
  3687. 3600 0 D
  3688. 0 3600 D
  3689. -3600 0 D
  3690. P
  3691. PSL_clip N
  3692. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  3693. 4 W
  3694. V
  3695. {0 A} FS
  3696. O1
  3697. 4 W
  3698. V 900 2850 T 180 R
  3699. N 0 0 M 15 0 D S
  3700. U
  3701. V 750 2850 T 180 R
  3702. PSL_vecheadpen
  3703. 4 W
  3704. 0 0 M
  3705. -180 48 D
  3706. 45 -48 D
  3707. -45 -48 D
  3708. P clip fs P S
  3709. U
  3710. U
  3711. PSL_cliprestore
  3712. %%EndObject
  3713. 0 A
  3714. FQ
  3715. O0
  3716. 0 0 TM
  3717. % PostScript produced by:
  3718. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -K -Sv0.15i+e+s+h0.5 -Gblack
  3719. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3720. %%BeginObject PSL_Layer_38
  3721. 0 setlinecap
  3722. 0 setlinejoin
  3723. 3.32551 setmiterlimit
  3724. clipsave
  3725. 0 0 M
  3726. 3600 0 D
  3727. 0 3600 D
  3728. -3600 0 D
  3729. P
  3730. PSL_clip N
  3731. /PSL_vecheadpen {4 W 0 A [] 0 B} def
  3732. 4 W
  3733. V
  3734. {0 A} FS
  3735. O1
  3736. 4 W
  3737. V 1800 2250 T N 0 0 M 165 0 D S
  3738. U
  3739. V 2100 2250 T PSL_vecheadpen
  3740. 4 W
  3741. 0 0 M
  3742. -180 48 D
  3743. 45 -48 D
  3744. -45 -48 D
  3745. P clip fs P S
  3746. U
  3747. U
  3748. PSL_cliprestore
  3749. %%EndObject
  3750. 0 A
  3751. FQ
  3752. O0
  3753. 0 0 TM
  3754. % PostScript produced by:
  3755. %@GMT: gmt psxy -R-1/11/-1/11 -JX3i -O -T
  3756. %@PROJ: xy -1.00000000 11.00000000 -1.00000000 11.00000000 -1.000 11.000 -1.000 11.000 +xy
  3757. %%BeginObject PSL_Layer_39
  3758. 0 setlinecap
  3759. 0 setlinejoin
  3760. 3.32551 setmiterlimit
  3761. %%EndObject
  3762. grestore
  3763. PSL_movie_completion /PSL_movie_completion {} def
  3764. %PSL_Begin_Trailer
  3765. %%PageTrailer
  3766. U
  3767. showpage
  3768. %%Trailer
  3769. end
  3770. %%EOF
Tip!

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

Comments

Loading...