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
%!PS-Adobe-3.0
%%BoundingBox: 0 0 612 792
%%HiResBoundingBox: 0 0 612.0000 792.0000
%%Title: GMT v6.1.0_5ec4659_2020.05.13 [64-bit] Document from psbasemap
%%Creator: GMT6
%%For: unknown
%%DocumentNeededResources: font Helvetica
%%CreationDate: Wed May 13 10:41:35 2020
%%LanguageLevel: 2
%%DocumentData: Clean7Bit
%%Orientation: Portrait
%%Pages: 1
%%EndComments
%%BeginProlog
250 dict begin
/! {bind def} bind def
/# {load def}!
/A /setgray #
/B /setdash #
/C /setrgbcolor #
/D /rlineto #
/E {dup stringwidth pop}!
/F /fill #
/G /rmoveto #
/H /sethsbcolor #
/I /setpattern #
/K /setcmykcolor #
/L /lineto #
/M /moveto #
/N /newpath #
/P /closepath #
/R /rotate #
/S /stroke #
/T /translate #
/U /grestore #
/V /gsave #
/W /setlinewidth #
/Y {findfont exch scalefont setfont}!
/Z /show #
/FP {true charpath flattenpath}!
/MU {matrix setmatrix}!
/MS {/SMat matrix currentmatrix def}!
/MR {SMat setmatrix}!
/edef {exch def}!
/FS {/fc edef /fs {V fc F U} def}!
/FQ {/fs {} def}!
/O0 {/os {N} def}!
/O1 {/os {P S} def}!
/FO {fs os}!
/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}!
/Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
/SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
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}!
/Sc {N 3 -1 roll 0 360 arc FO}!
/Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
/Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
/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}!
/Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
/Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
/Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
/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}!
/Sp {N 3 -1 roll 0 360 arc fs N}!
/SP {M {D} repeat FO}!
/Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
/SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
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}!
/Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
/St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
/SV {0 exch M 0 D D D D D 0 D FO}!
/Sv {0 0 M D D 0 D D D D D 0 D D FO}!
/Sw {2 copy M 5 2 roll arc FO}!
/Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
/Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
/S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
/S- {M dup 0 G dup -2 mul dup 0 D S}!
/sw {stringwidth pop}!
/sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
/sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
/sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
/sb {E exch sh}!
/bl {}!
/bc {E -2 div 0 G}!
/br {E neg 0 G}!
/ml {dup 0 exch sh -2 div G}!
/mc {dup E -2 div exch sh -2 div G}!
/mr {dup E neg exch sh -2 div G}!
/tl {dup 0 exch sh neg G}!
/tc {dup E -2 div exch sh neg G}!
/tr {dup E neg exch sh neg G}!
/mx {2 copy lt {exch} if pop}!
/PSL_xorig 0 def /PSL_yorig 0 def
/TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
/PSL_reencode {findfont dup length dict begin
{1 index /FID ne {def}{pop pop} ifelse} forall
exch /Encoding edef currentdict end definefont pop
}!
/PSL_eps_begin {
/PSL_eps_state save def
/PSL_dict_count countdictstack def
/PSL_op_count count 1 sub def
userdict begin
/showpage {} def
0 setgray 0 setlinecap 1 setlinewidth
0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
/languagelevel where
{pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
}!
/PSL_eps_end {
count PSL_op_count sub {pop} repeat
countdictstack PSL_dict_count sub {end} repeat
PSL_eps_state restore
}!
/PSL_transp {
/.setopacityalpha where {pop .setblendmode .setopacityalpha}{
/pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
{pop pop} ifelse} ifelse
}!
/Standard+_Encoding [
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
/.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
/space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
/parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
/zero /one /two /three /four /five /six /seven
/eight /nine /colon /semicolon /less /equal /greater /question
/at /A /B /C /D /E /F /G
/H /I /J /K /L /M /N /O
/P /Q /R /S /T /U /V /W
/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
/quoteleft /a /b /c /d /e /f /g
/h /i /j /k /l /m /n /o
/p /q /r /s /t /u /v /w
/x /y /z /braceleft /bar /braceright /asciitilde /florin
/Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
/Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
/divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
/onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
/.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
/currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
/Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
/quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
/Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
/dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
/emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
/Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
/acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
/egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
/oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
/udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
] def
/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
/F0 {/Helvetica Y}!
/F1 {/Helvetica-Bold Y}!
/F2 {/Helvetica-Oblique Y}!
/F3 {/Helvetica-BoldOblique Y}!
/F4 {/Times-Roman Y}!
/F5 {/Times-Bold Y}!
/F6 {/Times-Italic Y}!
/F7 {/Times-BoldItalic Y}!
/F8 {/Courier Y}!
/F9 {/Courier-Bold Y}!
/F10 {/Courier-Oblique Y}!
/F11 {/Courier-BoldOblique Y}!
/F12 {/Symbol Y}!
/F13 {/AvantGarde-Book Y}!
/F14 {/AvantGarde-BookOblique Y}!
/F15 {/AvantGarde-Demi Y}!
/F16 {/AvantGarde-DemiOblique Y}!
/F17 {/Bookman-Demi Y}!
/F18 {/Bookman-DemiItalic Y}!
/F19 {/Bookman-Light Y}!
/F20 {/Bookman-LightItalic Y}!
/F21 {/Helvetica-Narrow Y}!
/F22 {/Helvetica-Narrow-Bold Y}!
/F23 {/Helvetica-Narrow-Oblique Y}!
/F24 {/Helvetica-Narrow-BoldOblique Y}!
/F25 {/NewCenturySchlbk-Roman Y}!
/F26 {/NewCenturySchlbk-Italic Y}!
/F27 {/NewCenturySchlbk-Bold Y}!
/F28 {/NewCenturySchlbk-BoldItalic Y}!
/F29 {/Palatino-Roman Y}!
/F30 {/Palatino-Italic Y}!
/F31 {/Palatino-Bold Y}!
/F32 {/Palatino-BoldItalic Y}!
/F33 {/ZapfChancery-MediumItalic Y}!
/F34 {/ZapfDingbats Y}!
/F35 {/Ryumin-Light-EUC-H Y}!
/F36 {/Ryumin-Light-EUC-V Y}!
/F37 {/GothicBBB-Medium-EUC-H Y}!
/F38 {/GothicBBB-Medium-EUC-V Y}!
/PSL_pathtextdict 26 dict def
/PSL_pathtext
{PSL_pathtextdict begin
/ydepth exch def
/textheight exch def
/just exch def
/offset exch def
/str exch def
/pathdist 0 def
/setdist offset def
/charcount 0 def
/justy just 4 idiv textheight mul 2 div neg ydepth sub def
V flattenpath
{movetoproc} {linetoproc}
{curvetoproc} {closepathproc}
pathforall
U N
end
} def
PSL_pathtextdict begin
/movetoproc
{ /newy exch def /newx exch def
/firstx newx def /firsty newy def
/ovr 0 def
newx newy transform
/cpy exch def /cpx exch def
} def
/linetoproc
{ /oldx newx def /oldy newy def
/newy exch def /newx exch def
/dx newx oldx sub def
/dy newy oldy sub def
/dist dx dup mul dy dup mul add sqrt def
dist 0 ne
{ /dsx dx dist div ovr mul def
/dsy dy dist div ovr mul def
oldx dsx add oldy dsy add transform
/cpy exch def /cpx exch def
/pathdist pathdist dist add def
{setdist pathdist le
{charcount str length lt
{setchar} {exit} ifelse}
{ /ovr setdist pathdist sub def
exit}
ifelse
} loop
} if
} def
/curvetoproc
{ (ERROR: No curveto's after flattenpath!)
print
} def
/closepathproc
{firstx firsty linetoproc
firstx firsty movetoproc
} def
/setchar
{ /char str charcount 1 getinterval def
/charcount charcount 1 add def
/charwidth char stringwidth pop def
V cpx cpy itransform T
dy dx atan R
0 justy M
char show
0 justy neg G
currentpoint transform
/cpy exch def /cpx exch def
U /setdist setdist charwidth add def
} def
end
/PSL_set_label_heights
{
/PSL_n_labels_minus_1 PSL_n_labels 1 sub def
/PSL_heights PSL_n_labels array def
0 1 PSL_n_labels_minus_1
{ /psl_k exch def
/psl_label PSL_label_str psl_k get def
PSL_label_font psl_k get cvx exec
psl_label sH /PSL_height edef
PSL_heights psl_k PSL_height put
} for
} def
/PSL_curved_path_labels
{ /psl_bits exch def
/PSL_placetext psl_bits 2 and 2 eq def
/PSL_clippath psl_bits 4 and 4 eq def
/PSL_strokeline false def
/PSL_fillbox psl_bits 128 and 128 eq def
/PSL_drawbox psl_bits 256 and 256 eq def
/PSL_n_paths1 PSL_n_paths 1 sub def
/PSL_usebox PSL_fillbox PSL_drawbox or def
PSL_clippath {clipsave N clippath} if
/psl_k 0 def
/psl_p 0 def
0 1 PSL_n_paths1
{ /psl_kk exch def
/PSL_n PSL_path_n psl_kk get def
/PSL_m PSL_label_n psl_kk get def
/PSL_x PSL_path_x psl_k PSL_n getinterval def
/PSL_y PSL_path_y psl_k PSL_n getinterval def
/PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
/PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
/PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
/PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
PSL_curved_path_label
/psl_k psl_k PSL_n add def
/psl_p psl_p PSL_m add def
} for
PSL_clippath {PSL_eoclip} if N
} def
/PSL_curved_path_label
{
/PSL_n1 PSL_n 1 sub def
/PSL_m1 PSL_m 1 sub def
PSL_CT_calcstringwidth
PSL_CT_calclinedist
PSL_CT_excludelabels
PSL_CT_addcutpoints
/PSL_nn1 PSL_nn 1 sub def
/n 0 def
/k 0 def
/j 0 def
/PSL_seg 0 def
/PSL_xp PSL_nn array def
/PSL_yp PSL_nn array def
PSL_xp 0 PSL_xx 0 get put
PSL_yp 0 PSL_yy 0 get put
1 1 PSL_nn1
{ /i exch def
/node_type PSL_kind i get def
/j j 1 add def
PSL_xp j PSL_xx i get put
PSL_yp j PSL_yy i get put
node_type 1 eq
{n 0 eq
{PSL_CT_drawline}
{ PSL_CT_reversepath
PSL_CT_textline} ifelse
/j 0 def
PSL_xp j PSL_xx i get put
PSL_yp j PSL_yy i get put
} if
} for
n 0 eq {PSL_CT_drawline} if
} def
/PSL_CT_textline
{ PSL_fnt k get cvx exec
/PSL_height PSL_heights k get def
PSL_placetext {PSL_CT_placelabel} if
PSL_clippath {PSL_CT_clippath} if
/n 0 def /k k 1 add def
} def
/PSL_CT_calcstringwidth
{ /PSL_width_tmp PSL_m array def
0 1 PSL_m1
{ /i exch def
PSL_fnt_tmp i get cvx exec
PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
} for
} def
/PSL_CT_calclinedist
{ /PSL_newx PSL_x 0 get def
/PSL_newy PSL_y 0 get def
/dist 0.0 def
/PSL_dist PSL_n array def
PSL_dist 0 0.0 put
1 1 PSL_n1
{ /i exch def
/PSL_oldx PSL_newx def
/PSL_oldy PSL_newy def
/PSL_newx PSL_x i get def
/PSL_newy PSL_y i get def
/dx PSL_newx PSL_oldx sub def
/dy PSL_newy PSL_oldy sub def
/dist dist dx dx mul dy dy mul add sqrt add def
PSL_dist i dist put
} for
} def
/PSL_CT_excludelabels
{ /k 0 def
/PSL_width PSL_m array def
/PSL_angle PSL_m array def
/PSL_node PSL_m array def
/PSL_str PSL_m array def
/PSL_fnt PSL_m array def
/lastdist PSL_dist PSL_n1 get def
0 1 PSL_m1
{ /i exch def
/dist PSL_dist PSL_node_tmp i get get def
/halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
/L_dist dist halfwidth sub def
/R_dist dist halfwidth add def
L_dist 0 gt R_dist lastdist lt and
{
PSL_width k PSL_width_tmp i get put
PSL_node k PSL_node_tmp i get put
PSL_angle k PSL_angle_tmp i get put
PSL_str k PSL_str_tmp i get put
PSL_fnt k PSL_fnt_tmp i get put
/k k 1 add def
} if
} for
/PSL_m k def
/PSL_m1 PSL_m 1 sub def
} def
/PSL_CT_addcutpoints
{ /k 0 def
/PSL_nc PSL_m 2 mul 1 add def
/PSL_cuts PSL_nc array def
/PSL_nc1 PSL_nc 1 sub def
0 1 PSL_m1
{ /i exch def
/dist PSL_dist PSL_node i get get def
/halfwidth PSL_width i get 2 div PSL_gap_x add def
PSL_cuts k dist halfwidth sub put
/k k 1 add def
PSL_cuts k dist halfwidth add put
/k k 1 add def
} for
PSL_cuts k 100000.0 put
/PSL_nn PSL_n PSL_m 2 mul add def
/PSL_xx PSL_nn array def
/PSL_yy PSL_nn array def
/PSL_kind PSL_nn array def
/j 0 def
/k 0 def
/dist 0.0 def
0 1 PSL_n1
{ /i exch def
/last_dist dist def
/dist PSL_dist i get def
k 1 PSL_nc1
{ /kk exch def
/this_cut PSL_cuts kk get def
dist this_cut gt
{ /ds dist last_dist sub def
/f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
/i1 i 0 eq {0} {i 1 sub} ifelse def
PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
PSL_kind j 1 put
/j j 1 add def
/k k 1 add def
} if
} for
dist PSL_cuts k get le
{PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
PSL_kind j 0 put
/j j 1 add def
} if
} for
} def
/PSL_CT_reversepath
{PSL_xp j get PSL_xp 0 get lt
{0 1 j 2 idiv
{ /left exch def
/right j left sub def
/tmp PSL_xp left get def
PSL_xp left PSL_xp right get put
PSL_xp right tmp put
/tmp PSL_yp left get def
PSL_yp left PSL_yp right get put
PSL_yp right tmp put
} for
} if
} def
/PSL_CT_placelabel
{
/PSL_just PSL_label_justify k get def
/PSL_height PSL_heights k get def
/psl_label PSL_str k get def
/psl_depth psl_label sd def
PSL_usebox
{PSL_CT_clippath
PSL_fillbox
{V PSL_setboxrgb fill U} if
PSL_drawbox
{V PSL_setboxpen S U} if N
} if
PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
} def
/PSL_CT_clippath
{
/H PSL_height 2 div PSL_gap_y add def
/xoff j 1 add array def
/yoff j 1 add array def
/angle 0 def
0 1 j {
/ii exch def
/x PSL_xp ii get def
/y PSL_yp ii get def
ii 0 eq {
/x1 PSL_xp 1 get def
/y1 PSL_yp 1 get def
/dx x1 x sub def
/dy y1 y sub def
}
{ /i1 ii 1 sub def
/x1 PSL_xp i1 get def
/y1 PSL_yp i1 get def
/dx x x1 sub def
/dy y y1 sub def
} ifelse
dx 0.0 eq dy 0.0 eq and not
{ /angle dy dx atan 90 add def} if
/sina angle sin def
/cosa angle cos def
xoff ii H cosa mul put
yoff ii H sina mul put
} for
PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
1 1 j {
/ii exch def
PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
} for
j -1 0 {
/ii exch def
PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
} for P
} def
/PSL_CT_drawline
{
/str 20 string def
PSL_strokeline
{PSL_CT_placeline S} if
/PSL_seg PSL_seg 1 add def
/n 1 def
} def
/PSL_CT_placeline
{PSL_xp 0 get PSL_yp 0 get M
1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
} def
/PSL_draw_path_lines
{
/PSL_n_paths1 PSL_n_paths 1 sub def
V
/psl_start 0 def
0 1 PSL_n_paths1
{ /psl_k exch def
/PSL_n PSL_path_n psl_k get def
/PSL_n1 PSL_n 1 sub def
PSL_path_pen psl_k get cvx exec
N
PSL_path_x psl_start get PSL_path_y psl_start get M
1 1 PSL_n1
{ /psl_i exch def
/psl_kk psl_i psl_start add def
PSL_path_x psl_kk get PSL_path_y psl_kk get L
} for
/psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
/psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
psl_xclose 0 eq psl_yclose 0 eq and { P } if
S
/psl_start psl_start PSL_n add def
} for
U
} def
/PSL_straight_path_labels
{
/psl_bits exch def
/PSL_placetext psl_bits 2 and 2 eq def
/PSL_rounded psl_bits 32 and 32 eq def
/PSL_fillbox psl_bits 128 and 128 eq def
/PSL_drawbox psl_bits 256 and 256 eq def
/PSL_n_labels_minus_1 PSL_n_labels 1 sub def
/PSL_usebox PSL_fillbox PSL_drawbox or def
0 1 PSL_n_labels_minus_1
{ /psl_k exch def
PSL_ST_prepare_text
PSL_usebox
{ PSL_rounded
{PSL_ST_textbox_round}
{PSL_ST_textbox_rect}
ifelse
PSL_fillbox {V PSL_setboxrgb fill U} if
PSL_drawbox {V PSL_setboxpen S U} if
N
} if
PSL_placetext {PSL_ST_place_label} if
} for
} def
/PSL_straight_path_clip
{
/psl_bits exch def
/PSL_rounded psl_bits 32 and 32 eq def
/PSL_n_labels_minus_1 PSL_n_labels 1 sub def
N clipsave clippath
0 1 PSL_n_labels_minus_1
{ /psl_k exch def
PSL_ST_prepare_text
PSL_rounded
{PSL_ST_textbox_round}
{PSL_ST_textbox_rect}
ifelse
} for
PSL_eoclip N
} def
/PSL_ST_prepare_text
{
/psl_xp PSL_txt_x psl_k get def
/psl_yp PSL_txt_y psl_k get def
/psl_label PSL_label_str psl_k get def
PSL_label_font psl_k get cvx exec
/PSL_height PSL_heights psl_k get def
/psl_boxH PSL_height PSL_gap_y 2 mul add def
/PSL_just PSL_label_justify psl_k get def
/PSL_justx PSL_just 4 mod 1 sub 2 div neg def
/PSL_justy PSL_just 4 idiv 2 div neg def
/psl_SW psl_label stringwidth pop def
/psl_boxW psl_SW PSL_gap_x 2 mul add def
/psl_x0 psl_SW PSL_justx mul def
/psl_y0 PSL_justy PSL_height mul def
/psl_angle PSL_label_angle psl_k get def
} def
/PSL_ST_textbox_rect
{
psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
PSL_gap_x neg PSL_gap_y neg M
0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
} def
/PSL_ST_textbox_round
{
/psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
/psl_xd PSL_gap_x psl_BoxR sub def
/psl_yd PSL_gap_y psl_BoxR sub def
/psl_xL PSL_gap_x neg def
/psl_yB PSL_gap_y neg def
/psl_yT psl_boxH psl_yB add def
/psl_H2 PSL_height psl_yd 2 mul add def
/psl_W2 psl_SW psl_xd 2 mul add def
/psl_xR psl_xL psl_boxW add def
/psl_x0 psl_SW PSL_justx mul def
psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
psl_xL psl_yd M
psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
} def
/PSL_ST_place_label
{
V psl_xp psl_yp T psl_angle R
psl_SW PSL_justx mul psl_y0 M
psl_label dup sd neg 0 exch G show
U
} def
/PSL_nclip 0 def
/PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
/PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
/PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
%%EndProlog
%%BeginSetup
/PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
V 0.06 0.06 scale
%%EndPageSetup
/PSL_page_xsize 10200 def
/PSL_page_ysize 13200 def
/PSL_plot_completion {} def
/PSL_movie_label_completion {} def
/PSL_movie_prog_indicator_completion {} def
%PSL_End_Header
gsave
0 A
FQ
O0
1500 1200 TM
% PostScript produced by:
%@GMT: gmt psbasemap -R-10/-2.5/10/2.5r -JOc0/0/50/60/5.8i -Baf -BWSne -P -K -X1.25i --FONT_ANNOT_PRIMARY=12p
%@PROJ: omerc -10.10000000 10.10000000 -9.40025459 8.91027536 -922520.376 994202.614 -751461.769 732776.606 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
%GMTBoundingBox: 90 72 417.6 323.373773203
%%BeginObject PSL_Layer_1
0 setlinecap
0 setlinejoin
3.32550952342 setmiterlimit
25 W
8 W
0 0 1 C
N 1 0 M 37 -75 D S
N 2285 0 M 35 -76 D S
N 4533 0 M 32 -77 D S
N 2144 5390 M -36 75 D S
N 6741 0 M 30 -78 D S
N 4567 5390 M -32 76 D S
N 6959 5390 M -29 77 D S
N 6960 1921 M 78 29 D S
N 0 1159 M -75 -37 D S
N 6960 4212 M 78 30 D S
N 0 3525 M -75 -37 D S
N 1 0 M 18 -37 D S
N 460 0 M 18 -37 D S
N 918 0 M 18 -38 D S
N 1375 0 M 18 -38 D S
N 1831 0 M 17 -38 D S
N 2285 0 M 17 -38 D S
N 2738 0 M 17 -38 D S
N 185 5390 M -18 37 D S
N 3189 0 M 17 -38 D S
N 676 5390 M -18 37 D S
N 3638 0 M 17 -38 D S
N 1166 5390 M -18 37 D S
N 4086 0 M 17 -38 D S
N 1656 5390 M -18 37 D S
N 4533 0 M 16 -38 D S
N 2144 5390 M -18 37 D S
N 4978 0 M 16 -38 D S
N 2631 5390 M -18 37 D S
N 5421 0 M 16 -39 D S
N 3116 5390 M -17 38 D S
N 5863 0 M 15 -39 D S
N 3601 5390 M -17 38 D S
N 6303 0 M 15 -39 D S
N 4085 5390 M -17 38 D S
N 6741 0 M 15 -39 D S
N 4567 5390 M -16 38 D S
N 5048 5390 M -16 38 D S
N 5528 5390 M -16 38 D S
N 6007 5390 M -16 38 D S
N 6484 5390 M -15 38 D S
N 6959 5390 M -15 39 D S
N 6960 133 M 39 15 D S
N 6960 577 M 39 15 D S
N 6960 1023 M 39 15 D S
N 6960 1471 M 39 14 D S
N 6960 1921 M 39 15 D S
N 6960 2373 M 39 15 D S
N 6960 2828 M 39 15 D S
N 0 231 M -37 -19 D S
N 6960 3287 M 39 14 D S
N 0 694 M -37 -19 D S
N 6960 3748 M 39 15 D S
N 0 1159 M -37 -19 D S
N 6960 4212 M 39 15 D S
N 0 1626 M -37 -18 D S
N 6960 4680 M 39 15 D S
N 0 2096 M -37 -18 D S
N 6960 5152 M 39 15 D S
N 0 2569 M -37 -18 D S
N 0 3046 M -37 -19 D S
N 0 3525 M -37 -18 D S
N 0 4009 M -37 -19 D S
N 0 4496 M -37 -18 D S
N 0 4988 M -37 -19 D S
1 0 0 C
25 W
0 A
2 setlinecap
N 0 0 M 0 5390 D S
N 6960 0 M 0 5390 D S
N 0 0 M 6960 0 D S
N 0 5390 M 6960 0 D S
0 setlinecap
38 -158 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
(”10�) tc Z
2320 -159 M (”5�) tc Z
4565 -160 M (0�) tc Z
6771 -161 M (5�) tc Z
-149 1085 M V 90 R (0�) bc Z U
-149 3451 M V 90 R (5�) bc Z U
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psbasemap -R-10/-2.5/10/2.5r -JOc0/0/50/60/5.8i -Tmg0/0+w2.5i+d-14.5+t45/10/5+i0.25p+p0.5p+l+jCM -O -K
%@PROJ: omerc -10.10000000 10.10000000 -9.40025459 8.91027536 -922520.376 994202.614 -751461.769 732776.606 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
%%BeginObject PSL_Layer_2
0 setlinecap
0 setlinejoin
3.32550952342 setmiterlimit
10 setmiterlimit
O1
4 W
1125 3350 2729 Sc
8 W
0 0 1 C
N 2654 3613 M 66 -84 D S
N 2670 3625 M 21 -28 D S
N 2685 3637 M 21 -29 D S
N 2701 3648 M 21 -29 D S
N 2717 3659 M 20 -29 D S
N 2734 3670 M 39 -59 D S
N 2750 3681 M 19 -30 D S
N 2767 3691 M 18 -30 D S
N 2784 3701 M 18 -31 D S
N 2801 3711 M 17 -31 D S
N 2818 3720 M 34 -62 D S
N 2836 3729 M 16 -31 D S
N 2853 3738 M 16 -32 D S
N 2871 3747 M 15 -32 D S
N 2889 3755 M 14 -32 D S
N 2907 3763 M 28 -65 D S
N 2925 3770 M 13 -32 D S
N 2943 3778 M 13 -33 D S
N 2961 3784 M 13 -33 D S
N 2980 3791 M 11 -33 D S
N 2998 3797 M 23 -67 D S
N 3017 3803 M 11 -33 D S
N 3036 3809 M 10 -34 D S
N 3055 3814 M 9 -34 D S
N 3074 3819 M 9 -34 D S
N 3093 3824 M 16 -69 D S
N 3112 3828 M 8 -34 D S
N 3131 3832 M 7 -34 D S
N 3151 3836 M 6 -35 D S
N 3170 3839 M 6 -35 D S
N 3189 3842 M 16 -105 D S
N 3209 3845 M 4 -35 D S
N 3228 3847 M 4 -35 D S
N 3248 3849 M 3 -35 D S
N 3267 3851 M 3 -36 D S
N 3287 3852 M 4 -71 D S
N 3307 3853 M 1 -36 D S
N 3326 3853 M 1 -35 D S
N 3346 3854 M 0 -36 D S
N 3366 3854 M -1 -36 D S
N 3385 3853 M -2 -71 D S
N 3405 3852 M -2 -35 D S
N 3424 3851 M -2 -35 D S
N 3444 3850 M -3 -36 D S
N 3464 3848 M -4 -35 D S
N 3483 3846 M -8 -71 D S
N 3502 3843 M -4 -35 D S
N 3522 3840 M -5 -35 D S
N 3541 3837 M -6 -35 D S
N 3561 3834 M -7 -35 D S
N 3580 3830 M -15 -69 D S
N 3599 3826 M -8 -35 D S
N 3618 3821 M -8 -34 D S
N 3637 3816 M -9 -34 D S
N 3656 3811 M -10 -34 D S
N 3675 3806 M -20 -68 D S
N 3694 3800 M -11 -34 D S
N 3712 3794 M -11 -34 D S
N 3731 3787 M -12 -33 D S
N 3749 3780 M -12 -33 D S
N 3768 3773 M -40 -98 D S
N 3786 3766 M -14 -33 D S
N 3804 3758 M -14 -32 D S
N 3822 3750 M -15 -32 D S
N 3839 3742 M -15 -32 D S
N 3857 3733 M -32 -63 D S
N 3875 3724 M -17 -31 D S
N 3892 3715 M -17 -31 D S
N 3909 3705 M -18 -31 D S
N 3926 3695 M -18 -30 D S
N 3943 3685 M -38 -60 D S
N 3959 3674 M -19 -29 D S
N 3976 3664 M -20 -30 D S
N 3992 3653 M -20 -30 D S
N 4008 3641 M -21 -29 D S
N 4024 3630 M -43 -57 D S
N 4039 3618 M -21 -28 D S
N 4055 3605 M -22 -27 D S
N 4070 3593 M -23 -27 D S
N 4085 3580 M -23 -26 D S
N 4100 3567 M -48 -52 D S
N 4114 3554 M -24 -26 D S
N 4128 3541 M -24 -26 D S
N 4143 3527 M -25 -25 D S
N 4156 3513 M -25 -25 D S
N 4170 3499 M -52 -49 D S
N 4183 3484 M -26 -23 D S
N 4196 3470 M -26 -24 D S
N 4209 3455 M -27 -23 D S
N 4222 3440 M -28 -23 D S
N 4234 3424 M -84 -65 D S
N 4246 3409 M -28 -22 D S
N 4258 3393 M -29 -21 D S
N 4269 3377 M -29 -20 D S
N 4280 3361 M -29 -20 D S
N 4291 3345 M -59 -39 D S
N 4302 3328 M -30 -19 D S
N 4312 3312 M -30 -19 D S
N 4322 3295 M -30 -18 D S
N 4332 3278 M -31 -18 D S
N 4341 3260 M -62 -33 D S
N 4350 3243 M -31 -16 D S
N 4359 3225 M -32 -15 D S
N 4368 3208 M -32 -15 D S
N 4376 3190 M -32 -15 D S
N 4384 3172 M -65 -28 D S
N 4391 3154 M -32 -14 D S
N 4399 3136 M -33 -13 D S
N 4406 3117 M -34 -12 D S
N 4412 3099 M -33 -12 D S
N 4419 3080 M -68 -22 D S
N 4425 3061 M -34 -10 D S
N 4430 3043 M -34 -10 D S
N 4435 3024 M -34 -10 D S
N 4440 3005 M -34 -9 D S
N 4445 2986 M -69 -17 D S
N 4449 2966 M -34 -7 D S
N 4453 2947 M -34 -7 D S
N 4457 2928 M -35 -6 D S
N 4460 2909 M -35 -6 D S
N 4463 2889 M -105 -15 D S
N 4466 2870 M -35 -5 D S
N 4468 2850 M -35 -4 D S
N 4470 2831 M -35 -4 D S
N 4472 2811 M -35 -2 D S
N 4473 2792 M -71 -4 D S
N 4474 2772 M -35 -1 D S
N 4475 2752 M -36 0 D S
N 4475 2733 M -36 0 D S
N 4475 2713 M -36 1 D S
N 4474 2693 M -70 3 D S
N 4474 2674 M -36 2 D S
N 4472 2654 M -35 3 D S
N 4471 2635 M -35 3 D S
N 4469 2615 M -35 4 D S
N 4467 2596 M -70 8 D S
N 4464 2576 M -35 5 D S
N 4462 2557 M -35 5 D S
N 4458 2537 M -34 6 D S
N 4455 2518 M -35 7 D S
N 4451 2499 M -69 14 D S
N 4447 2480 M -35 7 D S
N 4442 2460 M -34 9 D S
N 4438 2441 M -35 9 D S
N 4432 2422 M -34 10 D S
N 4427 2404 M -68 20 D S
N 4421 2385 M -34 11 D S
N 4415 2366 M -34 12 D S
N 4408 2348 M -33 12 D S
N 4402 2329 M -34 13 D S
N 4394 2311 M -98 39 D S
N 4387 2293 M -33 14 D S
N 4379 2275 M -32 14 D S
N 4371 2257 M -32 15 D S
N 4363 2239 M -32 16 D S
N 4354 2222 M -63 31 D S
N 4345 2204 M -31 17 D S
N 4336 2187 M -31 17 D S
N 4326 2170 M -31 17 D S
N 4316 2153 M -30 18 D S
N 4306 2136 M -60 37 D S
N 4296 2119 M -30 20 D S
N 4285 2103 M -30 20 D S
N 4274 2087 M -29 20 D S
N 4262 2071 M -28 20 D S
N 4251 2055 M -57 42 D S
N 4239 2039 M -28 22 D S
N 4227 2024 M -28 22 D S
N 4214 2009 M -27 22 D S
N 4201 1994 M -26 23 D S
N 4189 1979 M -53 47 D S
N 4175 1964 M -26 24 D S
N 4162 1950 M -26 25 D S
N 4148 1936 M -25 25 D S
N 4134 1922 M -24 26 D S
N 4120 1909 M -48 51 D S
N 4106 1895 M -24 27 D S
N 4091 1882 M -23 27 D S
N 4076 1869 M -23 28 D S
N 4061 1857 M -22 27 D S
N 4046 1845 M -66 83 D S
N 4030 1833 M -21 28 D S
N 4014 1821 M -21 28 D S
N 3998 1809 M -20 29 D S
N 3982 1798 M -20 30 D S
N 3966 1787 M -39 60 D S
N 3949 1777 M -18 30 D S
N 3933 1766 M -19 31 D S
N 3916 1756 M -18 31 D S
N 3899 1747 M -18 31 D S
N 3882 1737 M -34 63 D S
N 3864 1728 M -16 32 D S
N 3847 1719 M -16 32 D S
N 3829 1711 M -15 32 D S
N 3811 1703 M -14 32 D S
N 3793 1695 M -28 65 D S
N 3775 1687 M -13 33 D S
N 3757 1680 M -13 33 D S
N 3738 1673 M -12 33 D S
N 3720 1666 M -12 34 D S
N 3701 1660 M -22 67 D S
N 3683 1654 M -11 34 D S
N 3664 1648 M -10 34 D S
N 3645 1643 M -9 34 D S
N 3626 1638 M -9 34 D S
N 3607 1633 M -16 69 D S
N 3588 1629 M -8 35 D S
N 3568 1625 M -6 35 D S
N 3549 1621 M -6 35 D S
N 3530 1618 M -6 35 D S
N 3510 1615 M -15 105 D S
N 3491 1613 M -5 35 D S
N 3471 1610 M -3 36 D S
N 3452 1608 M -3 36 D S
N 3432 1607 M -2 35 D S
N 3413 1605 M -4 71 D S
N 3393 1605 M -1 35 D S
N 3373 1604 M 0 35 D S
N 3354 1604 M 0 35 D S
N 3334 1604 M 1 35 D S
N 3315 1604 M 2 71 D S
N 3295 1605 M 2 35 D S
N 3275 1606 M 3 36 D S
N 3256 1608 M 3 35 D S
N 3236 1609 M 4 36 D S
N 3217 1612 M 8 70 D S
N 3197 1614 M 5 35 D S
N 3178 1617 M 5 35 D S
N 3158 1620 M 6 35 D S
N 3139 1624 M 7 34 D S
N 3120 1627 M 14 70 D S
N 3101 1632 M 7 34 D S
N 3082 1636 M 8 35 D S
N 3063 1641 M 9 34 D S
N 3044 1646 M 9 34 D S
N 3025 1652 M 20 68 D S
N 3006 1658 M 11 33 D S
N 2987 1664 M 12 33 D S
N 2969 1670 M 12 34 D S
N 2950 1677 M 13 33 D S
N 2932 1684 M 40 99 D S
N 2914 1692 M 14 32 D S
N 2896 1699 M 14 33 D S
N 2878 1707 M 15 33 D S
N 2860 1716 M 16 32 D S
N 2843 1725 M 32 63 D S
N 2825 1734 M 17 31 D S
N 2808 1743 M 17 31 D S
N 2791 1752 M 17 31 D S
N 2774 1762 M 18 31 D S
N 2757 1773 M 37 60 D S
N 2740 1783 M 20 30 D S
N 2724 1794 M 20 29 D S
N 2708 1805 M 20 29 D S
N 2692 1816 M 21 29 D S
N 2676 1828 M 42 57 D S
N 2660 1840 M 22 28 D S
N 2645 1852 M 22 28 D S
N 2630 1864 M 22 28 D S
N 2615 1877 M 23 27 D S
N 2600 1890 M 47 53 D S
N 2586 1903 M 24 26 D S
N 2571 1917 M 25 25 D S
N 2557 1930 M 25 26 D S
N 2543 1944 M 26 25 D S
N 2530 1959 M 51 48 D S
N 2516 1973 M 27 24 D S
N 2503 1988 M 27 23 D S
N 2491 2003 M 27 22 D S
N 2478 2018 M 28 22 D S
N 2466 2033 M 83 66 D S
N 2454 2048 M 28 22 D S
N 2442 2064 M 29 21 D S
N 2431 2080 M 29 21 D S
N 2419 2096 M 30 20 D S
N 2409 2113 M 59 38 D S
N 2398 2129 M 30 19 D S
N 2388 2146 M 30 18 D S
N 2378 2163 M 30 18 D S
N 2368 2180 M 31 17 D S
N 2358 2197 M 63 34 D S
N 2349 2214 M 32 17 D S
N 2340 2232 M 32 16 D S
N 2332 2250 M 32 15 D S
N 2324 2268 M 32 14 D S
N 2316 2285 M 65 28 D S
N 2308 2304 M 33 13 D S
N 2301 2322 M 33 13 D S
N 2294 2340 M 33 12 D S
N 2287 2359 M 34 11 D S
N 2281 2377 M 67 22 D S
N 2275 2396 M 34 10 D S
N 2270 2415 M 34 10 D S
N 2264 2434 M 34 9 D S
N 2259 2453 M 35 8 D S
N 2255 2472 M 69 16 D S
N 2250 2491 M 35 7 D S
N 2246 2510 M 35 7 D S
N 2243 2529 M 34 7 D S
N 2239 2549 M 35 5 D S
N 2236 2568 M 106 15 D S
N 2234 2588 M 35 4 D S
N 2231 2607 M 36 4 D S
N 2229 2627 M 36 3 D S
N 2228 2646 M 35 3 D S
N 2227 2666 M 70 4 D S
N 2226 2685 M 35 2 D S
N 2225 2705 M 36 1 D S
N 2225 2725 M 35 0 D S
N 2225 2744 M 35 0 D S
N 2225 2764 M 71 -2 D S
N 2226 2784 M 36 -2 D S
N 2227 2803 M 36 -2 D S
N 2229 2823 M 35 -3 D S
N 2231 2842 M 35 -3 D S
N 2233 2862 M 70 -9 D S
N 2235 2881 M 35 -4 D S
N 2238 2901 M 35 -6 D S
N 2241 2920 M 35 -6 D S
N 2245 2939 M 35 -6 D S
N 2249 2959 M 69 -15 D S
N 2253 2978 M 34 -8 D S
N 2257 2997 M 35 -8 D S
N 2262 3016 M 34 -9 D S
N 2267 3035 M 34 -10 D S
N 2273 3054 M 68 -21 D S
N 2279 3073 M 33 -11 D S
N 2285 3091 M 33 -11 D S
N 2291 3110 M 34 -12 D S
N 2298 3128 M 33 -12 D S
N 2305 3146 M 99 -39 D S
N 2313 3165 M 32 -14 D S
N 2321 3183 M 32 -15 D S
N 2329 3201 M 32 -15 D S
N 2337 3218 M 32 -15 D S
N 2346 3236 M 63 -32 D S
N 2355 3253 M 31 -16 D S
N 2364 3271 M 31 -17 D S
N 2374 3288 M 30 -18 D S
N 2384 3305 M 30 -18 D S
N 2394 3321 M 60 -37 D S
N 2404 3338 M 30 -19 D S
N 2415 3355 M 29 -20 D S
N 2426 3371 M 29 -20 D S
N 2437 3387 M 29 -21 D S
N 2449 3403 M 57 -43 D S
N 2461 3418 M 28 -22 D S
N 2473 3434 M 28 -23 D S
N 2486 3449 M 27 -23 D S
N 2498 3464 M 27 -23 D S
N 2511 3479 M 53 -48 D S
N 2524 3493 M 26 -24 D S
N 2538 3507 M 25 -24 D S
N 2552 3521 M 25 -25 D S
N 2566 3535 M 24 -25 D S
N 2580 3549 M 48 -52 D S
N 2594 3562 M 24 -26 D S
N 2609 3575 M 23 -27 D S
N 2624 3588 M 23 -27 D S
N 2639 3600 M 22 -27 D S
0 A
2603 3678 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
150 F0
V 38.2020694687 R (0�) bc Z U
3177 3925 M V 8.20206946867 R (30�) bc Z U
3799 3851 M V -21.7979305313 R (60�) bc Z U
4299 3476 M V -51.7979305313 R (90�) bc Z U
4546 2901 M V -81.7979305313 R (120�) bc Z U
4472 2280 M V 68.2020694687 R (150�) tc Z U
4097 1779 M V 38.2020694687 R (180�) tc Z U
3522 1533 M V 8.20206946867 R (210�) tc Z U
2901 1607 M V -21.7979305313 R (240�) tc Z U
2400 1981 M V -51.7979305313 R (270�) tc Z U
2154 2556 M V -81.7979305313 R (300�) tc Z U
2228 3177 M V 68.2020694687 R (330�) bc Z U
1500 3350 2729 Sc
1 0 0 C
N 2747 4102 M 50 -114 D S
N 2869 4150 M 13 -40 D S
N 2995 4186 M 19 -81 D S
N 3123 4211 M 6 -41 D S
N 3253 4226 M 5 -84 D S
N 3384 4228 M -1 -41 D S
N 3514 4220 M -9 -83 D S
N 3644 4200 M -8 -41 D S
N 3771 4168 M -24 -80 D S
N 3895 4126 M -46 -116 D S
N 4014 4073 M -37 -74 D S
N 4129 4010 M -22 -35 D S
N 4238 3938 M -50 -68 D S
N 4340 3856 M -28 -32 D S
N 4434 3765 M -60 -58 D S
N 4520 3667 M -32 -26 D S
N 4598 3561 M -70 -46 D S
N 4666 3449 M -37 -20 D S
N 4723 3332 M -114 -51 D S
N 4771 3210 M -40 -14 D S
N 4807 3084 M -81 -20 D S
N 4833 2956 M -42 -7 D S
N 4847 2826 M -83 -6 D S
N 4849 2695 M -41 1 D S
N 4841 2564 M -83 9 D S
N 4821 2435 M -41 8 D S
N 4790 2308 M -80 23 D S
N 4747 2184 M -116 45 D S
N 4695 2064 M -75 37 D S
N 4632 1949 M -36 22 D S
N 4559 1841 M -67 49 D S
N 4477 1739 M -32 27 D S
N 4386 1644 M -57 61 D S
N 4288 1558 M -26 33 D S
N 4182 1481 M -46 69 D S
N 4070 1413 M -20 37 D S
N 3953 1355 M -50 115 D S
N 3831 1308 M -14 39 D S
N 3705 1271 M -20 81 D S
N 3577 1246 M -7 41 D S
N 3447 1232 M -6 83 D S
N 3316 1229 M 1 42 D S
N 3185 1238 M 9 83 D S
N 3056 1258 M 8 41 D S
N 2929 1289 M 23 80 D S
N 2805 1331 M 45 117 D S
N 2685 1384 M 37 75 D S
N 2571 1447 M 21 36 D S
N 2462 1520 M 49 67 D S
N 2360 1602 M 27 31 D S
N 2265 1692 M 61 58 D S
N 2179 1791 M 33 26 D S
N 2102 1896 M 69 47 D S
N 2034 2008 M 37 20 D S
N 1976 2126 M 115 50 D S
N 1929 2248 M 40 13 D S
N 1893 2373 M 81 20 D S
N 1867 2502 M 41 6 D S
N 1853 2632 M 83 5 D S
N 1850 2763 M 42 -1 D S
N 1859 2893 M 83 -9 D S
N 1879 3023 M 41 -9 D S
N 1910 3150 M 80 -24 D S
N 1952 3274 M 117 -46 D S
N 2005 3393 M 75 -37 D S
N 2068 3508 M 36 -22 D S
N 2141 3617 M 67 -50 D S
N 2223 3719 M 31 -28 D S
N 2313 3813 M 58 -60 D S
N 2412 3899 M 26 -32 D S
N 2518 3977 M 46 -70 D S
N 2629 4044 M 20 -36 D S
0 A
2713 4178 M 200 F0
V 23.7020694687 R (0�) bc Z U
3925 4204 M V -21.2979305313 R (45�) bc Z U
4800 3365 M V -66.2979305313 R (90�) bc Z U
4825 2154 M V 68.7020694687 R (135�) tc Z U
3986 1279 M V 23.7020694687 R (180�) tc Z U
2775 1254 M V -21.2979305313 R (225�) tc Z U
1900 2092 M V -66.2979305313 R (270�) tc Z U
1875 3304 M V 68.7020694687 R (315�) bc Z U
1 0 0 C
N 4723 3332 M 38 16 D S
N 4983 3446 M 229 100 D S
0 A
5318 3593 M 400 F0
V 23.7020694687 R (E) ml Z U
1 0 0 C
N 2747 4102 M -17 38 D S
N 2633 4362 M -101 229 D S
0 A
2486 4697 M V 23.7020694687 R (N) bc Z U
1 0 0 C
N 1976 2126 M -38 -17 D S
N 1717 2012 M -229 -101 D S
0 A
1381 1864 M V 23.7020694687 R (W) mr Z U
1 0 0 C
N 3953 1355 M 17 -38 D S
N 4067 1096 M 100 -229 D S
0 A
4214 760 M V 23.7020694687 R (S) tc Z U
1 0 0 C
/PSL_vecheadpen {4 W 0 A [] 0 B} def
4 W
0 A
{0 A} FS
15 W
V 3891 2041 T 128.202069469 R
N 0 0 M 1581 0 D S
U
V 2809 3416 T 128.202069469 R
PSL_vecheadpen
4 W
0 0 M
-225 38 D
56 -38 D
-56 -38 D
P clip fs N
U
3373 2747 M 233 F0
V -51.7979305313 R V MU 0 0 M 233 F12 (d) FP 233 F0 ( = ”14�30©) FP pathbbox N pop exch pop add U -2 div 0 G
233 F12 (d) Z
233 F0 ( = ”14�30©) Z
U
3.32550952342 setmiterlimit
%%EndObject
0 A
FQ
O0
0 5640 TM
% PostScript produced by:
%@GMT: gmt psbasemap -R-10/-2.5/10/2.5r -JOc0/0/50/60/5.8i -Baf -BWsne -O -K -Y4.7i --FONT_ANNOT_PRIMARY=12p
%@PROJ: omerc -10.10000000 10.10000000 -9.40025459 8.91027536 -922520.376 994202.614 -751461.769 732776.606 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
%%BeginObject PSL_Layer_3
0 setlinecap
0 setlinejoin
3.32550952342 setmiterlimit
25 W
8 W
0 0 1 C
N 1 0 M 37 -75 D S
N 2285 0 M 35 -76 D S
N 4533 0 M 32 -77 D S
N 2144 5390 M -36 75 D S
N 6741 0 M 30 -78 D S
N 4567 5390 M -32 76 D S
N 6959 5390 M -29 77 D S
N 6960 1921 M 78 29 D S
N 0 1159 M -75 -37 D S
N 6960 4212 M 78 30 D S
N 0 3525 M -75 -37 D S
N 1 0 M 18 -37 D S
N 460 0 M 18 -37 D S
N 918 0 M 18 -38 D S
N 1375 0 M 18 -38 D S
N 1831 0 M 17 -38 D S
N 2285 0 M 17 -38 D S
N 2738 0 M 17 -38 D S
N 185 5390 M -18 37 D S
N 3189 0 M 17 -38 D S
N 676 5390 M -18 37 D S
N 3638 0 M 17 -38 D S
N 1166 5390 M -18 37 D S
N 4086 0 M 17 -38 D S
N 1656 5390 M -18 37 D S
N 4533 0 M 16 -38 D S
N 2144 5390 M -18 37 D S
N 4978 0 M 16 -38 D S
N 2631 5390 M -18 37 D S
N 5421 0 M 16 -39 D S
N 3116 5390 M -17 38 D S
N 5863 0 M 15 -39 D S
N 3601 5390 M -17 38 D S
N 6303 0 M 15 -39 D S
N 4085 5390 M -17 38 D S
N 6741 0 M 15 -39 D S
N 4567 5390 M -16 38 D S
N 5048 5390 M -16 38 D S
N 5528 5390 M -16 38 D S
N 6007 5390 M -16 38 D S
N 6484 5390 M -15 38 D S
N 6959 5390 M -15 39 D S
N 6960 133 M 39 15 D S
N 6960 577 M 39 15 D S
N 6960 1023 M 39 15 D S
N 6960 1471 M 39 14 D S
N 6960 1921 M 39 15 D S
N 6960 2373 M 39 15 D S
N 6960 2828 M 39 15 D S
N 0 231 M -37 -19 D S
N 6960 3287 M 39 14 D S
N 0 694 M -37 -19 D S
N 6960 3748 M 39 15 D S
N 0 1159 M -37 -19 D S
N 6960 4212 M 39 15 D S
N 0 1626 M -37 -18 D S
N 6960 4680 M 39 15 D S
N 0 2096 M -37 -18 D S
N 6960 5152 M 39 15 D S
N 0 2569 M -37 -18 D S
N 0 3046 M -37 -19 D S
N 0 3525 M -37 -18 D S
N 0 4009 M -37 -19 D S
N 0 4496 M -37 -18 D S
N 0 4988 M -37 -19 D S
1 0 0 C
25 W
0 A
2 setlinecap
N 0 0 M 0 5390 D S
N 6960 0 M 0 5390 D S
N 0 0 M 6960 0 D S
N 0 5390 M 6960 0 D S
0 setlinecap
-149 1085 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
V 90 R (0�) bc Z U
-149 3451 M V 90 R (5�) bc Z U
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%@GMT: gmt psbasemap -R-10/-2.5/10/2.5r -JOc0/0/50/60/5.8i -Tmg0/0+w2.5i+t45/10/5+l+jCM -O --MAP_TICK_LENGTH_PRIMARY=8p/4p
%@PROJ: omerc -10.10000000 10.10000000 -9.40025459 8.91027536 -922520.376 994202.614 -751461.769 732776.606 +unavailable +a=6371007.181 +b=6371007.181 +units=m +no_defs
%%BeginObject PSL_Layer_4
0 setlinecap
0 setlinejoin
3.32550952342 setmiterlimit
10 setmiterlimit
8 W
1 0 0 C
N 2747 4102 M 80 -183 D S
N 2869 4150 M 21 -64 D S
N 2995 4186 M 31 -130 D S
N 3123 4211 M 10 -65 D S
N 3253 4226 M 9 -133 D S
N 3384 4228 M -2 -66 D S
N 3514 4220 M -14 -133 D S
N 3644 4200 M -13 -66 D S
N 3771 4168 M -38 -128 D S
N 3895 4126 M -73 -186 D S
N 4014 4073 M -59 -119 D S
N 4129 4010 M -35 -57 D S
N 4238 3938 M -79 -108 D S
N 4340 3856 M -44 -50 D S
N 4434 3765 M -96 -92 D S
N 4520 3667 M -52 -42 D S
N 4598 3561 M -111 -74 D S
N 4666 3449 M -59 -32 D S
N 4723 3332 M -183 -81 D S
N 4771 3210 M -63 -22 D S
N 4807 3084 M -129 -32 D S
N 4833 2956 M -66 -10 D S
N 4847 2826 M -133 -9 D S
N 4849 2695 M -66 1 D S
N 4841 2564 M -133 15 D S
N 4821 2435 M -66 13 D S
N 4790 2308 M -128 37 D S
N 4747 2184 M -186 73 D S
N 4695 2064 M -120 59 D S
N 4632 1949 M -57 35 D S
N 4559 1841 M -108 79 D S
N 4477 1739 M -50 44 D S
N 4386 1644 M -92 97 D S
N 4288 1558 M -42 52 D S
N 4182 1481 M -74 111 D S
N 4070 1413 M -32 58 D S
N 3953 1355 M -81 183 D S
N 3831 1308 M -22 63 D S
N 3705 1271 M -31 130 D S
N 3577 1246 M -10 66 D S
N 3447 1232 M -9 133 D S
N 3316 1229 M 1 67 D S
N 3185 1238 M 15 132 D S
N 3056 1258 M 13 65 D S
N 2929 1289 M 37 128 D S
N 2805 1331 M 73 186 D S
N 2685 1384 M 59 119 D S
N 2571 1447 M 34 57 D S
N 2462 1520 M 79 107 D S
N 2360 1602 M 44 50 D S
N 2265 1692 M 97 92 D S
N 2179 1791 M 52 41 D S
N 2102 1896 M 111 74 D S
N 2034 2008 M 59 32 D S
N 1976 2126 M 184 80 D S
N 1929 2248 M 63 21 D S
N 1893 2373 M 129 32 D S
N 1867 2502 M 66 10 D S
N 1853 2632 M 133 8 D S
N 1850 2763 M 67 -2 D S
N 1859 2893 M 132 -14 D S
N 1879 3023 M 65 -13 D S
N 1910 3150 M 128 -38 D S
N 1952 3274 M 187 -73 D S
N 2005 3393 M 120 -59 D S
N 2068 3508 M 57 -35 D S
N 2141 3617 M 107 -79 D S
N 2223 3719 M 50 -44 D S
N 2313 3813 M 93 -96 D S
N 2412 3899 M 42 -52 D S
N 2518 3977 M 74 -111 D S
N 2629 4044 M 32 -58 D S
0 A
2713 4178 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
200 F0
V 23.7020694687 R (0�) bc Z U
3925 4204 M V -21.2979305313 R (45�) bc Z U
4800 3365 M V -66.2979305313 R (90�) bc Z U
4825 2154 M V 68.7020694687 R (135�) tc Z U
3986 1279 M V 23.7020694687 R (180�) tc Z U
2775 1254 M V -21.2979305313 R (225�) tc Z U
1900 2092 M V -66.2979305313 R (270�) tc Z U
1875 3304 M V 68.7020694687 R (315�) bc Z U
1 0 0 C
N 4723 3332 M 61 26 D S
N 4983 3446 M 366 160 D S
0 A
5456 3653 M 400 F0
V 23.7020694687 R (E) ml Z U
1 0 0 C
N 2747 4102 M -27 61 D S
N 2633 4362 M -161 366 D S
0 A
2425 4835 M V 23.7020694687 R (N) bc Z U
1 0 0 C
N 1976 2126 M -61 -27 D S
N 1717 2012 M -366 -161 D S
0 A
1244 1804 M V 23.7020694687 R (W) mr Z U
1 0 0 C
N 3953 1355 M 27 -61 D S
N 4067 1096 M 161 -366 D S
0 A
4274 623 M V 23.7020694687 R (S) tc Z U
1 0 0 C
/PSL_vecheadpen {4 W 0 A [] 0 B} def
{0 A} FS
O1
/PSL_vecheadpen {25 W 0 A [] 0 B} def
30 W
V 3792 1721 T 113.702069469 R
N 0 0 M 1862 0 D S
U
V 2908 3736 T 113.702069469 R
PSL_vecheadpen
4 W
0 0 M
-450 75 D
112 -75 D
-112 -75 D
P clip fs N
U
FQ
375 3350 2729 Sc
N 2663 2427 M 1374 603 D S
3.32550952342 setmiterlimit
%%EndObject
grestore
PSL_movie_label_completion /PSL_movie_label_completion {} def
PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
%PSL_Begin_Trailer
%%PageTrailer
U
showpage
%%Trailer
end
%%EOF
Tip!
Press p or to see the previous file or,
n or to see the next file