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

cubic+Bezier.ps 35 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.2.0_r14966 [64-bit] Document from psxy
  5. %%Creator: GMT5
  6. %%For: pwessel
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sun Oct 11 11:11:28 2015
  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. /ISOLatin1+_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 /bullet /ellipsis /trademark /emdash /endash /fi /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /minus /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 /scaron
  135. /OE /dagger /daggerdbl /Lslash /fraction /guilsinglleft /Scaron /guilsinglright
  136. /oe /Ydieresis /Zcaron /lslash /perthousand /quotedblbase /quotedblleft /quotedblright
  137. /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
  138. /dieresis /quotesinglbase /ring /cedilla /quotesingle /hungarumlaut /ogonek /caron
  139. /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
  140. /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron
  141. /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered
  142. /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown
  143. /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
  144. /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis
  145. /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
  146. /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls
  147. /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
  148. /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
  149. /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
  150. /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /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. %%%%%%%%%%%%%%%%%%% CURVED BASELINE TEXT PLACEMENT FUNCTIONS
  275. /PSL_curved_path_labels
  276. { /psl_bits exch def
  277. /PSL_placetext psl_bits 2 and 2 eq def
  278. /PSL_clippath psl_bits 4 and 4 eq def
  279. /PSL_strokeline false def
  280. /PSL_fillbox psl_bits 128 and 128 eq def
  281. /PSL_drawbox psl_bits 256 and 256 eq def
  282. /PSL_n_paths1 PSL_n_paths 1 sub def
  283. /PSL_usebox PSL_fillbox PSL_drawbox or def
  284. PSL_clippath {clipsave N clippath} if
  285. /psl_k 0 def
  286. /psl_p 0 def
  287. 0 1 PSL_n_paths1
  288. { /psl_kk exch def
  289. /PSL_n PSL_path_n psl_kk get def
  290. /PSL_m PSL_label_n psl_kk get def
  291. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  292. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  293. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  294. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  295. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  296. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  297. PSL_curved_path_label
  298. /psl_k psl_k PSL_n add def
  299. /psl_p psl_p PSL_m add def
  300. } for
  301. PSL_clippath {PSL_eoclip} if N
  302. } def
  303. /PSL_curved_path_label
  304. {
  305. /PSL_n1 PSL_n 1 sub def
  306. /PSL_m1 PSL_m 1 sub def
  307. PSL_CT_calcstringwidth
  308. PSL_CT_calclinedist
  309. PSL_CT_excludelabels
  310. PSL_CT_addcutpoints
  311. /PSL_nn1 PSL_nn 1 sub def
  312. /n 0 def
  313. /k 0 def
  314. /j 0 def
  315. /PSL_seg 0 def
  316. /PSL_xp PSL_nn array def
  317. /PSL_yp PSL_nn array def
  318. PSL_xp 0 PSL_xx 0 get put
  319. PSL_yp 0 PSL_yy 0 get put
  320. 1 1 PSL_nn1
  321. { /i exch def
  322. /node_type PSL_kind i get def
  323. /j j 1 add def
  324. PSL_xp j PSL_xx i get put
  325. PSL_yp j PSL_yy i get put
  326. node_type 1 eq
  327. {n 0 eq
  328. {PSL_CT_drawline}
  329. { PSL_CT_reversepath
  330. PSL_CT_textline} ifelse
  331. /j 0 def
  332. PSL_xp j PSL_xx i get put
  333. PSL_yp j PSL_yy i get put
  334. } if
  335. } for
  336. n 0 eq {PSL_CT_drawline} if
  337. } def
  338. /PSL_CT_textline
  339. { PSL_fnt k get cvx exec
  340. /PSL_height PSL_heights k get def
  341. PSL_placetext {PSL_CT_placelabel} if
  342. PSL_clippath {PSL_CT_clippath} if
  343. /n 0 def /k k 1 add def
  344. } def
  345. /PSL_CT_calcstringwidth
  346. { /PSL_width_tmp PSL_m array def
  347. 0 1 PSL_m1
  348. { /i exch def
  349. PSL_fnt_tmp i get cvx exec
  350. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  351. } for
  352. } def
  353. /PSL_CT_calclinedist
  354. { /PSL_newx PSL_x 0 get def
  355. /PSL_newy PSL_y 0 get def
  356. /dist 0.0 def
  357. /PSL_dist PSL_n array def
  358. PSL_dist 0 0.0 put
  359. 1 1 PSL_n1
  360. { /i exch def
  361. /PSL_oldx PSL_newx def
  362. /PSL_oldy PSL_newy def
  363. /PSL_newx PSL_x i get def
  364. /PSL_newy PSL_y i get def
  365. /dx PSL_newx PSL_oldx sub def
  366. /dy PSL_newy PSL_oldy sub def
  367. /dist dist dx dx mul dy dy mul add sqrt add def
  368. PSL_dist i dist put
  369. } for
  370. } def
  371. /PSL_CT_excludelabels
  372. { /k 0 def
  373. /PSL_width PSL_m array def
  374. /PSL_angle PSL_m array def
  375. /PSL_node PSL_m array def
  376. /PSL_str PSL_m array def
  377. /PSL_fnt PSL_m array def
  378. /lastdist PSL_dist PSL_n1 get def
  379. 0 1 PSL_m1
  380. { /i exch def
  381. /dist PSL_dist PSL_node_tmp i get get def
  382. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  383. /L_dist dist halfwidth sub def
  384. /R_dist dist halfwidth add def
  385. L_dist 0 gt R_dist lastdist lt and
  386. {
  387. PSL_width k PSL_width_tmp i get put
  388. PSL_node k PSL_node_tmp i get put
  389. PSL_angle k PSL_angle_tmp i get put
  390. PSL_str k PSL_str_tmp i get put
  391. PSL_fnt k PSL_fnt_tmp i get put
  392. /k k 1 add def
  393. } if
  394. } for
  395. /PSL_m k def
  396. /PSL_m1 PSL_m 1 sub def
  397. } def
  398. /PSL_CT_addcutpoints
  399. { /k 0 def
  400. /PSL_nc PSL_m 2 mul 1 add def
  401. /PSL_cuts PSL_nc array def
  402. /PSL_nc1 PSL_nc 1 sub def
  403. 0 1 PSL_m1
  404. { /i exch def
  405. /dist PSL_dist PSL_node i get get def
  406. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  407. PSL_cuts k dist halfwidth sub put
  408. /k k 1 add def
  409. PSL_cuts k dist halfwidth add put
  410. /k k 1 add def
  411. } for
  412. PSL_cuts k 100000.0 put
  413. /PSL_nn PSL_n PSL_m 2 mul add def
  414. /PSL_xx PSL_nn array def
  415. /PSL_yy PSL_nn array def
  416. /PSL_kind PSL_nn array def
  417. /j 0 def
  418. /k 0 def
  419. /dist 0.0 def
  420. 0 1 PSL_n1
  421. { /i exch def
  422. /last_dist dist def
  423. /dist PSL_dist i get def
  424. k 1 PSL_nc1
  425. { /kk exch def
  426. /this_cut PSL_cuts kk get def
  427. dist this_cut gt
  428. { /ds dist last_dist sub def
  429. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  430. /i1 i 0 eq {0} {i 1 sub} ifelse def
  431. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  432. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  433. PSL_kind j 1 put
  434. /j j 1 add def
  435. /k k 1 add def
  436. } if
  437. } for
  438. dist PSL_cuts k get le
  439. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  440. PSL_kind j 0 put
  441. /j j 1 add def
  442. } if
  443. } for
  444. } def
  445. /PSL_CT_reversepath
  446. {PSL_xp j get PSL_xp 0 get lt
  447. {0 1 j 2 idiv
  448. { /left exch def
  449. /right j left sub def
  450. /tmp PSL_xp left get def
  451. PSL_xp left PSL_xp right get put
  452. PSL_xp right tmp put
  453. /tmp PSL_yp left get def
  454. PSL_yp left PSL_yp right get put
  455. PSL_yp right tmp put
  456. } for
  457. } if
  458. } def
  459. /PSL_CT_placelabel
  460. {
  461. /PSL_just PSL_label_justify k get def
  462. /PSL_height PSL_heights k get def
  463. /psl_label PSL_str k get def
  464. /psl_depth psl_label sd def
  465. PSL_usebox
  466. {PSL_CT_clippath
  467. PSL_fillbox
  468. {V PSL_setboxrgb fill U} if
  469. PSL_drawbox
  470. {V PSL_setboxpen S U} if N
  471. } if
  472. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  473. } def
  474. /PSL_CT_clippath
  475. {
  476. /H PSL_height 2 div PSL_gap_y add def
  477. /xoff j 1 add array def
  478. /yoff j 1 add array def
  479. /angle 0 def
  480. 0 1 j {
  481. /ii exch def
  482. /x PSL_xp ii get def
  483. /y PSL_yp ii get def
  484. ii 0 eq {
  485. /x1 PSL_xp 1 get def
  486. /y1 PSL_yp 1 get def
  487. /dx x1 x sub def
  488. /dy y1 y sub def
  489. }
  490. { /i1 ii 1 sub def
  491. /x1 PSL_xp i1 get def
  492. /y1 PSL_yp i1 get def
  493. /dx x x1 sub def
  494. /dy y y1 sub def
  495. } ifelse
  496. dx 0.0 eq dy 0.0 eq and not
  497. { /angle dy dx atan 90 add def} if
  498. /sina angle sin def
  499. /cosa angle cos def
  500. xoff ii H cosa mul put
  501. yoff ii H sina mul put
  502. } for
  503. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  504. 1 1 j {
  505. /ii exch def
  506. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  507. } for
  508. j -1 0 {
  509. /ii exch def
  510. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  511. } for P
  512. } def
  513. /PSL_CT_drawline
  514. {
  515. /str 20 string def
  516. PSL_strokeline
  517. {PSL_CT_placeline S} if
  518. /PSL_seg PSL_seg 1 add def
  519. /n 1 def
  520. } def
  521. /PSL_CT_placeline
  522. {PSL_xp 0 get PSL_yp 0 get M
  523. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  524. } def
  525. %%%%%%%%%%%%%%%%%%% DRAW BASELINE TEXT SEGMENT LINES
  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. %%%%%%%%%%%%%%%%%%% STRAIGHT BASELINE TEXT PLACEMENT FUNCTIONS
  552. /PSL_straight_path_labels
  553. {
  554. /psl_bits exch def
  555. /PSL_placetext psl_bits 2 and 2 eq def
  556. /PSL_rounded psl_bits 32 and 32 eq def
  557. /PSL_fillbox psl_bits 128 and 128 eq def
  558. /PSL_drawbox psl_bits 256 and 256 eq def
  559. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  560. /PSL_usebox PSL_fillbox PSL_drawbox or def
  561. 0 1 PSL_n_labels_minus_1
  562. { /psl_k exch def
  563. PSL_ST_prepare_text
  564. PSL_usebox
  565. { PSL_rounded
  566. {PSL_ST_textbox_round}
  567. {PSL_ST_textbox_rect}
  568. ifelse
  569. PSL_fillbox {V PSL_setboxrgb fill U} if
  570. PSL_drawbox {V PSL_setboxpen S U} if
  571. N
  572. } if
  573. PSL_placetext {PSL_ST_place_label} if
  574. } for
  575. } def
  576. /PSL_straight_path_clip
  577. {
  578. /psl_bits exch def
  579. /PSL_rounded psl_bits 32 and 32 eq def
  580. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  581. N clipsave clippath
  582. 0 1 PSL_n_labels_minus_1
  583. { /psl_k exch def
  584. PSL_ST_prepare_text
  585. PSL_rounded
  586. {PSL_ST_textbox_round}
  587. {PSL_ST_textbox_rect}
  588. ifelse
  589. } for
  590. PSL_eoclip N
  591. } def
  592. /PSL_ST_prepare_text
  593. {
  594. /psl_xp PSL_txt_x psl_k get def
  595. /psl_yp PSL_txt_y psl_k get def
  596. /psl_label PSL_label_str psl_k get def
  597. PSL_label_font psl_k get cvx exec
  598. /PSL_height PSL_heights psl_k get def
  599. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  600. /PSL_just PSL_label_justify psl_k get def
  601. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  602. /PSL_justy PSL_just 4 idiv 2 div neg def
  603. /psl_SW psl_label stringwidth pop def
  604. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  605. /psl_x0 psl_SW PSL_justx mul def
  606. /psl_y0 PSL_justy PSL_height mul def
  607. /psl_angle PSL_label_angle psl_k get def
  608. } def
  609. /PSL_ST_textbox_rect
  610. {
  611. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  612. PSL_gap_x neg PSL_gap_y neg M
  613. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  614. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  615. } def
  616. /PSL_ST_textbox_round
  617. {
  618. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  619. /psl_xd PSL_gap_x psl_BoxR sub def
  620. /psl_yd PSL_gap_y psl_BoxR sub def
  621. /psl_xL PSL_gap_x neg def
  622. /psl_yB PSL_gap_y neg def
  623. /psl_yT psl_boxH psl_yB add def
  624. /psl_H2 PSL_height psl_yd 2 mul add def
  625. /psl_W2 psl_SW psl_xd 2 mul add def
  626. /psl_xR psl_xL psl_boxW add def
  627. /psl_x0 psl_SW PSL_justx mul def
  628. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  629. psl_xL psl_yd M
  630. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  631. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  632. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  633. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  634. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  635. } def
  636. /PSL_ST_place_label
  637. {
  638. V psl_xp psl_yp T psl_angle R
  639. psl_SW PSL_justx mul psl_y0 M
  640. psl_label dup sd neg 0 exch G show
  641. U
  642. } def
  643. /PSL_nclip 0 def
  644. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  645. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  646. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  647. %%EndProlog
  648. %%BeginSetup
  649. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  650. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  651. %%EndSetup
  652. %%Page: 1 1
  653. %%BeginPageSetup
  654. V 0.06 0.06 scale
  655. %%EndPageSetup
  656. /PSL_page_xsize 10200 def
  657. /PSL_page_ysize 13200 def
  658. 0 A
  659. FQ
  660. O0
  661. -3600 PSL_xorig sub PSL_page_xsize 2 div add 900 TM
  662. % PostScript produced by:
  663. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -P t.txt -W1p+b -Baf -BWSne -K -Y0.75i -Xc
  664. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  665. %%BeginObject PSL_Layer_1
  666. 0 setlinecap
  667. 0 setlinejoin
  668. 3.32551 setmiterlimit
  669. 17 W
  670. 116 112 M
  671. 502 518 888 923 1277 1238 curveto
  672. 1666 1552 2058 1775 2439 1800 curveto
  673. 2819 1825 3189 1651 3600 1519 curveto
  674. 4011 1386 4464 1295 4761 1800 curveto
  675. 5058 2305 5199 3407 5342 3488 curveto
  676. 5485 3568 5632 2627 5923 2362 curveto
  677. 6213 2098 6649 2512 7084 2925 curveto
  678. S
  679. 25 W
  680. 2 setlinecap
  681. N 0 3600 M 0 -3600 D S
  682. /PSL_A0_y 83 def
  683. /PSL_A1_y 0 def
  684. 8 W
  685. N 0 112 M -83 0 D S
  686. N 0 1238 M -83 0 D S
  687. N 0 2362 M -83 0 D S
  688. N 0 3488 M -83 0 D S
  689. /PSL_AH0 0
  690. /MM {neg exch M} def
  691. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  692. 200 F0
  693. (0) sw mx
  694. (1) sw mx
  695. (2) sw mx
  696. (3) sw mx
  697. def
  698. /PSL_A0_y PSL_A0_y 83 add def
  699. 112 PSL_A0_y MM
  700. (0) mr Z
  701. 1238 PSL_A0_y MM
  702. (1) mr Z
  703. 2362 PSL_A0_y MM
  704. (2) mr Z
  705. 3488 PSL_A0_y MM
  706. (3) mr Z
  707. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  708. N 0 338 M -42 0 D S
  709. N 0 562 M -42 0 D S
  710. N 0 788 M -42 0 D S
  711. N 0 1012 M -42 0 D S
  712. N 0 1463 M -42 0 D S
  713. N 0 1688 M -42 0 D S
  714. N 0 1912 M -42 0 D S
  715. N 0 2138 M -42 0 D S
  716. N 0 2588 M -42 0 D S
  717. N 0 2813 M -42 0 D S
  718. N 0 3038 M -42 0 D S
  719. N 0 3263 M -42 0 D S
  720. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  721. 7200 0 T
  722. 25 W
  723. N 0 3600 M 0 -3600 D S
  724. /PSL_A0_y 83 def
  725. /PSL_A1_y 0 def
  726. 8 W
  727. N 0 112 M 83 0 D S
  728. N 0 1238 M 83 0 D S
  729. N 0 2362 M 83 0 D S
  730. N 0 3488 M 83 0 D S
  731. N 0 338 M 42 0 D S
  732. N 0 562 M 42 0 D S
  733. N 0 788 M 42 0 D S
  734. N 0 1012 M 42 0 D S
  735. N 0 1463 M 42 0 D S
  736. N 0 1688 M 42 0 D S
  737. N 0 1912 M 42 0 D S
  738. N 0 2138 M 42 0 D S
  739. N 0 2588 M 42 0 D S
  740. N 0 2813 M 42 0 D S
  741. N 0 3038 M 42 0 D S
  742. N 0 3263 M 42 0 D S
  743. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  744. -7200 0 T
  745. 25 W
  746. N 0 0 M 7200 0 D S
  747. /PSL_A0_y 83 def
  748. /PSL_A1_y 0 def
  749. 8 W
  750. N 116 0 M 0 -83 D S
  751. N 1277 0 M 0 -83 D S
  752. N 2439 0 M 0 -83 D S
  753. N 3600 0 M 0 -83 D S
  754. N 4761 0 M 0 -83 D S
  755. N 5923 0 M 0 -83 D S
  756. N 7084 0 M 0 -83 D S
  757. /PSL_AH0 0
  758. /MM {neg M} def
  759. (0) sh mx
  760. (1) sh mx
  761. (2) sh mx
  762. (3) sh mx
  763. (4) sh mx
  764. (5) sh mx
  765. (6) sh mx
  766. def
  767. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  768. 116 PSL_A0_y MM
  769. (0) bc Z
  770. 1277 PSL_A0_y MM
  771. (1) bc Z
  772. 2439 PSL_A0_y MM
  773. (2) bc Z
  774. 3600 PSL_A0_y MM
  775. (3) bc Z
  776. 4761 PSL_A0_y MM
  777. (4) bc Z
  778. 5923 PSL_A0_y MM
  779. (5) bc Z
  780. 7084 PSL_A0_y MM
  781. (6) bc Z
  782. N 348 0 M 0 -42 D S
  783. N 581 0 M 0 -42 D S
  784. N 813 0 M 0 -42 D S
  785. N 1045 0 M 0 -42 D S
  786. N 1510 0 M 0 -42 D S
  787. N 1742 0 M 0 -42 D S
  788. N 1974 0 M 0 -42 D S
  789. N 2206 0 M 0 -42 D S
  790. N 2671 0 M 0 -42 D S
  791. N 2903 0 M 0 -42 D S
  792. N 3135 0 M 0 -42 D S
  793. N 3368 0 M 0 -42 D S
  794. N 3832 0 M 0 -42 D S
  795. N 4065 0 M 0 -42 D S
  796. N 4297 0 M 0 -42 D S
  797. N 4529 0 M 0 -42 D S
  798. N 4994 0 M 0 -42 D S
  799. N 5226 0 M 0 -42 D S
  800. N 5458 0 M 0 -42 D S
  801. N 5690 0 M 0 -42 D S
  802. N 6155 0 M 0 -42 D S
  803. N 6387 0 M 0 -42 D S
  804. N 6619 0 M 0 -42 D S
  805. N 6852 0 M 0 -42 D S
  806. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  807. 0 3600 T
  808. 25 W
  809. N 0 0 M 7200 0 D S
  810. /PSL_A0_y 83 def
  811. /PSL_A1_y 0 def
  812. 8 W
  813. N 116 0 M 0 83 D S
  814. N 1277 0 M 0 83 D S
  815. N 2439 0 M 0 83 D S
  816. N 3600 0 M 0 83 D S
  817. N 4761 0 M 0 83 D S
  818. N 5923 0 M 0 83 D S
  819. N 7084 0 M 0 83 D S
  820. N 348 0 M 0 42 D S
  821. N 581 0 M 0 42 D S
  822. N 813 0 M 0 42 D S
  823. N 1045 0 M 0 42 D S
  824. N 1510 0 M 0 42 D S
  825. N 1742 0 M 0 42 D S
  826. N 1974 0 M 0 42 D S
  827. N 2206 0 M 0 42 D S
  828. N 2671 0 M 0 42 D S
  829. N 2903 0 M 0 42 D S
  830. N 3135 0 M 0 42 D S
  831. N 3368 0 M 0 42 D S
  832. N 3832 0 M 0 42 D S
  833. N 4065 0 M 0 42 D S
  834. N 4297 0 M 0 42 D S
  835. N 4529 0 M 0 42 D S
  836. N 4994 0 M 0 42 D S
  837. N 5226 0 M 0 42 D S
  838. N 5458 0 M 0 42 D S
  839. N 5690 0 M 0 42 D S
  840. N 6155 0 M 0 42 D S
  841. N 6387 0 M 0 42 D S
  842. N 6619 0 M 0 42 D S
  843. N 6852 0 M 0 42 D S
  844. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  845. 0 -3600 T
  846. 0 setlinecap
  847. %%EndObject
  848. 0 A
  849. FQ
  850. O0
  851. 0 0 TM
  852. % PostScript produced by:
  853. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -K t.txt -Sc0.1i -Gblue -Wthin
  854. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  855. %%BeginObject PSL_Layer_2
  856. 0 setlinecap
  857. 0 setlinejoin
  858. 3.32551 setmiterlimit
  859. clipsave
  860. 0 0 M
  861. 7200 0 D
  862. 0 3600 D
  863. -7200 0 D
  864. PSL_clip N
  865. 12 W
  866. V
  867. {0 0 1 C} FS
  868. O1
  869. 60 116 112 Sc
  870. 60 1277 1238 Sc
  871. 60 2439 1800 Sc
  872. 60 3600 1519 Sc
  873. 60 4761 1800 Sc
  874. 60 5342 3488 Sc
  875. 60 5923 2362 Sc
  876. 60 7084 2925 Sc
  877. U
  878. PSL_cliprestore
  879. %%EndObject
  880. 0 A
  881. FQ
  882. O0
  883. 0 3840 TM
  884. % PostScript produced by:
  885. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -Bafg -BWsne -W1p -K -Y3.2i
  886. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  887. %%BeginObject PSL_Layer_3
  888. 0 setlinecap
  889. 0 setlinejoin
  890. 3.32551 setmiterlimit
  891. 17 W
  892. 116 112 M
  893. 128 136 D
  894. 23 25 D
  895. 93 98 D
  896. 93 97 D
  897. 139 144 D
  898. 12 11 D
  899. 116 117 D
  900. 12 11 D
  901. 11 12 D
  902. 186 177 D
  903. 93 84 D
  904. 116 101 D
  905. 93 76 D
  906. 35 27 D
  907. 11 10 D
  908. 47 35 D
  909. 58 43 D
  910. 116 81 D
  911. 93 60 D
  912. 81 49 D
  913. 93 51 D
  914. 47 25 D
  915. 104 50 D
  916. 81 35 D
  917. 58 24 D
  918. 128 45 D
  919. 93 27 D
  920. 93 23 D
  921. 81 16 D
  922. 82 13 D
  923. 104 11 D
  924. 81 3 D
  925. 35 1 D
  926. 105 -5 D
  927. 58 -6 D
  928. 93 -15 D
  929. 81 -19 D
  930. 58 -18 D
  931. 58 -20 D
  932. 93 -39 D
  933. 70 -35 D
  934. 81 -47 D
  935. 93 -63 D
  936. 58 -44 D
  937. 105 -88 D
  938. 46 -41 D
  939. 35 -30 D
  940. 23 -21 D
  941. 93 -78 D
  942. 58 -44 D
  943. 46 -31 D
  944. 59 -34 D
  945. 46 -21 D
  946. 46 -15 D
  947. 35 -7 D
  948. 47 -3 D
  949. 35 3 D
  950. 23 4 D
  951. 35 12 D
  952. 23 10 D
  953. 35 20 D
  954. 35 26 D
  955. 34 32 D
  956. 24 25 D
  957. 23 28 D
  958. 35 48 D
  959. 23 36 D
  960. 46 82 D
  961. 47 96 D
  962. 35 82 D
  963. 46 123 D
  964. 47 138 D
  965. 58 193 D
  966. 81 293 D
  967. 116 425 D
  968. 58 197 D
  969. 47 143 D
  970. 34 96 D
  971. 47 111 D
  972. 23 46 D
  973. 23 39 D
  974. 23 32 D
  975. 12 14 D
  976. 23 20 D
  977. 12 8 D
  978. 23 7 D
  979. 12 1 D
  980. 23 -4 D
  981. 12 -5 D
  982. 23 -15 D
  983. 23 -22 D
  984. 23 -28 D
  985. 24 -34 D
  986. 34 -61 D
  987. 24 -46 D
  988. 46 -104 D
  989. 70 -177 D
  990. 139 -381 D
  991. 58 -149 D
  992. 47 -108 D
  993. 34 -71 D
  994. 35 -64 D
  995. 35 -55 D
  996. 23 -33 D
  997. 35 -43 D
  998. 23 -25 D
  999. 35 -31 D
  1000. 35 -25 D
  1001. 23 -13 D
  1002. 35 -14 D
  1003. 47 -9 D
  1004. 46 1 D
  1005. 46 11 D
  1006. 35 14 D
  1007. 24 12 D
  1008. 34 22 D
  1009. 35 26 D
  1010. 47 42 D
  1011. 46 48 D
  1012. 47 55 D
  1013. 58 76 D
  1014. 58 84 D
  1015. 58 90 D
  1016. 35 56 D
  1017. 58 98 D
  1018. 23 41 D
  1019. 93 165 D
  1020. 58 105 D
  1021. S
  1022. 25 W
  1023. 4 W
  1024. 116 0 M
  1025. 0 3600 D
  1026. S
  1027. 1277 0 M
  1028. 0 3600 D
  1029. S
  1030. 2439 0 M
  1031. 0 3600 D
  1032. S
  1033. 3600 0 M
  1034. 0 3600 D
  1035. S
  1036. 4761 0 M
  1037. 0 3600 D
  1038. S
  1039. 5923 0 M
  1040. 0 3600 D
  1041. S
  1042. 7084 0 M
  1043. 0 3600 D
  1044. S
  1045. 0 112 M
  1046. 7200 0 D
  1047. S
  1048. 0 1238 M
  1049. 7200 0 D
  1050. S
  1051. 0 2362 M
  1052. 7200 0 D
  1053. S
  1054. 0 3488 M
  1055. 7200 0 D
  1056. S
  1057. 2 setlinecap
  1058. 25 W
  1059. N 0 3600 M 0 -3600 D S
  1060. /PSL_A0_y 83 def
  1061. /PSL_A1_y 0 def
  1062. 8 W
  1063. N 0 112 M -83 0 D S
  1064. N 0 1238 M -83 0 D S
  1065. N 0 2362 M -83 0 D S
  1066. N 0 3488 M -83 0 D S
  1067. /PSL_AH0 0
  1068. /MM {neg exch M} def
  1069. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1070. 200 F0
  1071. (0) sw mx
  1072. (1) sw mx
  1073. (2) sw mx
  1074. (3) sw mx
  1075. def
  1076. /PSL_A0_y PSL_A0_y 83 add def
  1077. 112 PSL_A0_y MM
  1078. (0) mr Z
  1079. 1238 PSL_A0_y MM
  1080. (1) mr Z
  1081. 2362 PSL_A0_y MM
  1082. (2) mr Z
  1083. 3488 PSL_A0_y MM
  1084. (3) mr Z
  1085. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1086. N 0 338 M -42 0 D S
  1087. N 0 562 M -42 0 D S
  1088. N 0 788 M -42 0 D S
  1089. N 0 1012 M -42 0 D S
  1090. N 0 1463 M -42 0 D S
  1091. N 0 1688 M -42 0 D S
  1092. N 0 1912 M -42 0 D S
  1093. N 0 2138 M -42 0 D S
  1094. N 0 2588 M -42 0 D S
  1095. N 0 2813 M -42 0 D S
  1096. N 0 3038 M -42 0 D S
  1097. N 0 3263 M -42 0 D S
  1098. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1099. 7200 0 T
  1100. 25 W
  1101. N 0 3600 M 0 -3600 D S
  1102. /PSL_A0_y 83 def
  1103. /PSL_A1_y 0 def
  1104. 8 W
  1105. N 0 112 M 83 0 D S
  1106. N 0 1238 M 83 0 D S
  1107. N 0 2362 M 83 0 D S
  1108. N 0 3488 M 83 0 D S
  1109. N 0 338 M 42 0 D S
  1110. N 0 562 M 42 0 D S
  1111. N 0 788 M 42 0 D S
  1112. N 0 1012 M 42 0 D S
  1113. N 0 1463 M 42 0 D S
  1114. N 0 1688 M 42 0 D S
  1115. N 0 1912 M 42 0 D S
  1116. N 0 2138 M 42 0 D S
  1117. N 0 2588 M 42 0 D S
  1118. N 0 2813 M 42 0 D S
  1119. N 0 3038 M 42 0 D S
  1120. N 0 3263 M 42 0 D S
  1121. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1122. -7200 0 T
  1123. 25 W
  1124. N 0 0 M 7200 0 D S
  1125. /PSL_A0_y 83 def
  1126. /PSL_A1_y 0 def
  1127. 8 W
  1128. N 116 0 M 0 -83 D S
  1129. N 1277 0 M 0 -83 D S
  1130. N 2439 0 M 0 -83 D S
  1131. N 3600 0 M 0 -83 D S
  1132. N 4761 0 M 0 -83 D S
  1133. N 5923 0 M 0 -83 D S
  1134. N 7084 0 M 0 -83 D S
  1135. N 348 0 M 0 -42 D S
  1136. N 581 0 M 0 -42 D S
  1137. N 813 0 M 0 -42 D S
  1138. N 1045 0 M 0 -42 D S
  1139. N 1510 0 M 0 -42 D S
  1140. N 1742 0 M 0 -42 D S
  1141. N 1974 0 M 0 -42 D S
  1142. N 2206 0 M 0 -42 D S
  1143. N 2671 0 M 0 -42 D S
  1144. N 2903 0 M 0 -42 D S
  1145. N 3135 0 M 0 -42 D S
  1146. N 3368 0 M 0 -42 D S
  1147. N 3832 0 M 0 -42 D S
  1148. N 4065 0 M 0 -42 D S
  1149. N 4297 0 M 0 -42 D S
  1150. N 4529 0 M 0 -42 D S
  1151. N 4994 0 M 0 -42 D S
  1152. N 5226 0 M 0 -42 D S
  1153. N 5458 0 M 0 -42 D S
  1154. N 5690 0 M 0 -42 D S
  1155. N 6155 0 M 0 -42 D S
  1156. N 6387 0 M 0 -42 D S
  1157. N 6619 0 M 0 -42 D S
  1158. N 6852 0 M 0 -42 D S
  1159. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1160. 0 3600 T
  1161. 25 W
  1162. N 0 0 M 7200 0 D S
  1163. /PSL_A0_y 83 def
  1164. /PSL_A1_y 0 def
  1165. 8 W
  1166. N 116 0 M 0 83 D S
  1167. N 1277 0 M 0 83 D S
  1168. N 2439 0 M 0 83 D S
  1169. N 3600 0 M 0 83 D S
  1170. N 4761 0 M 0 83 D S
  1171. N 5923 0 M 0 83 D S
  1172. N 7084 0 M 0 83 D S
  1173. N 348 0 M 0 42 D S
  1174. N 581 0 M 0 42 D S
  1175. N 813 0 M 0 42 D S
  1176. N 1045 0 M 0 42 D S
  1177. N 1510 0 M 0 42 D S
  1178. N 1742 0 M 0 42 D S
  1179. N 1974 0 M 0 42 D S
  1180. N 2206 0 M 0 42 D S
  1181. N 2671 0 M 0 42 D S
  1182. N 2903 0 M 0 42 D S
  1183. N 3135 0 M 0 42 D S
  1184. N 3368 0 M 0 42 D S
  1185. N 3832 0 M 0 42 D S
  1186. N 4065 0 M 0 42 D S
  1187. N 4297 0 M 0 42 D S
  1188. N 4529 0 M 0 42 D S
  1189. N 4994 0 M 0 42 D S
  1190. N 5226 0 M 0 42 D S
  1191. N 5458 0 M 0 42 D S
  1192. N 5690 0 M 0 42 D S
  1193. N 6155 0 M 0 42 D S
  1194. N 6387 0 M 0 42 D S
  1195. N 6619 0 M 0 42 D S
  1196. N 6852 0 M 0 42 D S
  1197. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1198. 0 -3600 T
  1199. 0 setlinecap
  1200. %%EndObject
  1201. 0 A
  1202. FQ
  1203. O0
  1204. 0 0 TM
  1205. % PostScript produced by:
  1206. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -K t.txt -Sc0.1i -Gblue -Wthin
  1207. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1208. %%BeginObject PSL_Layer_4
  1209. 0 setlinecap
  1210. 0 setlinejoin
  1211. 3.32551 setmiterlimit
  1212. clipsave
  1213. 0 0 M
  1214. 7200 0 D
  1215. 0 3600 D
  1216. -7200 0 D
  1217. PSL_clip N
  1218. 12 W
  1219. V
  1220. {0 0 1 C} FS
  1221. O1
  1222. 60 116 112 Sc
  1223. 60 1277 1238 Sc
  1224. 60 2439 1800 Sc
  1225. 60 3600 1519 Sc
  1226. 60 4761 1800 Sc
  1227. 60 5342 3488 Sc
  1228. 60 5923 2362 Sc
  1229. 60 7084 2925 Sc
  1230. U
  1231. PSL_cliprestore
  1232. %%EndObject
  1233. 0 A
  1234. FQ
  1235. O0
  1236. 0 3840 TM
  1237. % PostScript produced by:
  1238. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -Bafg -BWsne -Wfaint,black -K -Y3.2i
  1239. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1240. %%BeginObject PSL_Layer_5
  1241. 0 setlinecap
  1242. 0 setlinejoin
  1243. 3.32551 setmiterlimit
  1244. 0 W
  1245. 116 112 M
  1246. 128 136 D
  1247. 23 25 D
  1248. 93 98 D
  1249. 93 97 D
  1250. 139 144 D
  1251. 12 11 D
  1252. 116 117 D
  1253. 12 11 D
  1254. 11 12 D
  1255. 186 177 D
  1256. 93 84 D
  1257. 116 101 D
  1258. 93 76 D
  1259. 35 27 D
  1260. 11 10 D
  1261. 47 35 D
  1262. 58 43 D
  1263. 116 81 D
  1264. 93 60 D
  1265. 81 49 D
  1266. 93 51 D
  1267. 47 25 D
  1268. 104 50 D
  1269. 81 35 D
  1270. 58 24 D
  1271. 128 45 D
  1272. 93 27 D
  1273. 93 23 D
  1274. 81 16 D
  1275. 82 13 D
  1276. 104 11 D
  1277. 81 3 D
  1278. 35 1 D
  1279. 105 -5 D
  1280. 58 -6 D
  1281. 93 -15 D
  1282. 81 -19 D
  1283. 58 -18 D
  1284. 58 -20 D
  1285. 93 -39 D
  1286. 70 -35 D
  1287. 81 -47 D
  1288. 93 -63 D
  1289. 58 -44 D
  1290. 105 -88 D
  1291. 46 -41 D
  1292. 35 -30 D
  1293. 23 -21 D
  1294. 93 -78 D
  1295. 58 -44 D
  1296. 46 -31 D
  1297. 59 -34 D
  1298. 46 -21 D
  1299. 46 -15 D
  1300. 35 -7 D
  1301. 47 -3 D
  1302. 35 3 D
  1303. 23 4 D
  1304. 35 12 D
  1305. 23 10 D
  1306. 35 20 D
  1307. 35 26 D
  1308. 34 32 D
  1309. 24 25 D
  1310. 23 28 D
  1311. 35 48 D
  1312. 23 36 D
  1313. 46 82 D
  1314. 47 96 D
  1315. 35 82 D
  1316. 46 123 D
  1317. 47 138 D
  1318. 58 193 D
  1319. 81 293 D
  1320. 116 425 D
  1321. 58 197 D
  1322. 47 143 D
  1323. 34 96 D
  1324. 47 111 D
  1325. 23 46 D
  1326. 23 39 D
  1327. 23 32 D
  1328. 12 14 D
  1329. 23 20 D
  1330. 12 8 D
  1331. 23 7 D
  1332. 12 1 D
  1333. 23 -4 D
  1334. 12 -5 D
  1335. 23 -15 D
  1336. 23 -22 D
  1337. 23 -28 D
  1338. 24 -34 D
  1339. 34 -61 D
  1340. 24 -46 D
  1341. 46 -104 D
  1342. 70 -177 D
  1343. 139 -381 D
  1344. 58 -149 D
  1345. 47 -108 D
  1346. 34 -71 D
  1347. 35 -64 D
  1348. 35 -55 D
  1349. 23 -33 D
  1350. 35 -43 D
  1351. 23 -25 D
  1352. 35 -31 D
  1353. 35 -25 D
  1354. 23 -13 D
  1355. 35 -14 D
  1356. 47 -9 D
  1357. 46 1 D
  1358. 46 11 D
  1359. 35 14 D
  1360. 24 12 D
  1361. 34 22 D
  1362. 35 26 D
  1363. 47 42 D
  1364. 46 48 D
  1365. 47 55 D
  1366. 58 76 D
  1367. 58 84 D
  1368. 58 90 D
  1369. 35 56 D
  1370. 58 98 D
  1371. 23 41 D
  1372. 93 165 D
  1373. 58 105 D
  1374. S
  1375. 25 W
  1376. 4 W
  1377. 116 0 M
  1378. 0 3600 D
  1379. S
  1380. 1277 0 M
  1381. 0 3600 D
  1382. S
  1383. 2439 0 M
  1384. 0 3600 D
  1385. S
  1386. 3600 0 M
  1387. 0 3600 D
  1388. S
  1389. 4761 0 M
  1390. 0 3600 D
  1391. S
  1392. 5923 0 M
  1393. 0 3600 D
  1394. S
  1395. 7084 0 M
  1396. 0 3600 D
  1397. S
  1398. 0 112 M
  1399. 7200 0 D
  1400. S
  1401. 0 1238 M
  1402. 7200 0 D
  1403. S
  1404. 0 2362 M
  1405. 7200 0 D
  1406. S
  1407. 0 3488 M
  1408. 7200 0 D
  1409. S
  1410. 2 setlinecap
  1411. 25 W
  1412. N 0 3600 M 0 -3600 D S
  1413. /PSL_A0_y 83 def
  1414. /PSL_A1_y 0 def
  1415. 8 W
  1416. N 0 112 M -83 0 D S
  1417. N 0 1238 M -83 0 D S
  1418. N 0 2362 M -83 0 D S
  1419. N 0 3488 M -83 0 D S
  1420. /PSL_AH0 0
  1421. /MM {neg exch M} def
  1422. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1423. 200 F0
  1424. (0) sw mx
  1425. (1) sw mx
  1426. (2) sw mx
  1427. (3) sw mx
  1428. def
  1429. /PSL_A0_y PSL_A0_y 83 add def
  1430. 112 PSL_A0_y MM
  1431. (0) mr Z
  1432. 1238 PSL_A0_y MM
  1433. (1) mr Z
  1434. 2362 PSL_A0_y MM
  1435. (2) mr Z
  1436. 3488 PSL_A0_y MM
  1437. (3) mr Z
  1438. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1439. N 0 338 M -42 0 D S
  1440. N 0 562 M -42 0 D S
  1441. N 0 788 M -42 0 D S
  1442. N 0 1012 M -42 0 D S
  1443. N 0 1463 M -42 0 D S
  1444. N 0 1688 M -42 0 D S
  1445. N 0 1912 M -42 0 D S
  1446. N 0 2138 M -42 0 D S
  1447. N 0 2588 M -42 0 D S
  1448. N 0 2813 M -42 0 D S
  1449. N 0 3038 M -42 0 D S
  1450. N 0 3263 M -42 0 D S
  1451. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1452. 7200 0 T
  1453. 25 W
  1454. N 0 3600 M 0 -3600 D S
  1455. /PSL_A0_y 83 def
  1456. /PSL_A1_y 0 def
  1457. 8 W
  1458. N 0 112 M 83 0 D S
  1459. N 0 1238 M 83 0 D S
  1460. N 0 2362 M 83 0 D S
  1461. N 0 3488 M 83 0 D S
  1462. N 0 338 M 42 0 D S
  1463. N 0 562 M 42 0 D S
  1464. N 0 788 M 42 0 D S
  1465. N 0 1012 M 42 0 D S
  1466. N 0 1463 M 42 0 D S
  1467. N 0 1688 M 42 0 D S
  1468. N 0 1912 M 42 0 D S
  1469. N 0 2138 M 42 0 D S
  1470. N 0 2588 M 42 0 D S
  1471. N 0 2813 M 42 0 D S
  1472. N 0 3038 M 42 0 D S
  1473. N 0 3263 M 42 0 D S
  1474. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1475. -7200 0 T
  1476. 25 W
  1477. N 0 0 M 7200 0 D S
  1478. /PSL_A0_y 83 def
  1479. /PSL_A1_y 0 def
  1480. 8 W
  1481. N 116 0 M 0 -83 D S
  1482. N 1277 0 M 0 -83 D S
  1483. N 2439 0 M 0 -83 D S
  1484. N 3600 0 M 0 -83 D S
  1485. N 4761 0 M 0 -83 D S
  1486. N 5923 0 M 0 -83 D S
  1487. N 7084 0 M 0 -83 D S
  1488. N 348 0 M 0 -42 D S
  1489. N 581 0 M 0 -42 D S
  1490. N 813 0 M 0 -42 D S
  1491. N 1045 0 M 0 -42 D S
  1492. N 1510 0 M 0 -42 D S
  1493. N 1742 0 M 0 -42 D S
  1494. N 1974 0 M 0 -42 D S
  1495. N 2206 0 M 0 -42 D S
  1496. N 2671 0 M 0 -42 D S
  1497. N 2903 0 M 0 -42 D S
  1498. N 3135 0 M 0 -42 D S
  1499. N 3368 0 M 0 -42 D S
  1500. N 3832 0 M 0 -42 D S
  1501. N 4065 0 M 0 -42 D S
  1502. N 4297 0 M 0 -42 D S
  1503. N 4529 0 M 0 -42 D S
  1504. N 4994 0 M 0 -42 D S
  1505. N 5226 0 M 0 -42 D S
  1506. N 5458 0 M 0 -42 D S
  1507. N 5690 0 M 0 -42 D S
  1508. N 6155 0 M 0 -42 D S
  1509. N 6387 0 M 0 -42 D S
  1510. N 6619 0 M 0 -42 D S
  1511. N 6852 0 M 0 -42 D S
  1512. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1513. 0 3600 T
  1514. 25 W
  1515. N 0 0 M 7200 0 D S
  1516. /PSL_A0_y 83 def
  1517. /PSL_A1_y 0 def
  1518. 8 W
  1519. N 116 0 M 0 83 D S
  1520. N 1277 0 M 0 83 D S
  1521. N 2439 0 M 0 83 D S
  1522. N 3600 0 M 0 83 D S
  1523. N 4761 0 M 0 83 D S
  1524. N 5923 0 M 0 83 D S
  1525. N 7084 0 M 0 83 D S
  1526. N 348 0 M 0 42 D S
  1527. N 581 0 M 0 42 D S
  1528. N 813 0 M 0 42 D S
  1529. N 1045 0 M 0 42 D S
  1530. N 1510 0 M 0 42 D S
  1531. N 1742 0 M 0 42 D S
  1532. N 1974 0 M 0 42 D S
  1533. N 2206 0 M 0 42 D S
  1534. N 2671 0 M 0 42 D S
  1535. N 2903 0 M 0 42 D S
  1536. N 3135 0 M 0 42 D S
  1537. N 3368 0 M 0 42 D S
  1538. N 3832 0 M 0 42 D S
  1539. N 4065 0 M 0 42 D S
  1540. N 4297 0 M 0 42 D S
  1541. N 4529 0 M 0 42 D S
  1542. N 4994 0 M 0 42 D S
  1543. N 5226 0 M 0 42 D S
  1544. N 5458 0 M 0 42 D S
  1545. N 5690 0 M 0 42 D S
  1546. N 6155 0 M 0 42 D S
  1547. N 6387 0 M 0 42 D S
  1548. N 6619 0 M 0 42 D S
  1549. N 6852 0 M 0 42 D S
  1550. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1551. 0 -3600 T
  1552. 0 setlinecap
  1553. %%EndObject
  1554. 0 A
  1555. FQ
  1556. O0
  1557. 0 0 TM
  1558. % PostScript produced by:
  1559. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -K t.txt -Wfaint,red+b
  1560. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1561. %%BeginObject PSL_Layer_6
  1562. 0 setlinecap
  1563. 0 setlinejoin
  1564. 3.32551 setmiterlimit
  1565. 0 W
  1566. 1 0 0 C
  1567. 116 112 M
  1568. 502 518 888 923 1277 1238 curveto
  1569. 1666 1552 2058 1775 2439 1800 curveto
  1570. 2819 1825 3189 1651 3600 1519 curveto
  1571. 4011 1386 4464 1295 4761 1800 curveto
  1572. 5058 2305 5199 3407 5342 3488 curveto
  1573. 5485 3568 5632 2627 5923 2362 curveto
  1574. 6213 2098 6649 2512 7084 2925 curveto
  1575. S
  1576. %%EndObject
  1577. 0 A
  1578. FQ
  1579. O0
  1580. 0 0 TM
  1581. % PostScript produced by:
  1582. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -K t.txt -Sc0.1i -Gblue -Wthin
  1583. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1584. %%BeginObject PSL_Layer_7
  1585. 0 setlinecap
  1586. 0 setlinejoin
  1587. 3.32551 setmiterlimit
  1588. clipsave
  1589. 0 0 M
  1590. 7200 0 D
  1591. 0 3600 D
  1592. -7200 0 D
  1593. PSL_clip N
  1594. 12 W
  1595. V
  1596. {0 0 1 C} FS
  1597. O1
  1598. 60 116 112 Sc
  1599. 60 1277 1238 Sc
  1600. 60 2439 1800 Sc
  1601. 60 3600 1519 Sc
  1602. 60 4761 1800 Sc
  1603. 60 5342 3488 Sc
  1604. 60 5923 2362 Sc
  1605. 60 7084 2925 Sc
  1606. U
  1607. PSL_cliprestore
  1608. %%EndObject
  1609. 0 A
  1610. FQ
  1611. O0
  1612. 0 0 TM
  1613. % PostScript produced by:
  1614. %%GMT: psxy -R-0.1/6.1/-0.1/3.1 -JX6i/3i -O -T
  1615. %%PROJ: xy -0.10000000 6.10000000 -0.10000000 3.10000000 -0.100 6.100 -0.100 3.100 +xy +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1616. %%BeginObject PSL_Layer_8
  1617. 0 setlinecap
  1618. 0 setlinejoin
  1619. 3.32551 setmiterlimit
  1620. %%EndObject
  1621. %%PageTrailer
  1622. U
  1623. showpage
  1624. %%Trailer
  1625. end
  1626. %%EOF
Tip!

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

Comments

Loading...