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

pattern.ps 37 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612 792
  4. %%Title: GMT v5.0.0_r9428:9430M [64-bit] Document from GMT_grdview
  5. %%Creator: GMT
  6. %%For: pwessel
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Fri Nov 18 15:33:12 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 0 40 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. /F39 {/LinBiolinumO Y}!
  188. /PSL_pathtextdict 26 dict def
  189. /PSL_pathtext
  190. {PSL_pathtextdict begin
  191. /textheight exch def
  192. /just exch def
  193. /offset exch def
  194. /str exch def
  195. /pathdist 0 def
  196. /setdist offset def
  197. /charcount 0 def
  198. /justy just 4 idiv textheight mul 2 div neg def
  199. V flattenpath
  200. {movetoproc} {linetoproc}
  201. {curvetoproc} {closepathproc}
  202. pathforall
  203. U N
  204. end
  205. } def
  206. PSL_pathtextdict begin
  207. /movetoproc
  208. { /newy exch def /newx exch def
  209. /firstx newx def /firsty newy def
  210. /ovr 0 def
  211. newx newy transform
  212. /cpy exch def /cpx exch def
  213. } def
  214. /linetoproc
  215. { /oldx newx def /oldy newy def
  216. /newy exch def /newx exch def
  217. /dx newx oldx sub def
  218. /dy newy oldy sub def
  219. /dist dx dup mul dy dup mul add sqrt def
  220. dist 0 ne
  221. { /dsx dx dist div ovr mul def
  222. /dsy dy dist div ovr mul def
  223. oldx dsx add oldy dsy add transform
  224. /cpy exch def /cpx exch def
  225. /pathdist pathdist dist add def
  226. {setdist pathdist le
  227. {charcount str length lt
  228. {setchar} {exit} ifelse}
  229. { /ovr setdist pathdist sub def
  230. exit}
  231. ifelse
  232. } loop
  233. } if
  234. } def
  235. /curvetoproc
  236. { (ERROR: No curveto's after flattenpath!)
  237. print
  238. } def
  239. /closepathproc
  240. {firstx firsty linetoproc
  241. firstx firsty movetoproc
  242. } def
  243. /setchar
  244. { /char str charcount 1 getinterval def
  245. /charcount charcount 1 add def
  246. /charwidth char stringwidth pop def
  247. V cpx cpy itransform T
  248. dy dx atan R
  249. 0 justy M
  250. char show
  251. 0 justy neg G
  252. currentpoint transform
  253. /cpy exch def /cpx exch def
  254. U /setdist setdist charwidth add def
  255. } def
  256. end
  257. /PSL_curved_text_labels
  258. { /bits exch def
  259. /PSL_clippath bits 1 and 1 eq def
  260. /PSL_placetext bits 2 and 0 eq def
  261. /PSL_strokeline bits 4 and 4 eq def
  262. /PSL_firstcall bits 32 and 32 eq def
  263. /PSL_lastcall bits 64 and 64 eq def
  264. /PSL_fillbox bits 128 and 128 eq def
  265. /PSL_drawbox bits 256 and 256 eq def
  266. /PSL_n1 PSL_n 1 sub def
  267. /PSL_m1 PSL_m 1 sub def
  268. /PSL_usebox PSL_fillbox PSL_drawbox or def
  269. PSL_CT_calcstringwidth
  270. PSL_CT_calclinedist
  271. PSL_CT_addcutpoints
  272. PSL_clippath PSL_firstcall and
  273. {clipsave N clippath} if
  274. PSL_setlinepen
  275. /PSL_nn1 PSL_nn 1 sub def
  276. /n 0 def
  277. /k 0 def
  278. /j 0 def
  279. /PSL_seg 0 def
  280. /PSL_xp PSL_nn array def
  281. /PSL_yp PSL_nn array def
  282. PSL_xp 0 PSL_xx 0 get put
  283. PSL_yp 0 PSL_yy 0 get put
  284. 1 1 PSL_nn1
  285. { /i exch def
  286. /node_type PSL_kind i get def
  287. /j j 1 add def
  288. PSL_xp j PSL_xx i get put
  289. PSL_yp j PSL_yy i get put
  290. node_type 1 eq
  291. {n 0 eq
  292. {PSL_CT_drawline}
  293. { PSL_CT_reversepath
  294. PSL_CT_textline} ifelse
  295. /j 0 def
  296. PSL_xp j PSL_xx i get put
  297. PSL_yp j PSL_yy i get put
  298. } if
  299. } for
  300. n 0 eq {PSL_CT_drawline} if
  301. PSL_lastcall
  302. {PSL_clippath
  303. {PSL_clip} if N
  304. } if
  305. } def
  306. /PSL_CT_textline
  307. {PSL_placetext
  308. {PSL_clippath
  309. {PSL_CT_clippath} {PSL_CT_placelabel} ifelse
  310. } if
  311. /n 0 def /k k 1 add def PSL_setlinepen
  312. } def
  313. /PSL_CT_calcstringwidth
  314. { /PSL_width PSL_m array def
  315. 0 1 PSL_m1
  316. { /i exch def
  317. PSL_width i PSL_str i get stringwidth pop put
  318. } for
  319. } def
  320. /PSL_CT_calclinedist
  321. { /PSL_newx PSL_x 0 get def
  322. /PSL_newy PSL_y 0 get def
  323. /dist 0.0 def
  324. /PSL_dist PSL_n array def
  325. PSL_dist 0 0.0 put
  326. 1 1 PSL_n1
  327. { /i exch def
  328. /PSL_oldx PSL_newx def
  329. /PSL_oldy PSL_newy def
  330. /PSL_newx PSL_x i get def
  331. /PSL_newy PSL_y i get def
  332. /dx PSL_newx PSL_oldx sub def
  333. /dy PSL_newy PSL_oldy sub def
  334. /dist dist dx dx mul dy dy mul add sqrt add def
  335. PSL_dist i dist put
  336. } for
  337. } def
  338. /PSL_CT_addcutpoints
  339. { /k 0 def
  340. /PSL_nc PSL_m 2 mul 1 add def
  341. /PSL_cuts PSL_nc array def
  342. /PSL_nc1 PSL_nc 1 sub def
  343. 0 1 PSL_m1
  344. { /i exch def
  345. /dist PSL_dist PSL_node i get get def
  346. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  347. PSL_cuts k dist halfwidth sub put
  348. /k k 1 add def
  349. PSL_cuts k dist halfwidth add put
  350. /k k 1 add def
  351. } for
  352. PSL_cuts k 100000.0 put
  353. /PSL_nn PSL_n PSL_m 2 mul add def
  354. /PSL_xx PSL_nn array def
  355. /PSL_yy PSL_nn array def
  356. /PSL_kind PSL_nn array def
  357. /j 0 def
  358. /k 0 def
  359. /dist 0.0 def
  360. 0 1 PSL_n1
  361. { /i exch def
  362. /last_dist dist def
  363. /dist PSL_dist i get def
  364. k 1 PSL_nc1
  365. { /kk exch def
  366. /this_cut PSL_cuts kk get def
  367. dist this_cut gt
  368. { /ds dist last_dist sub def
  369. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  370. /i1 i 0 eq {0} {i 1 sub} ifelse def
  371. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  372. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  373. PSL_kind j 1 put
  374. /j j 1 add def
  375. /k k 1 add def
  376. } if
  377. } for
  378. dist PSL_cuts k get le
  379. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  380. PSL_kind j 0 put
  381. /j j 1 add def
  382. } if
  383. } for
  384. } def
  385. /PSL_CT_reversepath
  386. {PSL_xp j get PSL_xp 0 get lt
  387. {0 1 j 2 idiv
  388. { /left exch def
  389. /right j left sub def
  390. /tmp PSL_xp left get def
  391. PSL_xp left PSL_xp right get put
  392. PSL_xp right tmp put
  393. /tmp PSL_yp left get def
  394. PSL_yp left PSL_yp right get put
  395. PSL_yp right tmp put
  396. } for
  397. } if
  398. } def
  399. /PSL_CT_placelabel
  400. {
  401. PSL_usebox
  402. {PSL_CT_clippath
  403. PSL_fillbox
  404. {V PSL_setboxrgb fill U} if
  405. PSL_drawbox
  406. {PSL_setboxpen S} if N
  407. } if
  408. PSL_settxtrgb PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height PSL_pathtext
  409. } def
  410. /PSL_CT_clippath
  411. {
  412. /H PSL_height 2 div PSL_gap_y add def
  413. /xoff j 1 add array def
  414. /yoff j 1 add array def
  415. /angle 0 def
  416. 0 1 j {
  417. /ii exch def
  418. /x PSL_xp ii get def
  419. /y PSL_yp ii get def
  420. ii 0 eq {
  421. /x1 PSL_xp 1 get def
  422. /y1 PSL_yp 1 get def
  423. /dx x1 x sub def
  424. /dy y1 y sub def
  425. }
  426. { /i1 ii 1 sub def
  427. /x1 PSL_xp i1 get def
  428. /y1 PSL_yp i1 get def
  429. /dx x x1 sub def
  430. /dy y y1 sub def
  431. } ifelse
  432. dx 0.0 ne dy 0.0 ne and
  433. { /angle dy dx atan 90 add def} if
  434. /sina angle sin def
  435. /cosa angle cos def
  436. xoff ii H cosa mul put
  437. yoff ii H sina mul put
  438. } for
  439. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  440. 1 1 j {
  441. /ii exch def
  442. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  443. } for
  444. j -1 0 {
  445. /ii exch def
  446. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  447. } for P
  448. } def
  449. /PSL_CT_drawline
  450. {
  451. /str 20 string def
  452. PSL_strokeline
  453. {PSL_CT_placeline PSL_setlinepen S} if
  454. /PSL_seg PSL_seg 1 add def
  455. /n 1 def
  456. } def
  457. /PSL_CT_placeline
  458. {PSL_xp 0 get PSL_yp 0 get M
  459. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  460. } def
  461. /PSL_straight_text_labels
  462. {
  463. /bits exch def
  464. /PSL_clippath bits 1 and 0 eq def
  465. /PSL_rounded bits 16 and 16 eq def
  466. /PSL_fillbox bits 128 and 128 eq def
  467. /PSL_drawbox bits 256 and 256 eq def
  468. /PSL_m1 PSL_m 1 sub def
  469. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  470. /PSL_justy PSL_just 4 idiv PSL_height mul 2 div neg def
  471. /PSL_usebox PSL_fillbox PSL_drawbox or def
  472. PSL_clippath
  473. {PSL_ST_clippath}
  474. {PSL_usebox {PSL_ST_clippath} if
  475. PSL_ST_placelabel
  476. } ifelse
  477. } def
  478. /PSL_ST_placelabel
  479. {PSL_settxtrgb
  480. 0 1 PSL_m1
  481. { /k exch def
  482. /xp PSL_txt_x k get def
  483. /yp PSL_txt_y k get def
  484. V PSL_txt_x k get PSL_txt_y k get T
  485. PSL_angle k get R
  486. /BoxW PSL_str k get stringwidth pop def
  487. BoxW PSL_justx mul PSL_justy M
  488. PSL_str k get show
  489. U
  490. } for
  491. } def
  492. /PSL_ST_clippath
  493. {N
  494. PSL_usebox not {clipsave clippath} if
  495. PSL_rounded {PSL_ST_clippath_round} {PSL_ST_clippath_rect} ifelse
  496. PSL_usebox
  497. {PSL_fillbox
  498. {V PSL_setboxrgb fill U} if
  499. PSL_drawbox
  500. {PSL_setboxpen S} if N
  501. }
  502. {PSL_clip
  503. } ifelse
  504. N
  505. } def
  506. /PSL_ST_clippath_rect
  507. {
  508. /BoxH PSL_height PSL_gap_y 2 mul add def
  509. /DelY BoxH BoxH 0 3 array astore def
  510. 0 1 PSL_m1
  511. { /k exch def
  512. /xp PSL_txt_x k get def
  513. /yp PSL_txt_y k get def
  514. /MAT PSL_angle k get matrix R def
  515. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  516. /x0 0 BoxW PSL_justx mul add def
  517. /y0 0 PSL_justy add PSL_gap_y sub def
  518. /DelX 0 BoxW BoxW 3 array astore def
  519. x0 y0 MAT transform
  520. /dy exch def /dx exch def
  521. xp dx add yp dy add M
  522. 0 1 2
  523. {
  524. /ii exch def
  525. x0 DelX ii get add y0 DelY ii get add MAT transform
  526. /dy exch def /dx exch def
  527. xp dx add yp dy add L
  528. } for P
  529. } for
  530. } def
  531. /PSL_ST_clippath_round
  532. {
  533. /PSL_justy2 PSL_just 4 idiv 2 div neg def
  534. /BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  535. /BoxH PSL_height PSL_gap_y 2 mul add def
  536. /y0 PSL_height PSL_gap_y 2 mul add PSL_justy2 mul def
  537. 0 1 PSL_m1
  538. { /k exch def
  539. /xp PSL_txt_x k get def
  540. /yp PSL_txt_y k get def
  541. /BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
  542. /x0 BoxW PSL_justx mul def
  543. xp yp T PSL_angle k get R x0 y0 T
  544. BoxR 0 M
  545. 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
  546. x0 neg y0 neg T PSL_angle k get neg R xp neg yp neg T
  547. } for
  548. } def
  549. /PSL_nclip 0 def
  550. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  551. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  552. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  553. %%EndProlog
  554. %%BeginSetup
  555. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  556. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  557. %%EndSetup
  558. %%Page: 1 1
  559. %%BeginPageSetup
  560. V 0.06 0.06 scale
  561. %%EndPageSetup
  562. /PSL_page_xsize 10200 def
  563. /PSL_page_ysize 13200 def
  564. 0 A
  565. FQ
  566. O0
  567. -3000 PSL_xorig sub PSL_page_xsize 2 div add -3000 PSL_yorig sub PSL_page_ysize 2 div add TM
  568. % PostScript produced by:
  569. %%GMT: grdview t.nc -JX5i -P -Xc -Yc -K -Cpatt.cpt -Qs -B1
  570. %%PROJ: xy -5.00000000 5.00000000 -5.00000000 5.00000000 -5.000 5.000 -5.000 5.000 +xy +a=6378137.000 +b=6356752.314245
  571. 0 setlinecap
  572. 0 setlinejoin
  573. 3.32551 setmiterlimit
  574. clipsave
  575. 0 0 M
  576. 6000 0 D
  577. 0 6000 D
  578. -6000 0 D
  579. PSL_eoclip N
  580. /image9 {<~
  581. J.L9D-mJ`kJ:k^8&+B]W)utHg@PKPEn-9_f!8dd$giO%q#KS/UpAfY8-P+#S:e4!_'+L<rU/O%A?>UO>:1LRIjGHYrPJLY2W
  582. )Pr&'T,@i1$J7i7jsToj`9U-`a^io:$2&HeFn5STMVIa8SoAS8=@o'eB,rrGu1-_V3XLI>%MAs<i6_R`HlrOE*/c786spm=G
  583. Y\*f?!pe8RR_:TQNhSRK&)"?D@,7h7;L+P<_A~>
  584. /LZWDecode filter} def
  585. /pattern9 {V 533 533 scale
  586. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  587. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  588. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  589. /ImageMatrix [64 0 0 -64 0 64] /DataSource image9
  590. >> image end}
  591. >> matrix makepattern U} def
  592. {pattern9 I} FS
  593. -600 0 0 600 600 0 3 5400 5400 SP
  594. -600 0 0 600 600 0 3 4800 5400 SP
  595. -600 0 0 600 600 0 3 4200 5400 SP
  596. -600 0 0 600 600 0 3 3600 5400 SP
  597. -600 0 0 600 600 0 3 3000 5400 SP
  598. -600 0 0 600 600 0 3 2400 5400 SP
  599. -600 0 0 600 600 0 3 1800 5400 SP
  600. -600 0 0 600 600 0 3 1200 5400 SP
  601. -600 0 0 600 600 0 3 600 5400 SP
  602. -600 0 0 600 600 0 3 0 5400 SP
  603. -600 0 0 600 600 0 3 5400 4800 SP
  604. -600 0 0 600 600 0 3 4800 4800 SP
  605. -600 0 0 600 600 0 3 4200 4800 SP
  606. 325 0 275 -155 0 -445 -600 0 4 4200 5400 SP
  607. {0.745 A} FS
  608. -275 0 275 -155 2 3600 4955 SP
  609. {pattern9 I} FS
  610. 600 -109 0 -336 -600 0 3 3600 5400 SP
  611. {0.745 A} FS
  612. -600 0 0 -155 600 -109 3 3000 5064 SP
  613. {pattern9 I} FS
  614. 0 336 600 109 0 -445 3 2400 5400 SP
  615. {0.745 A} FS
  616. -600 0 0 -264 600 109 3 2400 4955 SP
  617. {pattern9 I} FS
  618. 0 445 275 155 325 0 0 -600 4 1800 5400 SP
  619. {0.745 A} FS
  620. 0 -155 275 155 2 2125 4800 SP
  621. {pattern9 I} FS
  622. -600 0 0 600 600 0 3 1200 4800 SP
  623. -600 0 0 600 600 0 3 600 4800 SP
  624. -600 0 0 600 600 0 3 0 4800 SP
  625. -600 0 0 600 600 0 3 5400 4200 SP
  626. -600 0 0 600 600 0 3 4800 4200 SP
  627. 164 0 436 -436 0 -164 -600 0 4 4800 4800 SP
  628. {0.745 A} FS
  629. -436 0 436 -436 2 4200 4636 SP
  630. {pattern9 I} FS
  631. 325 -164 -325 0 2 4200 4800 SP
  632. {0.745 A} FS
  633. 0 319 -406 281 -194 0 0 -436 325 -164 5 3875 4800 SP
  634. /image5 {<~
  635. J3Vsg3$]7<!/*[I:q1$o*=mh>U/3h&<\5,@7,i3BjE;adK1D_7Gm&jl-\k9$ZAE*E<<SW35SEjfb#n`F~>
  636. /LZWDecode filter} def
  637. /pattern5 {V 533 533 scale
  638. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  639. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  640. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  641. /ImageMatrix [64 0 0 -64 0 64] /DataSource image5
  642. >> image end}
  643. >> matrix makepattern U} def
  644. {pattern5 I} FS
  645. -406 0 406 -281 2 3600 4481 SP
  646. {0.745 A} FS
  647. 600 -120 0 -199 -600 0 3 3600 4800 SP
  648. {pattern5 I} FS
  649. -210 56 -390 0 0 -281 600 -120 4 3000 4601 SP
  650. {1.000 0.753 0.796 C} FS
  651. -210 0 210 -56 2 3000 4256 SP
  652. {0.745 A} FS
  653. 0 199 600 120 0 -319 3 2400 4800 SP
  654. {pattern5 I} FS
  655. -390 0 -210 -56 0 -345 600 120 4 2400 4481 SP
  656. {1.000 0.753 0.796 C} FS
  657. 0 -56 210 56 2 2790 4200 SP
  658. {pattern9 I} FS
  659. 325 164 0 -164 2 1800 4800 SP
  660. {0.745 A} FS
  661. -194 0 -406 -281 0 -319 275 0 325 164 5 1800 4636 SP
  662. {pattern5 I} FS
  663. 0 -281 406 281 2 1994 4200 SP
  664. {pattern9 I} FS
  665. 0 164 436 436 164 0 0 -600 4 1200 4800 SP
  666. {0.745 A} FS
  667. 0 -436 436 436 2 1364 4200 SP
  668. {pattern9 I} FS
  669. -600 0 0 600 600 0 3 600 4200 SP
  670. -600 0 0 600 600 0 3 0 4200 SP
  671. -600 0 0 600 600 0 3 5400 3600 SP
  672. 445 0 155 -275 0 -325 -600 0 4 5400 4200 SP
  673. {0.745 A} FS
  674. -155 0 155 -275 2 4800 3875 SP
  675. {pattern9 I} FS
  676. 164 -325 -164 0 2 4800 4200 SP
  677. {0.745 A} FS
  678. 0 194 -281 406 -319 0 0 -275 164 -325 5 4636 4200 SP
  679. {pattern5 I} FS
  680. -281 0 281 -406 2 4200 4006 SP
  681. {0.745 A} FS
  682. 194 -194 -194 0 2 4200 4200 SP
  683. {pattern5 I} FS
  684. 0 110 -490 490 -110 0 0 -406 194 -194 5 4006 4200 SP
  685. {1.000 0.753 0.796 C} FS
  686. -129 129 -361 0 490 -490 3 3600 4090 SP
  687. /image30 {<~
  688. J,fiT#Ts-J&-+[4Y^s_"$Oqah!&-s&&-dZ:_.%DOjE<Zh&4_`lkfebr*J)7]Ol121<uD&Z!RaOBY"p$gbN"dGm-6e`O%nXg3
  689. 8AO,!1uaDOid7n!?n@k!>%g>!_+/k<^@F%boR6CXoKni8^)4/"dINs[>=4MSNW92Vt#QoKEAr[<DW\R$t>o$!QV9"qK-U^+f
  690. !@/G\YKe)[)ATERbm_G4.E5`bb1%9G9&[!!~>
  691. /LZWDecode filter} def
  692. /pattern30 {V 533 533 scale
  693. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  694. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  695. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  696. /ImageMatrix [64 0 0 -64 0 64] /DataSource image30
  697. >> image end}
  698. >> matrix makepattern U} def
  699. {pattern30 I} FS
  700. -129 0 129 -129 2 3600 3729 SP
  701. {pattern5 I} FS
  702. 390 -110 -390 0 2 3600 4200 SP
  703. {1.000 0.753 0.796 C} FS
  704. 0 257 -600 214 0 -361 390 -110 4 3210 4200 SP
  705. {pattern30 I} FS
  706. -90 35 -510 0 0 -129 600 -214 4 3000 3943 SP
  707. {0.000 A} FS
  708. -90 0 90 -35 2 3000 3635 SP
  709. {pattern5 I} FS
  710. 390 110 0 -110 2 2400 4200 SP
  711. {1.000 0.753 0.796 C} FS
  712. -600 -214 0 -257 210 0 390 110 4 2400 4090 SP
  713. {pattern30 I} FS
  714. -510 0 -90 -35 0 -308 600 214 4 2400 3729 SP
  715. {0.000 A} FS
  716. 0 -35 90 35 2 2910 3600 SP
  717. {0.745 A} FS
  718. 194 194 0 -194 2 1800 4200 SP
  719. {pattern5 I} FS
  720. -110 0 -490 -490 0 -110 406 0 194 194 5 1800 4006 SP
  721. {1.000 0.753 0.796 C} FS
  722. -129 -129 0 -361 490 490 3 1910 3600 SP
  723. {pattern30 I} FS
  724. 0 -129 129 129 2 2271 3600 SP
  725. {pattern9 I} FS
  726. 164 325 0 -325 2 1200 4200 SP
  727. {0.745 A} FS
  728. -319 0 -281 -406 0 -194 436 0 164 325 5 1200 3875 SP
  729. {pattern5 I} FS
  730. 0 -406 281 406 2 1519 3600 SP
  731. {pattern9 I} FS
  732. 0 325 155 275 445 0 0 -600 4 600 4200 SP
  733. {0.745 A} FS
  734. 0 -275 155 275 2 1045 3600 SP
  735. {pattern9 I} FS
  736. -600 0 0 600 600 0 3 0 3600 SP
  737. -600 0 0 600 600 0 3 5400 3000 SP
  738. 336 0 109 -600 -445 0 3 5400 3600 SP
  739. {0.745 A} FS
  740. 0 600 -264 0 109 -600 3 4955 3600 SP
  741. 199 0 120 -600 -319 0 3 4800 3600 SP
  742. {pattern5 I} FS
  743. 0 390 -56 210 -345 0 120 -600 4 4481 3600 SP
  744. {1.000 0.753 0.796 C} FS
  745. -56 0 56 -210 2 4200 3210 SP
  746. {pattern5 I} FS
  747. 110 -390 -110 0 2 4200 3600 SP
  748. {1.000 0.753 0.796 C} FS
  749. -214 600 -257 0 0 -210 110 -390 4 4090 3600 SP
  750. {pattern30 I} FS
  751. 0 510 -35 90 -308 0 214 -600 4 3729 3600 SP
  752. {0.000 A} FS
  753. -35 0 35 -90 2 3600 3090 SP
  754. {pattern30 I} FS
  755. 510 -510 -510 0 2 3600 3600 SP
  756. {0.000 A} FS
  757. 0 600 -600 0 0 -90 510 -510 4 3090 3600 SP
  758. {1.000 A} FS
  759. {pattern30 I} FS
  760. 510 510 0 -510 2 2400 3600 SP
  761. {0.000 A} FS
  762. -600 0 0 -600 90 0 510 510 4 2400 3090 SP
  763. {1.000 A} FS
  764. {pattern5 I} FS
  765. 110 390 0 -390 2 1800 3600 SP
  766. {1.000 0.753 0.796 C} FS
  767. -257 0 -214 -600 361 0 110 390 4 1800 3210 SP
  768. {pattern30 I} FS
  769. -35 -90 0 -510 129 0 214 600 4 2057 3000 SP
  770. {0.000 A} FS
  771. 0 -90 35 90 2 2365 3000 SP
  772. {0.745 A} FS
  773. 120 600 199 0 0 -600 3 1200 3600 SP
  774. {pattern5 I} FS
  775. -56 -210 0 -390 281 0 120 600 4 1399 3000 SP
  776. {1.000 0.753 0.796 C} FS
  777. 0 -210 56 210 2 1744 3000 SP
  778. {pattern9 I} FS
  779. 109 600 336 0 0 -600 3 600 3600 SP
  780. {0.745 A} FS
  781. 0 -600 155 0 109 600 3 936 3000 SP
  782. {pattern9 I} FS
  783. -600 0 0 600 600 0 3 0 3000 SP
  784. -600 0 0 600 600 0 3 5400 2400 SP
  785. -109 -600 -336 0 0 600 3 5400 2400 SP
  786. {0.745 A} FS
  787. 0 600 -155 0 -109 -600 3 5064 3000 SP
  788. -120 -600 -199 0 0 600 3 4800 2400 SP
  789. {pattern5 I} FS
  790. 56 210 0 390 -281 0 -120 -600 4 4601 3000 SP
  791. {1.000 0.753 0.796 C} FS
  792. 0 210 -56 -210 2 4256 3000 SP
  793. {pattern5 I} FS
  794. -110 -390 0 390 2 4200 2400 SP
  795. {1.000 0.753 0.796 C} FS
  796. 257 0 214 600 -361 0 -110 -390 4 4200 2790 SP
  797. {pattern30 I} FS
  798. 35 90 0 510 -129 0 -214 -600 4 3943 3000 SP
  799. {0.000 A} FS
  800. 0 90 -35 -90 2 3635 3000 SP
  801. {pattern30 I} FS
  802. -510 -510 0 510 2 3600 2400 SP
  803. {0.000 A} FS
  804. 600 0 0 600 -90 0 -510 -510 4 3600 2910 SP
  805. {1.000 A} FS
  806. {pattern30 I} FS
  807. -510 510 510 0 2 2400 2400 SP
  808. {0.000 A} FS
  809. 0 -600 600 0 0 90 -510 510 4 2910 2400 SP
  810. {1.000 A} FS
  811. {pattern5 I} FS
  812. -110 390 110 0 2 1800 2400 SP
  813. {1.000 0.753 0.796 C} FS
  814. 214 -600 257 0 0 210 -110 390 4 1910 2400 SP
  815. {pattern30 I} FS
  816. 0 -510 35 -90 308 0 -214 600 4 2271 2400 SP
  817. {0.000 A} FS
  818. 35 0 -35 90 2 2400 2910 SP
  819. {0.745 A} FS
  820. -199 0 -120 600 319 0 3 1200 2400 SP
  821. {pattern5 I} FS
  822. 0 -390 56 -210 345 0 -120 600 4 1519 2400 SP
  823. {1.000 0.753 0.796 C} FS
  824. 56 0 -56 210 2 1800 2790 SP
  825. {pattern9 I} FS
  826. -336 0 -109 600 445 0 3 600 2400 SP
  827. {0.745 A} FS
  828. 0 -600 264 0 -109 600 3 1045 2400 SP
  829. {pattern9 I} FS
  830. -600 0 0 600 600 0 3 0 2400 SP
  831. -600 0 0 600 600 0 3 5400 1800 SP
  832. 0 -325 -155 -275 -445 0 0 600 4 5400 1800 SP
  833. {0.745 A} FS
  834. 0 275 -155 -275 2 4955 2400 SP
  835. {pattern9 I} FS
  836. -164 -325 0 325 2 4800 1800 SP
  837. {0.745 A} FS
  838. 319 0 281 406 0 194 -436 0 -164 -325 5 4800 2125 SP
  839. {pattern5 I} FS
  840. 0 406 -281 -406 2 4481 2400 SP
  841. {0.745 A} FS
  842. -194 -194 0 194 2 4200 1800 SP
  843. {pattern5 I} FS
  844. 110 0 490 490 0 110 -406 0 -194 -194 5 4200 1994 SP
  845. {1.000 0.753 0.796 C} FS
  846. 129 129 0 361 -490 -490 3 4090 2400 SP
  847. {pattern30 I} FS
  848. 0 129 -129 -129 2 3729 2400 SP
  849. {pattern5 I} FS
  850. -390 -110 0 110 2 3600 1800 SP
  851. {1.000 0.753 0.796 C} FS
  852. 600 214 0 257 -210 0 -390 -110 4 3600 1910 SP
  853. {pattern30 I} FS
  854. 510 0 90 35 0 308 -600 -214 4 3600 2271 SP
  855. {0.000 A} FS
  856. 0 35 -90 -35 2 3090 2400 SP
  857. {pattern5 I} FS
  858. -390 110 390 0 2 2400 1800 SP
  859. {1.000 0.753 0.796 C} FS
  860. 0 -257 600 -214 0 361 -390 110 4 2790 1800 SP
  861. {pattern30 I} FS
  862. 90 -35 510 0 0 129 -600 214 4 3000 2057 SP
  863. {0.000 A} FS
  864. 90 0 -90 35 2 3000 2365 SP
  865. {0.745 A} FS
  866. -194 194 194 0 2 1800 1800 SP
  867. {pattern5 I} FS
  868. 0 -110 490 -490 110 0 0 406 -194 194 5 1994 1800 SP
  869. {1.000 0.753 0.796 C} FS
  870. 129 -129 361 0 -490 490 3 2400 1910 SP
  871. {pattern30 I} FS
  872. 129 0 -129 129 2 2400 2271 SP
  873. {pattern9 I} FS
  874. -164 325 164 0 2 1200 1800 SP
  875. {0.745 A} FS
  876. 0 -194 281 -406 319 0 0 275 -164 325 5 1364 1800 SP
  877. {pattern5 I} FS
  878. 281 0 -281 406 2 1800 1994 SP
  879. {pattern9 I} FS
  880. -445 0 -155 275 0 325 600 0 4 600 1800 SP
  881. {0.745 A} FS
  882. 155 0 -155 275 2 1200 2125 SP
  883. {pattern9 I} FS
  884. -600 0 0 600 600 0 3 0 1800 SP
  885. -600 0 0 600 600 0 3 5400 1200 SP
  886. -600 0 0 600 600 0 3 4800 1200 SP
  887. 0 -164 -436 -436 -164 0 0 600 4 4800 1200 SP
  888. {0.745 A} FS
  889. 0 436 -436 -436 2 4636 1800 SP
  890. {pattern9 I} FS
  891. -325 -164 0 164 2 4200 1200 SP
  892. {0.745 A} FS
  893. 194 0 406 281 0 319 -275 0 -325 -164 5 4200 1364 SP
  894. {pattern5 I} FS
  895. 0 281 -406 -281 2 4006 1800 SP
  896. {0.745 A} FS
  897. 0 -199 -600 -120 0 319 3 3600 1200 SP
  898. {pattern5 I} FS
  899. 390 0 210 56 0 345 -600 -120 4 3600 1519 SP
  900. {1.000 0.753 0.796 C} FS
  901. 0 56 -210 -56 2 3210 1800 SP
  902. {0.745 A} FS
  903. -600 120 0 199 600 0 3 2400 1200 SP
  904. {pattern5 I} FS
  905. 210 -56 390 0 0 281 -600 120 4 3000 1399 SP
  906. {1.000 0.753 0.796 C} FS
  907. 210 0 -210 56 2 3000 1744 SP
  908. {pattern9 I} FS
  909. -325 164 325 0 2 1800 1200 SP
  910. {0.745 A} FS
  911. 0 -319 406 -281 194 0 0 436 -325 164 5 2125 1200 SP
  912. {pattern5 I} FS
  913. 406 0 -406 281 2 2400 1519 SP
  914. {pattern9 I} FS
  915. -164 0 -436 436 0 164 600 0 4 1200 1200 SP
  916. {0.745 A} FS
  917. 436 0 -436 436 2 1800 1364 SP
  918. {pattern9 I} FS
  919. -600 0 0 600 600 0 3 600 1200 SP
  920. -600 0 0 600 600 0 3 0 1200 SP
  921. -600 0 0 600 600 0 3 5400 600 SP
  922. -600 0 0 600 600 0 3 4800 600 SP
  923. -600 0 0 600 600 0 3 4200 600 SP
  924. 0 -445 -275 -155 -325 0 0 600 4 4200 600 SP
  925. {0.745 A} FS
  926. 0 155 -275 -155 2 3875 1200 SP
  927. {pattern9 I} FS
  928. 0 -336 -600 -109 0 445 3 3600 600 SP
  929. {0.745 A} FS
  930. 600 0 0 264 -600 -109 3 3600 1045 SP
  931. {pattern9 I} FS
  932. -600 109 0 336 600 0 3 2400 600 SP
  933. {0.745 A} FS
  934. 600 0 0 155 -600 109 3 3000 936 SP
  935. {pattern9 I} FS
  936. -325 0 -275 155 0 445 600 0 4 1800 600 SP
  937. {0.745 A} FS
  938. 275 0 -275 155 2 2400 1045 SP
  939. {pattern9 I} FS
  940. -600 0 0 600 600 0 3 1200 600 SP
  941. -600 0 0 600 600 0 3 600 600 SP
  942. -600 0 0 600 600 0 3 0 600 SP
  943. -600 0 0 600 600 0 3 5400 0 SP
  944. -600 0 0 600 600 0 3 4800 0 SP
  945. -600 0 0 600 600 0 3 4200 0 SP
  946. -600 0 0 600 600 0 3 3600 0 SP
  947. -600 0 0 600 600 0 3 3000 0 SP
  948. -600 0 0 600 600 0 3 2400 0 SP
  949. -600 0 0 600 600 0 3 1800 0 SP
  950. -600 0 0 600 600 0 3 1200 0 SP
  951. -600 0 0 600 600 0 3 600 0 SP
  952. -600 0 0 600 600 0 3 0 0 SP
  953. PSL_cliprestore
  954. 2 setlinecap
  955. /MM {neg exch M} def
  956. /PSL_A0_y 83 def
  957. /PSL_A1_y 0 def
  958. 25 W
  959. 0 6000 M 0 -6000 D S
  960. 8 W
  961. 0 0 M -83 0 D S
  962. 0 600 M -83 0 D S
  963. 0 1200 M -83 0 D S
  964. 0 1800 M -83 0 D S
  965. 0 2400 M -83 0 D S
  966. 0 3000 M -83 0 D S
  967. 0 3600 M -83 0 D S
  968. 0 4200 M -83 0 D S
  969. 0 4800 M -83 0 D S
  970. 0 5400 M -83 0 D S
  971. 0 6000 M -83 0 D S
  972. /PSL_AH0 0
  973. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  974. 167 F0
  975. (-5) sw mx
  976. (-4) sw mx
  977. (-3) sw mx
  978. (-2) sw mx
  979. (-1) sw mx
  980. (0) sw mx
  981. (1) sw mx
  982. (2) sw mx
  983. (3) sw mx
  984. (4) sw mx
  985. (5) sw mx
  986. def
  987. /PSL_A0_y PSL_A0_y 83 add def
  988. 0 PSL_A0_y MM
  989. (-5) mr Z
  990. 600 PSL_A0_y MM
  991. (-4) mr Z
  992. 1200 PSL_A0_y MM
  993. (-3) mr Z
  994. 1800 PSL_A0_y MM
  995. (-2) mr Z
  996. 2400 PSL_A0_y MM
  997. (-1) mr Z
  998. 3000 PSL_A0_y MM
  999. (0) mr Z
  1000. 3600 PSL_A0_y MM
  1001. (1) mr Z
  1002. 4200 PSL_A0_y MM
  1003. (2) mr Z
  1004. 4800 PSL_A0_y MM
  1005. (3) mr Z
  1006. 5400 PSL_A0_y MM
  1007. (4) mr Z
  1008. 6000 PSL_A0_y MM
  1009. (5) mr Z
  1010. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1011. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1012. 6000 0 T
  1013. /MM {exch M} def
  1014. /PSL_A0_y 83 def
  1015. /PSL_A1_y 0 def
  1016. 25 W
  1017. 0 6000 M 0 -6000 D S
  1018. 8 W
  1019. 0 0 M 83 0 D S
  1020. 0 600 M 83 0 D S
  1021. 0 1200 M 83 0 D S
  1022. 0 1800 M 83 0 D S
  1023. 0 2400 M 83 0 D S
  1024. 0 3000 M 83 0 D S
  1025. 0 3600 M 83 0 D S
  1026. 0 4200 M 83 0 D S
  1027. 0 4800 M 83 0 D S
  1028. 0 5400 M 83 0 D S
  1029. 0 6000 M 83 0 D S
  1030. /PSL_AH0 0
  1031. (-5) sw mx
  1032. (-4) sw mx
  1033. (-3) sw mx
  1034. (-2) sw mx
  1035. (-1) sw mx
  1036. (0) sw mx
  1037. (1) sw mx
  1038. (2) sw mx
  1039. (3) sw mx
  1040. (4) sw mx
  1041. (5) sw mx
  1042. def
  1043. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1044. 0 PSL_A0_y MM
  1045. (-5) mr Z
  1046. 600 PSL_A0_y MM
  1047. (-4) mr Z
  1048. 1200 PSL_A0_y MM
  1049. (-3) mr Z
  1050. 1800 PSL_A0_y MM
  1051. (-2) mr Z
  1052. 2400 PSL_A0_y MM
  1053. (-1) mr Z
  1054. 3000 PSL_A0_y MM
  1055. (0) mr Z
  1056. 3600 PSL_A0_y MM
  1057. (1) mr Z
  1058. 4200 PSL_A0_y MM
  1059. (2) mr Z
  1060. 4800 PSL_A0_y MM
  1061. (3) mr Z
  1062. 5400 PSL_A0_y MM
  1063. (4) mr Z
  1064. 6000 PSL_A0_y MM
  1065. (5) mr Z
  1066. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1067. -6000 0 T
  1068. /MM {neg M} def
  1069. /PSL_A0_y 83 def
  1070. /PSL_A1_y 0 def
  1071. 25 W
  1072. 0 0 M 6000 0 D S
  1073. 8 W
  1074. 0 0 M 0 -83 D S
  1075. 600 0 M 0 -83 D S
  1076. 1200 0 M 0 -83 D S
  1077. 1800 0 M 0 -83 D S
  1078. 2400 0 M 0 -83 D S
  1079. 3000 0 M 0 -83 D S
  1080. 3600 0 M 0 -83 D S
  1081. 4200 0 M 0 -83 D S
  1082. 4800 0 M 0 -83 D S
  1083. 5400 0 M 0 -83 D S
  1084. 6000 0 M 0 -83 D S
  1085. /PSL_AH0 0
  1086. (-5) sh mx
  1087. (-4) sh mx
  1088. (-3) sh mx
  1089. (-2) sh mx
  1090. (-1) sh mx
  1091. (0) sh mx
  1092. (1) sh mx
  1093. (2) sh mx
  1094. (3) sh mx
  1095. (4) sh mx
  1096. (5) sh mx
  1097. def
  1098. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  1099. 0 PSL_A0_y MM
  1100. (-5) bc Z
  1101. 600 PSL_A0_y MM
  1102. (-4) bc Z
  1103. 1200 PSL_A0_y MM
  1104. (-3) bc Z
  1105. 1800 PSL_A0_y MM
  1106. (-2) bc Z
  1107. 2400 PSL_A0_y MM
  1108. (-1) bc Z
  1109. 3000 PSL_A0_y MM
  1110. (0) bc Z
  1111. 3600 PSL_A0_y MM
  1112. (1) bc Z
  1113. 4200 PSL_A0_y MM
  1114. (2) bc Z
  1115. 4800 PSL_A0_y MM
  1116. (3) bc Z
  1117. 5400 PSL_A0_y MM
  1118. (4) bc Z
  1119. 6000 PSL_A0_y MM
  1120. (5) bc Z
  1121. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1122. 0 6000 T
  1123. /MM {M} def
  1124. /PSL_A0_y 83 def
  1125. /PSL_A1_y 0 def
  1126. 25 W
  1127. 0 0 M 6000 0 D S
  1128. 8 W
  1129. 0 0 M 0 83 D S
  1130. 600 0 M 0 83 D S
  1131. 1200 0 M 0 83 D S
  1132. 1800 0 M 0 83 D S
  1133. 2400 0 M 0 83 D S
  1134. 3000 0 M 0 83 D S
  1135. 3600 0 M 0 83 D S
  1136. 4200 0 M 0 83 D S
  1137. 4800 0 M 0 83 D S
  1138. 5400 0 M 0 83 D S
  1139. 6000 0 M 0 83 D S
  1140. /PSL_AH0 0
  1141. (-5) sh mx
  1142. (-4) sh mx
  1143. (-3) sh mx
  1144. (-2) sh mx
  1145. (-1) sh mx
  1146. (0) sh mx
  1147. (1) sh mx
  1148. (2) sh mx
  1149. (3) sh mx
  1150. (4) sh mx
  1151. (5) sh mx
  1152. def
  1153. /PSL_A0_y PSL_A0_y 83 add def
  1154. 0 PSL_A0_y MM
  1155. (-5) bc Z
  1156. 600 PSL_A0_y MM
  1157. (-4) bc Z
  1158. 1200 PSL_A0_y MM
  1159. (-3) bc Z
  1160. 1800 PSL_A0_y MM
  1161. (-2) bc Z
  1162. 2400 PSL_A0_y MM
  1163. (-1) bc Z
  1164. 3000 PSL_A0_y MM
  1165. (0) bc Z
  1166. 3600 PSL_A0_y MM
  1167. (1) bc Z
  1168. 4200 PSL_A0_y MM
  1169. (2) bc Z
  1170. 4800 PSL_A0_y MM
  1171. (3) bc Z
  1172. 5400 PSL_A0_y MM
  1173. (4) bc Z
  1174. 6000 PSL_A0_y MM
  1175. (5) bc Z
  1176. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  1177. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1178. 0 -6000 T
  1179. 0 setlinecap
  1180. currentdict /image5 undef
  1181. currentdict /pattern5 undef
  1182. currentdict /image9 undef
  1183. currentdict /pattern9 undef
  1184. currentdict /image30 undef
  1185. currentdict /pattern30 undef
  1186. 0 A
  1187. FQ
  1188. O0
  1189. 0 0 TM
  1190. % PostScript produced by:
  1191. %%GMT: psscale -Cpatt.cpt -D2.5i/-0.5i/4.5i/0.25ih -O -K
  1192. %%PROJ: xy 0.00000000 30.00000000 0.00000000 0.25000000 0.000 30.000 0.000 0.250 +xy +a=6378137.000 +b=6356752.314245
  1193. 0 setlinecap
  1194. 0 setlinejoin
  1195. 3.32551 setmiterlimit
  1196. 300 -900 T
  1197. 25 W
  1198. /image9 {<~
  1199. J.L9D-mJ`kJ:k^8&+B]W)utHg@PKPEn-9_f!8dd$giO%q#KS/UpAfY8-P+#S:e4!_'+L<rU/O%A?>UO>:1LRIjGHYrPJLY2W
  1200. )Pr&'T,@i1$J7i7jsToj`9U-`a^io:$2&HeFn5STMVIa8SoAS8=@o'eB,rrGu1-_V3XLI>%MAs<i6_R`HlrOE*/c786spm=G
  1201. Y\*f?!pe8RR_:TQNhSRK&)"?D@,7h7;L+P<_A~>
  1202. /LZWDecode filter} def
  1203. /pattern9 {V 533 533 scale
  1204. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1205. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  1206. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1207. /ImageMatrix [64 0 0 -64 0 64] /DataSource image9
  1208. >> image end}
  1209. >> matrix makepattern U} def
  1210. {pattern9 I} FS
  1211. 300 900 0 0 Sb
  1212. {0.745 A} FS
  1213. 300 900 900 0 Sb
  1214. /image5 {<~
  1215. J3Vsg3$]7<!/*[I:q1$o*=mh>U/3h&<\5,@7,i3BjE;adK1D_7Gm&jl-\k9$ZAE*E<<SW35SEjfb#n`F~>
  1216. /LZWDecode filter} def
  1217. /pattern5 {V 533 533 scale
  1218. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1219. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  1220. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1221. /ImageMatrix [64 0 0 -64 0 64] /DataSource image5
  1222. >> image end}
  1223. >> matrix makepattern U} def
  1224. {pattern5 I} FS
  1225. 300 900 1800 0 Sb
  1226. {1 0.753 0.796 C} FS
  1227. 300 900 2700 0 Sb
  1228. /image30 {<~
  1229. J,fiT#Ts-J&-+[4Y^s_"$Oqah!&-s&&-dZ:_.%DOjE<Zh&4_`lkfebr*J)7]Ol121<uD&Z!RaOBY"p$gbN"dGm-6e`O%nXg3
  1230. 8AO,!1uaDOid7n!?n@k!>%g>!_+/k<^@F%boR6CXoKni8^)4/"dINs[>=4MSNW92Vt#QoKEAr[<DW\R$t>o$!QV9"qK-U^+f
  1231. !@/G\YKe)[)ATERbm_G4.E5`bb1%9G9&[!!~>
  1232. /LZWDecode filter} def
  1233. /pattern30 {V 533 533 scale
  1234. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1235. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  1236. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1237. /ImageMatrix [64 0 0 -64 0 64] /DataSource image30
  1238. >> image end}
  1239. >> matrix makepattern U} def
  1240. {pattern30 I} FS
  1241. 300 900 3600 0 Sb
  1242. {0 A} FS
  1243. 300 900 4500 0 Sb
  1244. 2 setlinecap
  1245. 0 0 M 5400 0 D S
  1246. 0 300 M 5400 0 D S
  1247. 0 0 M 0 300 D S
  1248. 5400 0 M 0 300 D S
  1249. 4 W
  1250. 0 0 M 0 300 D S
  1251. 900 0 M 0 300 D S
  1252. 1800 0 M 0 300 D S
  1253. 2700 0 M 0 300 D S
  1254. 3600 0 M 0 300 D S
  1255. 4500 0 M 0 300 D S
  1256. 5400 0 M 0 300 D S
  1257. 8 W
  1258. 0 0 M
  1259. 0 -83 D S
  1260. 0 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1261. 167 F0
  1262. (0) tc Z
  1263. 900 0 M
  1264. 0 -83 D S
  1265. 900 -167 M (5) tc Z
  1266. 1800 0 M
  1267. 0 -83 D S
  1268. 1800 -167 M (10) tc Z
  1269. 2700 0 M
  1270. 0 -83 D S
  1271. 2700 -167 M (15) tc Z
  1272. 3600 0 M
  1273. 0 -83 D S
  1274. 3600 -167 M (20) tc Z
  1275. 4500 0 M
  1276. 0 -83 D S
  1277. 4500 -167 M (25) tc Z
  1278. 5400 0 M
  1279. 0 -83 D S
  1280. 5400 -167 M (30) tc Z
  1281. 0 setlinecap
  1282. -300 900 T
  1283. currentdict /image5 undef
  1284. currentdict /pattern5 undef
  1285. currentdict /image9 undef
  1286. currentdict /pattern9 undef
  1287. currentdict /image30 undef
  1288. currentdict /pattern30 undef
  1289. 0 A
  1290. FQ
  1291. O0
  1292. 0 0 TM
  1293. % PostScript produced by:
  1294. %%GMT: psscale -Cpatt.cpt -D5.5i/2.5i/4.5i/0.25i -O
  1295. %%PROJ: xy 0.00000000 30.00000000 0.00000000 0.25000000 0.000 30.000 0.000 0.250 +xy +a=6378137.000 +b=6356752.314245
  1296. 0 setlinecap
  1297. 0 setlinejoin
  1298. 3.32551 setmiterlimit
  1299. 6600 300 T
  1300. 25 W
  1301. 300 0 T
  1302. 90 R
  1303. /image9 {<~
  1304. J.L9D-mJ`kJ:k^8&+B]W)utHg@PKPEn-9_f!8dd$giO%q#KS/UpAfY8-P+#S:e4!_'+L<rU/O%A?>UO>:1LRIjGHYrPJLY2W
  1305. )Pr&'T,@i1$J7i7jsToj`9U-`a^io:$2&HeFn5STMVIa8SoAS8=@o'eB,rrGu1-_V3XLI>%MAs<i6_R`HlrOE*/c786spm=G
  1306. Y\*f?!pe8RR_:TQNhSRK&)"?D@,7h7;L+P<_A~>
  1307. /LZWDecode filter} def
  1308. /pattern9 {V 533 533 scale
  1309. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1310. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  1311. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1312. /ImageMatrix [64 0 0 -64 0 64] /DataSource image9
  1313. >> image end}
  1314. >> matrix makepattern U} def
  1315. {pattern9 I} FS
  1316. -90 R
  1317. 900 300 -300 0 Sb
  1318. 90 R
  1319. {0.745 A} FS
  1320. 300 900 900 0 Sb
  1321. /image5 {<~
  1322. J3Vsg3$]7<!/*[I:q1$o*=mh>U/3h&<\5,@7,i3BjE;adK1D_7Gm&jl-\k9$ZAE*E<<SW35SEjfb#n`F~>
  1323. /LZWDecode filter} def
  1324. /pattern5 {V 533 533 scale
  1325. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1326. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  1327. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1328. /ImageMatrix [64 0 0 -64 0 64] /DataSource image5
  1329. >> image end}
  1330. >> matrix makepattern U} def
  1331. {pattern5 I} FS
  1332. 1800 0 T
  1333. -90 R
  1334. 900 300 -300 0 Sb
  1335. 90 R
  1336. -1800 0 T
  1337. {1 0.753 0.796 C} FS
  1338. 300 900 2700 0 Sb
  1339. /image30 {<~
  1340. J,fiT#Ts-J&-+[4Y^s_"$Oqah!&-s&&-dZ:_.%DOjE<Zh&4_`lkfebr*J)7]Ol121<uD&Z!RaOBY"p$gbN"dGm-6e`O%nXg3
  1341. 8AO,!1uaDOid7n!?n@k!>%g>!_+/k<^@F%boR6CXoKni8^)4/"dINs[>=4MSNW92Vt#QoKEAr[<DW\R$t>o$!QV9"qK-U^+f
  1342. !@/G\YKe)[)ATERbm_G4.E5`bb1%9G9&[!!~>
  1343. /LZWDecode filter} def
  1344. /pattern30 {V 533 533 scale
  1345. << /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc
  1346. {begin [/Indexed /DeviceGray 1 <FF00>] setcolorspace
  1347. << /ImageType 1 /Decode [0 1] /Width 64 /Height 64 /BitsPerComponent 1
  1348. /ImageMatrix [64 0 0 -64 0 64] /DataSource image30
  1349. >> image end}
  1350. >> matrix makepattern U} def
  1351. {pattern30 I} FS
  1352. 3600 0 T
  1353. -90 R
  1354. 900 300 -300 0 Sb
  1355. 90 R
  1356. -3600 0 T
  1357. {0 A} FS
  1358. 300 900 4500 0 Sb
  1359. 2 setlinecap
  1360. 0 0 M 5400 0 D S
  1361. 0 300 M 5400 0 D S
  1362. 0 0 M 0 300 D S
  1363. 5400 0 M 0 300 D S
  1364. 4 W
  1365. 0 0 M 0 300 D S
  1366. 900 0 M 0 300 D S
  1367. 1800 0 M 0 300 D S
  1368. 2700 0 M 0 300 D S
  1369. 3600 0 M 0 300 D S
  1370. 4500 0 M 0 300 D S
  1371. 5400 0 M 0 300 D S
  1372. 8 W
  1373. 0 0 M
  1374. 0 -83 D S
  1375. 0 -347 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1376. 167 F0
  1377. V -90 R (0) mr Z U
  1378. 900 0 M
  1379. 0 -83 D S
  1380. 900 -347 M V -90 R (5) mr Z U
  1381. 1800 0 M
  1382. 0 -83 D S
  1383. 1800 -347 M V -90 R (10) mr Z U
  1384. 2700 0 M
  1385. 0 -83 D S
  1386. 2700 -347 M V -90 R (15) mr Z U
  1387. 3600 0 M
  1388. 0 -83 D S
  1389. 3600 -347 M V -90 R (20) mr Z U
  1390. 4500 0 M
  1391. 0 -83 D S
  1392. 4500 -347 M V -90 R (25) mr Z U
  1393. 5400 0 M
  1394. 0 -83 D S
  1395. 5400 -347 M V -90 R (30) mr Z U
  1396. -90 R
  1397. -300 0 T
  1398. 0 setlinecap
  1399. -6600 -300 T
  1400. currentdict /image5 undef
  1401. currentdict /pattern5 undef
  1402. currentdict /image9 undef
  1403. currentdict /pattern9 undef
  1404. currentdict /image30 undef
  1405. currentdict /pattern30 undef
  1406. %%PageTrailer
  1407. U
  1408. showpage
  1409. %%Trailer
  1410. end
  1411. %%EOF
Tip!

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

Comments

Loading...