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

front.ps 43 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
  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 [64-bit] Document from psbasemap
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Fri Feb 22 08:41:07 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 PSL_fnt k get def
  339. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  340. psl_fnt cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. /psl_fnt PSL_label_font psl_k get def
  597. psl_fnt cvx exec
  598. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  599. /PSL_height PSL_heights psl_k get def
  600. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  601. /PSL_just PSL_label_justify psl_k get def
  602. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  603. /PSL_justy PSL_just 4 idiv 2 div neg def
  604. /psl_SW psl_label stringwidth pop def
  605. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  606. /psl_x0 psl_SW PSL_justx mul def
  607. /psl_y0 PSL_justy PSL_height mul def
  608. /psl_angle PSL_label_angle psl_k get def
  609. } def
  610. /PSL_ST_textbox_rect
  611. {
  612. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  613. PSL_gap_x neg PSL_gap_y neg M
  614. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  615. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  616. } def
  617. /PSL_ST_textbox_round
  618. {
  619. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  620. /psl_xd PSL_gap_x psl_BoxR sub def
  621. /psl_yd PSL_gap_y psl_BoxR sub def
  622. /psl_xL PSL_gap_x neg def
  623. /psl_yB PSL_gap_y neg def
  624. /psl_yT psl_boxH psl_yB add def
  625. /psl_H2 PSL_height psl_yd 2 mul add def
  626. /psl_W2 psl_SW psl_xd 2 mul add def
  627. /psl_xR psl_xL psl_boxW add def
  628. /psl_x0 psl_SW PSL_justx mul def
  629. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  630. psl_xL psl_yd M
  631. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  632. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  633. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  634. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  635. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  636. } def
  637. /PSL_ST_place_label
  638. {
  639. V psl_xp psl_yp T psl_angle R
  640. psl_SW PSL_justx mul psl_y0 M
  641. psl_label dup sd neg 0 exch G
  642. PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
  643. U
  644. } def
  645. /PSL_nclip 0 def
  646. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  647. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  648. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  649. %%EndProlog
  650. %%BeginSetup
  651. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  652. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  653. %%EndSetup
  654. %%Page: 1 1
  655. %%BeginPageSetup
  656. V 0.06 0.06 scale
  657. %%EndPageSetup
  658. /PSL_page_xsize 10200 def
  659. /PSL_page_ysize 13200 def
  660. /PSL_completion {} def
  661. /PSL_movie_completion {} def
  662. %PSL_End_Header
  663. gsave
  664. 0 A
  665. FQ
  666. O0
  667. -3600 PSL_xorig sub PSL_page_xsize 2 div add 1200 TM
  668. % PostScript produced by:
  669. %@GMT: gmt psbasemap -R0/6/0/8 -Jx1i -P -B0 -K -Xc
  670. %@PROJ: xy 0.00000000 6.00000000 0.00000000 8.00000000 0.000 6.000 0.000 8.000 +xy
  671. %GMTBoundingBox: -216 72 432 576
  672. %%BeginObject PSL_Layer_1
  673. 0 setlinecap
  674. 0 setlinejoin
  675. 3.32551 setmiterlimit
  676. 25 W
  677. 2 setlinecap
  678. N 0 9600 M 0 -9600 D S
  679. /PSL_A0_y 0 def
  680. /PSL_A1_y 0 def
  681. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  682. 7200 0 T
  683. N 0 9600 M 0 -9600 D S
  684. /PSL_A0_y 0 def
  685. /PSL_A1_y 0 def
  686. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  687. -7200 0 T
  688. N 0 0 M 7200 0 D S
  689. /PSL_A0_y 0 def
  690. /PSL_A1_y 0 def
  691. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  692. 0 9600 T
  693. N 0 0 M 7200 0 D S
  694. /PSL_A0_y 0 def
  695. /PSL_A1_y 0 def
  696. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  697. 0 -9600 T
  698. 0 setlinecap
  699. %%EndObject
  700. 0 A
  701. FQ
  702. O0
  703. 300 480 TM
  704. % PostScript produced by:
  705. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf0.4i/0.1i+b t.txt -X0.25i -Y0.4i
  706. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  707. %%BeginObject PSL_Layer_2
  708. 0 setlinecap
  709. 0 setlinejoin
  710. 3.32551 setmiterlimit
  711. 17 W
  712. clipsave
  713. 0 0 M
  714. 1200 0 D
  715. 0 2269 D
  716. -1200 0 D
  717. P
  718. PSL_clip N
  719. 171 256 M
  720. 123 255 D
  721. 76 157 D
  722. 166 343 D
  723. 153 312 D
  724. 221 441 D
  725. 119 230 D
  726. S
  727. {1 0 0 C} FS
  728. O1
  729. 10 setmiterlimit
  730. 109 -52 -52 -109 -108 52 3 251 284 SP
  731. 109 -52 -53 -108 -108 52 3 462 720 SP
  732. 108 -53 -53 -108 -108 53 3 674 1156 SP
  733. 107 -54 -54 -107 -107 54 3 889 1589 SP
  734. 106 -55 -55 -106 -106 55 3 1109 2020 SP
  735. 3.32551 setmiterlimit
  736. PSL_cliprestore
  737. %%EndObject
  738. 0 A
  739. FQ
  740. O0
  741. 600 0 TM
  742. % PostScript produced by:
  743. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf0.4i/0.1i+c -X0.5i t.txt
  744. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  745. %%BeginObject PSL_Layer_3
  746. 0 setlinecap
  747. 0 setlinejoin
  748. 3.32551 setmiterlimit
  749. 17 W
  750. clipsave
  751. 0 0 M
  752. 1200 0 D
  753. 0 2269 D
  754. -1200 0 D
  755. P
  756. PSL_clip N
  757. 171 256 M
  758. 123 255 D
  759. 76 157 D
  760. 166 343 D
  761. 153 312 D
  762. 221 441 D
  763. 119 230 D
  764. S
  765. {1 0 0 C} FS
  766. O1
  767. 10 setmiterlimit
  768. 60 171 256 Sc
  769. 60 382 692 Sc
  770. 60 593 1128 Sc
  771. 60 808 1563 Sc
  772. 60 1029 1994 Sc
  773. 3.32551 setmiterlimit
  774. PSL_cliprestore
  775. %%EndObject
  776. 0 A
  777. FQ
  778. O0
  779. 600 0 TM
  780. % PostScript produced by:
  781. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf0.4i/0.1i+f -X0.5i t.txt
  782. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  783. %%BeginObject PSL_Layer_4
  784. 0 setlinecap
  785. 0 setlinejoin
  786. 3.32551 setmiterlimit
  787. 17 W
  788. clipsave
  789. 0 0 M
  790. 1200 0 D
  791. 0 2269 D
  792. -1200 0 D
  793. P
  794. PSL_clip N
  795. 171 256 M
  796. 123 255 D
  797. 76 157 D
  798. 166 343 D
  799. 153 312 D
  800. 221 441 D
  801. 119 230 D
  802. S
  803. {1 0 0 C} FS
  804. O1
  805. 226 230 M
  806. -109 52 D
  807. S
  808. 436 666 M
  809. -108 52 D
  810. S
  811. 647 1102 M
  812. -108 53 D
  813. S
  814. 862 1536 M
  815. -107 54 D
  816. S
  817. 1082 1967 M
  818. -107 55 D
  819. S
  820. PSL_cliprestore
  821. %%EndObject
  822. 0 A
  823. FQ
  824. O0
  825. 600 0 TM
  826. % PostScript produced by:
  827. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Sf0.6i/0.3i+S+r -X0.5i t.txt
  828. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  829. %%BeginObject PSL_Layer_5
  830. 0 setlinecap
  831. 0 setlinejoin
  832. 3.32551 setmiterlimit
  833. 17 W
  834. clipsave
  835. 0 0 M
  836. 1200 0 D
  837. 0 2269 D
  838. -1200 0 D
  839. P
  840. PSL_clip N
  841. 171 256 M
  842. 123 255 D
  843. 76 157 D
  844. 166 343 D
  845. 153 312 D
  846. 221 441 D
  847. 119 230 D
  848. S
  849. O1
  850. 10 setmiterlimit
  851. V 171 256 T
  852. 64.3445 R
  853. -180 83 M
  854. 360 0 D
  855. 180 227 144 270 230 arcn S
  856. 180 -83 M
  857. -360 0 D
  858. -180 -227 144 90 50 arcn S
  859. U
  860. V 452 838 T
  861. 64.1538 R
  862. -180 83 M
  863. 360 0 D
  864. 180 227 144 270 230 arcn S
  865. 180 -83 M
  866. -360 0 D
  867. -180 -227 144 90 50 arcn S
  868. U
  869. V 736 1418 T
  870. 63.5629 R
  871. -180 83 M
  872. 360 0 D
  873. 180 227 144 270 230 arcn S
  874. 180 -83 M
  875. -360 0 D
  876. -180 -227 144 90 50 arcn S
  877. U
  878. V 1029 1994 T
  879. 62.5999 R
  880. -180 83 M
  881. 360 0 D
  882. 180 227 144 270 230 arcn S
  883. 180 -83 M
  884. -360 0 D
  885. -180 -227 144 90 50 arcn S
  886. U
  887. 3.32551 setmiterlimit
  888. PSL_cliprestore
  889. %%EndObject
  890. 0 A
  891. FQ
  892. O0
  893. 600 0 TM
  894. % PostScript produced by:
  895. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf0.4i/0.1i+t -X0.5i t.txt
  896. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  897. %%BeginObject PSL_Layer_6
  898. 0 setlinecap
  899. 0 setlinejoin
  900. 3.32551 setmiterlimit
  901. 17 W
  902. clipsave
  903. 0 0 M
  904. 1200 0 D
  905. 0 2269 D
  906. -1200 0 D
  907. P
  908. PSL_clip N
  909. 171 256 M
  910. 123 255 D
  911. 76 157 D
  912. 166 343 D
  913. 153 312 D
  914. 221 441 D
  915. 119 230 D
  916. S
  917. {1 0 0 C} FS
  918. O1
  919. 10 setmiterlimit
  920. 81 29 28 -81 -80 -28 3 197 310 SP
  921. 81 28 27 -80 -80 -28 3 408 746 SP
  922. 80 28 28 -81 -81 -27 3 620 1182 SP
  923. 80 27 27 -81 -80 -26 3 835 1616 SP
  924. 81 26 26 -81 -81 -26 3 1056 2048 SP
  925. 3.32551 setmiterlimit
  926. PSL_cliprestore
  927. %%EndObject
  928. 0 A
  929. FQ
  930. O0
  931. 600 0 TM
  932. % PostScript produced by:
  933. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf-1/0.1i+b -X0.5i t.txt
  934. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  935. %%BeginObject PSL_Layer_7
  936. 0 setlinecap
  937. 0 setlinejoin
  938. 3.32551 setmiterlimit
  939. 17 W
  940. clipsave
  941. 0 0 M
  942. 1200 0 D
  943. 0 2269 D
  944. -1200 0 D
  945. P
  946. PSL_clip N
  947. 171 256 M
  948. 123 255 D
  949. 76 157 D
  950. 166 343 D
  951. 153 312 D
  952. 221 441 D
  953. 119 230 D
  954. S
  955. {1 0 0 C} FS
  956. O1
  957. 10 setmiterlimit
  958. 108 -53 -53 -108 -108 53 3 674 1156 SP
  959. 3.32551 setmiterlimit
  960. PSL_cliprestore
  961. %%EndObject
  962. 0 A
  963. FQ
  964. O0
  965. 600 0 TM
  966. % PostScript produced by:
  967. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf-1/0.1i+c -X0.5i t.txt
  968. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  969. %%BeginObject PSL_Layer_8
  970. 0 setlinecap
  971. 0 setlinejoin
  972. 3.32551 setmiterlimit
  973. 17 W
  974. clipsave
  975. 0 0 M
  976. 1200 0 D
  977. 0 2269 D
  978. -1200 0 D
  979. P
  980. PSL_clip N
  981. 171 256 M
  982. 123 255 D
  983. 76 157 D
  984. 166 343 D
  985. 153 312 D
  986. 221 441 D
  987. 119 230 D
  988. S
  989. {1 0 0 C} FS
  990. O1
  991. 10 setmiterlimit
  992. 60 593 1128 Sc
  993. 3.32551 setmiterlimit
  994. PSL_cliprestore
  995. %%EndObject
  996. 0 A
  997. FQ
  998. O0
  999. 600 0 TM
  1000. % PostScript produced by:
  1001. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf-1/0.1i+f -X0.5i t.txt
  1002. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1003. %%BeginObject PSL_Layer_9
  1004. 0 setlinecap
  1005. 0 setlinejoin
  1006. 3.32551 setmiterlimit
  1007. 17 W
  1008. clipsave
  1009. 0 0 M
  1010. 1200 0 D
  1011. 0 2269 D
  1012. -1200 0 D
  1013. P
  1014. PSL_clip N
  1015. 171 256 M
  1016. 123 255 D
  1017. 76 157 D
  1018. 166 343 D
  1019. 153 312 D
  1020. 221 441 D
  1021. 119 230 D
  1022. S
  1023. {1 0 0 C} FS
  1024. O1
  1025. 647 1102 M
  1026. -108 53 D
  1027. S
  1028. PSL_cliprestore
  1029. %%EndObject
  1030. 0 A
  1031. FQ
  1032. O0
  1033. 600 0 TM
  1034. % PostScript produced by:
  1035. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Sf-1/0.4i+S+l -X0.5i t.txt
  1036. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1037. %%BeginObject PSL_Layer_10
  1038. 0 setlinecap
  1039. 0 setlinejoin
  1040. 3.32551 setmiterlimit
  1041. 17 W
  1042. clipsave
  1043. 0 0 M
  1044. 1200 0 D
  1045. 0 2269 D
  1046. -1200 0 D
  1047. P
  1048. PSL_clip N
  1049. 171 256 M
  1050. 123 255 D
  1051. 76 157 D
  1052. 166 343 D
  1053. 153 312 D
  1054. 221 441 D
  1055. 119 230 D
  1056. S
  1057. O1
  1058. 10 setmiterlimit
  1059. V 593 1128 T
  1060. 63.9044 R
  1061. 240 83 M
  1062. -480 0 D
  1063. -240 275 192 270 310 arc S
  1064. -240 -83 M
  1065. 480 0 D
  1066. 240 -275 192 90 130 arc S
  1067. U
  1068. 3.32551 setmiterlimit
  1069. PSL_cliprestore
  1070. %%EndObject
  1071. 0 A
  1072. FQ
  1073. O0
  1074. 600 0 TM
  1075. % PostScript produced by:
  1076. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gred -Sf-1/0.1i+t -X0.5i t.txt
  1077. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1078. %%BeginObject PSL_Layer_11
  1079. 0 setlinecap
  1080. 0 setlinejoin
  1081. 3.32551 setmiterlimit
  1082. 17 W
  1083. clipsave
  1084. 0 0 M
  1085. 1200 0 D
  1086. 0 2269 D
  1087. -1200 0 D
  1088. P
  1089. PSL_clip N
  1090. 171 256 M
  1091. 123 255 D
  1092. 76 157 D
  1093. 166 343 D
  1094. 153 312 D
  1095. 221 441 D
  1096. 119 230 D
  1097. S
  1098. {1 0 0 C} FS
  1099. O1
  1100. 10 setmiterlimit
  1101. 80 28 28 -81 -81 -27 3 620 1182 SP
  1102. 3.32551 setmiterlimit
  1103. PSL_cliprestore
  1104. %%EndObject
  1105. 0 A
  1106. FQ
  1107. O0
  1108. -5400 3000 TM
  1109. % PostScript produced by:
  1110. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf0.4i/0.1i+b+r -X-4.5i -Y2.5i t.txt
  1111. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1112. %%BeginObject PSL_Layer_12
  1113. 0 setlinecap
  1114. 0 setlinejoin
  1115. 3.32551 setmiterlimit
  1116. 17 W
  1117. clipsave
  1118. 0 0 M
  1119. 1200 0 D
  1120. 0 2269 D
  1121. -1200 0 D
  1122. P
  1123. PSL_clip N
  1124. 171 256 M
  1125. 123 255 D
  1126. 76 157 D
  1127. 166 343 D
  1128. 153 312 D
  1129. 221 441 D
  1130. 119 230 D
  1131. S
  1132. {0 0 1 C} FS
  1133. O1
  1134. 10 setmiterlimit
  1135. -54 26 51 109 55 -26 3 145 201 SP
  1136. -54 26 52 108 55 -26 3 355 638 SP
  1137. -54 26 53 108 54 -26 3 567 1074 SP
  1138. -54 27 54 107 53 -27 3 782 1509 SP
  1139. -53 28 55 106 53 -27 3 1001 1941 SP
  1140. 3.32551 setmiterlimit
  1141. PSL_cliprestore
  1142. %%EndObject
  1143. 0 A
  1144. FQ
  1145. O0
  1146. 600 0 TM
  1147. % PostScript produced by:
  1148. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf0.4i/0.1i+c+r -X0.5i t.txt
  1149. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1150. %%BeginObject PSL_Layer_13
  1151. 0 setlinecap
  1152. 0 setlinejoin
  1153. 3.32551 setmiterlimit
  1154. 17 W
  1155. clipsave
  1156. 0 0 M
  1157. 1200 0 D
  1158. 0 2269 D
  1159. -1200 0 D
  1160. P
  1161. PSL_clip N
  1162. 171 256 M
  1163. 123 255 D
  1164. 76 157 D
  1165. 166 343 D
  1166. 153 312 D
  1167. 221 441 D
  1168. 119 230 D
  1169. S
  1170. {0 0 1 C} FS
  1171. O1
  1172. 10 setmiterlimit
  1173. 60 244.345 424.345 171 256 Sw
  1174. 60 244.233 424.233 382 692 Sw
  1175. 60 243.904 423.904 593 1128 Sw
  1176. 60 243.363 423.363 808 1563 Sw
  1177. 60 242.6 422.6 1029 1994 Sw
  1178. 3.32551 setmiterlimit
  1179. PSL_cliprestore
  1180. %%EndObject
  1181. 0 A
  1182. FQ
  1183. O0
  1184. 600 0 TM
  1185. % PostScript produced by:
  1186. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf0.4i/0.1i+f+r -X0.5i t.txt
  1187. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1188. %%BeginObject PSL_Layer_14
  1189. 0 setlinecap
  1190. 0 setlinejoin
  1191. 3.32551 setmiterlimit
  1192. 17 W
  1193. clipsave
  1194. 0 0 M
  1195. 1200 0 D
  1196. 0 2269 D
  1197. -1200 0 D
  1198. P
  1199. PSL_clip N
  1200. 171 256 M
  1201. 123 255 D
  1202. 76 157 D
  1203. 166 343 D
  1204. 153 312 D
  1205. 221 441 D
  1206. 119 230 D
  1207. S
  1208. {0 0 1 C} FS
  1209. O1
  1210. 171 256 M
  1211. 55 -26 D
  1212. S
  1213. 382 692 M
  1214. 54 -26 D
  1215. S
  1216. 593 1128 M
  1217. 54 -26 D
  1218. S
  1219. 808 1563 M
  1220. 54 -27 D
  1221. S
  1222. 1029 1994 M
  1223. 53 -27 D
  1224. S
  1225. PSL_cliprestore
  1226. %%EndObject
  1227. 0 A
  1228. FQ
  1229. O0
  1230. 600 0 TM
  1231. % PostScript produced by:
  1232. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf0.6i/0.3i+s+r -X0.5i t.txt
  1233. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1234. %%BeginObject PSL_Layer_15
  1235. 0 setlinecap
  1236. 0 setlinejoin
  1237. 3.32551 setmiterlimit
  1238. 17 W
  1239. clipsave
  1240. 0 0 M
  1241. 1200 0 D
  1242. 0 2269 D
  1243. -1200 0 D
  1244. P
  1245. PSL_clip N
  1246. 171 256 M
  1247. 123 255 D
  1248. 76 157 D
  1249. 166 343 D
  1250. 153 312 D
  1251. 221 441 D
  1252. 119 230 D
  1253. S
  1254. {0 0 1 C} FS
  1255. O1
  1256. 10 setmiterlimit
  1257. 18 129 M
  1258. 156 325 D
  1259. -64 -63 D
  1260. S
  1261. 324 382 M
  1262. -155 -325 D
  1263. 64 63 D
  1264. S
  1265. 298 712 M
  1266. 157 324 D
  1267. -64 -63 D
  1268. S
  1269. 605 963 M
  1270. -157 -324 D
  1271. 65 63 D
  1272. S
  1273. 582 1294 M
  1274. 160 322 D
  1275. -65 -62 D
  1276. S
  1277. 891 1542 M
  1278. -160 -322 D
  1279. 65 62 D
  1280. S
  1281. 872 1873 M
  1282. 165 320 D
  1283. -66 -61 D
  1284. S
  1285. 1185 2116 M
  1286. -165 -320 D
  1287. 66 61 D
  1288. S
  1289. 3.32551 setmiterlimit
  1290. PSL_cliprestore
  1291. %%EndObject
  1292. 0 A
  1293. FQ
  1294. O0
  1295. 600 0 TM
  1296. % PostScript produced by:
  1297. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf0.4i/0.1i+t+r -X0.5i t.txt
  1298. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1299. %%BeginObject PSL_Layer_16
  1300. 0 setlinecap
  1301. 0 setlinejoin
  1302. 3.32551 setmiterlimit
  1303. 17 W
  1304. clipsave
  1305. 0 0 M
  1306. 1200 0 D
  1307. 0 2269 D
  1308. -1200 0 D
  1309. P
  1310. PSL_clip N
  1311. 171 256 M
  1312. 123 255 D
  1313. 76 157 D
  1314. 166 343 D
  1315. 153 312 D
  1316. 221 441 D
  1317. 119 230 D
  1318. S
  1319. {0 0 1 C} FS
  1320. O1
  1321. 10 setmiterlimit
  1322. -68 99 120 10 2 145 201 SP
  1323. -67 99 120 9 2 355 638 SP
  1324. -67 99 120 9 2 567 1074 SP
  1325. -66 100 119 7 2 782 1509 SP
  1326. -65 101 120 6 2 1001 1941 SP
  1327. 3.32551 setmiterlimit
  1328. PSL_cliprestore
  1329. %%EndObject
  1330. 0 A
  1331. FQ
  1332. O0
  1333. 600 0 TM
  1334. % PostScript produced by:
  1335. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf-1/0.1i+b+r -X0.5i t.txt
  1336. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1337. %%BeginObject PSL_Layer_17
  1338. 0 setlinecap
  1339. 0 setlinejoin
  1340. 3.32551 setmiterlimit
  1341. 17 W
  1342. clipsave
  1343. 0 0 M
  1344. 1200 0 D
  1345. 0 2269 D
  1346. -1200 0 D
  1347. P
  1348. PSL_clip N
  1349. 171 256 M
  1350. 123 255 D
  1351. 76 157 D
  1352. 166 343 D
  1353. 153 312 D
  1354. 221 441 D
  1355. 119 230 D
  1356. S
  1357. {0 0 1 C} FS
  1358. O1
  1359. 10 setmiterlimit
  1360. -54 26 53 108 54 -26 3 567 1074 SP
  1361. 3.32551 setmiterlimit
  1362. PSL_cliprestore
  1363. %%EndObject
  1364. 0 A
  1365. FQ
  1366. O0
  1367. 600 0 TM
  1368. % PostScript produced by:
  1369. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf-1/0.1i+c+r -X0.5i t.txt
  1370. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1371. %%BeginObject PSL_Layer_18
  1372. 0 setlinecap
  1373. 0 setlinejoin
  1374. 3.32551 setmiterlimit
  1375. 17 W
  1376. clipsave
  1377. 0 0 M
  1378. 1200 0 D
  1379. 0 2269 D
  1380. -1200 0 D
  1381. P
  1382. PSL_clip N
  1383. 171 256 M
  1384. 123 255 D
  1385. 76 157 D
  1386. 166 343 D
  1387. 153 312 D
  1388. 221 441 D
  1389. 119 230 D
  1390. S
  1391. {0 0 1 C} FS
  1392. O1
  1393. 10 setmiterlimit
  1394. 60 243.904 423.904 593 1128 Sw
  1395. 3.32551 setmiterlimit
  1396. PSL_cliprestore
  1397. %%EndObject
  1398. 0 A
  1399. FQ
  1400. O0
  1401. 600 0 TM
  1402. % PostScript produced by:
  1403. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf-1/0.1i+f+r -X0.5i t.txt
  1404. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1405. %%BeginObject PSL_Layer_19
  1406. 0 setlinecap
  1407. 0 setlinejoin
  1408. 3.32551 setmiterlimit
  1409. 17 W
  1410. clipsave
  1411. 0 0 M
  1412. 1200 0 D
  1413. 0 2269 D
  1414. -1200 0 D
  1415. P
  1416. PSL_clip N
  1417. 171 256 M
  1418. 123 255 D
  1419. 76 157 D
  1420. 166 343 D
  1421. 153 312 D
  1422. 221 441 D
  1423. 119 230 D
  1424. S
  1425. {0 0 1 C} FS
  1426. O1
  1427. 593 1128 M
  1428. 54 -26 D
  1429. S
  1430. PSL_cliprestore
  1431. %%EndObject
  1432. 0 A
  1433. FQ
  1434. O0
  1435. 600 0 TM
  1436. % PostScript produced by:
  1437. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf-1/0.4i+s+r -X0.5i t.txt
  1438. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1439. %%BeginObject PSL_Layer_20
  1440. 0 setlinecap
  1441. 0 setlinejoin
  1442. 3.32551 setmiterlimit
  1443. 17 W
  1444. clipsave
  1445. 0 0 M
  1446. 1200 0 D
  1447. 0 2269 D
  1448. -1200 0 D
  1449. P
  1450. PSL_clip N
  1451. 171 256 M
  1452. 123 255 D
  1453. 76 157 D
  1454. 166 343 D
  1455. 153 312 D
  1456. 221 441 D
  1457. 119 230 D
  1458. S
  1459. {0 0 1 C} FS
  1460. O1
  1461. 10 setmiterlimit
  1462. 413 949 M
  1463. 211 431 D
  1464. -86 -83 D
  1465. S
  1466. 774 1307 M
  1467. -211 -431 D
  1468. 86 83 D
  1469. S
  1470. 3.32551 setmiterlimit
  1471. PSL_cliprestore
  1472. %%EndObject
  1473. 0 A
  1474. FQ
  1475. O0
  1476. 600 0 TM
  1477. % PostScript produced by:
  1478. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gblue -Sf-1/0.1i+t+r -X0.5i t.txt
  1479. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1480. %%BeginObject PSL_Layer_21
  1481. 0 setlinecap
  1482. 0 setlinejoin
  1483. 3.32551 setmiterlimit
  1484. 17 W
  1485. clipsave
  1486. 0 0 M
  1487. 1200 0 D
  1488. 0 2269 D
  1489. -1200 0 D
  1490. P
  1491. PSL_clip N
  1492. 171 256 M
  1493. 123 255 D
  1494. 76 157 D
  1495. 166 343 D
  1496. 153 312 D
  1497. 221 441 D
  1498. 119 230 D
  1499. S
  1500. {0 0 1 C} FS
  1501. O1
  1502. 10 setmiterlimit
  1503. -67 99 120 9 2 567 1074 SP
  1504. 3.32551 setmiterlimit
  1505. PSL_cliprestore
  1506. %%EndObject
  1507. 0 A
  1508. FQ
  1509. O0
  1510. -5400 3000 TM
  1511. % PostScript produced by:
  1512. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf0.4i/0.1i+b+l -X-4.5i -Y2.5i t.txt
  1513. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1514. %%BeginObject PSL_Layer_22
  1515. 0 setlinecap
  1516. 0 setlinejoin
  1517. 3.32551 setmiterlimit
  1518. 17 W
  1519. clipsave
  1520. 0 0 M
  1521. 1200 0 D
  1522. 0 2269 D
  1523. -1200 0 D
  1524. P
  1525. PSL_clip N
  1526. 171 256 M
  1527. 123 255 D
  1528. 76 157 D
  1529. 166 343 D
  1530. 153 312 D
  1531. 221 441 D
  1532. 119 230 D
  1533. S
  1534. {1 1 0 C} FS
  1535. O1
  1536. 10 setmiterlimit
  1537. 54 -26 -52 -109 -54 26 3 197 310 SP
  1538. 54 -26 -53 -108 -54 26 3 408 746 SP
  1539. 54 -27 -53 -108 -54 27 3 620 1182 SP
  1540. 54 -27 -54 -107 -53 27 3 835 1616 SP
  1541. 53 -28 -55 -106 -53 27 3 1056 2048 SP
  1542. 3.32551 setmiterlimit
  1543. PSL_cliprestore
  1544. %%EndObject
  1545. 0 A
  1546. FQ
  1547. O0
  1548. 600 0 TM
  1549. % PostScript produced by:
  1550. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf0.4i/0.1i+c+l -X0.5i t.txt
  1551. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1552. %%BeginObject PSL_Layer_23
  1553. 0 setlinecap
  1554. 0 setlinejoin
  1555. 3.32551 setmiterlimit
  1556. 17 W
  1557. clipsave
  1558. 0 0 M
  1559. 1200 0 D
  1560. 0 2269 D
  1561. -1200 0 D
  1562. P
  1563. PSL_clip N
  1564. 171 256 M
  1565. 123 255 D
  1566. 76 157 D
  1567. 166 343 D
  1568. 153 312 D
  1569. 221 441 D
  1570. 119 230 D
  1571. S
  1572. {1 1 0 C} FS
  1573. O1
  1574. 10 setmiterlimit
  1575. 60 64.3445 244.345 171 256 Sw
  1576. 60 64.2334 244.233 382 692 Sw
  1577. 60 63.9044 243.904 593 1128 Sw
  1578. 60 63.3631 243.363 808 1563 Sw
  1579. 60 62.5999 242.6 1029 1994 Sw
  1580. 3.32551 setmiterlimit
  1581. PSL_cliprestore
  1582. %%EndObject
  1583. 0 A
  1584. FQ
  1585. O0
  1586. 600 0 TM
  1587. % PostScript produced by:
  1588. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf0.4i/0.1i+f+l -X0.5i t.txt
  1589. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1590. %%BeginObject PSL_Layer_24
  1591. 0 setlinecap
  1592. 0 setlinejoin
  1593. 3.32551 setmiterlimit
  1594. 17 W
  1595. clipsave
  1596. 0 0 M
  1597. 1200 0 D
  1598. 0 2269 D
  1599. -1200 0 D
  1600. P
  1601. PSL_clip N
  1602. 171 256 M
  1603. 123 255 D
  1604. 76 157 D
  1605. 166 343 D
  1606. 153 312 D
  1607. 221 441 D
  1608. 119 230 D
  1609. S
  1610. {1 1 0 C} FS
  1611. O1
  1612. 171 256 M
  1613. -54 26 D
  1614. S
  1615. 382 692 M
  1616. -54 26 D
  1617. S
  1618. 593 1128 M
  1619. -54 27 D
  1620. S
  1621. 808 1563 M
  1622. -53 27 D
  1623. S
  1624. 1029 1994 M
  1625. -54 28 D
  1626. S
  1627. PSL_cliprestore
  1628. %%EndObject
  1629. 0 A
  1630. FQ
  1631. O0
  1632. 600 0 TM
  1633. % PostScript produced by:
  1634. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf0.6i/0.3i+s+l -X0.5i t.txt
  1635. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1636. %%BeginObject PSL_Layer_25
  1637. 0 setlinecap
  1638. 0 setlinejoin
  1639. 3.32551 setmiterlimit
  1640. 17 W
  1641. clipsave
  1642. 0 0 M
  1643. 1200 0 D
  1644. 0 2269 D
  1645. -1200 0 D
  1646. P
  1647. PSL_clip N
  1648. 171 256 M
  1649. 123 255 D
  1650. 76 157 D
  1651. 166 343 D
  1652. 153 312 D
  1653. 221 441 D
  1654. 119 230 D
  1655. S
  1656. {1 1 0 C} FS
  1657. O1
  1658. 10 setmiterlimit
  1659. 169 57 M
  1660. 155 325 D
  1661. -8 -90 D
  1662. S
  1663. 174 454 M
  1664. -156 -325 D
  1665. 9 90 D
  1666. S
  1667. 448 639 M
  1668. 157 324 D
  1669. -9 -89 D
  1670. S
  1671. 455 1036 M
  1672. -157 -324 D
  1673. 10 90 D
  1674. S
  1675. 731 1220 M
  1676. 160 322 D
  1677. -10 -89 D
  1678. S
  1679. 742 1616 M
  1680. -160 -322 D
  1681. 10 89 D
  1682. S
  1683. 1020 1796 M
  1684. 165 320 D
  1685. -11 -89 D
  1686. S
  1687. 1037 2193 M
  1688. -165 -320 D
  1689. 11 89 D
  1690. S
  1691. 3.32551 setmiterlimit
  1692. PSL_cliprestore
  1693. %%EndObject
  1694. 0 A
  1695. FQ
  1696. O0
  1697. 600 0 TM
  1698. % PostScript produced by:
  1699. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf0.4i/0.1i+t+l -X0.5i t.txt
  1700. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1701. %%BeginObject PSL_Layer_26
  1702. 0 setlinecap
  1703. 0 setlinejoin
  1704. 3.32551 setmiterlimit
  1705. 17 W
  1706. clipsave
  1707. 0 0 M
  1708. 1200 0 D
  1709. 0 2269 D
  1710. -1200 0 D
  1711. P
  1712. PSL_clip N
  1713. 171 256 M
  1714. 123 255 D
  1715. 76 157 D
  1716. 166 343 D
  1717. 153 312 D
  1718. 221 441 D
  1719. 119 230 D
  1720. S
  1721. {1 1 0 C} FS
  1722. O1
  1723. 10 setmiterlimit
  1724. 67 -100 -119 -9 2 197 310 SP
  1725. 67 -99 -120 -9 2 408 746 SP
  1726. 67 -100 -120 -8 2 620 1182 SP
  1727. 66 -100 -119 -7 2 835 1616 SP
  1728. 65 -101 -120 -6 2 1056 2048 SP
  1729. 3.32551 setmiterlimit
  1730. PSL_cliprestore
  1731. %%EndObject
  1732. 0 A
  1733. FQ
  1734. O0
  1735. 600 0 TM
  1736. % PostScript produced by:
  1737. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf-1/0.1i+b+l -X0.5i t.txt
  1738. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1739. %%BeginObject PSL_Layer_27
  1740. 0 setlinecap
  1741. 0 setlinejoin
  1742. 3.32551 setmiterlimit
  1743. 17 W
  1744. clipsave
  1745. 0 0 M
  1746. 1200 0 D
  1747. 0 2269 D
  1748. -1200 0 D
  1749. P
  1750. PSL_clip N
  1751. 171 256 M
  1752. 123 255 D
  1753. 76 157 D
  1754. 166 343 D
  1755. 153 312 D
  1756. 221 441 D
  1757. 119 230 D
  1758. S
  1759. {1 1 0 C} FS
  1760. O1
  1761. 10 setmiterlimit
  1762. 54 -27 -53 -108 -54 27 3 620 1182 SP
  1763. 3.32551 setmiterlimit
  1764. PSL_cliprestore
  1765. %%EndObject
  1766. 0 A
  1767. FQ
  1768. O0
  1769. 600 0 TM
  1770. % PostScript produced by:
  1771. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf-1/0.1i+c+l -X0.5i t.txt
  1772. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1773. %%BeginObject PSL_Layer_28
  1774. 0 setlinecap
  1775. 0 setlinejoin
  1776. 3.32551 setmiterlimit
  1777. 17 W
  1778. clipsave
  1779. 0 0 M
  1780. 1200 0 D
  1781. 0 2269 D
  1782. -1200 0 D
  1783. P
  1784. PSL_clip N
  1785. 171 256 M
  1786. 123 255 D
  1787. 76 157 D
  1788. 166 343 D
  1789. 153 312 D
  1790. 221 441 D
  1791. 119 230 D
  1792. S
  1793. {1 1 0 C} FS
  1794. O1
  1795. 10 setmiterlimit
  1796. 60 63.9044 243.904 593 1128 Sw
  1797. 3.32551 setmiterlimit
  1798. PSL_cliprestore
  1799. %%EndObject
  1800. 0 A
  1801. FQ
  1802. O0
  1803. 600 0 TM
  1804. % PostScript produced by:
  1805. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf-1/0.1i+f+l -X0.5i t.txt
  1806. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1807. %%BeginObject PSL_Layer_29
  1808. 0 setlinecap
  1809. 0 setlinejoin
  1810. 3.32551 setmiterlimit
  1811. 17 W
  1812. clipsave
  1813. 0 0 M
  1814. 1200 0 D
  1815. 0 2269 D
  1816. -1200 0 D
  1817. P
  1818. PSL_clip N
  1819. 171 256 M
  1820. 123 255 D
  1821. 76 157 D
  1822. 166 343 D
  1823. 153 312 D
  1824. 221 441 D
  1825. 119 230 D
  1826. S
  1827. {1 1 0 C} FS
  1828. O1
  1829. 593 1128 M
  1830. -54 27 D
  1831. S
  1832. PSL_cliprestore
  1833. %%EndObject
  1834. 0 A
  1835. FQ
  1836. O0
  1837. 600 0 TM
  1838. % PostScript produced by:
  1839. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf-1/0.4i+s+l -X0.5i t.txt
  1840. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1841. %%BeginObject PSL_Layer_30
  1842. 0 setlinecap
  1843. 0 setlinejoin
  1844. 3.32551 setmiterlimit
  1845. 17 W
  1846. clipsave
  1847. 0 0 M
  1848. 1200 0 D
  1849. 0 2269 D
  1850. -1200 0 D
  1851. P
  1852. PSL_clip N
  1853. 171 256 M
  1854. 123 255 D
  1855. 76 157 D
  1856. 166 343 D
  1857. 153 312 D
  1858. 221 441 D
  1859. 119 230 D
  1860. S
  1861. {1 1 0 C} FS
  1862. O1
  1863. 10 setmiterlimit
  1864. 563 876 M
  1865. 211 431 D
  1866. -13 -119 D
  1867. S
  1868. 624 1380 M
  1869. -211 -431 D
  1870. 13 120 D
  1871. S
  1872. 3.32551 setmiterlimit
  1873. PSL_cliprestore
  1874. %%EndObject
  1875. 0 A
  1876. FQ
  1877. O0
  1878. 600 0 TM
  1879. % PostScript produced by:
  1880. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -K -W1p -Gyellow -Sf-1/0.1i+t+l -X0.5i t.txt
  1881. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1882. %%BeginObject PSL_Layer_31
  1883. 0 setlinecap
  1884. 0 setlinejoin
  1885. 3.32551 setmiterlimit
  1886. 17 W
  1887. clipsave
  1888. 0 0 M
  1889. 1200 0 D
  1890. 0 2269 D
  1891. -1200 0 D
  1892. P
  1893. PSL_clip N
  1894. 171 256 M
  1895. 123 255 D
  1896. 76 157 D
  1897. 166 343 D
  1898. 153 312 D
  1899. 221 441 D
  1900. 119 230 D
  1901. S
  1902. {1 1 0 C} FS
  1903. O1
  1904. 10 setmiterlimit
  1905. 67 -100 -120 -8 2 620 1182 SP
  1906. 3.32551 setmiterlimit
  1907. PSL_cliprestore
  1908. %%EndObject
  1909. 0 A
  1910. FQ
  1911. O0
  1912. 0 0 TM
  1913. % PostScript produced by:
  1914. %@GMT: gmt psxy -R-2/12/-3/23 -JM1i -O -T
  1915. %@PROJ: merc -2.00000000 12.00000000 -3.00000000 23.00000000 -779236.436 779236.436 -331876.534 2615329.641 +proj=merc +lon_0=5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1916. %%BeginObject PSL_Layer_32
  1917. 0 setlinecap
  1918. 0 setlinejoin
  1919. 3.32551 setmiterlimit
  1920. %%EndObject
  1921. grestore
  1922. PSL_movie_completion /PSL_movie_completion {} def
  1923. %PSL_Begin_Trailer
  1924. %%PageTrailer
  1925. U
  1926. showpage
  1927. %%Trailer
  1928. end
  1929. %%EOF
Tip!

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

Comments

Loading...