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

custom_textconditional.ps 28 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.2.0_023613d_2021.01.08 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sat Jan 9 16:19:14 2021
  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. /PSL_BM_arg edef /PSL_S_arg edef /PSL_F_arg edef
  115. /.setfillconstantalpha where
  116. { pop PSL_BM_arg .setblendmode PSL_S_arg .setstrokeconstantalpha PSL_F_arg .setfillconstantalpha }
  117. { /pdfmark where {pop [ /BM PSL_BM_arg /CA PSL_S_arg /ca PSL_F_arg /SetTransparency pdfmark} if }
  118. ifelse
  119. }!
  120. /ISOLatin1+_Encoding [
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  123. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  124. /.notdef /bullet /ellipsis /trademark /emdash /endash /fi /zcaron
  125. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  126. /parenleft /parenright /asterisk /plus /comma /minus /period /slash
  127. /zero /one /two /three /four /five /six /seven
  128. /eight /nine /colon /semicolon /less /equal /greater /question
  129. /at /A /B /C /D /E /F /G
  130. /H /I /J /K /L /M /N /O
  131. /P /Q /R /S /T /U /V /W
  132. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  133. /quoteleft /a /b /c /d /e /f /g
  134. /h /i /j /k /l /m /n /o
  135. /p /q /r /s /t /u /v /w
  136. /x /y /z /braceleft /bar /braceright /asciitilde /scaron
  137. /OE /dagger /daggerdbl /Lslash /fraction /guilsinglleft /Scaron /guilsinglright
  138. /oe /Ydieresis /Zcaron /lslash /perthousand /quotedblbase /quotedblleft /quotedblright
  139. /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
  140. /dieresis /quotesinglbase /ring /cedilla /quotesingle /hungarumlaut /ogonek /caron
  141. /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
  142. /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron
  143. /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered
  144. /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown
  145. /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
  146. /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis
  147. /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
  148. /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls
  149. /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
  150. /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
  151. /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
  152. /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis
  153. ] def
  154. /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
  155. /F0 {/Helvetica Y}!
  156. /F1 {/Helvetica-Bold Y}!
  157. /F2 {/Helvetica-Oblique Y}!
  158. /F3 {/Helvetica-BoldOblique Y}!
  159. /F4 {/Times-Roman Y}!
  160. /F5 {/Times-Bold Y}!
  161. /F6 {/Times-Italic Y}!
  162. /F7 {/Times-BoldItalic Y}!
  163. /F8 {/Courier Y}!
  164. /F9 {/Courier-Bold Y}!
  165. /F10 {/Courier-Oblique Y}!
  166. /F11 {/Courier-BoldOblique Y}!
  167. /F12 {/Symbol Y}!
  168. /F13 {/AvantGarde-Book Y}!
  169. /F14 {/AvantGarde-BookOblique Y}!
  170. /F15 {/AvantGarde-Demi Y}!
  171. /F16 {/AvantGarde-DemiOblique Y}!
  172. /F17 {/Bookman-Demi Y}!
  173. /F18 {/Bookman-DemiItalic Y}!
  174. /F19 {/Bookman-Light Y}!
  175. /F20 {/Bookman-LightItalic Y}!
  176. /F21 {/Helvetica-Narrow Y}!
  177. /F22 {/Helvetica-Narrow-Bold Y}!
  178. /F23 {/Helvetica-Narrow-Oblique Y}!
  179. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  180. /F25 {/NewCenturySchlbk-Roman Y}!
  181. /F26 {/NewCenturySchlbk-Italic Y}!
  182. /F27 {/NewCenturySchlbk-Bold Y}!
  183. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  184. /F29 {/Palatino-Roman Y}!
  185. /F30 {/Palatino-Italic Y}!
  186. /F31 {/Palatino-Bold Y}!
  187. /F32 {/Palatino-BoldItalic Y}!
  188. /F33 {/ZapfChancery-MediumItalic Y}!
  189. /F34 {/ZapfDingbats Y}!
  190. /F35 {/Ryumin-Light-EUC-H Y}!
  191. /F36 {/Ryumin-Light-EUC-V Y}!
  192. /F37 {/GothicBBB-Medium-EUC-H Y}!
  193. /F38 {/GothicBBB-Medium-EUC-V Y}!
  194. /PSL_pathtextdict 26 dict def
  195. /PSL_pathtext
  196. {PSL_pathtextdict begin
  197. /ydepth exch def
  198. /textheight exch def
  199. /just exch def
  200. /offset exch def
  201. /str exch def
  202. /pathdist 0 def
  203. /setdist offset def
  204. /charcount 0 def
  205. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  206. V flattenpath
  207. {movetoproc} {linetoproc}
  208. {curvetoproc} {closepathproc}
  209. pathforall
  210. U N
  211. end
  212. } def
  213. PSL_pathtextdict begin
  214. /movetoproc
  215. { /newy exch def /newx exch def
  216. /firstx newx def /firsty newy def
  217. /ovr 0 def
  218. newx newy transform
  219. /cpy exch def /cpx exch def
  220. } def
  221. /linetoproc
  222. { /oldx newx def /oldy newy def
  223. /newy exch def /newx exch def
  224. /dx newx oldx sub def
  225. /dy newy oldy sub def
  226. /dist dx dup mul dy dup mul add sqrt def
  227. dist 0 ne
  228. { /dsx dx dist div ovr mul def
  229. /dsy dy dist div ovr mul def
  230. oldx dsx add oldy dsy add transform
  231. /cpy exch def /cpx exch def
  232. /pathdist pathdist dist add def
  233. {setdist pathdist le
  234. {charcount str length lt
  235. {setchar} {exit} ifelse}
  236. { /ovr setdist pathdist sub def
  237. exit}
  238. ifelse
  239. } loop
  240. } if
  241. } def
  242. /curvetoproc
  243. { (ERROR: No curveto's after flattenpath!)
  244. print
  245. } def
  246. /closepathproc
  247. {firstx firsty linetoproc
  248. firstx firsty movetoproc
  249. } def
  250. /setchar
  251. { /char str charcount 1 getinterval def
  252. /charcount charcount 1 add def
  253. /charwidth char stringwidth pop def
  254. V cpx cpy itransform T
  255. dy dx atan R
  256. 0 justy M
  257. PSL_font_F {
  258. char show}
  259. if
  260. PSL_font_FO {
  261. currentpoint N M V char true charpath fs U V char false charpath S U char E 0 G
  262. } if
  263. PSL_font_OF {
  264. currentpoint N M V char false charpath S U V char true charpath fs U char E 0 G
  265. } if
  266. 0 justy neg G currentpoint transform
  267. /cpy exch def /cpx exch def
  268. U /setdist setdist charwidth add def
  269. } def
  270. end
  271. /PSL_set_label_heights
  272. {
  273. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  274. /PSL_heights PSL_n_labels array def
  275. 0 1 PSL_n_labels_minus_1
  276. { /psl_k exch def
  277. /psl_label PSL_label_str psl_k get def
  278. PSL_label_font psl_k get cvx exec
  279. psl_label sH /PSL_height edef
  280. PSL_heights psl_k PSL_height put
  281. } for
  282. } def
  283. /PSL_curved_path_labels
  284. { /psl_bits exch def
  285. /PSL_placetext psl_bits 2 and 2 eq def
  286. /PSL_clippath psl_bits 4 and 4 eq def
  287. /PSL_strokeline false def
  288. /PSL_fillbox psl_bits 128 and 128 eq def
  289. /PSL_drawbox psl_bits 256 and 256 eq def
  290. /PSL_font_F psl_bits 1536 and 0 eq def
  291. /PSL_font_FO psl_bits 512 and 512 eq def
  292. /PSL_font_OF psl_bits 1024 and 1024 eq def
  293. /PSL_n_paths1 PSL_n_paths 1 sub def
  294. /PSL_usebox PSL_fillbox PSL_drawbox or def
  295. PSL_clippath {clipsave N clippath} if
  296. /psl_k 0 def
  297. /psl_p 0 def
  298. 0 1 PSL_n_paths1
  299. { /psl_kk exch def
  300. /PSL_n PSL_path_n psl_kk get def
  301. /PSL_m PSL_label_n psl_kk get def
  302. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  303. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  304. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  305. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  306. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  307. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  308. PSL_curved_path_label
  309. /psl_k psl_k PSL_n add def
  310. /psl_p psl_p PSL_m add def
  311. } for
  312. PSL_clippath {PSL_eoclip} if N
  313. } def
  314. /PSL_curved_path_label
  315. {
  316. /PSL_n1 PSL_n 1 sub def
  317. /PSL_m1 PSL_m 1 sub def
  318. PSL_CT_calcstringwidth
  319. PSL_CT_calclinedist
  320. PSL_CT_excludelabels
  321. PSL_CT_addcutpoints
  322. /PSL_nn1 PSL_nn 1 sub def
  323. /n 0 def
  324. /k 0 def
  325. /j 0 def
  326. /PSL_seg 0 def
  327. /PSL_xp PSL_nn array def
  328. /PSL_yp PSL_nn array def
  329. PSL_xp 0 PSL_xx 0 get put
  330. PSL_yp 0 PSL_yy 0 get put
  331. 1 1 PSL_nn1
  332. { /i exch def
  333. /node_type PSL_kind i get def
  334. /j j 1 add def
  335. PSL_xp j PSL_xx i get put
  336. PSL_yp j PSL_yy i get put
  337. node_type 1 eq
  338. {n 0 eq
  339. {PSL_CT_drawline}
  340. {
  341. PSL_CT_reversepath
  342. PSL_CT_textline}
  343. ifelse
  344. /j 0 def
  345. PSL_xp j PSL_xx i get put
  346. PSL_yp j PSL_yy i get put
  347. } if
  348. } for
  349. n 0 eq {PSL_CT_drawline} if
  350. } def
  351. /PSL_CT_textline
  352. { PSL_fnt k get cvx exec
  353. /PSL_height PSL_heights k get def
  354. PSL_placetext {PSL_CT_placelabel} if
  355. PSL_clippath {PSL_CT_clippath} if
  356. /n 0 def /k k 1 add def
  357. } def
  358. /PSL_CT_calcstringwidth
  359. { /PSL_width_tmp PSL_m array def
  360. 0 1 PSL_m1
  361. { /i exch def
  362. PSL_fnt_tmp i get cvx exec
  363. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  364. } for
  365. } def
  366. /PSL_CT_calclinedist
  367. { /PSL_newx PSL_x 0 get def
  368. /PSL_newy PSL_y 0 get def
  369. /dist 0.0 def
  370. /PSL_dist PSL_n array def
  371. PSL_dist 0 0.0 put
  372. 1 1 PSL_n1
  373. { /i exch def
  374. /PSL_oldx PSL_newx def
  375. /PSL_oldy PSL_newy def
  376. /PSL_newx PSL_x i get def
  377. /PSL_newy PSL_y i get def
  378. /dx PSL_newx PSL_oldx sub def
  379. /dy PSL_newy PSL_oldy sub def
  380. /dist dist dx dx mul dy dy mul add sqrt add def
  381. PSL_dist i dist put
  382. } for
  383. } def
  384. /PSL_CT_excludelabels
  385. { /k 0 def
  386. /PSL_width PSL_m array def
  387. /PSL_angle PSL_m array def
  388. /PSL_node PSL_m array def
  389. /PSL_str PSL_m array def
  390. /PSL_fnt PSL_m array def
  391. /lastdist PSL_dist PSL_n1 get def
  392. 0 1 PSL_m1
  393. { /i exch def
  394. /dist PSL_dist PSL_node_tmp i get get def
  395. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  396. /L_dist dist halfwidth sub def
  397. /R_dist dist halfwidth add def
  398. L_dist 0 gt R_dist lastdist lt and
  399. {
  400. PSL_width k PSL_width_tmp i get put
  401. PSL_node k PSL_node_tmp i get put
  402. PSL_angle k PSL_angle_tmp i get put
  403. PSL_str k PSL_str_tmp i get put
  404. PSL_fnt k PSL_fnt_tmp i get put
  405. /k k 1 add def
  406. } if
  407. } for
  408. /PSL_m k def
  409. /PSL_m1 PSL_m 1 sub def
  410. } def
  411. /PSL_CT_addcutpoints
  412. { /k 0 def
  413. /PSL_nc PSL_m 2 mul 1 add def
  414. /PSL_cuts PSL_nc array def
  415. /PSL_nc1 PSL_nc 1 sub def
  416. 0 1 PSL_m1
  417. { /i exch def
  418. /dist PSL_dist PSL_node i get get def
  419. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  420. PSL_cuts k dist halfwidth sub put
  421. /k k 1 add def
  422. PSL_cuts k dist halfwidth add put
  423. /k k 1 add def
  424. } for
  425. PSL_cuts k 100000.0 put
  426. /PSL_nn PSL_n PSL_m 2 mul add def
  427. /PSL_xx PSL_nn array def
  428. /PSL_yy PSL_nn array def
  429. /PSL_kind PSL_nn array def
  430. /j 0 def
  431. /k 0 def
  432. /dist 0.0 def
  433. 0 1 PSL_n1
  434. { /i exch def
  435. /last_dist dist def
  436. /dist PSL_dist i get def
  437. k 1 PSL_nc1
  438. { /kk exch def
  439. /this_cut PSL_cuts kk get def
  440. dist this_cut gt
  441. { /ds dist last_dist sub def
  442. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  443. /i1 i 0 eq {0} {i 1 sub} ifelse def
  444. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  445. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  446. PSL_kind j 1 put
  447. /j j 1 add def
  448. /k k 1 add def
  449. } if
  450. } for
  451. dist PSL_cuts k get le
  452. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  453. PSL_kind j 0 put
  454. /j j 1 add def
  455. } if
  456. } for
  457. } def
  458. /PSL_CT_reversepath
  459. {PSL_xp j get PSL_xp 0 get lt
  460. {0 1 j 2 idiv
  461. { /left exch def
  462. /right j left sub def
  463. /tmp PSL_xp left get def
  464. PSL_xp left PSL_xp right get put
  465. PSL_xp right tmp put
  466. /tmp PSL_yp left get def
  467. PSL_yp left PSL_yp right get put
  468. PSL_yp right tmp put
  469. } for
  470. } if
  471. } def
  472. /PSL_CT_placelabel
  473. {
  474. /PSL_just PSL_label_justify k get def
  475. /PSL_height PSL_heights k get def
  476. /psl_label PSL_str k get def
  477. /psl_depth psl_label sd def
  478. PSL_usebox
  479. {PSL_CT_clippath
  480. PSL_fillbox
  481. {V PSL_setboxrgb fill U} if
  482. PSL_drawbox
  483. {V PSL_setboxpen S U} if N
  484. } if
  485. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  486. } def
  487. /PSL_CT_clippath
  488. {
  489. /H PSL_height 2 div PSL_gap_y add def
  490. /xoff j 1 add array def
  491. /yoff j 1 add array def
  492. /angle 0 def
  493. 0 1 j {
  494. /ii exch def
  495. /x PSL_xp ii get def
  496. /y PSL_yp ii get def
  497. ii 0 eq {
  498. /x1 PSL_xp 1 get def
  499. /y1 PSL_yp 1 get def
  500. /dx x1 x sub def
  501. /dy y1 y sub def
  502. }
  503. { /i1 ii 1 sub def
  504. /x1 PSL_xp i1 get def
  505. /y1 PSL_yp i1 get def
  506. /dx x x1 sub def
  507. /dy y y1 sub def
  508. } ifelse
  509. dx 0.0 eq dy 0.0 eq and not
  510. { /angle dy dx atan 90 add def} if
  511. /sina angle sin def
  512. /cosa angle cos def
  513. xoff ii H cosa mul put
  514. yoff ii H sina mul put
  515. } for
  516. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  517. 1 1 j {
  518. /ii exch def
  519. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  520. } for
  521. j -1 0 {
  522. /ii exch def
  523. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  524. } for P
  525. } def
  526. /PSL_CT_drawline
  527. {
  528. /str 20 string def
  529. PSL_strokeline
  530. {PSL_CT_placeline S} if
  531. /PSL_seg PSL_seg 1 add def
  532. /n 1 def
  533. } def
  534. /PSL_CT_placeline
  535. {PSL_xp 0 get PSL_yp 0 get M
  536. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  537. } def
  538. /PSL_draw_path_lines
  539. {
  540. /PSL_n_paths1 PSL_n_paths 1 sub def
  541. V
  542. /psl_start 0 def
  543. 0 1 PSL_n_paths1
  544. { /psl_k exch def
  545. /PSL_n PSL_path_n psl_k get def
  546. /PSL_n1 PSL_n 1 sub def
  547. PSL_path_pen psl_k get cvx exec
  548. N
  549. PSL_path_x psl_start get PSL_path_y psl_start get M
  550. 1 1 PSL_n1
  551. { /psl_i exch def
  552. /psl_kk psl_i psl_start add def
  553. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  554. } for
  555. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  556. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  557. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  558. S
  559. /psl_start psl_start PSL_n add def
  560. } for
  561. U
  562. } def
  563. /PSL_straight_path_labels
  564. {
  565. /psl_bits exch def
  566. /PSL_placetext psl_bits 2 and 2 eq def
  567. /PSL_rounded psl_bits 32 and 32 eq def
  568. /PSL_fillbox psl_bits 128 and 128 eq def
  569. /PSL_drawbox psl_bits 256 and 256 eq def
  570. /PSL_font_F psl_bits 1536 and 0 eq def
  571. /PSL_font_FO psl_bits 512 and 512 eq def
  572. /PSL_font_OF psl_bits 1024 and 1024 eq def
  573. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  574. /PSL_usebox PSL_fillbox PSL_drawbox or def
  575. 0 1 PSL_n_labels_minus_1
  576. { /psl_k exch def
  577. PSL_ST_prepare_text
  578. PSL_usebox
  579. { PSL_rounded
  580. {PSL_ST_textbox_round}
  581. {PSL_ST_textbox_rect}
  582. ifelse
  583. PSL_fillbox {V PSL_setboxrgb fill U} if
  584. PSL_drawbox {V PSL_setboxpen S U} if
  585. N
  586. } if
  587. PSL_font_F {
  588. PSL_placetext {PSL_ST_place_label} if
  589. } if
  590. PSL_font_FO {
  591. PSL_placetext {PSL_ST_place_label_FO} if
  592. } if
  593. PSL_font_OF {
  594. PSL_placetext {PSL_ST_place_label_OF} if
  595. } if
  596. } for
  597. } def
  598. /PSL_straight_path_clip
  599. {
  600. /psl_bits exch def
  601. /PSL_rounded psl_bits 32 and 32 eq def
  602. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  603. N clipsave clippath
  604. 0 1 PSL_n_labels_minus_1
  605. { /psl_k exch def
  606. PSL_ST_prepare_text
  607. PSL_rounded
  608. {PSL_ST_textbox_round}
  609. {PSL_ST_textbox_rect}
  610. ifelse
  611. } for
  612. PSL_eoclip N
  613. } def
  614. /PSL_ST_prepare_text
  615. {
  616. /psl_xp PSL_txt_x psl_k get def
  617. /psl_yp PSL_txt_y psl_k get def
  618. /psl_label PSL_label_str psl_k get def
  619. PSL_label_font psl_k get cvx exec
  620. /PSL_height PSL_heights psl_k get def
  621. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  622. /PSL_just PSL_label_justify psl_k get def
  623. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  624. /PSL_justy PSL_just 4 idiv 2 div neg def
  625. /psl_SW psl_label stringwidth pop def
  626. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  627. /psl_x0 psl_SW PSL_justx mul def
  628. /psl_y0 PSL_justy PSL_height mul def
  629. /psl_angle PSL_label_angle psl_k get def
  630. } def
  631. /PSL_ST_textbox_rect
  632. {
  633. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  634. PSL_gap_x neg PSL_gap_y neg M
  635. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  636. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  637. } def
  638. /PSL_ST_textbox_round
  639. {
  640. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  641. /psl_xd PSL_gap_x psl_BoxR sub def
  642. /psl_yd PSL_gap_y psl_BoxR sub def
  643. /psl_xL PSL_gap_x neg def
  644. /psl_yB PSL_gap_y neg def
  645. /psl_yT psl_boxH psl_yB add def
  646. /psl_H2 PSL_height psl_yd 2 mul add def
  647. /psl_W2 psl_SW psl_xd 2 mul add def
  648. /psl_xR psl_xL psl_boxW add def
  649. /psl_x0 psl_SW PSL_justx mul def
  650. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  651. psl_xL psl_yd M
  652. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  653. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  654. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  655. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  656. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  657. } def
  658. /PSL_ST_place_label
  659. {
  660. V psl_xp psl_yp T psl_angle R
  661. psl_SW PSL_justx mul psl_y0 M
  662. psl_label dup sd neg 0 exch G show
  663. U
  664. } def
  665. /PSL_ST_place_label_FO
  666. {
  667. V psl_xp psl_yp T psl_angle R
  668. psl_SW PSL_justx mul psl_y0 M
  669. psl_label dup sd neg 0 exch G false charpath V fs U S N
  670. U
  671. } def
  672. /PSL_ST_place_label_OF
  673. {
  674. V psl_xp psl_yp T psl_angle R
  675. psl_SW PSL_justx mul psl_y0 M
  676. psl_label dup sd neg 0 exch G false charpath V S U fs N
  677. U
  678. } def
  679. /PSL_nclip 0 def
  680. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  681. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  682. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  683. %%EndProlog
  684. %%BeginSetup
  685. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  686. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  687. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  688. %%EndSetup
  689. %%Page: 1 1
  690. %%BeginPageSetup
  691. V 0.06 0.06 scale
  692. %%EndPageSetup
  693. /PSL_page_xsize 10200 def
  694. /PSL_page_ysize 13200 def
  695. /PSL_plot_completion {} def
  696. /PSL_movie_label_completion {} def
  697. /PSL_movie_prog_indicator_completion {} def
  698. %PSL_End_Header
  699. gsave
  700. 0 A
  701. FQ
  702. O0
  703. 1200 1200 TM
  704. % PostScript produced by:
  705. %@GMT: gmt psxy -R60/300/-60/60 -JM16c -Baf location.txt -Skifelse0/2c -P -K
  706. %@PROJ: merc 60.00000000 300.00000000 -60.00000000 60.00000000 -13358338.895 13358338.895 -8362698.549 8362698.549 +proj=merc +lon_0=180 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  707. %GMTBoundingBox: 72 72 453.543307087 283.930957705
  708. %%BeginObject PSL_Layer_1
  709. 0 setlinecap
  710. 0 setlinejoin
  711. 3.32550952342 setmiterlimit
  712. 8 W
  713. 0 A
  714. N 0 0 M 0 -83 D S
  715. N 0 4732 M 0 84 D S
  716. N 1890 0 M 0 -83 D S
  717. N 1890 4732 M 0 84 D S
  718. N 3780 0 M 0 -83 D S
  719. N 3780 4732 M 0 84 D S
  720. N 5669 0 M 0 -83 D S
  721. N 5669 4732 M 0 84 D S
  722. N 7559 0 M 0 -83 D S
  723. N 7559 4732 M 0 84 D S
  724. N 0 0 M -83 0 D S
  725. N 7559 0 M 83 0 D S
  726. N 0 2366 M -83 0 D S
  727. N 7559 2366 M 83 0 D S
  728. N 0 4732 M -83 0 D S
  729. N 7559 4732 M 83 0 D S
  730. 0 -167 M PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  731. 200 F0
  732. (60°) tc Z
  733. 0 4899 M (60°) bc Z
  734. 1890 -167 M (120°) tc Z
  735. 1890 4899 M (120°) bc Z
  736. 3780 -167 M (180°) tc Z
  737. 3780 4899 M (180°) bc Z
  738. 5669 -167 M (-120°) tc Z
  739. 5669 4899 M (-120°) bc Z
  740. 7559 -167 M (-60°) tc Z
  741. 7559 4899 M (-60°) bc Z
  742. -167 0 M (-60°) mr Z
  743. 7726 0 M (-60°) ml Z
  744. -167 2366 M (0°) mr Z
  745. 7726 2366 M (0°) ml Z
  746. -167 4732 M (60°) mr Z
  747. 7726 4732 M (60°) ml Z
  748. clipsave
  749. 0 0 M
  750. 7559 0 D
  751. 0 4732 D
  752. -7559 0 D
  753. P
  754. PSL_clip N
  755. V
  756. 4 W
  757. O1
  758. V 3150 2366 T
  759. 50 W
  760. 1 0 0 C
  761. 472 0 0 Sc
  762. U
  763. 4 W
  764. 0 A
  765. V 3780 2841 T
  766. 50 W
  767. 1 0 0 C
  768. 472 0 0 Sc
  769. U
  770. 4 W
  771. 0 A
  772. V 4409 2366 T
  773. 83 W
  774. 0 1 0 C
  775. 472 0 0 Sc
  776. U
  777. 4 W
  778. 0 A
  779. V 3780 1891 T
  780. 50 W
  781. 1 0 0 C
  782. 472 0 0 Sc
  783. U
  784. 4 W
  785. 0 A
  786. U
  787. PSL_cliprestore
  788. 25 W
  789. 0 A
  790. 83 W
  791. N -42 0 M 0 784 D S
  792. N 7601 0 M 0 784 D S
  793. 1 A
  794. N -42 784 M 0 597 D S
  795. N 7601 784 M 0 597 D S
  796. 0 A
  797. N -42 1381 M 0 510 D S
  798. N 7601 1381 M 0 510 D S
  799. 1 A
  800. N -42 1891 M 0 475 D S
  801. N 7601 1891 M 0 475 D S
  802. 0 A
  803. N -42 2366 M 0 475 D S
  804. N 7601 2366 M 0 475 D S
  805. 1 A
  806. N -42 2841 M 0 510 D S
  807. N 7601 2841 M 0 510 D S
  808. 0 A
  809. N -42 3351 M 0 597 D S
  810. N 7601 3351 M 0 597 D S
  811. 1 A
  812. N -42 3948 M 0 784 D S
  813. N 7601 3948 M 0 784 D S
  814. 0 A
  815. N 0 -42 M 472 0 D S
  816. N 0 4774 M 472 0 D S
  817. 1 A
  818. N 472 -42 M 473 0 D S
  819. N 472 4774 M 473 0 D S
  820. 0 A
  821. N 945 -42 M 472 0 D S
  822. N 945 4774 M 472 0 D S
  823. 1 A
  824. N 1417 -42 M 473 0 D S
  825. N 1417 4774 M 473 0 D S
  826. 0 A
  827. N 1890 -42 M 472 0 D S
  828. N 1890 4774 M 472 0 D S
  829. 1 A
  830. N 2362 -42 M 473 0 D S
  831. N 2362 4774 M 473 0 D S
  832. 0 A
  833. N 2835 -42 M 472 0 D S
  834. N 2835 4774 M 472 0 D S
  835. 1 A
  836. N 3307 -42 M 473 0 D S
  837. N 3307 4774 M 473 0 D S
  838. 0 A
  839. N 3780 -42 M 472 0 D S
  840. N 3780 4774 M 472 0 D S
  841. 1 A
  842. N 4252 -42 M 472 0 D S
  843. N 4252 4774 M 472 0 D S
  844. 0 A
  845. N 4724 -42 M 473 0 D S
  846. N 4724 4774 M 473 0 D S
  847. 1 A
  848. N 5197 -42 M 472 0 D S
  849. N 5197 4774 M 472 0 D S
  850. 0 A
  851. N 5669 -42 M 473 0 D S
  852. N 5669 4774 M 473 0 D S
  853. 1 A
  854. N 6142 -42 M 472 0 D S
  855. N 6142 4774 M 472 0 D S
  856. 0 A
  857. N 6614 -42 M 473 0 D S
  858. N 6614 4774 M 473 0 D S
  859. 1 A
  860. N 7087 -42 M 472 0 D S
  861. N 7087 4774 M 472 0 D S
  862. 0 A
  863. 8 W
  864. N -83 0 M 7725 0 D S
  865. N -83 -83 M 7725 0 D S
  866. N 7559 -83 M 0 4899 D S
  867. N 7642 -83 M 0 4899 D S
  868. N 7642 4732 M -7725 0 D S
  869. N 7642 4816 M -7725 0 D S
  870. N 0 4816 M 0 -4899 D S
  871. N -83 4816 M 0 -4899 D S
  872. %%EndObject
  873. 0 A
  874. FQ
  875. O0
  876. 0 0 TM
  877. % PostScript produced by:
  878. %@GMT: gmt pstext -R60/300/-60/60 -JM16c -O -K -F+f14p
  879. %@PROJ: merc 60.00000000 300.00000000 -60.00000000 60.00000000 -13358338.895 13358338.895 -8362698.549 8362698.549 +proj=merc +lon_0=180 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  880. %%BeginObject PSL_Layer_2
  881. 0 setlinecap
  882. 0 setlinejoin
  883. 3.32550952342 setmiterlimit
  884. clipsave
  885. 0 0 M
  886. 7559 0 D
  887. 0 4732 D
  888. -7559 0 D
  889. P
  890. PSL_clip N
  891. 3150 2366 M PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  892. 233 F0
  893. (A) mc Z
  894. 3780 2841 M (A) mc Z
  895. 4409 2366 M (D) mc Z
  896. 3780 1891 M (A) mc Z
  897. PSL_cliprestore
  898. %%EndObject
  899. 0 A
  900. FQ
  901. O0
  902. 0 5669 TM
  903. % PostScript produced by:
  904. %@GMT: gmt psxy -R60/300/-60/60 -JM16c -Baf location.txt -Skifelse2/2c -O -K -Y12c
  905. %@PROJ: merc 60.00000000 300.00000000 -60.00000000 60.00000000 -13358338.895 13358338.895 -8362698.549 8362698.549 +proj=merc +lon_0=180 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  906. %%BeginObject PSL_Layer_3
  907. 0 setlinecap
  908. 0 setlinejoin
  909. 3.32550952342 setmiterlimit
  910. 8 W
  911. 0 A
  912. N 0 0 M 0 -83 D S
  913. N 0 4732 M 0 84 D S
  914. N 1890 0 M 0 -83 D S
  915. N 1890 4732 M 0 84 D S
  916. N 3780 0 M 0 -83 D S
  917. N 3780 4732 M 0 84 D S
  918. N 5669 0 M 0 -83 D S
  919. N 5669 4732 M 0 84 D S
  920. N 7559 0 M 0 -83 D S
  921. N 7559 4732 M 0 84 D S
  922. N 0 0 M -83 0 D S
  923. N 7559 0 M 83 0 D S
  924. N 0 2366 M -83 0 D S
  925. N 7559 2366 M 83 0 D S
  926. N 0 4732 M -83 0 D S
  927. N 7559 4732 M 83 0 D S
  928. 0 -167 M PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  929. 200 F0
  930. (60°) tc Z
  931. 0 4899 M (60°) bc Z
  932. 1890 -167 M (120°) tc Z
  933. 1890 4899 M (120°) bc Z
  934. 3780 -167 M (180°) tc Z
  935. 3780 4899 M (180°) bc Z
  936. 5669 -167 M (-120°) tc Z
  937. 5669 4899 M (-120°) bc Z
  938. 7559 -167 M (-60°) tc Z
  939. 7559 4899 M (-60°) bc Z
  940. -167 0 M (-60°) mr Z
  941. 7726 0 M (-60°) ml Z
  942. -167 2366 M (0°) mr Z
  943. 7726 2366 M (0°) ml Z
  944. -167 4732 M (60°) mr Z
  945. 7726 4732 M (60°) ml Z
  946. clipsave
  947. 0 0 M
  948. 7559 0 D
  949. 0 4732 D
  950. -7559 0 D
  951. P
  952. PSL_clip N
  953. V
  954. 4 W
  955. O1
  956. V 3150 2366 T
  957. 50 W
  958. 1 0 0 C
  959. 472 0 0 Sc
  960. U
  961. 4 W
  962. 0 A
  963. V 3780 2841 T
  964. 83 W
  965. 0 1 0 C
  966. 472 0 0 Sc
  967. U
  968. 4 W
  969. 0 A
  970. V 4409 2366 T
  971. 50 W
  972. 1 0 0 C
  973. 472 0 0 Sc
  974. U
  975. 4 W
  976. 0 A
  977. V 3780 1891 T
  978. 50 W
  979. 1 0 0 C
  980. 472 0 0 Sc
  981. U
  982. 4 W
  983. 0 A
  984. U
  985. PSL_cliprestore
  986. 25 W
  987. 0 A
  988. 83 W
  989. N -42 0 M 0 784 D S
  990. N 7601 0 M 0 784 D S
  991. 1 A
  992. N -42 784 M 0 597 D S
  993. N 7601 784 M 0 597 D S
  994. 0 A
  995. N -42 1381 M 0 510 D S
  996. N 7601 1381 M 0 510 D S
  997. 1 A
  998. N -42 1891 M 0 475 D S
  999. N 7601 1891 M 0 475 D S
  1000. 0 A
  1001. N -42 2366 M 0 475 D S
  1002. N 7601 2366 M 0 475 D S
  1003. 1 A
  1004. N -42 2841 M 0 510 D S
  1005. N 7601 2841 M 0 510 D S
  1006. 0 A
  1007. N -42 3351 M 0 597 D S
  1008. N 7601 3351 M 0 597 D S
  1009. 1 A
  1010. N -42 3948 M 0 784 D S
  1011. N 7601 3948 M 0 784 D S
  1012. 0 A
  1013. N 0 -42 M 472 0 D S
  1014. N 0 4774 M 472 0 D S
  1015. 1 A
  1016. N 472 -42 M 473 0 D S
  1017. N 472 4774 M 473 0 D S
  1018. 0 A
  1019. N 945 -42 M 472 0 D S
  1020. N 945 4774 M 472 0 D S
  1021. 1 A
  1022. N 1417 -42 M 473 0 D S
  1023. N 1417 4774 M 473 0 D S
  1024. 0 A
  1025. N 1890 -42 M 472 0 D S
  1026. N 1890 4774 M 472 0 D S
  1027. 1 A
  1028. N 2362 -42 M 473 0 D S
  1029. N 2362 4774 M 473 0 D S
  1030. 0 A
  1031. N 2835 -42 M 472 0 D S
  1032. N 2835 4774 M 472 0 D S
  1033. 1 A
  1034. N 3307 -42 M 473 0 D S
  1035. N 3307 4774 M 473 0 D S
  1036. 0 A
  1037. N 3780 -42 M 472 0 D S
  1038. N 3780 4774 M 472 0 D S
  1039. 1 A
  1040. N 4252 -42 M 472 0 D S
  1041. N 4252 4774 M 472 0 D S
  1042. 0 A
  1043. N 4724 -42 M 473 0 D S
  1044. N 4724 4774 M 473 0 D S
  1045. 1 A
  1046. N 5197 -42 M 472 0 D S
  1047. N 5197 4774 M 472 0 D S
  1048. 0 A
  1049. N 5669 -42 M 473 0 D S
  1050. N 5669 4774 M 473 0 D S
  1051. 1 A
  1052. N 6142 -42 M 472 0 D S
  1053. N 6142 4774 M 472 0 D S
  1054. 0 A
  1055. N 6614 -42 M 473 0 D S
  1056. N 6614 4774 M 473 0 D S
  1057. 1 A
  1058. N 7087 -42 M 472 0 D S
  1059. N 7087 4774 M 472 0 D S
  1060. 0 A
  1061. 8 W
  1062. N -83 0 M 7725 0 D S
  1063. N -83 -83 M 7725 0 D S
  1064. N 7559 -83 M 0 4899 D S
  1065. N 7642 -83 M 0 4899 D S
  1066. N 7642 4732 M -7725 0 D S
  1067. N 7642 4816 M -7725 0 D S
  1068. N 0 4816 M 0 -4899 D S
  1069. N -83 4816 M 0 -4899 D S
  1070. %%EndObject
  1071. 0 A
  1072. FQ
  1073. O0
  1074. 0 0 TM
  1075. % PostScript produced by:
  1076. %@GMT: gmt pstext -R60/300/-60/60 -JM16c -O -F+f14p
  1077. %@PROJ: merc 60.00000000 300.00000000 -60.00000000 60.00000000 -13358338.895 13358338.895 -8362698.549 8362698.549 +proj=merc +lon_0=180 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1078. %%BeginObject PSL_Layer_4
  1079. 0 setlinecap
  1080. 0 setlinejoin
  1081. 3.32550952342 setmiterlimit
  1082. clipsave
  1083. 0 0 M
  1084. 7559 0 D
  1085. 0 4732 D
  1086. -7559 0 D
  1087. P
  1088. PSL_clip N
  1089. 3150 2366 M PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1090. 233 F0
  1091. (C) mc Z
  1092. 3780 2841 M (B) mc Z
  1093. 4409 2366 M (C) mc Z
  1094. 3780 1891 M (C) mc Z
  1095. PSL_cliprestore
  1096. %%EndObject
  1097. grestore
  1098. PSL_movie_label_completion /PSL_movie_label_completion {} def
  1099. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  1100. %PSL_Begin_Trailer
  1101. %%PageTrailer
  1102. U
  1103. showpage
  1104. %%Trailer
  1105. end
  1106. %%EOF
Tip!

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

Comments

Loading...