| 1 |
%!PS-Adobe-3.0 |
| 2 |
%%Creator: MATLAB, The Mathworks, Inc. Version 7.6.0.324 (R2008a). Operating System: Linux 2.6.26.8-57.fc8 #1 SMP Thu Dec 18 18:59:49 EST 2008 x86_64. |
| 3 |
%%Title: ./polarcap.ps |
| 4 |
%%CreationDate: 05/01/2009 20:54:07 |
| 5 |
%%DocumentNeededFonts: Helvetica |
| 6 |
%%+ Helvetica-Bold |
| 7 |
%%DocumentProcessColors: Cyan Magenta Yellow Black |
| 8 |
%%LanguageLevel: 2 |
| 9 |
%%Pages: (atend) |
| 10 |
%%BoundingBox: (atend) |
| 11 |
%%EndComments |
| 12 |
|
| 13 |
%%BeginProlog |
| 14 |
% MathWorks dictionary |
| 15 |
/MathWorks 160 dict begin |
| 16 |
% definition operators |
| 17 |
/bdef {bind def} bind def |
| 18 |
/ldef {load def} bind def |
| 19 |
/xdef {exch def} bdef |
| 20 |
/xstore {exch store} bdef |
| 21 |
% operator abbreviations |
| 22 |
/c /clip ldef |
| 23 |
/cc /concat ldef |
| 24 |
/cp /closepath ldef |
| 25 |
/gr /grestore ldef |
| 26 |
/gs /gsave ldef |
| 27 |
/mt /moveto ldef |
| 28 |
/np /newpath ldef |
| 29 |
/cm /currentmatrix ldef |
| 30 |
/sm /setmatrix ldef |
| 31 |
/rm /rmoveto ldef |
| 32 |
/rl /rlineto ldef |
| 33 |
/s {show newpath} bdef |
| 34 |
/sc {setcmykcolor} bdef |
| 35 |
/sr /setrgbcolor ldef |
| 36 |
/sg /setgray ldef |
| 37 |
/w /setlinewidth ldef |
| 38 |
/j /setlinejoin ldef |
| 39 |
/cap /setlinecap ldef |
| 40 |
/rc {rectclip} bdef |
| 41 |
/rf {rectfill} bdef |
| 42 |
% page state control |
| 43 |
/pgsv () def |
| 44 |
/bpage {/pgsv save def} bdef |
| 45 |
/epage {pgsv restore} bdef |
| 46 |
/bplot /gsave ldef |
| 47 |
/eplot {stroke grestore} bdef |
| 48 |
% orientation switch |
| 49 |
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def |
| 50 |
% coordinate system mappings |
| 51 |
/dpi2point 0 def |
| 52 |
% font control |
| 53 |
/FontSize 0 def |
| 54 |
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0] |
| 55 |
makefont setfont} bdef |
| 56 |
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse |
| 57 |
exch dup 3 1 roll findfont dup length dict begin |
| 58 |
{ 1 index /FID ne {def}{pop pop} ifelse } forall |
| 59 |
/Encoding exch def currentdict end definefont pop} bdef |
| 60 |
/isroman {findfont /CharStrings get /Agrave known} bdef |
| 61 |
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse |
| 62 |
exch FMS} bdef |
| 63 |
/csm {1 dpi2point div -1 dpi2point div scale neg translate |
| 64 |
dup landscapeMode eq {pop -90 rotate} |
| 65 |
{rotateMode eq {90 rotate} if} ifelse} bdef |
| 66 |
% line types: solid, dotted, dashed, dotdash |
| 67 |
/SO { [] 0 setdash } bdef |
| 68 |
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef |
| 69 |
/DA { [6 dpi2point mul] 0 setdash } bdef |
| 70 |
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4 |
| 71 |
dpi2point mul] 0 setdash } bdef |
| 72 |
% macros for lines and objects |
| 73 |
/L {lineto stroke} bdef |
| 74 |
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef |
| 75 |
/AP {{rlineto} repeat} bdef |
| 76 |
/PDlw -1 def |
| 77 |
/W {/PDlw currentlinewidth def setlinewidth} def |
| 78 |
/PP {closepath eofill} bdef |
| 79 |
/DP {closepath stroke} bdef |
| 80 |
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto |
| 81 |
neg 0 exch rlineto closepath} bdef |
| 82 |
/FR {MR stroke} bdef |
| 83 |
/PR {MR fill} bdef |
| 84 |
/L1i {{currentfile picstr readhexstring pop} image} bdef |
| 85 |
/tMatrix matrix def |
| 86 |
/MakeOval {newpath tMatrix currentmatrix pop translate scale |
| 87 |
0 0 1 0 360 arc tMatrix setmatrix} bdef |
| 88 |
/FO {MakeOval stroke} bdef |
| 89 |
/PO {MakeOval fill} bdef |
| 90 |
/PD {currentlinewidth 2 div 0 360 arc fill |
| 91 |
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def |
| 92 |
/FA {newpath tMatrix currentmatrix pop translate scale |
| 93 |
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef |
| 94 |
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale |
| 95 |
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef |
| 96 |
/FAn {newpath tMatrix currentmatrix pop translate scale |
| 97 |
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef |
| 98 |
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale |
| 99 |
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef |
| 100 |
/vradius 0 def /hradius 0 def /lry 0 def |
| 101 |
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def |
| 102 |
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef |
| 103 |
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly |
| 104 |
vradius add translate hradius vradius scale 0 0 1 180 270 arc |
| 105 |
tMatrix setmatrix lrx hradius sub uly vradius add translate |
| 106 |
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix |
| 107 |
lrx hradius sub lry vradius sub translate hradius vradius scale |
| 108 |
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub |
| 109 |
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix |
| 110 |
closepath} bdef |
| 111 |
/FRR {MRR stroke } bdef |
| 112 |
/PRR {MRR fill } bdef |
| 113 |
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def |
| 114 |
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate |
| 115 |
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad |
| 116 |
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix |
| 117 |
closepath} bdef |
| 118 |
/FlrRR {MlrRR stroke } bdef |
| 119 |
/PlrRR {MlrRR fill } bdef |
| 120 |
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def |
| 121 |
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate |
| 122 |
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad |
| 123 |
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix |
| 124 |
closepath} bdef |
| 125 |
/FtbRR {MtbRR stroke } bdef |
| 126 |
/PtbRR {MtbRR fill } bdef |
| 127 |
/stri 6 array def /dtri 6 array def |
| 128 |
/smat 6 array def /dmat 6 array def |
| 129 |
/tmat1 6 array def /tmat2 6 array def /dif 3 array def |
| 130 |
/asub {/ind2 exch def /ind1 exch def dup dup |
| 131 |
ind1 get exch ind2 get sub exch } bdef |
| 132 |
/tri_to_matrix { |
| 133 |
2 0 asub 3 1 asub 4 0 asub 5 1 asub |
| 134 |
dup 0 get exch 1 get 7 -1 roll astore } bdef |
| 135 |
/compute_transform { |
| 136 |
dmat dtri tri_to_matrix tmat1 invertmatrix |
| 137 |
smat stri tri_to_matrix tmat2 concatmatrix } bdef |
| 138 |
/ds {stri astore pop} bdef |
| 139 |
/dt {dtri astore pop} bdef |
| 140 |
/db {2 copy /cols xdef /rows xdef mul dup 3 mul string |
| 141 |
currentfile |
| 142 |
3 index 0 eq {/ASCIIHexDecode filter} |
| 143 |
{/ASCII85Decode filter 3 index 2 eq {/RunLengthDecode filter} if } |
| 144 |
ifelse exch readstring pop |
| 145 |
dup 0 3 index getinterval /rbmap xdef |
| 146 |
dup 2 index dup getinterval /gbmap xdef |
| 147 |
1 index dup 2 mul exch getinterval /bbmap xdef pop pop}bdef |
| 148 |
/it {gs np dtri aload pop moveto lineto lineto cp c |
| 149 |
cols rows 8 compute_transform |
| 150 |
rbmap gbmap bbmap true 3 colorimage gr}bdef |
| 151 |
/il {newpath moveto lineto stroke}bdef |
| 152 |
currentdict end def |
| 153 |
%%EndProlog |
| 154 |
|
| 155 |
%%BeginSetup |
| 156 |
MathWorks begin |
| 157 |
|
| 158 |
0 cap |
| 159 |
|
| 160 |
end |
| 161 |
%%EndSetup |
| 162 |
|
| 163 |
%%Page: 1 1 |
| 164 |
%%BeginPageSetup |
| 165 |
%%PageBoundingBox: 73 215 551 589 |
| 166 |
MathWorks begin |
| 167 |
bpage |
| 168 |
%%EndPageSetup |
| 169 |
|
| 170 |
%%BeginObject: obj1 |
| 171 |
bplot |
| 172 |
|
| 173 |
/dpi2point 12 def |
| 174 |
portraitMode 0216 7344 csm |
| 175 |
|
| 176 |
664 274 5740 4487 rc |
| 177 |
86 dict begin %Colortable dictionary |
| 178 |
/c0 { 0.000000 0.000000 0.000000 sr} bdef |
| 179 |
/c1 { 1.000000 1.000000 1.000000 sr} bdef |
| 180 |
/c2 { 0.900000 0.000000 0.000000 sr} bdef |
| 181 |
/c3 { 0.000000 0.820000 0.000000 sr} bdef |
| 182 |
/c4 { 0.000000 0.000000 0.800000 sr} bdef |
| 183 |
/c5 { 0.910000 0.820000 0.320000 sr} bdef |
| 184 |
/c6 { 1.000000 0.260000 0.820000 sr} bdef |
| 185 |
/c7 { 0.000000 0.820000 0.820000 sr} bdef |
| 186 |
c0 |
| 187 |
1 j |
| 188 |
1 sg |
| 189 |
0 0 6913 5186 rf |
| 190 |
6 w |
| 191 |
0 4226 5356 0 0 -4226 899 4615 4 MP |
| 192 |
PP |
| 193 |
-5356 0 0 4226 5356 0 0 -4226 899 4615 5 MP stroke |
| 194 |
4 w |
| 195 |
DO |
| 196 |
SO |
| 197 |
6 w |
| 198 |
0 sg |
| 199 |
899 4615 mt 6255 4615 L |
| 200 |
899 4615 mt 899 389 L |
| 201 |
899 4615 mt 899 4561 L |
| 202 |
%%IncludeResource: font Helvetica |
| 203 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 204 |
|
| 205 |
866 4760 mt |
| 206 |
(0) s |
| 207 |
1664 4615 mt 1664 4561 L |
| 208 |
1564 4760 mt |
| 209 |
(100) s |
| 210 |
2429 4615 mt 2429 4561 L |
| 211 |
2329 4760 mt |
| 212 |
(200) s |
| 213 |
3194 4615 mt 3194 4561 L |
| 214 |
3094 4760 mt |
| 215 |
(300) s |
| 216 |
3959 4615 mt 3959 4561 L |
| 217 |
3859 4760 mt |
| 218 |
(400) s |
| 219 |
4724 4615 mt 4724 4561 L |
| 220 |
4624 4760 mt |
| 221 |
(500) s |
| 222 |
5489 4615 mt 5489 4561 L |
| 223 |
5389 4760 mt |
| 224 |
(600) s |
| 225 |
6255 4615 mt 6255 4561 L |
| 226 |
6155 4760 mt |
| 227 |
(700) s |
| 228 |
899 4615 mt 952 4615 L |
| 229 |
798 4659 mt |
| 230 |
(0) s |
| 231 |
899 3910 mt 952 3910 L |
| 232 |
664 3954 mt |
| 233 |
(100) s |
| 234 |
899 3206 mt 952 3206 L |
| 235 |
664 3250 mt |
| 236 |
(200) s |
| 237 |
899 2502 mt 952 2502 L |
| 238 |
664 2546 mt |
| 239 |
(300) s |
| 240 |
899 1797 mt 952 1797 L |
| 241 |
664 1841 mt |
| 242 |
(400) s |
| 243 |
899 1093 mt 952 1093 L |
| 244 |
664 1137 mt |
| 245 |
(500) s |
| 246 |
899 389 mt 952 389 L |
| 247 |
664 433 mt |
| 248 |
(600) s |
| 249 |
gs 899 389 5357 4227 rc |
| 250 |
24 w |
| 251 |
/c8 { 1.000000 0.000000 0.000000 sr} bdef |
| 252 |
c8 |
| 253 |
681 0 906 4607 2 MP stroke |
| 254 |
-681 0 1587 2079 2 MP stroke |
| 255 |
/c9 { 0.000000 1.000000 0.000000 sr} bdef |
| 256 |
c9 |
| 257 |
0 -2528 1587 4607 2 MP stroke |
| 258 |
0 2528 906 2079 2 MP stroke |
| 259 |
gr |
| 260 |
|
| 261 |
24 w |
| 262 |
c9 |
| 263 |
0 sg |
| 264 |
%%IncludeResource: font Helvetica-Bold |
| 265 |
/Helvetica-Bold /ISOLatin1Encoding 168 FMSR |
| 266 |
|
| 267 |
1247 3405 mt |
| 268 |
(f1) s |
| 269 |
gs 899 389 5357 4227 rc |
| 270 |
DA |
| 271 |
6 w |
| 272 |
0 626 -681 0 0 -626 681 0 906 4607 5 MP stroke |
| 273 |
gr |
| 274 |
|
| 275 |
6 w |
| 276 |
DA |
| 277 |
%%IncludeResource: font Helvetica |
| 278 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 279 |
|
| 280 |
1247 4336 mt |
| 281 |
(t1) s |
| 282 |
%%IncludeResource: font Helvetica |
| 283 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 284 |
|
| 285 |
949 4285 mt |
| 286 |
(f5) s |
| 287 |
%%IncludeResource: font Helvetica |
| 288 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 289 |
|
| 290 |
1029 4333 mt |
| 291 |
(n) s |
| 292 |
%%IncludeResource: font Helvetica |
| 293 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 294 |
|
| 295 |
1247 4519 mt |
| 296 |
(f6) s |
| 297 |
%%IncludeResource: font Helvetica |
| 298 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 299 |
|
| 300 |
1327 4567 mt |
| 301 |
(n) s |
| 302 |
%%IncludeResource: font Helvetica |
| 303 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 304 |
|
| 305 |
1472 4285 mt |
| 306 |
(f2) s |
| 307 |
%%IncludeResource: font Helvetica |
| 308 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 309 |
|
| 310 |
1552 4333 mt |
| 311 |
(w) s |
| 312 |
gs 899 389 5357 4227 rc |
| 313 |
0 627 -681 0 0 -627 681 0 906 3974 5 MP stroke |
| 314 |
gr |
| 315 |
|
| 316 |
%%IncludeResource: font Helvetica |
| 317 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 318 |
|
| 319 |
1247 3702 mt |
| 320 |
(t2) s |
| 321 |
%%IncludeResource: font Helvetica |
| 322 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 323 |
|
| 324 |
949 3651 mt |
| 325 |
(f5) s |
| 326 |
%%IncludeResource: font Helvetica |
| 327 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 328 |
|
| 329 |
1029 3699 mt |
| 330 |
(n) s |
| 331 |
%%IncludeResource: font Helvetica |
| 332 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 333 |
|
| 334 |
1472 3651 mt |
| 335 |
(f2) s |
| 336 |
%%IncludeResource: font Helvetica |
| 337 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 338 |
|
| 339 |
1552 3699 mt |
| 340 |
(w) s |
| 341 |
gs 899 389 5357 4227 rc |
| 342 |
0 627 -681 0 0 -627 681 0 906 3340 5 MP stroke |
| 343 |
gr |
| 344 |
|
| 345 |
%%IncludeResource: font Helvetica |
| 346 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 347 |
|
| 348 |
1247 3068 mt |
| 349 |
(t3) s |
| 350 |
%%IncludeResource: font Helvetica |
| 351 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 352 |
|
| 353 |
949 3017 mt |
| 354 |
(f5) s |
| 355 |
%%IncludeResource: font Helvetica |
| 356 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 357 |
|
| 358 |
1029 3065 mt |
| 359 |
(n) s |
| 360 |
%%IncludeResource: font Helvetica |
| 361 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 362 |
|
| 363 |
1472 3017 mt |
| 364 |
(f2) s |
| 365 |
%%IncludeResource: font Helvetica |
| 366 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 367 |
|
| 368 |
1552 3065 mt |
| 369 |
(w) s |
| 370 |
gs 899 389 5357 4227 rc |
| 371 |
0 627 -681 0 0 -627 681 0 906 2706 5 MP stroke |
| 372 |
gr |
| 373 |
|
| 374 |
%%IncludeResource: font Helvetica |
| 375 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 376 |
|
| 377 |
1247 2434 mt |
| 378 |
(t4) s |
| 379 |
%%IncludeResource: font Helvetica |
| 380 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 381 |
|
| 382 |
949 2383 mt |
| 383 |
(f5) s |
| 384 |
%%IncludeResource: font Helvetica |
| 385 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 386 |
|
| 387 |
1029 2431 mt |
| 388 |
(n) s |
| 389 |
%%IncludeResource: font Helvetica |
| 390 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 391 |
|
| 392 |
1247 2176 mt |
| 393 |
(f3) s |
| 394 |
%%IncludeResource: font Helvetica |
| 395 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 396 |
|
| 397 |
1327 2224 mt |
| 398 |
(w) s |
| 399 |
%%IncludeResource: font Helvetica |
| 400 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 401 |
|
| 402 |
1472 2383 mt |
| 403 |
(f2) s |
| 404 |
%%IncludeResource: font Helvetica |
| 405 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 406 |
|
| 407 |
1552 2431 mt |
| 408 |
(w) s |
| 409 |
gs 899 389 5357 4227 rc |
| 410 |
SO |
| 411 |
24 w |
| 412 |
/c10 { 0.000000 0.000000 1.000000 sr} bdef |
| 413 |
c10 |
| 414 |
681 0 1595 4607 2 MP stroke |
| 415 |
-681 0 2276 2079 2 MP stroke |
| 416 |
c9 |
| 417 |
0 -2528 2276 4607 2 MP stroke |
| 418 |
0 2528 1595 2079 2 MP stroke |
| 419 |
gr |
| 420 |
|
| 421 |
24 w |
| 422 |
c9 |
| 423 |
SO |
| 424 |
0 sg |
| 425 |
%%IncludeResource: font Helvetica-Bold |
| 426 |
/Helvetica-Bold /ISOLatin1Encoding 168 FMSR |
| 427 |
|
| 428 |
1935 3405 mt |
| 429 |
(f2) s |
| 430 |
gs 899 389 5357 4227 rc |
| 431 |
DA |
| 432 |
6 w |
| 433 |
0 626 -681 0 0 -626 681 0 1595 4607 5 MP stroke |
| 434 |
gr |
| 435 |
|
| 436 |
6 w |
| 437 |
DA |
| 438 |
%%IncludeResource: font Helvetica |
| 439 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 440 |
|
| 441 |
1935 4336 mt |
| 442 |
(t5) s |
| 443 |
%%IncludeResource: font Helvetica |
| 444 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 445 |
|
| 446 |
1638 4285 mt |
| 447 |
(f1) s |
| 448 |
%%IncludeResource: font Helvetica |
| 449 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 450 |
|
| 451 |
1718 4333 mt |
| 452 |
(e) s |
| 453 |
%%IncludeResource: font Helvetica |
| 454 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 455 |
|
| 456 |
1935 4519 mt |
| 457 |
(f6) s |
| 458 |
%%IncludeResource: font Helvetica |
| 459 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 460 |
|
| 461 |
2015 4567 mt |
| 462 |
(e) s |
| 463 |
%%IncludeResource: font Helvetica |
| 464 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 465 |
|
| 466 |
2161 4285 mt |
| 467 |
(f4) s |
| 468 |
%%IncludeResource: font Helvetica |
| 469 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 470 |
|
| 471 |
2241 4333 mt |
| 472 |
(s) s |
| 473 |
gs 899 389 5357 4227 rc |
| 474 |
0 627 -681 0 0 -627 681 0 1595 3974 5 MP stroke |
| 475 |
gr |
| 476 |
|
| 477 |
%%IncludeResource: font Helvetica |
| 478 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 479 |
|
| 480 |
1935 3702 mt |
| 481 |
(t6) s |
| 482 |
%%IncludeResource: font Helvetica |
| 483 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 484 |
|
| 485 |
1638 3651 mt |
| 486 |
(f1) s |
| 487 |
%%IncludeResource: font Helvetica |
| 488 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 489 |
|
| 490 |
1718 3699 mt |
| 491 |
(e) s |
| 492 |
%%IncludeResource: font Helvetica |
| 493 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 494 |
|
| 495 |
2161 3651 mt |
| 496 |
(f4) s |
| 497 |
%%IncludeResource: font Helvetica |
| 498 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 499 |
|
| 500 |
2241 3699 mt |
| 501 |
(s) s |
| 502 |
gs 899 389 5357 4227 rc |
| 503 |
0 627 -681 0 0 -627 681 0 1595 3340 5 MP stroke |
| 504 |
gr |
| 505 |
|
| 506 |
%%IncludeResource: font Helvetica |
| 507 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 508 |
|
| 509 |
1935 3068 mt |
| 510 |
(t7) s |
| 511 |
%%IncludeResource: font Helvetica |
| 512 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 513 |
|
| 514 |
1638 3017 mt |
| 515 |
(f1) s |
| 516 |
%%IncludeResource: font Helvetica |
| 517 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 518 |
|
| 519 |
1718 3065 mt |
| 520 |
(e) s |
| 521 |
%%IncludeResource: font Helvetica |
| 522 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 523 |
|
| 524 |
2161 3017 mt |
| 525 |
(f4) s |
| 526 |
%%IncludeResource: font Helvetica |
| 527 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 528 |
|
| 529 |
2241 3065 mt |
| 530 |
(s) s |
| 531 |
gs 899 389 5357 4227 rc |
| 532 |
0 627 -681 0 0 -627 681 0 1595 2706 5 MP stroke |
| 533 |
gr |
| 534 |
|
| 535 |
%%IncludeResource: font Helvetica |
| 536 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 537 |
|
| 538 |
1935 2434 mt |
| 539 |
(t8) s |
| 540 |
%%IncludeResource: font Helvetica |
| 541 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 542 |
|
| 543 |
1638 2383 mt |
| 544 |
(f1) s |
| 545 |
%%IncludeResource: font Helvetica |
| 546 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 547 |
|
| 548 |
1718 2431 mt |
| 549 |
(e) s |
| 550 |
%%IncludeResource: font Helvetica |
| 551 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 552 |
|
| 553 |
1935 2176 mt |
| 554 |
(f3) s |
| 555 |
%%IncludeResource: font Helvetica |
| 556 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 557 |
|
| 558 |
2015 2224 mt |
| 559 |
(s) s |
| 560 |
%%IncludeResource: font Helvetica |
| 561 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 562 |
|
| 563 |
2161 2383 mt |
| 564 |
(f4) s |
| 565 |
%%IncludeResource: font Helvetica |
| 566 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 567 |
|
| 568 |
2241 2431 mt |
| 569 |
(s) s |
| 570 |
gs 899 389 5357 4227 rc |
| 571 |
SO |
| 572 |
24 w |
| 573 |
c10 |
| 574 |
681 0 1595 2072 2 MP stroke |
| 575 |
-681 0 2276 1445 2 MP stroke |
| 576 |
c8 |
| 577 |
0 -627 2276 2072 2 MP stroke |
| 578 |
0 627 1595 1445 2 MP stroke |
| 579 |
gr |
| 580 |
|
| 581 |
24 w |
| 582 |
c8 |
| 583 |
SO |
| 584 |
0 sg |
| 585 |
%%IncludeResource: font Helvetica-Bold |
| 586 |
/Helvetica-Bold /ISOLatin1Encoding 168 FMSR |
| 587 |
|
| 588 |
1822 1820 mt |
| 589 |
(f3) s |
| 590 |
gs 899 389 5357 4227 rc |
| 591 |
DA |
| 592 |
6 w |
| 593 |
0 627 -681 0 0 -627 681 0 1595 2072 5 MP stroke |
| 594 |
gr |
| 595 |
|
| 596 |
6 w |
| 597 |
DA |
| 598 |
%%IncludeResource: font Helvetica |
| 599 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 600 |
|
| 601 |
1978 1800 mt |
| 602 |
(t9) s |
| 603 |
%%IncludeResource: font Helvetica |
| 604 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 605 |
|
| 606 |
1638 1749 mt |
| 607 |
(f1) s |
| 608 |
%%IncludeResource: font Helvetica |
| 609 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 610 |
|
| 611 |
1718 1797 mt |
| 612 |
(n) s |
| 613 |
%%IncludeResource: font Helvetica |
| 614 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 615 |
|
| 616 |
1935 1542 mt |
| 617 |
(f5) s |
| 618 |
%%IncludeResource: font Helvetica |
| 619 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 620 |
|
| 621 |
2015 1590 mt |
| 622 |
(w) s |
| 623 |
%%IncludeResource: font Helvetica |
| 624 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 625 |
|
| 626 |
1935 1984 mt |
| 627 |
(f2) s |
| 628 |
%%IncludeResource: font Helvetica |
| 629 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 630 |
|
| 631 |
2015 2032 mt |
| 632 |
(n) s |
| 633 |
%%IncludeResource: font Helvetica |
| 634 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 635 |
|
| 636 |
2161 1749 mt |
| 637 |
(f4) s |
| 638 |
%%IncludeResource: font Helvetica |
| 639 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 640 |
|
| 641 |
2241 1797 mt |
| 642 |
(w) s |
| 643 |
gs 899 389 5357 4227 rc |
| 644 |
SO |
| 645 |
24 w |
| 646 |
c9 |
| 647 |
2747 0 2283 2072 2 MP stroke |
| 648 |
-2747 0 5030 1445 2 MP stroke |
| 649 |
c8 |
| 650 |
0 -627 5030 2072 2 MP stroke |
| 651 |
0 627 2283 1445 2 MP stroke |
| 652 |
gr |
| 653 |
|
| 654 |
24 w |
| 655 |
c8 |
| 656 |
SO |
| 657 |
0 sg |
| 658 |
%%IncludeResource: font Helvetica-Bold |
| 659 |
/Helvetica-Bold /ISOLatin1Encoding 168 FMSR |
| 660 |
|
| 661 |
3657 1820 mt |
| 662 |
(f4) s |
| 663 |
gs 899 389 5357 4227 rc |
| 664 |
DA |
| 665 |
6 w |
| 666 |
0 627 -681 0 0 -627 681 0 2283 2072 5 MP stroke |
| 667 |
gr |
| 668 |
|
| 669 |
6 w |
| 670 |
DA |
| 671 |
%%IncludeResource: font Helvetica |
| 672 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 673 |
|
| 674 |
2624 1800 mt |
| 675 |
(t10) s |
| 676 |
%%IncludeResource: font Helvetica |
| 677 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 678 |
|
| 679 |
2326 1749 mt |
| 680 |
(f3) s |
| 681 |
%%IncludeResource: font Helvetica |
| 682 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 683 |
|
| 684 |
2406 1797 mt |
| 685 |
(e) s |
| 686 |
%%IncludeResource: font Helvetica |
| 687 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 688 |
|
| 689 |
2624 1542 mt |
| 690 |
(f5) s |
| 691 |
%%IncludeResource: font Helvetica |
| 692 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 693 |
|
| 694 |
2704 1590 mt |
| 695 |
(s) s |
| 696 |
%%IncludeResource: font Helvetica |
| 697 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 698 |
|
| 699 |
2624 1984 mt |
| 700 |
(f2) s |
| 701 |
%%IncludeResource: font Helvetica |
| 702 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 703 |
|
| 704 |
2704 2032 mt |
| 705 |
(e) s |
| 706 |
gs 899 389 5357 4227 rc |
| 707 |
0 627 -681 0 0 -627 681 0 2972 2072 5 MP stroke |
| 708 |
gr |
| 709 |
|
| 710 |
%%IncludeResource: font Helvetica |
| 711 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 712 |
|
| 713 |
3313 1800 mt |
| 714 |
(t11) s |
| 715 |
%%IncludeResource: font Helvetica |
| 716 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 717 |
|
| 718 |
3313 1542 mt |
| 719 |
(f5) s |
| 720 |
%%IncludeResource: font Helvetica |
| 721 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 722 |
|
| 723 |
3393 1590 mt |
| 724 |
(s) s |
| 725 |
%%IncludeResource: font Helvetica |
| 726 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 727 |
|
| 728 |
3313 1984 mt |
| 729 |
(f2) s |
| 730 |
%%IncludeResource: font Helvetica |
| 731 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 732 |
|
| 733 |
3393 2032 mt |
| 734 |
(e) s |
| 735 |
gs 899 389 5357 4227 rc |
| 736 |
0 627 -681 0 0 -627 681 0 3661 2072 5 MP stroke |
| 737 |
gr |
| 738 |
|
| 739 |
%%IncludeResource: font Helvetica |
| 740 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 741 |
|
| 742 |
4001 1800 mt |
| 743 |
(t12) s |
| 744 |
%%IncludeResource: font Helvetica |
| 745 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 746 |
|
| 747 |
4001 1542 mt |
| 748 |
(f5) s |
| 749 |
%%IncludeResource: font Helvetica |
| 750 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 751 |
|
| 752 |
4081 1590 mt |
| 753 |
(s) s |
| 754 |
%%IncludeResource: font Helvetica |
| 755 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 756 |
|
| 757 |
4001 1984 mt |
| 758 |
(f2) s |
| 759 |
%%IncludeResource: font Helvetica |
| 760 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 761 |
|
| 762 |
4081 2032 mt |
| 763 |
(e) s |
| 764 |
gs 899 389 5357 4227 rc |
| 765 |
0 627 -681 0 0 -627 681 0 4349 2072 5 MP stroke |
| 766 |
gr |
| 767 |
|
| 768 |
%%IncludeResource: font Helvetica |
| 769 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 770 |
|
| 771 |
4690 1800 mt |
| 772 |
(t13) s |
| 773 |
%%IncludeResource: font Helvetica |
| 774 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 775 |
|
| 776 |
4690 1542 mt |
| 777 |
(f5) s |
| 778 |
%%IncludeResource: font Helvetica |
| 779 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 780 |
|
| 781 |
4770 1590 mt |
| 782 |
(s) s |
| 783 |
%%IncludeResource: font Helvetica |
| 784 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 785 |
|
| 786 |
4690 1984 mt |
| 787 |
(f2) s |
| 788 |
%%IncludeResource: font Helvetica |
| 789 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 790 |
|
| 791 |
4770 2032 mt |
| 792 |
(e) s |
| 793 |
%%IncludeResource: font Helvetica |
| 794 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 795 |
|
| 796 |
4916 1749 mt |
| 797 |
(f6) s |
| 798 |
%%IncludeResource: font Helvetica |
| 799 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 800 |
|
| 801 |
4996 1797 mt |
| 802 |
(s) s |
| 803 |
gs 899 389 5357 4227 rc |
| 804 |
SO |
| 805 |
24 w |
| 806 |
c9 |
| 807 |
2747 0 2283 1438 2 MP stroke |
| 808 |
-2747 0 5030 811 2 MP stroke |
| 809 |
c10 |
| 810 |
0 -627 5030 1438 2 MP stroke |
| 811 |
0 627 2283 811 2 MP stroke |
| 812 |
gr |
| 813 |
|
| 814 |
24 w |
| 815 |
c10 |
| 816 |
SO |
| 817 |
0 sg |
| 818 |
%%IncludeResource: font Helvetica-Bold |
| 819 |
/Helvetica-Bold /ISOLatin1Encoding 168 FMSR |
| 820 |
|
| 821 |
3657 1187 mt |
| 822 |
(f5) s |
| 823 |
gs 899 389 5357 4227 rc |
| 824 |
DA |
| 825 |
6 w |
| 826 |
0 627 -681 0 0 -627 681 0 2283 1438 5 MP stroke |
| 827 |
gr |
| 828 |
|
| 829 |
6 w |
| 830 |
DA |
| 831 |
%%IncludeResource: font Helvetica |
| 832 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 833 |
|
| 834 |
2624 1167 mt |
| 835 |
(t14) s |
| 836 |
%%IncludeResource: font Helvetica |
| 837 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 838 |
|
| 839 |
2326 1116 mt |
| 840 |
(f3) s |
| 841 |
%%IncludeResource: font Helvetica |
| 842 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 843 |
|
| 844 |
2406 1164 mt |
| 845 |
(n) s |
| 846 |
%%IncludeResource: font Helvetica |
| 847 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 848 |
|
| 849 |
2624 908 mt |
| 850 |
(f1) s |
| 851 |
%%IncludeResource: font Helvetica |
| 852 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 853 |
|
| 854 |
2704 956 mt |
| 855 |
(w) s |
| 856 |
%%IncludeResource: font Helvetica |
| 857 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 858 |
|
| 859 |
2624 1350 mt |
| 860 |
(f4) s |
| 861 |
%%IncludeResource: font Helvetica |
| 862 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 863 |
|
| 864 |
2704 1398 mt |
| 865 |
(n) s |
| 866 |
gs 899 389 5357 4227 rc |
| 867 |
0 627 -681 0 0 -627 681 0 2972 1438 5 MP stroke |
| 868 |
gr |
| 869 |
|
| 870 |
%%IncludeResource: font Helvetica |
| 871 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 872 |
|
| 873 |
3313 1167 mt |
| 874 |
(t15) s |
| 875 |
%%IncludeResource: font Helvetica |
| 876 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 877 |
|
| 878 |
3313 908 mt |
| 879 |
(f1) s |
| 880 |
%%IncludeResource: font Helvetica |
| 881 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 882 |
|
| 883 |
3393 956 mt |
| 884 |
(w) s |
| 885 |
%%IncludeResource: font Helvetica |
| 886 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 887 |
|
| 888 |
3313 1350 mt |
| 889 |
(f4) s |
| 890 |
%%IncludeResource: font Helvetica |
| 891 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 892 |
|
| 893 |
3393 1398 mt |
| 894 |
(n) s |
| 895 |
gs 899 389 5357 4227 rc |
| 896 |
0 627 -681 0 0 -627 681 0 3661 1438 5 MP stroke |
| 897 |
gr |
| 898 |
|
| 899 |
%%IncludeResource: font Helvetica |
| 900 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 901 |
|
| 902 |
4001 1167 mt |
| 903 |
(t16) s |
| 904 |
%%IncludeResource: font Helvetica |
| 905 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 906 |
|
| 907 |
4001 908 mt |
| 908 |
(f1) s |
| 909 |
%%IncludeResource: font Helvetica |
| 910 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 911 |
|
| 912 |
4081 956 mt |
| 913 |
(w) s |
| 914 |
%%IncludeResource: font Helvetica |
| 915 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 916 |
|
| 917 |
4001 1350 mt |
| 918 |
(f4) s |
| 919 |
%%IncludeResource: font Helvetica |
| 920 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 921 |
|
| 922 |
4081 1398 mt |
| 923 |
(n) s |
| 924 |
gs 899 389 5357 4227 rc |
| 925 |
0 627 -681 0 0 -627 681 0 4349 1438 5 MP stroke |
| 926 |
gr |
| 927 |
|
| 928 |
%%IncludeResource: font Helvetica |
| 929 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 930 |
|
| 931 |
4690 1167 mt |
| 932 |
(t17) s |
| 933 |
%%IncludeResource: font Helvetica |
| 934 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 935 |
|
| 936 |
4690 908 mt |
| 937 |
(f1) s |
| 938 |
%%IncludeResource: font Helvetica |
| 939 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 940 |
|
| 941 |
4770 956 mt |
| 942 |
(w) s |
| 943 |
%%IncludeResource: font Helvetica |
| 944 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 945 |
|
| 946 |
4690 1350 mt |
| 947 |
(f4) s |
| 948 |
%%IncludeResource: font Helvetica |
| 949 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 950 |
|
| 951 |
4770 1398 mt |
| 952 |
(n) s |
| 953 |
%%IncludeResource: font Helvetica |
| 954 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 955 |
|
| 956 |
4916 1116 mt |
| 957 |
(f6) s |
| 958 |
%%IncludeResource: font Helvetica |
| 959 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 960 |
|
| 961 |
4996 1164 mt |
| 962 |
(w) s |
| 963 |
gs 899 389 5357 4227 rc |
| 964 |
SO |
| 965 |
24 w |
| 966 |
c8 |
| 967 |
681 0 5038 1438 2 MP stroke |
| 968 |
-681 0 5719 811 2 MP stroke |
| 969 |
c10 |
| 970 |
0 -627 5719 1438 2 MP stroke |
| 971 |
0 627 5038 811 2 MP stroke |
| 972 |
gr |
| 973 |
|
| 974 |
24 w |
| 975 |
c10 |
| 976 |
SO |
| 977 |
0 sg |
| 978 |
%%IncludeResource: font Helvetica-Bold |
| 979 |
/Helvetica-Bold /ISOLatin1Encoding 168 FMSR |
| 980 |
|
| 981 |
5265 1187 mt |
| 982 |
(f6) s |
| 983 |
gs 899 389 5357 4227 rc |
| 984 |
DA |
| 985 |
6 w |
| 986 |
0 627 -681 0 0 -627 681 0 5038 1438 5 MP stroke |
| 987 |
gr |
| 988 |
|
| 989 |
6 w |
| 990 |
DA |
| 991 |
%%IncludeResource: font Helvetica |
| 992 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 993 |
|
| 994 |
5421 1167 mt |
| 995 |
(t18) s |
| 996 |
%%IncludeResource: font Helvetica |
| 997 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 998 |
|
| 999 |
5081 1116 mt |
| 1000 |
(f5) s |
| 1001 |
%%IncludeResource: font Helvetica |
| 1002 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 1003 |
|
| 1004 |
5161 1164 mt |
| 1005 |
(e) s |
| 1006 |
%%IncludeResource: font Helvetica |
| 1007 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 1008 |
|
| 1009 |
5378 908 mt |
| 1010 |
(f1) s |
| 1011 |
%%IncludeResource: font Helvetica |
| 1012 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 1013 |
|
| 1014 |
5458 956 mt |
| 1015 |
(s) s |
| 1016 |
%%IncludeResource: font Helvetica |
| 1017 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 1018 |
|
| 1019 |
5378 1350 mt |
| 1020 |
(f4) s |
| 1021 |
%%IncludeResource: font Helvetica |
| 1022 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 1023 |
|
| 1024 |
5458 1398 mt |
| 1025 |
(e) s |
| 1026 |
%%IncludeResource: font Helvetica |
| 1027 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 1028 |
|
| 1029 |
5604 1116 mt |
| 1030 |
(f2) s |
| 1031 |
%%IncludeResource: font Helvetica |
| 1032 |
/Helvetica /ISOLatin1Encoding 72 FMSR |
| 1033 |
|
| 1034 |
5684 1164 mt |
| 1035 |
(s) s |
| 1036 |
SO |
| 1037 |
|
| 1038 |
end %%Color Dict |
| 1039 |
|
| 1040 |
eplot |
| 1041 |
%%EndObject |
| 1042 |
|
| 1043 |
epage |
| 1044 |
end |
| 1045 |
|
| 1046 |
showpage |
| 1047 |
|
| 1048 |
%%Trailer |
| 1049 |
%%BoundingBox: 73 215 551 589 |
| 1050 |
%%Pages: 001 |
| 1051 |
%%EOF |