Mercurial > docs > keysigning-help
comparison wot-after.ps @ 0:8d616aba351e
the already finished paper
author | meillo@marmaro.de |
---|---|
date | Wed, 18 Feb 2009 16:57:20 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8d616aba351e |
---|---|
1 %!PS-Adobe-3.0 EPSF-3.0 | |
2 %%Creator: Graphviz version 2.20.2 (Sun Oct 12 22:28:10 UTC 2008) | |
3 %%For: (meillo) Meillo r e t u r n s,,, | |
4 %%Title: lugu wot 2008-11-30 | |
5 %%Pages: (atend) | |
6 %%BoundingBox: (atend) | |
7 %%EndComments | |
8 save | |
9 %%BeginProlog | |
10 /DotDict 200 dict def | |
11 DotDict begin | |
12 | |
13 /setupLatin1 { | |
14 mark | |
15 /EncodingVector 256 array def | |
16 EncodingVector 0 | |
17 | |
18 ISOLatin1Encoding 0 255 getinterval putinterval | |
19 EncodingVector 45 /hyphen put | |
20 | |
21 % Set up ISO Latin 1 character encoding | |
22 /starnetISO { | |
23 dup dup findfont dup length dict begin | |
24 { 1 index /FID ne { def }{ pop pop } ifelse | |
25 } forall | |
26 /Encoding EncodingVector def | |
27 currentdict end definefont | |
28 } def | |
29 /Times-Roman starnetISO def | |
30 /Times-Italic starnetISO def | |
31 /Times-Bold starnetISO def | |
32 /Times-BoldItalic starnetISO def | |
33 /Helvetica starnetISO def | |
34 /Helvetica-Oblique starnetISO def | |
35 /Helvetica-Bold starnetISO def | |
36 /Helvetica-BoldOblique starnetISO def | |
37 /Courier starnetISO def | |
38 /Courier-Oblique starnetISO def | |
39 /Courier-Bold starnetISO def | |
40 /Courier-BoldOblique starnetISO def | |
41 cleartomark | |
42 } bind def | |
43 | |
44 %%BeginResource: procset graphviz 0 0 | |
45 /coord-font-family /Times-Roman def | |
46 /default-font-family /Times-Roman def | |
47 /coordfont coord-font-family findfont 8 scalefont def | |
48 | |
49 /InvScaleFactor 1.0 def | |
50 /set_scale { | |
51 dup 1 exch div /InvScaleFactor exch def | |
52 scale | |
53 } bind def | |
54 | |
55 % styles | |
56 /solid { [] 0 setdash } bind def | |
57 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def | |
58 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def | |
59 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def | |
60 /bold { 2 setlinewidth } bind def | |
61 /filled { } bind def | |
62 /unfilled { } bind def | |
63 /rounded { } bind def | |
64 /diagonals { } bind def | |
65 | |
66 % hooks for setting color | |
67 /nodecolor { sethsbcolor } bind def | |
68 /edgecolor { sethsbcolor } bind def | |
69 /graphcolor { sethsbcolor } bind def | |
70 /nopcolor {pop pop pop} bind def | |
71 | |
72 /beginpage { % i j npages | |
73 /npages exch def | |
74 /j exch def | |
75 /i exch def | |
76 /str 10 string def | |
77 npages 1 gt { | |
78 gsave | |
79 coordfont setfont | |
80 0 0 moveto | |
81 (\() show i str cvs show (,) show j str cvs show (\)) show | |
82 grestore | |
83 } if | |
84 } bind def | |
85 | |
86 /set_font { | |
87 findfont exch | |
88 scalefont setfont | |
89 } def | |
90 | |
91 % draw text fitted to its expected width | |
92 /alignedtext { % width text | |
93 /text exch def | |
94 /width exch def | |
95 gsave | |
96 width 0 gt { | |
97 [] 0 setdash | |
98 text stringwidth pop width exch sub text length div 0 text ashow | |
99 } if | |
100 grestore | |
101 } def | |
102 | |
103 /boxprim { % xcorner ycorner xsize ysize | |
104 4 2 roll | |
105 moveto | |
106 2 copy | |
107 exch 0 rlineto | |
108 0 exch rlineto | |
109 pop neg 0 rlineto | |
110 closepath | |
111 } bind def | |
112 | |
113 /ellipse_path { | |
114 /ry exch def | |
115 /rx exch def | |
116 /y exch def | |
117 /x exch def | |
118 matrix currentmatrix | |
119 newpath | |
120 x y translate | |
121 rx ry scale | |
122 0 0 1 0 360 arc | |
123 setmatrix | |
124 } bind def | |
125 | |
126 /endpage { showpage } bind def | |
127 /showpage { } def | |
128 | |
129 /layercolorseq | |
130 [ % layer color sequence - darkest to lightest | |
131 [0 0 0] | |
132 [.2 .8 .8] | |
133 [.4 .8 .8] | |
134 [.6 .8 .8] | |
135 [.8 .8 .8] | |
136 ] | |
137 def | |
138 | |
139 /layerlen layercolorseq length def | |
140 | |
141 /setlayer {/maxlayer exch def /curlayer exch def | |
142 layercolorseq curlayer 1 sub layerlen mod get | |
143 aload pop sethsbcolor | |
144 /nodecolor {nopcolor} def | |
145 /edgecolor {nopcolor} def | |
146 /graphcolor {nopcolor} def | |
147 } bind def | |
148 | |
149 /onlayer { curlayer ne {invis} if } def | |
150 | |
151 /onlayers { | |
152 /myupper exch def | |
153 /mylower exch def | |
154 curlayer mylower lt | |
155 curlayer myupper gt | |
156 or | |
157 {invis} if | |
158 } def | |
159 | |
160 /curlayer 0 def | |
161 | |
162 %%EndResource | |
163 %%EndProlog | |
164 %%BeginSetup | |
165 14 default-font-family set_font | |
166 1 setmiterlimit | |
167 % /arrowlength 10 def | |
168 % /arrowwidth 5 def | |
169 | |
170 % make sure pdfmark is harmless for PS-interpreters other than Distiller | |
171 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse | |
172 % make '<<' and '>>' safe on PS Level 1 devices | |
173 /languagelevel where {pop languagelevel}{1} ifelse | |
174 2 lt { | |
175 userdict (<<) cvn ([) cvn load put | |
176 userdict (>>) cvn ([) cvn load put | |
177 } if | |
178 | |
179 %%EndSetup | |
180 setupLatin1 | |
181 %%Page: 1 1 | |
182 %%PageBoundingBox: 36 36 271 296 | |
183 %%PageOrientation: Portrait | |
184 0 0 1 beginpage | |
185 gsave | |
186 36 36 235 260 boxprim clip newpath | |
187 1 1 set_scale 0 rotate 40 40 translate | |
188 % 2A411DFD | |
189 gsave | |
190 1 setlinewidth | |
191 0.000 0.000 0.000 nodecolor | |
192 114 144 27 18 ellipse_path stroke | |
193 0.000 0.000 0.000 nodecolor | |
194 14 /Times-Roman set_font | |
195 108 139.9 moveto 12 (aa) alignedtext | |
196 grestore | |
197 % 656D4094 | |
198 gsave | |
199 1 setlinewidth | |
200 0.000 0.000 0.000 nodecolor | |
201 173 137 27 18 ellipse_path stroke | |
202 0.000 0.000 0.000 nodecolor | |
203 14 /Times-Roman set_font | |
204 165.5 132.9 moveto 15 (bb) alignedtext | |
205 grestore | |
206 % 2A411DFD->656D4094 | |
207 gsave | |
208 1 setlinewidth | |
209 0.000 0.000 0.000 edgecolor | |
210 newpath 141 141 moveto | |
211 141 141 141 141 141 141 curveto | |
212 stroke | |
213 0.000 0.000 0.000 edgecolor | |
214 newpath 136.88 145.39 moveto | |
215 146 140 lineto | |
216 135.51 138.53 lineto | |
217 closepath fill | |
218 1 setlinewidth | |
219 solid | |
220 0.000 0.000 0.000 edgecolor | |
221 newpath 136.88 145.39 moveto | |
222 146 140 lineto | |
223 135.51 138.53 lineto | |
224 closepath stroke | |
225 grestore | |
226 % 303FC62A | |
227 gsave | |
228 1 setlinewidth | |
229 0.000 0.000 0.000 nodecolor | |
230 119 19 27 18 ellipse_path stroke | |
231 0.000 0.000 0.000 nodecolor | |
232 14 /Times-Roman set_font | |
233 112 14.9 moveto 14 (cc) alignedtext | |
234 grestore | |
235 % 2A411DFD->303FC62A | |
236 gsave | |
237 1 setlinewidth | |
238 0.000 0.000 0.000 edgecolor | |
239 newpath 115 126 moveto | |
240 116 105 117 71 118 47 curveto | |
241 stroke | |
242 0.000 0.000 0.000 edgecolor | |
243 newpath 121.5 47 moveto | |
244 118 37 lineto | |
245 114.5 47 lineto | |
246 closepath fill | |
247 1 setlinewidth | |
248 solid | |
249 0.000 0.000 0.000 edgecolor | |
250 newpath 121.5 47 moveto | |
251 118 37 lineto | |
252 114.5 47 lineto | |
253 closepath stroke | |
254 grestore | |
255 % AB69FEE2 | |
256 gsave | |
257 1 setlinewidth | |
258 0.000 0.000 0.000 nodecolor | |
259 28 185 27 18 ellipse_path stroke | |
260 0.000 0.000 0.000 nodecolor | |
261 14 /Times-Roman set_font | |
262 20.5 180.9 moveto 15 (dd) alignedtext | |
263 grestore | |
264 % 2A411DFD->AB69FEE2 | |
265 gsave | |
266 1 setlinewidth | |
267 0.000 0.000 0.000 edgecolor | |
268 newpath 92 155 moveto | |
269 82 160 70 165 59 171 curveto | |
270 stroke | |
271 0.000 0.000 0.000 edgecolor | |
272 newpath 57.72 167.74 moveto | |
273 50 175 lineto | |
274 60.56 174.14 lineto | |
275 closepath fill | |
276 1 setlinewidth | |
277 solid | |
278 0.000 0.000 0.000 edgecolor | |
279 newpath 57.72 167.74 moveto | |
280 50 175 lineto | |
281 60.56 174.14 lineto | |
282 closepath stroke | |
283 grestore | |
284 % D2F682BE | |
285 gsave | |
286 1 setlinewidth | |
287 0.000 0.000 0.000 nodecolor | |
288 151 233 27 18 ellipse_path stroke | |
289 0.000 0.000 0.000 nodecolor | |
290 14 /Times-Roman set_font | |
291 146.5 228.9 moveto 9 (ff) alignedtext | |
292 grestore | |
293 % 2A411DFD->D2F682BE | |
294 gsave | |
295 1 setlinewidth | |
296 0.000 0.000 0.000 edgecolor | |
297 newpath 121 162 moveto | |
298 127 175 134 192 140 206 curveto | |
299 stroke | |
300 0.000 0.000 0.000 edgecolor | |
301 newpath 137.04 208.02 moveto | |
302 144 216 lineto | |
303 143.54 205.42 lineto | |
304 closepath fill | |
305 1 setlinewidth | |
306 solid | |
307 0.000 0.000 0.000 edgecolor | |
308 newpath 137.04 208.02 moveto | |
309 144 216 lineto | |
310 143.54 205.42 lineto | |
311 closepath stroke | |
312 grestore | |
313 % E5FDA812 | |
314 gsave | |
315 1 setlinewidth | |
316 0.000 0.000 0.000 nodecolor | |
317 77 98 27 18 ellipse_path stroke | |
318 0.000 0.000 0.000 nodecolor | |
319 14 /Times-Roman set_font | |
320 70 93.9 moveto 14 (gg) alignedtext | |
321 grestore | |
322 % 2A411DFD->E5FDA812 | |
323 gsave | |
324 1 setlinewidth | |
325 0.000 0.000 0.000 edgecolor | |
326 newpath 101 128 moveto | |
327 99 126 98 124 96 122 curveto | |
328 stroke | |
329 0.000 0.000 0.000 edgecolor | |
330 newpath 98.8 119.9 moveto | |
331 90 114 lineto | |
332 93.2 124.1 lineto | |
333 closepath fill | |
334 1 setlinewidth | |
335 solid | |
336 0.000 0.000 0.000 edgecolor | |
337 newpath 98.8 119.9 moveto | |
338 90 114 lineto | |
339 93.2 124.1 lineto | |
340 closepath stroke | |
341 grestore | |
342 % 656D4094->2A411DFD | |
343 gsave | |
344 1 setlinewidth | |
345 0.000 0.000 0.000 edgecolor | |
346 newpath 146 140 moveto | |
347 146 140 146 140 146 140 curveto | |
348 stroke | |
349 0.000 0.000 0.000 edgecolor | |
350 newpath 150.12 135.61 moveto | |
351 141 141 lineto | |
352 151.49 142.47 lineto | |
353 closepath fill | |
354 1 setlinewidth | |
355 solid | |
356 0.000 0.000 0.000 edgecolor | |
357 newpath 150.12 135.61 moveto | |
358 141 141 lineto | |
359 151.49 142.47 lineto | |
360 closepath stroke | |
361 grestore | |
362 % 656D4094->303FC62A | |
363 gsave | |
364 1 setlinewidth | |
365 0.000 0.000 0.000 edgecolor | |
366 newpath 165 120 moveto | |
367 156 101 142 69 131 46 curveto | |
368 stroke | |
369 0.000 0.000 0.000 edgecolor | |
370 newpath 134.26 44.72 moveto | |
371 127 37 lineto | |
372 127.86 47.56 lineto | |
373 closepath fill | |
374 1 setlinewidth | |
375 solid | |
376 0.000 0.000 0.000 edgecolor | |
377 newpath 134.26 44.72 moveto | |
378 127 37 lineto | |
379 127.86 47.56 lineto | |
380 closepath stroke | |
381 grestore | |
382 % 656D4094->AB69FEE2 | |
383 gsave | |
384 1 setlinewidth | |
385 0.000 0.000 0.000 edgecolor | |
386 newpath 153 149 moveto | |
387 147 153 140 156 134 158 curveto | |
388 112 167 85 174 64 178 curveto | |
389 stroke | |
390 0.000 0.000 0.000 edgecolor | |
391 newpath 63.12 174.61 moveto | |
392 54 180 lineto | |
393 64.49 181.47 lineto | |
394 closepath fill | |
395 1 setlinewidth | |
396 solid | |
397 0.000 0.000 0.000 edgecolor | |
398 newpath 63.12 174.61 moveto | |
399 54 180 lineto | |
400 64.49 181.47 lineto | |
401 closepath stroke | |
402 grestore | |
403 % 38F1C023 | |
404 gsave | |
405 1 setlinewidth | |
406 0.000 0.000 0.000 nodecolor | |
407 199 52 27 18 ellipse_path stroke | |
408 0.000 0.000 0.000 nodecolor | |
409 14 /Times-Roman set_font | |
410 193 47.9 moveto 12 (ee) alignedtext | |
411 grestore | |
412 % 656D4094->38F1C023 | |
413 gsave | |
414 1 setlinewidth | |
415 0.000 0.000 0.000 edgecolor | |
416 newpath 179 119 moveto | |
417 182 107 187 92 191 80 curveto | |
418 stroke | |
419 0.000 0.000 0.000 edgecolor | |
420 newpath 194.48 80.58 moveto | |
421 194 70 lineto | |
422 187.77 78.57 lineto | |
423 closepath fill | |
424 1 setlinewidth | |
425 solid | |
426 0.000 0.000 0.000 edgecolor | |
427 newpath 194.48 80.58 moveto | |
428 194 70 lineto | |
429 187.77 78.57 lineto | |
430 closepath stroke | |
431 grestore | |
432 % 656D4094->D2F682BE | |
433 gsave | |
434 1 setlinewidth | |
435 0.000 0.000 0.000 edgecolor | |
436 newpath 169 155 moveto | |
437 166 169 161 189 157 205 curveto | |
438 stroke | |
439 0.000 0.000 0.000 edgecolor | |
440 newpath 153.53 204.51 moveto | |
441 155 215 lineto | |
442 160.39 205.88 lineto | |
443 closepath fill | |
444 1 setlinewidth | |
445 solid | |
446 0.000 0.000 0.000 edgecolor | |
447 newpath 153.53 204.51 moveto | |
448 155 215 lineto | |
449 160.39 205.88 lineto | |
450 closepath stroke | |
451 grestore | |
452 % 656D4094->E5FDA812 | |
453 gsave | |
454 1 setlinewidth | |
455 0.000 0.000 0.000 edgecolor | |
456 newpath 150 128 moveto | |
457 138 123 123 117 109 112 curveto | |
458 stroke | |
459 0.000 0.000 0.000 edgecolor | |
460 newpath 110.56 108.86 moveto | |
461 100 108 lineto | |
462 107.72 115.26 lineto | |
463 closepath fill | |
464 1 setlinewidth | |
465 solid | |
466 0.000 0.000 0.000 edgecolor | |
467 newpath 110.56 108.86 moveto | |
468 100 108 lineto | |
469 107.72 115.26 lineto | |
470 closepath stroke | |
471 grestore | |
472 % 303FC62A->E5FDA812 | |
473 gsave | |
474 1 setlinewidth | |
475 0.000 0.000 0.000 edgecolor | |
476 newpath 110 36 moveto | |
477 104 46 97 60 91 72 curveto | |
478 stroke | |
479 0.000 0.000 0.000 edgecolor | |
480 newpath 87.8 70.56 moveto | |
481 86 81 lineto | |
482 93.92 73.96 lineto | |
483 closepath fill | |
484 1 setlinewidth | |
485 solid | |
486 0.000 0.000 0.000 edgecolor | |
487 newpath 87.8 70.56 moveto | |
488 86 81 lineto | |
489 93.92 73.96 lineto | |
490 closepath stroke | |
491 grestore | |
492 % 38F1C023->2A411DFD | |
493 gsave | |
494 1 setlinewidth | |
495 0.000 0.000 0.000 edgecolor | |
496 newpath 185 68 moveto | |
497 171 83 151 104 135 120 curveto | |
498 stroke | |
499 0.000 0.000 0.000 edgecolor | |
500 newpath 131.95 118.17 moveto | |
501 128 128 lineto | |
502 137.22 122.78 lineto | |
503 closepath fill | |
504 1 setlinewidth | |
505 solid | |
506 0.000 0.000 0.000 edgecolor | |
507 newpath 131.95 118.17 moveto | |
508 128 128 lineto | |
509 137.22 122.78 lineto | |
510 closepath stroke | |
511 grestore | |
512 % 38F1C023->656D4094 | |
513 gsave | |
514 1 setlinewidth | |
515 0.000 0.000 0.000 edgecolor | |
516 newpath 193 70 moveto | |
517 190 82 185 97 181 109 curveto | |
518 stroke | |
519 0.000 0.000 0.000 edgecolor | |
520 newpath 177.52 108.42 moveto | |
521 178 119 lineto | |
522 184.23 110.43 lineto | |
523 closepath fill | |
524 1 setlinewidth | |
525 solid | |
526 0.000 0.000 0.000 edgecolor | |
527 newpath 177.52 108.42 moveto | |
528 178 119 lineto | |
529 184.23 110.43 lineto | |
530 closepath stroke | |
531 grestore | |
532 % 38F1C023->303FC62A | |
533 gsave | |
534 1 setlinewidth | |
535 0.000 0.000 0.000 edgecolor | |
536 newpath 176 42 moveto | |
537 168 39 160 36 151 33 curveto | |
538 stroke | |
539 0.000 0.000 0.000 edgecolor | |
540 newpath 152.56 29.86 moveto | |
541 142 29 lineto | |
542 149.72 36.26 lineto | |
543 closepath fill | |
544 1 setlinewidth | |
545 solid | |
546 0.000 0.000 0.000 edgecolor | |
547 newpath 152.56 29.86 moveto | |
548 142 29 lineto | |
549 149.72 36.26 lineto | |
550 closepath stroke | |
551 grestore | |
552 % 38F1C023->E5FDA812 | |
553 gsave | |
554 1 setlinewidth | |
555 0.000 0.000 0.000 edgecolor | |
556 newpath 175 61 moveto | |
557 157 68 131 78 110 85 curveto | |
558 stroke | |
559 0.000 0.000 0.000 edgecolor | |
560 newpath 108.72 81.74 moveto | |
561 101 89 lineto | |
562 111.56 88.14 lineto | |
563 closepath fill | |
564 1 setlinewidth | |
565 solid | |
566 0.000 0.000 0.000 edgecolor | |
567 newpath 108.72 81.74 moveto | |
568 101 89 lineto | |
569 111.56 88.14 lineto | |
570 closepath stroke | |
571 grestore | |
572 % D2F682BE->2A411DFD | |
573 gsave | |
574 1 setlinewidth | |
575 0.000 0.000 0.000 edgecolor | |
576 newpath 144 215 moveto | |
577 138 202 131 185 125 171 curveto | |
578 stroke | |
579 0.000 0.000 0.000 edgecolor | |
580 newpath 127.96 168.98 moveto | |
581 121 161 lineto | |
582 121.46 171.58 lineto | |
583 closepath fill | |
584 1 setlinewidth | |
585 solid | |
586 0.000 0.000 0.000 edgecolor | |
587 newpath 127.96 168.98 moveto | |
588 121 161 lineto | |
589 121.46 171.58 lineto | |
590 closepath stroke | |
591 grestore | |
592 % E5FDA812->2A411DFD | |
593 gsave | |
594 1 setlinewidth | |
595 0.000 0.000 0.000 edgecolor | |
596 newpath 90 114 moveto | |
597 92 116 94 118 95 120 curveto | |
598 stroke | |
599 0.000 0.000 0.000 edgecolor | |
600 newpath 92.2 122.1 moveto | |
601 101 128 lineto | |
602 97.8 117.9 lineto | |
603 closepath fill | |
604 1 setlinewidth | |
605 solid | |
606 0.000 0.000 0.000 edgecolor | |
607 newpath 92.2 122.1 moveto | |
608 101 128 lineto | |
609 97.8 117.9 lineto | |
610 closepath stroke | |
611 grestore | |
612 % E5FDA812->656D4094 | |
613 gsave | |
614 1 setlinewidth | |
615 0.000 0.000 0.000 edgecolor | |
616 newpath 100 107 moveto | |
617 112 112 127 118 141 123 curveto | |
618 stroke | |
619 0.000 0.000 0.000 edgecolor | |
620 newpath 139.44 126.14 moveto | |
621 150 127 lineto | |
622 142.28 119.74 lineto | |
623 closepath fill | |
624 1 setlinewidth | |
625 solid | |
626 0.000 0.000 0.000 edgecolor | |
627 newpath 139.44 126.14 moveto | |
628 150 127 lineto | |
629 142.28 119.74 lineto | |
630 closepath stroke | |
631 grestore | |
632 % E5FDA812->AB69FEE2 | |
633 gsave | |
634 1 setlinewidth | |
635 0.000 0.000 0.000 edgecolor | |
636 newpath 67 115 moveto | |
637 61 128 51 145 43 159 curveto | |
638 stroke | |
639 0.000 0.000 0.000 edgecolor | |
640 newpath 39.8 157.56 moveto | |
641 38 168 lineto | |
642 45.92 160.96 lineto | |
643 closepath fill | |
644 1 setlinewidth | |
645 solid | |
646 0.000 0.000 0.000 edgecolor | |
647 newpath 39.8 157.56 moveto | |
648 38 168 lineto | |
649 45.92 160.96 lineto | |
650 closepath stroke | |
651 grestore | |
652 % E5FDA812->38F1C023 | |
653 gsave | |
654 1 setlinewidth | |
655 0.000 0.000 0.000 edgecolor | |
656 newpath 101 89 moveto | |
657 119 82 145 72 166 65 curveto | |
658 stroke | |
659 0.000 0.000 0.000 edgecolor | |
660 newpath 167.28 68.26 moveto | |
661 175 61 lineto | |
662 164.44 61.86 lineto | |
663 closepath fill | |
664 1 setlinewidth | |
665 solid | |
666 0.000 0.000 0.000 edgecolor | |
667 newpath 167.28 68.26 moveto | |
668 175 61 lineto | |
669 164.44 61.86 lineto | |
670 closepath stroke | |
671 grestore | |
672 % E5FDA812->D2F682BE | |
673 gsave | |
674 1 setlinewidth | |
675 0.000 0.000 0.000 edgecolor | |
676 newpath 79 116 moveto | |
677 80 125 82 135 85 144 curveto | |
678 94 169 114 193 128 210 curveto | |
679 stroke | |
680 0.000 0.000 0.000 edgecolor | |
681 newpath 125.78 212.78 moveto | |
682 135 218 lineto | |
683 131.05 208.17 lineto | |
684 closepath fill | |
685 1 setlinewidth | |
686 solid | |
687 0.000 0.000 0.000 edgecolor | |
688 newpath 125.78 212.78 moveto | |
689 135 218 lineto | |
690 131.05 208.17 lineto | |
691 closepath stroke | |
692 grestore | |
693 endpage | |
694 showpage | |
695 grestore | |
696 %%PageTrailer | |
697 %%EndPage: 1 | |
698 %%Trailer | |
699 %%Pages: 1 | |
700 %%BoundingBox: 36 36 271 296 | |
701 end | |
702 restore | |
703 %%EOF |