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

spheres.ps 23 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.0.0a (CVS Jun 29 2011 19:19:05) [C4] Document from GMT_psxy
  5. %%Creator: GMT
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Wed Jun 29 23:18:04 2011
  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 F}!
  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. /Standard+_Encoding [
  114. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  115. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  116. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  117. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  118. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  119. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  120. /zero /one /two /three /four /five /six /seven
  121. /eight /nine /colon /semicolon /less /equal /greater /question
  122. /at /A /B /C /D /E /F /G
  123. /H /I /J /K /L /M /N /O
  124. /P /Q /R /S /T /U /V /W
  125. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  126. /quoteleft /a /b /c /d /e /f /g
  127. /h /i /j /k /l /m /n /o
  128. /p /q /r /s /t /u /v /w
  129. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  130. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  131. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  132. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  133. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  134. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  135. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  136. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  137. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  138. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  139. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  140. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  141. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  142. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  143. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  144. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  145. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  146. ] def
  147. /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
  148. /F0 {/Helvetica Y}!
  149. /F1 {/Helvetica-Bold Y}!
  150. /F2 {/Helvetica-Oblique Y}!
  151. /F3 {/Helvetica-BoldOblique Y}!
  152. /F4 {/Times-Roman Y}!
  153. /F5 {/Times-Bold Y}!
  154. /F6 {/Times-Italic Y}!
  155. /F7 {/Times-BoldItalic Y}!
  156. /F8 {/Courier Y}!
  157. /F9 {/Courier-Bold Y}!
  158. /F10 {/Courier-Oblique Y}!
  159. /F11 {/Courier-BoldOblique Y}!
  160. /F12 {/Symbol Y}!
  161. /F13 {/AvantGarde-Book Y}!
  162. /F14 {/AvantGarde-BookOblique Y}!
  163. /F15 {/AvantGarde-Demi Y}!
  164. /F16 {/AvantGarde-DemiOblique Y}!
  165. /F17 {/Bookman-Demi Y}!
  166. /F18 {/Bookman-DemiItalic Y}!
  167. /F19 {/Bookman-Light Y}!
  168. /F20 {/Bookman-LightItalic Y}!
  169. /F21 {/Helvetica-Narrow Y}!
  170. /F22 {/Helvetica-Narrow-Bold Y}!
  171. /F23 {/Helvetica-Narrow-Oblique Y}!
  172. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  173. /F25 {/NewCenturySchlbk-Roman Y}!
  174. /F26 {/NewCenturySchlbk-Italic Y}!
  175. /F27 {/NewCenturySchlbk-Bold Y}!
  176. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  177. /F29 {/Palatino-Roman Y}!
  178. /F30 {/Palatino-Italic Y}!
  179. /F31 {/Palatino-Bold Y}!
  180. /F32 {/Palatino-BoldItalic Y}!
  181. /F33 {/ZapfChancery-MediumItalic Y}!
  182. /F34 {/ZapfDingbats Y}!
  183. /F35 {/Ryumin-Light-EUC-H Y}!
  184. /F36 {/Ryumin-Light-EUC-V Y}!
  185. /F37 {/GothicBBB-Medium-EUC-H Y}!
  186. /F38 {/GothicBBB-Medium-EUC-V Y}!
  187. /PSL_pathtextdict 26 dict def
  188. /PSL_pathtext
  189. {PSL_pathtextdict begin
  190. /textheight exch def
  191. /just exch def
  192. /offset exch def
  193. /str exch def
  194. /pathdist 0 def
  195. /setdist offset def
  196. /charcount 0 def
  197. /justy just 4 idiv textheight mul 2 div neg def
  198. V flattenpath
  199. {movetoproc} {linetoproc}
  200. {curvetoproc} {closepathproc}
  201. pathforall
  202. U N
  203. end
  204. } def
  205. PSL_pathtextdict begin
  206. /movetoproc
  207. { /newy exch def /newx exch def
  208. /firstx newx def /firsty newy def
  209. /ovr 0 def
  210. newx newy transform
  211. /cpy exch def /cpx exch def
  212. } def
  213. /linetoproc
  214. { /oldx newx def /oldy newy def
  215. /newy exch def /newx exch def
  216. /dx newx oldx sub def
  217. /dy newy oldy sub def
  218. /dist dx dup mul dy dup mul add sqrt def
  219. dist 0 ne
  220. { /dsx dx dist div ovr mul def
  221. /dsy dy dist div ovr mul def
  222. oldx dsx add oldy dsy add transform
  223. /cpy exch def /cpx exch def
  224. /pathdist pathdist dist add def
  225. {setdist pathdist le
  226. {charcount str length lt
  227. {setchar} {exit} ifelse}
  228. { /ovr setdist pathdist sub def
  229. exit}
  230. ifelse
  231. } loop
  232. } if
  233. } def
  234. /curvetoproc
  235. { (ERROR: No curveto's after flattenpath!)
  236. print
  237. } def
  238. /closepathproc
  239. {firstx firsty linetoproc
  240. firstx firsty movetoproc
  241. } def
  242. /setchar
  243. { /char str charcount 1 getinterval def
  244. /charcount charcount 1 add def
  245. /charwidth char stringwidth pop def
  246. V cpx cpy itransform T
  247. dy dx atan R
  248. 0 justy M
  249. char show
  250. 0 justy neg G
  251. currentpoint transform
  252. /cpy exch def /cpx exch def
  253. U /setdist setdist charwidth add def
  254. } def
  255. end
  256. /PSL_curved_text_labels
  257. { /bits exch def
  258. /PSL_clippath bits 1 and 1 eq def
  259. /PSL_placetext bits 2 and 0 eq def
  260. /PSL_strokeline bits 4 and 4 eq def
  261. /PSL_firstcall bits 32 and 32 eq def
  262. /PSL_lastcall bits 64 and 64 eq def
  263. /PSL_fillbox bits 128 and 128 eq def
  264. /PSL_drawbox bits 256 and 256 eq def
  265. /PSL_n1 PSL_n 1 sub def
  266. /PSL_m1 PSL_m 1 sub def
  267. /PSL_usebox PSL_fillbox PSL_drawbox or def
  268. PSL_CT_calcstringwidth
  269. PSL_CT_calclinedist
  270. PSL_CT_addcutpoints
  271. PSL_clippath PSL_firstcall and
  272. {clipsave N clippath} if
  273. PSL_setlinepen
  274. /PSL_nn1 PSL_nn 1 sub def
  275. /n 0 def
  276. /k 0 def
  277. /j 0 def
  278. /PSL_seg 0 def
  279. /PSL_xp PSL_nn array def
  280. /PSL_yp PSL_nn array def
  281. PSL_xp 0 PSL_xx 0 get put
  282. PSL_yp 0 PSL_yy 0 get put
  283. 1 1 PSL_nn1
  284. { /i exch def
  285. /node_type PSL_kind i get def
  286. /j j 1 add def
  287. PSL_xp j PSL_xx i get put
  288. PSL_yp j PSL_yy i get put
  289. node_type 1 eq
  290. {n 0 eq
  291. {PSL_CT_drawline}
  292. { PSL_CT_reversepath
  293. PSL_CT_textline} ifelse
  294. /j 0 def
  295. PSL_xp j PSL_xx i get put
  296. PSL_yp j PSL_yy i get put
  297. } if
  298. } for
  299. n 0 eq {PSL_CT_drawline} if
  300. PSL_lastcall
  301. {PSL_clippath
  302. {PSL_clip} if N
  303. } if
  304. } def
  305. /PSL_CT_textline
  306. {PSL_placetext
  307. {PSL_clippath
  308. {PSL_CT_clippath} {PSL_CT_placelabel} ifelse
  309. } if
  310. /n 0 def /k k 1 add def PSL_setlinepen
  311. } def
  312. /PSL_CT_calcstringwidth
  313. { /PSL_width PSL_m array def
  314. 0 1 PSL_m1
  315. { /i exch def
  316. PSL_width i PSL_str i get stringwidth pop put
  317. } for
  318. } def
  319. /PSL_CT_calclinedist
  320. { /PSL_newx PSL_x 0 get def
  321. /PSL_newy PSL_y 0 get def
  322. /dist 0.0 def
  323. /PSL_dist PSL_n array def
  324. PSL_dist 0 0.0 put
  325. 1 1 PSL_n1
  326. { /i exch def
  327. /PSL_oldx PSL_newx def
  328. /PSL_oldy PSL_newy def
  329. /PSL_newx PSL_x i get def
  330. /PSL_newy PSL_y i get def
  331. /dx PSL_newx PSL_oldx sub def
  332. /dy PSL_newy PSL_oldy sub def
  333. /dist dist dx dx mul dy dy mul add sqrt add def
  334. PSL_dist i dist put
  335. } for
  336. } def
  337. /PSL_CT_addcutpoints
  338. { /k 0 def
  339. /PSL_nc PSL_m 2 mul 1 add def
  340. /PSL_cuts PSL_nc array def
  341. /PSL_nc1 PSL_nc 1 sub def
  342. 0 1 PSL_m1
  343. { /i exch def
  344. /dist PSL_dist PSL_node i get get def
  345. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  346. PSL_cuts k dist halfwidth sub put
  347. /k k 1 add def
  348. PSL_cuts k dist halfwidth add put
  349. /k k 1 add def
  350. } for
  351. PSL_cuts k 100000.0 put
  352. /PSL_nn PSL_n PSL_m 2 mul add def
  353. /PSL_xx PSL_nn array def
  354. /PSL_yy PSL_nn array def
  355. /PSL_kind PSL_nn array def
  356. /j 0 def
  357. /k 0 def
  358. /dist 0.0 def
  359. 0 1 PSL_n1
  360. { /i exch def
  361. /last_dist dist def
  362. /dist PSL_dist i get def
  363. k 1 PSL_nc1
  364. { /kk exch def
  365. /this_cut PSL_cuts kk get def
  366. dist this_cut gt
  367. { /ds dist last_dist sub def
  368. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  369. /i1 i 0 eq {0} {i 1 sub} ifelse def
  370. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  371. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  372. PSL_kind j 1 put
  373. /j j 1 add def
  374. /k k 1 add def
  375. } if
  376. } for
  377. dist PSL_cuts k get le
  378. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  379. PSL_kind j 0 put
  380. /j j 1 add def
  381. } if
  382. } for
  383. } def
  384. /PSL_CT_reversepath
  385. {PSL_xp j get PSL_xp 0 get lt
  386. {0 1 j 2 idiv
  387. { /left exch def
  388. /right j left sub def
  389. /tmp PSL_xp left get def
  390. PSL_xp left PSL_xp right get put
  391. PSL_xp right tmp put
  392. /tmp PSL_yp left get def
  393. PSL_yp left PSL_yp right get put
  394. PSL_yp right tmp put
  395. } for
  396. } if
  397. } def
  398. /PSL_CT_placelabel
  399. {
  400. PSL_usebox
  401. {PSL_CT_clippath
  402. PSL_fillbox
  403. {V PSL_setboxrgb fill U} if
  404. PSL_drawbox
  405. {PSL_setboxpen S} if N
  406. } if
  407. PSL_settxtrgb PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height PSL_pathtext
  408. } def
  409. /PSL_CT_clippath
  410. {
  411. /H PSL_height 2 div PSL_gap_y add def
  412. /xoff j 1 add array def
  413. /yoff j 1 add array def
  414. /angle 0 def
  415. 0 1 j {
  416. /ii exch def
  417. /x PSL_xp ii get def
  418. /y PSL_yp ii get def
  419. ii 0 eq {
  420. /x1 PSL_xp 1 get def
  421. /y1 PSL_yp 1 get def
  422. /dx x1 x sub def
  423. /dy y1 y sub def
  424. }
  425. { /i1 ii 1 sub def
  426. /x1 PSL_xp i1 get def
  427. /y1 PSL_yp i1 get def
  428. /dx x x1 sub def
  429. /dy y y1 sub def
  430. } ifelse
  431. dx 0.0 ne dy 0.0 ne and
  432. { /angle dy dx atan 90 add def} if
  433. /sina angle sin def
  434. /cosa angle cos def
  435. xoff ii H cosa mul put
  436. yoff ii H sina mul put
  437. } for
  438. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  439. 1 1 j {
  440. /ii exch def
  441. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  442. } for
  443. j -1 0 {
  444. /ii exch def
  445. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  446. } for P
  447. } def
  448. /PSL_CT_drawline
  449. {
  450. /str 20 string def
  451. PSL_strokeline
  452. {PSL_CT_placeline PSL_setlinepen S} if
  453. /PSL_seg PSL_seg 1 add def
  454. /n 1 def
  455. } def
  456. /PSL_CT_placeline
  457. {PSL_xp 0 get PSL_yp 0 get M
  458. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  459. } def
  460. /PSL_straight_text_labels
  461. {
  462. /bits exch def
  463. /PSL_clippath bits 1 and 0 eq def
  464. /PSL_rounded bits 16 and 16 eq def
  465. /PSL_fillbox bits 128 and 128 eq def
  466. /PSL_drawbox bits 256 and 256 eq def
  467. /PSL_m1 PSL_m 1 sub def
  468. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  469. /PSL_justy PSL_just 4 idiv PSL_height mul 2 div neg def
  470. /PSL_usebox PSL_fillbox PSL_drawbox or def
  471. PSL_clippath
  472. {PSL_ST_clippath}
  473. {PSL_usebox {PSL_ST_clippath} if
  474. PSL_ST_placelabel
  475. } ifelse
  476. } def
  477. /PSL_ST_placelabel
  478. {PSL_settxtrgb
  479. 0 1 PSL_m1
  480. { /k exch def
  481. /xp PSL_txt_x k get def
  482. /yp PSL_txt_y k get def
  483. V PSL_txt_x k get PSL_txt_y k get T
  484. PSL_angle k get R
  485. /BoxW PSL_str k get stringwidth pop def
  486. BoxW PSL_justx mul PSL_justy M
  487. PSL_str k get show
  488. U
  489. } for
  490. } def
  491. /PSL_ST_clippath
  492. {N
  493. PSL_usebox not {clipsave clippath} if
  494. PSL_rounded {PSL_ST_clippath_round} {PSL_ST_clippath_rect} ifelse
  495. PSL_usebox
  496. {PSL_fillbox
  497. {V PSL_setboxrgb fill U} if
  498. PSL_drawbox
  499. {PSL_setboxpen S} if N
  500. }
  501. {PSL_clip
  502. } ifelse
  503. N
  504. } def
  505. /PSL_ST_clippath_rect
  506. {
  507. /BoxH PSL_height PSL_gap_y 2 mul add def
  508. /DelY BoxH BoxH 0 3 array astore def
  509. 0 1 PSL_m1
  510. { /k exch def
  511. /xp PSL_txt_x k get def
  512. /yp PSL_txt_y k get def
  513. /MAT PSL_angle k get matrix R def
  514. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  515. /x0 0 BoxW PSL_justx mul add def
  516. /y0 0 PSL_justy add PSL_gap_y sub def
  517. /DelX 0 BoxW BoxW 3 array astore def
  518. x0 y0 MAT transform
  519. /dy exch def /dx exch def
  520. xp dx add yp dy add M
  521. 0 1 2
  522. {
  523. /ii exch def
  524. x0 DelX ii get add y0 DelY ii get add MAT transform
  525. /dy exch def /dx exch def
  526. xp dx add yp dy add L
  527. } for P
  528. } for
  529. } def
  530. /PSL_ST_clippath_round
  531. {
  532. /PSL_justy2 PSL_just 4 idiv 2 div neg def
  533. /BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  534. /BoxH PSL_height PSL_gap_y 2 mul add def
  535. /y0 PSL_height PSL_gap_y 2 mul add PSL_justy2 mul def
  536. 0 1 PSL_m1
  537. { /k exch def
  538. /xp PSL_txt_x k get def
  539. /yp PSL_txt_y k get def
  540. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  541. /x0 BoxW PSL_justx mul def
  542. xp yp T PSL_angle k get R x0 y0 T
  543. BoxR 0 M
  544. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct P
  545. x0 neg y0 neg T PSL_angle k get neg R xp neg yp neg T
  546. } for
  547. } def
  548. /PSL_nclip 0 def
  549. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  550. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  551. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  552. %%EndProlog
  553. %%BeginSetup
  554. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  555. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  556. %%EndSetup
  557. %%Page: 1 1
  558. %%BeginPageSetup
  559. V 0.06 0.06 scale
  560. %%EndPageSetup
  561. /PSL_page_xsize 10200 def
  562. /PSL_page_ysize 13200 def
  563. 0 A
  564. FQ
  565. O0
  566. 1200 1200 TM
  567. % PostScript produced by:
  568. %%GMT: c:\progs_cygw\GMTdev\GMT5\WIN64\bin\psxy.exe -R-50/50/0/0.125 -JX14c/10c -B10f5/.01WSne:.Anomaly (mGal): -W1p -P -K
  569. %%PROJ: xy -50.00000000 50.00000000 0.00000000 0.12500000 -50.000 50.000 0.000 0.125 +xy +a=6378137.000 +b=6356752.314245
  570. 0 setlinecap
  571. 0 setlinejoin
  572. 3.32551 setmiterlimit
  573. 17 W
  574. 0 110 M
  575. 132 13 D
  576. 265 33 D
  577. 132 21 D
  578. 132 24 D
  579. 133 29 D
  580. 132 35 D
  581. 66 19 D
  582. 66 22 D
  583. 133 50 D
  584. 66 28 D
  585. 66 32 D
  586. 66 35 D
  587. 66 39 D
  588. 66 43 D
  589. 66 48 D
  590. 67 53 D
  591. 66 59 D
  592. 66 65 D
  593. 66 74 D
  594. 66 82 D
  595. 66 91 D
  596. 66 102 D
  597. 67 114 D
  598. 66 127 D
  599. 66 141 D
  600. 66 156 D
  601. 66 173 D
  602. 66 190 D
  603. 66 208 D
  604. 67 225 D
  605. 66 240 D
  606. 66 254 D
  607. 198 792 D
  608. 66 249 D
  609. 67 225 D
  610. 66 190 D
  611. 66 145 D
  612. 66 90 D
  613. 66 31 D
  614. 66 -31 D
  615. 66 -90 D
  616. 67 -145 D
  617. 66 -190 D
  618. 66 -225 D
  619. 66 -249 D
  620. 198 -792 D
  621. 67 -254 D
  622. 66 -240 D
  623. 66 -225 D
  624. 66 -208 D
  625. 66 -190 D
  626. 66 -173 D
  627. 66 -156 D
  628. 66 -141 D
  629. 67 -127 D
  630. 66 -114 D
  631. 66 -102 D
  632. 66 -91 D
  633. 66 -82 D
  634. 66 -74 D
  635. 66 -65 D
  636. 67 -59 D
  637. 66 -53 D
  638. 66 -48 D
  639. 66 -43 D
  640. 66 -39 D
  641. 66 -35 D
  642. 66 -32 D
  643. 133 -54 D
  644. 66 -24 D
  645. 66 -22 D
  646. 132 -37 D
  647. 66 -17 D
  648. 133 -29 D
  649. 198 -35 D
  650. 132 -19 D
  651. 199 -24 D
  652. 132 -13 D
  653. S
  654. 2 setlinecap
  655. /MM {neg exch M} def
  656. /PSL_A0_y 83 def
  657. /PSL_A1_y 0 def
  658. 25 W
  659. 0 4724 M 0 -4724 D S
  660. 8 W
  661. 0 0 M -83 0 D S
  662. 0 378 M -83 0 D S
  663. 0 756 M -83 0 D S
  664. 0 1134 M -83 0 D S
  665. 0 1512 M -83 0 D S
  666. 0 1890 M -83 0 D S
  667. 0 2268 M -83 0 D S
  668. 0 2646 M -83 0 D S
  669. 0 3024 M -83 0 D S
  670. 0 3402 M -83 0 D S
  671. 0 3780 M -83 0 D S
  672. 0 4157 M -83 0 D S
  673. 0 4535 M -83 0 D S
  674. /PSL_AH0 0
  675. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  676. 200 F0
  677. (0.00) sw mx
  678. (0.01) sw mx
  679. (0.02) sw mx
  680. (0.03) sw mx
  681. (0.04) sw mx
  682. (0.05) sw mx
  683. (0.06) sw mx
  684. (0.07) sw mx
  685. (0.08) sw mx
  686. (0.09) sw mx
  687. (0.10) sw mx
  688. (0.11) sw mx
  689. (0.12) sw mx
  690. def
  691. /PSL_A0_y PSL_A0_y 83 add def
  692. 0 PSL_A0_y MM
  693. (0.00) mr Z
  694. 378 PSL_A0_y MM
  695. (0.01) mr Z
  696. 756 PSL_A0_y MM
  697. (0.02) mr Z
  698. 1134 PSL_A0_y MM
  699. (0.03) mr Z
  700. 1512 PSL_A0_y MM
  701. (0.04) mr Z
  702. 1890 PSL_A0_y MM
  703. (0.05) mr Z
  704. 2268 PSL_A0_y MM
  705. (0.06) mr Z
  706. 2646 PSL_A0_y MM
  707. (0.07) mr Z
  708. 3024 PSL_A0_y MM
  709. (0.08) mr Z
  710. 3402 PSL_A0_y MM
  711. (0.09) mr Z
  712. 3780 PSL_A0_y MM
  713. (0.10) mr Z
  714. 4157 PSL_A0_y MM
  715. (0.11) mr Z
  716. 4535 PSL_A0_y MM
  717. (0.12) mr Z
  718. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  719. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  720. 6614 0 T
  721. /MM {exch M} def
  722. /PSL_A0_y 83 def
  723. /PSL_A1_y 0 def
  724. 25 W
  725. 0 4724 M 0 -4724 D S
  726. 8 W
  727. 0 0 M 83 0 D S
  728. 0 378 M 83 0 D S
  729. 0 756 M 83 0 D S
  730. 0 1134 M 83 0 D S
  731. 0 1512 M 83 0 D S
  732. 0 1890 M 83 0 D S
  733. 0 2268 M 83 0 D S
  734. 0 2646 M 83 0 D S
  735. 0 3024 M 83 0 D S
  736. 0 3402 M 83 0 D S
  737. 0 3780 M 83 0 D S
  738. 0 4157 M 83 0 D S
  739. 0 4535 M 83 0 D S
  740. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  741. -6614 0 T
  742. /MM {neg M} def
  743. /PSL_A0_y 83 def
  744. /PSL_A1_y 0 def
  745. 25 W
  746. 0 0 M 6614 0 D S
  747. 8 W
  748. 0 0 M 0 -83 D S
  749. 661 0 M 0 -83 D S
  750. 1323 0 M 0 -83 D S
  751. 1984 0 M 0 -83 D S
  752. 2646 0 M 0 -83 D S
  753. 3307 0 M 0 -83 D S
  754. 3969 0 M 0 -83 D S
  755. 4630 0 M 0 -83 D S
  756. 5291 0 M 0 -83 D S
  757. 5953 0 M 0 -83 D S
  758. 6614 0 M 0 -83 D S
  759. /PSL_AH0 0
  760. (-50) sh mx
  761. (-40) sh mx
  762. (-30) sh mx
  763. (-20) sh mx
  764. (-10) sh mx
  765. (0) sh mx
  766. (10) sh mx
  767. (20) sh mx
  768. (30) sh mx
  769. (40) sh mx
  770. (50) sh mx
  771. def
  772. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  773. 0 PSL_A0_y MM
  774. (-50) bc Z
  775. 661 PSL_A0_y MM
  776. (-40) bc Z
  777. 1323 PSL_A0_y MM
  778. (-30) bc Z
  779. 1984 PSL_A0_y MM
  780. (-20) bc Z
  781. 2646 PSL_A0_y MM
  782. (-10) bc Z
  783. 3307 PSL_A0_y MM
  784. (0) bc Z
  785. 3969 PSL_A0_y MM
  786. (10) bc Z
  787. 4630 PSL_A0_y MM
  788. (20) bc Z
  789. 5291 PSL_A0_y MM
  790. (30) bc Z
  791. 5953 PSL_A0_y MM
  792. (40) bc Z
  793. 6614 PSL_A0_y MM
  794. (50) bc Z
  795. 331 0 M 0 -42 D S
  796. 992 0 M 0 -42 D S
  797. 1654 0 M 0 -42 D S
  798. 2315 0 M 0 -42 D S
  799. 2976 0 M 0 -42 D S
  800. 3638 0 M 0 -42 D S
  801. 4299 0 M 0 -42 D S
  802. 4961 0 M 0 -42 D S
  803. 5622 0 M 0 -42 D S
  804. 6283 0 M 0 -42 D S
  805. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  806. 0 4724 T
  807. /MM {M} def
  808. /PSL_A0_y 83 def
  809. /PSL_A1_y 0 def
  810. 25 W
  811. 0 0 M 6614 0 D S
  812. 8 W
  813. 0 0 M 0 83 D S
  814. 661 0 M 0 83 D S
  815. 1323 0 M 0 83 D S
  816. 1984 0 M 0 83 D S
  817. 2646 0 M 0 83 D S
  818. 3307 0 M 0 83 D S
  819. 3969 0 M 0 83 D S
  820. 4630 0 M 0 83 D S
  821. 5291 0 M 0 83 D S
  822. 5953 0 M 0 83 D S
  823. 6614 0 M 0 83 D S
  824. 331 0 M 0 42 D S
  825. 992 0 M 0 42 D S
  826. 1654 0 M 0 42 D S
  827. 2315 0 M 0 42 D S
  828. 2976 0 M 0 42 D S
  829. 3638 0 M 0 42 D S
  830. 4299 0 M 0 42 D S
  831. 4961 0 M 0 42 D S
  832. 5622 0 M 0 42 D S
  833. 6283 0 M 0 42 D S
  834. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  835. 0 -4724 T
  836. 0 setlinecap
  837. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  838. 3307 4724 PSL_H_y add M
  839. 400 F0
  840. (Anomaly \(mGal\)) bc Z
  841. 0 A
  842. FQ
  843. O0
  844. 0 0 TM
  845. % PostScript produced by:
  846. %%GMT: c:\progs_cygw\GMTdev\GMT5\WIN64\bin\psxy.exe -R-50/50/0/0.125 -JX14c/10c -Sc.1c -G0 -O -K
  847. %%PROJ: xy -50.00000000 50.00000000 0.00000000 0.12500000 -50.000 50.000 0.000 0.125 +xy +a=6378137.000 +b=6356752.314245
  848. 0 setlinecap
  849. 0 setlinejoin
  850. 3.32551 setmiterlimit
  851. clipsave
  852. 0 0 M
  853. 6614 0 D
  854. 0 4724 D
  855. -6614 0 D
  856. PSL_eoclip N
  857. 4 W
  858. {0 A} FS
  859. 24 0 110 Sc
  860. 24 66 117 Sc
  861. 24 132 123 Sc
  862. 24 198 131 Sc
  863. 24 265 139 Sc
  864. 24 331 147 Sc
  865. 24 397 156 Sc
  866. 24 463 166 Sc
  867. 24 529 177 Sc
  868. 24 595 189 Sc
  869. 24 661 201 Sc
  870. 24 728 215 Sc
  871. 24 794 230 Sc
  872. 24 860 247 Sc
  873. 24 926 265 Sc
  874. 24 992 284 Sc
  875. 24 1058 306 Sc
  876. 24 1124 330 Sc
  877. 24 1191 356 Sc
  878. 24 1257 384 Sc
  879. 24 1323 416 Sc
  880. 24 1389 451 Sc
  881. 24 1455 490 Sc
  882. 24 1521 533 Sc
  883. 24 1587 581 Sc
  884. 24 1654 634 Sc
  885. 24 1720 693 Sc
  886. 24 1786 758 Sc
  887. 24 1852 832 Sc
  888. 24 1918 914 Sc
  889. 24 1984 1005 Sc
  890. 24 2050 1107 Sc
  891. 24 2117 1221 Sc
  892. 24 2183 1348 Sc
  893. 24 2249 1489 Sc
  894. 24 2315 1645 Sc
  895. 24 2381 1818 Sc
  896. 24 2447 2008 Sc
  897. 24 2513 2216 Sc
  898. 24 2580 2441 Sc
  899. 24 2646 2681 Sc
  900. 24 2712 2935 Sc
  901. 24 2778 3198 Sc
  902. 24 2844 3464 Sc
  903. 24 2910 3727 Sc
  904. 24 2976 3976 Sc
  905. 24 3043 4201 Sc
  906. 24 3109 4391 Sc
  907. 24 3175 4536 Sc
  908. 24 3241 4626 Sc
  909. 24 3307 4657 Sc
  910. 24 3373 4626 Sc
  911. 24 3439 4536 Sc
  912. 24 3506 4391 Sc
  913. 24 3572 4201 Sc
  914. 24 3638 3976 Sc
  915. 24 3704 3727 Sc
  916. 24 3770 3464 Sc
  917. 24 3836 3198 Sc
  918. 24 3902 2935 Sc
  919. 24 3969 2681 Sc
  920. 24 4035 2441 Sc
  921. 24 4101 2216 Sc
  922. 24 4167 2008 Sc
  923. 24 4233 1818 Sc
  924. 24 4299 1645 Sc
  925. 24 4365 1489 Sc
  926. 24 4431 1348 Sc
  927. 24 4498 1221 Sc
  928. 24 4564 1107 Sc
  929. 24 4630 1005 Sc
  930. 24 4696 914 Sc
  931. 24 4762 832 Sc
  932. 24 4828 758 Sc
  933. 24 4894 693 Sc
  934. 24 4961 634 Sc
  935. 24 5027 581 Sc
  936. 24 5093 533 Sc
  937. 24 5159 490 Sc
  938. 24 5225 451 Sc
  939. 24 5291 416 Sc
  940. 24 5357 384 Sc
  941. 24 5424 356 Sc
  942. 24 5490 330 Sc
  943. 24 5556 306 Sc
  944. 24 5622 284 Sc
  945. 24 5688 265 Sc
  946. 24 5754 247 Sc
  947. 24 5820 230 Sc
  948. 24 5887 215 Sc
  949. 24 5953 201 Sc
  950. 24 6019 189 Sc
  951. 24 6085 177 Sc
  952. 24 6151 166 Sc
  953. 24 6217 156 Sc
  954. 24 6283 147 Sc
  955. 24 6350 139 Sc
  956. 24 6416 131 Sc
  957. 24 6482 123 Sc
  958. 24 6548 117 Sc
  959. 24 6614 110 Sc
  960. PSL_cliprestore
  961. 0 A
  962. FQ
  963. O0
  964. 0 0 TM
  965. % PostScript produced by:
  966. %%GMT: c:\progs_cygw\GMTdev\GMT5\WIN64\bin\psxy.exe ztmp.dat -R-50/50/0/0.125 -JX14c/10c -W1p,200/0/0 -O
  967. %%PROJ: xy -50.00000000 50.00000000 0.00000000 0.12500000 -50.000 50.000 0.000 0.125 +xy +a=6378137.000 +b=6356752.314245
  968. 0 setlinecap
  969. 0 setlinejoin
  970. 3.32551 setmiterlimit
  971. 17 W
  972. 0.784 0 0 C
  973. 0 111 M
  974. 265 29 D
  975. 198 28 D
  976. 132 22 D
  977. 133 27 D
  978. 66 15 D
  979. 132 35 D
  980. 66 20 D
  981. 66 22 D
  982. 133 50 D
  983. 66 29 D
  984. 66 32 D
  985. 66 35 D
  986. 66 40 D
  987. 66 43 D
  988. 66 48 D
  989. 67 54 D
  990. 66 59 D
  991. 66 67 D
  992. 66 74 D
  993. 66 82 D
  994. 66 92 D
  995. 66 103 D
  996. 67 115 D
  997. 66 128 D
  998. 66 142 D
  999. 66 158 D
  1000. 66 175 D
  1001. 66 192 D
  1002. 66 209 D
  1003. 67 227 D
  1004. 66 242 D
  1005. 66 256 D
  1006. 198 798 D
  1007. 66 251 D
  1008. 67 226 D
  1009. 66 192 D
  1010. 66 146 D
  1011. 66 91 D
  1012. 66 31 D
  1013. 66 -31 D
  1014. 66 -91 D
  1015. 67 -146 D
  1016. 66 -192 D
  1017. 66 -226 D
  1018. 66 -251 D
  1019. 198 -798 D
  1020. 67 -256 D
  1021. 66 -242 D
  1022. 66 -227 D
  1023. 66 -209 D
  1024. 66 -192 D
  1025. 66 -175 D
  1026. 66 -158 D
  1027. 66 -142 D
  1028. 67 -128 D
  1029. 66 -115 D
  1030. 66 -103 D
  1031. 66 -92 D
  1032. 66 -82 D
  1033. 66 -74 D
  1034. 66 -67 D
  1035. 67 -59 D
  1036. 66 -54 D
  1037. 66 -48 D
  1038. 66 -43 D
  1039. 66 -40 D
  1040. 66 -35 D
  1041. 66 -32 D
  1042. 67 -29 D
  1043. 66 -26 D
  1044. 66 -24 D
  1045. 66 -22 D
  1046. 66 -20 D
  1047. 132 -35 D
  1048. 199 -42 D
  1049. 198 -32 D
  1050. 199 -26 D
  1051. 198 -21 D
  1052. S
  1053. %%PageTrailer
  1054. U
  1055. showpage
  1056. %%Trailer
  1057. end
  1058. %%EOF
Tip!

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

Comments

Loading...