]> git.llucax.com Git - mecon/samurai.git/blob - doc/apidoc/latex/classSAMURAI__Sistema_a17_cgraph.eps
Funcionalidad terminada, salvo consultas. Solo falta ver bien si hay errores
[mecon/samurai.git] / doc / apidoc / latex / classSAMURAI__Sistema_a17_cgraph.eps
1 %!PS-Adobe-2.0
2 %%Creator: dot version 1.8.9 (Wed Oct  2 09:41:21 MDT 2002)
3 %%For: (martin) ,,,
4 %%Title: G
5 %%Pages: (atend)
6 %%BoundingBox: 35 35 1887 173
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
20 EncodingVector
21   dup 306 /AE
22   dup 301 /Aacute
23   dup 302 /Acircumflex
24   dup 304 /Adieresis
25   dup 300 /Agrave
26   dup 305 /Aring
27   dup 303 /Atilde
28   dup 307 /Ccedilla
29   dup 311 /Eacute
30   dup 312 /Ecircumflex
31   dup 313 /Edieresis
32   dup 310 /Egrave
33   dup 315 /Iacute
34   dup 316 /Icircumflex
35   dup 317 /Idieresis
36   dup 314 /Igrave
37   dup 334 /Udieresis
38   dup 335 /Yacute
39   dup 376 /thorn
40   dup 337 /germandbls
41   dup 341 /aacute
42   dup 342 /acircumflex
43   dup 344 /adieresis
44   dup 346 /ae
45   dup 340 /agrave
46   dup 345 /aring
47   dup 347 /ccedilla
48   dup 351 /eacute
49   dup 352 /ecircumflex
50   dup 353 /edieresis
51   dup 350 /egrave
52   dup 355 /iacute
53   dup 356 /icircumflex
54   dup 357 /idieresis
55   dup 354 /igrave
56   dup 360 /dcroat
57   dup 361 /ntilde
58   dup 363 /oacute
59   dup 364 /ocircumflex
60   dup 366 /odieresis
61   dup 362 /ograve
62   dup 365 /otilde
63   dup 370 /oslash
64   dup 372 /uacute
65   dup 373 /ucircumflex
66   dup 374 /udieresis
67   dup 371 /ugrave
68   dup 375 /yacute
69   dup 377 /ydieresis  
70
71 % Set up ISO Latin 1 character encoding
72 /starnetISO {
73         dup dup findfont dup length dict begin
74         { 1 index /FID ne { def }{ pop pop } ifelse
75         } forall
76         /Encoding EncodingVector def
77         currentdict end definefont
78 } def
79 /Times-Roman starnetISO def
80 /Times-Italic starnetISO def
81 /Times-Bold starnetISO def
82 /Times-BoldItalic starnetISO def
83 /Helvetica starnetISO def
84 /Helvetica-Oblique starnetISO def
85 /Helvetica-Bold starnetISO def
86 /Helvetica-BoldOblique starnetISO def
87 /Courier starnetISO def
88 /Courier-Oblique starnetISO def
89 /Courier-Bold starnetISO def
90 /Courier-BoldOblique starnetISO def
91 cleartomark
92 } bind def
93
94 %%BeginResource: procset
95 /coord-font-family /Times-Roman def
96 /default-font-family /Times-Roman def
97 /coordfont coord-font-family findfont 8 scalefont def
98
99 /InvScaleFactor 1.0 def
100 /set_scale {
101         dup 1 exch div /InvScaleFactor exch def
102         dup scale
103 } bind def
104
105 % styles
106 /solid { [] 0 setdash } bind def
107 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
108 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
109 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
110 /bold { 2 setlinewidth } bind def
111 /filled { } bind def
112 /unfilled { } bind def
113 /rounded { } bind def
114 /diagonals { } bind def
115
116 % hooks for setting color 
117 /nodecolor { sethsbcolor } bind def
118 /edgecolor { sethsbcolor } bind def
119 /graphcolor { sethsbcolor } bind def
120 /nopcolor {pop pop pop} bind def
121
122 /beginpage {    % i j npages
123         /npages exch def
124         /j exch def
125         /i exch def
126         /str 10 string def
127         npages 1 gt {
128                 gsave
129                         coordfont setfont
130                         0 0 moveto
131                         (\() show i str cvs show (,) show j str cvs show (\)) show
132                 grestore
133         } if
134 } bind def
135
136 /set_font {
137         findfont exch
138         scalefont setfont
139 } def
140
141 % draw aligned label in bounding box aligned to current point
142 /alignedtext {                  % width adj text
143         /text exch def
144         /adj exch def
145         /width exch def
146         gsave
147                 width 0 gt {
148                         text stringwidth pop adj mul 0 rmoveto
149                 } if
150                 [] 0 setdash
151                 text show
152         grestore
153 } def
154
155 /boxprim {                              % xcorner ycorner xsize ysize
156                 4 2 roll
157                 moveto
158                 2 copy
159                 exch 0 rlineto
160                 0 exch rlineto
161                 pop neg 0 rlineto
162                 closepath
163 } bind def
164
165 /ellipse_path {
166         /ry exch def
167         /rx exch def
168         /y exch def
169         /x exch def
170         matrix currentmatrix
171         newpath
172         x y translate
173         rx ry scale
174         0 0 1 0 360 arc
175         setmatrix
176 } bind def
177
178 /endpage { showpage } bind def
179
180 /layercolorseq
181         [       % layer color sequence - darkest to lightest
182                 [0 0 0]
183                 [.2 .8 .8]
184                 [.4 .8 .8]
185                 [.6 .8 .8]
186                 [.8 .8 .8]
187         ]
188 def
189
190 /setlayer {/maxlayer exch def /curlayer exch def
191         layercolorseq curlayer get
192         aload pop sethsbcolor
193         /nodecolor {nopcolor} def
194         /edgecolor {nopcolor} def
195         /graphcolor {nopcolor} def
196 } bind def
197
198 /onlayer { curlayer ne {invis} if } def
199
200 /onlayers {
201         /myupper exch def
202         /mylower exch def
203         curlayer mylower lt
204         curlayer myupper gt
205         or
206         {invis} if
207 } def
208
209 /curlayer 0 def
210
211 %%EndResource
212 %%EndProlog
213 %%BeginSetup
214 14 default-font-family set_font
215 1 setmiterlimit
216 % /arrowlength 10 def
217 % /arrowwidth 5 def
218
219 % make sure pdfmark is harmless for PS-interpreters other than Distiller
220 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
221 % make '<<' and '>>' safe on PS Level 1 devices
222 /languagelevel where {pop languagelevel}{1} ifelse
223 2 lt {
224     userdict (<<) cvn ([) cvn load put
225     userdict (>>) cvn ([) cvn load put
226 } if
227
228 %%EndSetup
229 %%Page: 1 1
230 %%PageBoundingBox: 36 36 1887 173
231 %%PageOrientation: Portrait
232 gsave
233 35 35 1852 138 boxprim clip newpath
234 36 36 translate
235 0 0 1 beginpage
236 0 0 translate 0 rotate
237 0.000 0.000 0.000 graphcolor
238 10.00 /Helvetica set_font
239
240 %       Node178
241 gsave 10 dict begin
242 filled
243 0.000 0.000 1.000 nodecolor
244 0.000 0.000 0.000 nodecolor
245 newpath 814 112 moveto
246 996 112 lineto
247 996 127 lineto
248 814 127 lineto
249 closepath
250 fill
251 0.000 0.000 1.000 nodecolor
252 newpath 814 112 moveto
253 996 112 lineto
254 996 127 lineto
255 814 127 lineto
256 closepath
257 stroke
258 gsave 10 dict begin
259 905 115 moveto 172 -0.5 (SAMURAI_Sistema::guardarDatos) alignedtext
260 end grestore
261 end grestore
262
263 %       Node179
264 [ /Rect [ 288 61 456 75 ]
265   /Border [ 0 0 0 ]
266   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a24) >>
267   /Subtype /Link
268 /ANN pdfmark
269 gsave 10 dict begin
270 newpath 288 60 moveto
271 456 60 lineto
272 456 75 lineto
273 288 75 lineto
274 closepath
275 stroke
276 gsave 10 dict begin
277 372 63 moveto 158 -0.5 (SAMURAI_Sistema::_borrarDb) alignedtext
278 end grestore
279 end grestore
280
281 %       Node178 -> Node179
282 gsave 10 dict begin
283 solid
284 0.667 0.776 0.439 edgecolor
285 newpath 828 112 moveto
286 730 102 561 86 459 77 curveto
287 stroke
288 gsave 10 dict begin
289 solid
290 0.667 0.776 0.439 edgecolor
291 newpath 459 75 moveto
292 449 76 lineto
293 459 79 lineto
294 closepath
295 fill
296 0.667 0.776 0.439 edgecolor
297 end grestore
298 end grestore
299
300 %       Node183
301 [ /Rect [ 1033 61 1201 75 ]
302   /Border [ 0 0 0 ]
303   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a23) >>
304   /Subtype /Link
305 /ANN pdfmark
306 gsave 10 dict begin
307 newpath 1033 60 moveto
308 1202 60 lineto
309 1202 75 lineto
310 1033 75 lineto
311 closepath
312 stroke
313 gsave 10 dict begin
314 1117 63 moveto 159 -0.5 (SAMURAI_Sistema::_grabarDb) alignedtext
315 end grestore
316 end grestore
317
318 %       Node178 -> Node183
319 gsave 10 dict begin
320 solid
321 0.667 0.776 0.439 edgecolor
322 newpath 936 112 moveto
323 973 103 1037 87 1078 78 curveto
324 stroke
325 gsave 10 dict begin
326 solid
327 0.667 0.776 0.439 edgecolor
328 newpath 1077 81 moveto
329 1086 76 lineto
330 1076 76 lineto
331 closepath
332 fill
333 0.667 0.776 0.439 edgecolor
334 end grestore
335 end grestore
336
337 %       Node190
338 [ /Rect [ 812 61 998 75 ]
339   /Border [ 0 0 0 ]
340   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a25) >>
341   /Subtype /Link
342 /ANN pdfmark
343 gsave 10 dict begin
344 newpath 812 60 moveto
345 998 60 lineto
346 998 75 lineto
347 812 75 lineto
348 closepath
349 stroke
350 gsave 10 dict begin
351 905 63 moveto 176 -0.5 (SAMURAI_Sistema::_modificarDb) alignedtext
352 end grestore
353 end grestore
354
355 %       Node178 -> Node190
356 gsave 10 dict begin
357 solid
358 0.667 0.776 0.439 edgecolor
359 newpath 905 112 moveto
360 905 105 905 94 905 85 curveto
361 stroke
362 gsave 10 dict begin
363 solid
364 0.667 0.776 0.439 edgecolor
365 newpath 908 86 moveto
366 905 76 lineto
367 903 86 lineto
368 closepath
369 fill
370 0.667 0.776 0.439 edgecolor
371 end grestore
372 end grestore
373
374 %       Node180
375 [ /Rect [ 156 9 368 23 ]
376   /Border [ 0 0 0 ]
377   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a27) >>
378   /Subtype /Link
379 /ANN pdfmark
380 gsave 10 dict begin
381 newpath 156 8 moveto
382 368 8 lineto
383 368 23 lineto
384 156 23 lineto
385 closepath
386 stroke
387 gsave 10 dict begin
388 262 11 moveto 202 -0.5 (SAMURAI_Sistema::_borrarPermisosDb) alignedtext
389 end grestore
390 end grestore
391
392 %       Node179 -> Node180
393 gsave 10 dict begin
394 solid
395 0.667 0.776 0.439 edgecolor
396 newpath 356 60 moveto
397 337 51 307 37 286 27 curveto
398 stroke
399 gsave 10 dict begin
400 solid
401 0.667 0.776 0.439 edgecolor
402 newpath 288 25 moveto
403 278 24 lineto
404 286 30 lineto
405 closepath
406 fill
407 0.667 0.776 0.439 edgecolor
408 end grestore
409 end grestore
410
411 %       Node181
412 [ /Rect [ 0 9 138 23 ]
413   /Border [ 0 0 0 ]
414   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a3) >>
415   /Subtype /Link
416 /ANN pdfmark
417 gsave 10 dict begin
418 newpath 0 8 moveto
419 139 8 lineto
420 139 23 lineto
421 0 23 lineto
422 closepath
423 stroke
424 gsave 10 dict begin
425 69 11 moveto 129 -0.5 (SAMURAI_Sistema::getId) alignedtext
426 end grestore
427 end grestore
428
429 %       Node179 -> Node181
430 gsave 10 dict begin
431 solid
432 0.667 0.776 0.439 edgecolor
433 newpath 328 60 moveto
434 274 50 180 35 122 25 curveto
435 stroke
436 gsave 10 dict begin
437 solid
438 0.667 0.776 0.439 edgecolor
439 newpath 123 23 moveto
440 113 24 lineto
441 123 28 lineto
442 closepath
443 fill
444 0.667 0.776 0.439 edgecolor
445 end grestore
446 end grestore
447
448 %       Node182
449 [ /Rect [ 386 9 576 23 ]
450   /Border [ 0 0 0 ]
451   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a18) >>
452   /Subtype /Link
453 /ANN pdfmark
454 gsave 10 dict begin
455 newpath 386 8 moveto
456 577 8 lineto
457 577 23 lineto
458 386 23 lineto
459 closepath
460 stroke
461 gsave 10 dict begin
462 481 11 moveto 181 -0.5 (SAMURAI_Sistema::getResponsable) alignedtext
463 end grestore
464 end grestore
465
466 %       Node179 -> Node182
467 gsave 10 dict begin
468 solid
469 0.667 0.776 0.439 edgecolor
470 newpath 388 60 moveto
471 407 51 436 37 457 27 curveto
472 stroke
473 gsave 10 dict begin
474 solid
475 0.667 0.776 0.439 edgecolor
476 newpath 457 30 moveto
477 465 24 lineto
478 455 25 lineto
479 closepath
480 fill
481 0.667 0.776 0.439 edgecolor
482 end grestore
483 end grestore
484
485 %       Node183 -> Node182
486 gsave 10 dict begin
487 solid
488 0.667 0.776 0.439 edgecolor
489 newpath 1039 60 moveto
490 1037 60 1035 60 1033 60 curveto
491 832 42 780 40 582 24 curveto
492 stroke
493 gsave 10 dict begin
494 solid
495 0.667 0.776 0.439 edgecolor
496 newpath 582 22 moveto
497 572 24 lineto
498 582 27 lineto
499 closepath
500 fill
501 0.667 0.776 0.439 edgecolor
502 end grestore
503 end grestore
504
505 %       Node184
506 [ /Rect [ 1244 9 1456 23 ]
507   /Border [ 0 0 0 ]
508   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a26) >>
509   /Subtype /Link
510 /ANN pdfmark
511 gsave 10 dict begin
512 newpath 1244 8 moveto
513 1457 8 lineto
514 1457 23 lineto
515 1244 23 lineto
516 closepath
517 stroke
518 gsave 10 dict begin
519 1350 11 moveto 203 -0.5 (SAMURAI_Sistema::_grabarPermisosDb) alignedtext
520 end grestore
521 end grestore
522
523 %       Node183 -> Node184
524 gsave 10 dict begin
525 solid
526 0.667 0.776 0.439 edgecolor
527 newpath 1151 60 moveto
528 1192 51 1263 35 1308 26 curveto
529 stroke
530 gsave 10 dict begin
531 solid
532 0.667 0.776 0.439 edgecolor
533 newpath 1307 29 moveto
534 1316 24 lineto
535 1306 24 lineto
536 closepath
537 fill
538 0.667 0.776 0.439 edgecolor
539 end grestore
540 end grestore
541
542 %       Node185
543 [ /Rect [ 1474 9 1646 23 ]
544   /Border [ 0 0 0 ]
545   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a9) >>
546   /Subtype /Link
547 /ANN pdfmark
548 gsave 10 dict begin
549 newpath 1474 8 moveto
550 1647 8 lineto
551 1647 23 lineto
552 1474 23 lineto
553 closepath
554 stroke
555 gsave 10 dict begin
556 1560 11 moveto 163 -0.5 (SAMURAI_Sistema::getContacto) alignedtext
557 end grestore
558 end grestore
559
560 %       Node183 -> Node185
561 gsave 10 dict begin
562 solid
563 0.667 0.776 0.439 edgecolor
564 newpath 1181 60 moveto
565 1262 50 1402 34 1487 25 curveto
566 stroke
567 gsave 10 dict begin
568 solid
569 0.667 0.776 0.439 edgecolor
570 newpath 1486 28 moveto
571 1496 24 lineto
572 1486 23 lineto
573 closepath
574 fill
575 0.667 0.776 0.439 edgecolor
576 end grestore
577 end grestore
578
579 %       Node186
580 [ /Rect [ 1664 9 1850 23 ]
581   /Border [ 0 0 0 ]
582   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a5) >>
583   /Subtype /Link
584 /ANN pdfmark
585 gsave 10 dict begin
586 newpath 1664 8 moveto
587 1851 8 lineto
588 1851 23 lineto
589 1664 23 lineto
590 closepath
591 stroke
592 gsave 10 dict begin
593 1757 11 moveto 177 -0.5 (SAMURAI_Sistema::getDescripcion) alignedtext
594 end grestore
595 end grestore
596
597 %       Node183 -> Node186
598 gsave 10 dict begin
599 solid
600 0.667 0.776 0.439 edgecolor
601 newpath 1196 60 moveto
602 1198 60 1200 60 1202 60 curveto
603 1405 42 1457 40 1659 24 curveto
604 stroke
605 gsave 10 dict begin
606 solid
607 0.667 0.776 0.439 edgecolor
608 newpath 1659 27 moveto
609 1669 24 lineto
610 1659 22 lineto
611 closepath
612 fill
613 0.667 0.776 0.439 edgecolor
614 end grestore
615 end grestore
616
617 %       Node187
618 [ /Rect [ 594 9 768 23 ]
619   /Border [ 0 0 0 ]
620   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a7) >>
621   /Subtype /Link
622 /ANN pdfmark
623 gsave 10 dict begin
624 newpath 594 8 moveto
625 769 8 lineto
626 769 23 lineto
627 594 23 lineto
628 closepath
629 stroke
630 gsave 10 dict begin
631 681 11 moveto 165 -0.5 (SAMURAI_Sistema::getFechaFin) alignedtext
632 end grestore
633 end grestore
634
635 %       Node183 -> Node187
636 gsave 10 dict begin
637 solid
638 0.667 0.776 0.439 edgecolor
639 newpath 1054 60 moveto
640 974 50 838 34 754 25 curveto
641 stroke
642 gsave 10 dict begin
643 solid
644 0.667 0.776 0.439 edgecolor
645 newpath 754 23 moveto
646 744 24 lineto
647 754 27 lineto
648 closepath
649 fill
650 0.667 0.776 0.439 edgecolor
651 end grestore
652 end grestore
653
654 %       Node188
655 [ /Rect [ 786 9 1024 23 ]
656   /Border [ 0 0 0 ]
657   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a8) >>
658   /Subtype /Link
659 /ANN pdfmark
660 gsave 10 dict begin
661 newpath 786 8 moveto
662 1024 8 lineto
663 1024 23 lineto
664 786 23 lineto
665 closepath
666 stroke
667 gsave 10 dict begin
668 905 11 moveto 228 -0.5 (SAMURAI_Sistema::getFechaImplementacion) alignedtext
669 end grestore
670 end grestore
671
672 %       Node183 -> Node188
673 gsave 10 dict begin
674 solid
675 0.667 0.776 0.439 edgecolor
676 newpath 1086 60 moveto
677 1049 51 986 35 945 26 curveto
678 stroke
679 gsave 10 dict begin
680 solid
681 0.667 0.776 0.439 edgecolor
682 newpath 946 24 moveto
683 936 24 lineto
684 945 29 lineto
685 closepath
686 fill
687 0.667 0.776 0.439 edgecolor
688 end grestore
689 end grestore
690
691 %       Node189
692 [ /Rect [ 1042 9 1226 23 ]
693   /Border [ 0 0 0 ]
694   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a6) >>
695   /Subtype /Link
696 /ANN pdfmark
697 gsave 10 dict begin
698 newpath 1042 8 moveto
699 1227 8 lineto
700 1227 23 lineto
701 1042 23 lineto
702 closepath
703 stroke
704 gsave 10 dict begin
705 1134 11 moveto 175 -0.5 (SAMURAI_Sistema::getFechaInicio) alignedtext
706 end grestore
707 end grestore
708
709 %       Node183 -> Node189
710 gsave 10 dict begin
711 solid
712 0.667 0.776 0.439 edgecolor
713 newpath 1120 60 moveto
714 1122 53 1125 42 1128 33 curveto
715 stroke
716 gsave 10 dict begin
717 solid
718 0.667 0.776 0.439 edgecolor
719 newpath 1130 34 moveto
720 1131 24 lineto
721 1125 33 lineto
722 closepath
723 fill
724 0.667 0.776 0.439 edgecolor
725 end grestore
726 end grestore
727
728 %       Node190 -> Node180
729 gsave 10 dict begin
730 solid
731 0.667 0.776 0.439 edgecolor
732 newpath 818 60 moveto
733 816 60 814 60 812 60 curveto
734 658 46 481 33 370 25 curveto
735 stroke
736 gsave 10 dict begin
737 solid
738 0.667 0.776 0.439 edgecolor
739 newpath 370 23 moveto
740 360 24 lineto
741 370 27 lineto
742 closepath
743 fill
744 0.667 0.776 0.439 edgecolor
745 end grestore
746 end grestore
747
748 %       Node190 -> Node181
749 gsave 10 dict begin
750 solid
751 0.667 0.776 0.439 edgecolor
752 newpath 821 60 moveto
753 818 60 815 60 812 60 curveto
754 516 39 439 49 144 24 curveto
755 stroke
756 gsave 10 dict begin
757 solid
758 0.667 0.776 0.439 edgecolor
759 newpath 144 22 moveto
760 134 24 lineto
761 144 27 lineto
762 closepath
763 fill
764 0.667 0.776 0.439 edgecolor
765 end grestore
766 end grestore
767
768 %       Node190 -> Node182
769 gsave 10 dict begin
770 solid
771 0.667 0.776 0.439 edgecolor
772 newpath 844 60 moveto
773 766 50 633 34 551 25 curveto
774 stroke
775 gsave 10 dict begin
776 solid
777 0.667 0.776 0.439 edgecolor
778 newpath 552 23 moveto
779 542 24 lineto
780 552 28 lineto
781 closepath
782 fill
783 0.667 0.776 0.439 edgecolor
784 end grestore
785 end grestore
786
787 %       Node190 -> Node184
788 gsave 10 dict begin
789 solid
790 0.667 0.776 0.439 edgecolor
791 newpath 969 60 moveto
792 1050 50 1191 34 1276 25 curveto
793 stroke
794 gsave 10 dict begin
795 solid
796 0.667 0.776 0.439 edgecolor
797 newpath 1275 28 moveto
798 1285 24 lineto
799 1275 23 lineto
800 closepath
801 fill
802 0.667 0.776 0.439 edgecolor
803 end grestore
804 end grestore
805
806 %       Node190 -> Node185
807 gsave 10 dict begin
808 solid
809 0.667 0.776 0.439 edgecolor
810 newpath 991 60 moveto
811 994 60 996 60 998 60 curveto
812 1207 42 1261 41 1468 24 curveto
813 stroke
814 gsave 10 dict begin
815 solid
816 0.667 0.776 0.439 edgecolor
817 newpath 1468 27 moveto
818 1478 24 lineto
819 1468 22 lineto
820 closepath
821 fill
822 0.667 0.776 0.439 edgecolor
823 end grestore
824 end grestore
825
826 %       Node190 -> Node186
827 gsave 10 dict begin
828 solid
829 0.667 0.776 0.439 edgecolor
830 newpath 989 60 moveto
831 992 60 995 60 998 60 curveto
832 1292 39 1367 44 1660 24 curveto
833 stroke
834 gsave 10 dict begin
835 solid
836 0.667 0.776 0.439 edgecolor
837 newpath 1660 27 moveto
838 1670 24 lineto
839 1660 22 lineto
840 closepath
841 fill
842 0.667 0.776 0.439 edgecolor
843 end grestore
844 end grestore
845
846 %       Node190 -> Node187
847 gsave 10 dict begin
848 solid
849 0.667 0.776 0.439 edgecolor
850 newpath 872 60 moveto
851 833 51 766 35 723 26 curveto
852 stroke
853 gsave 10 dict begin
854 solid
855 0.667 0.776 0.439 edgecolor
856 newpath 724 24 moveto
857 714 24 lineto
858 723 29 lineto
859 closepath
860 fill
861 0.667 0.776 0.439 edgecolor
862 end grestore
863 end grestore
864
865 %       Node190 -> Node188
866 gsave 10 dict begin
867 solid
868 0.667 0.776 0.439 edgecolor
869 newpath 905 60 moveto
870 905 53 905 42 905 33 curveto
871 stroke
872 gsave 10 dict begin
873 solid
874 0.667 0.776 0.439 edgecolor
875 newpath 908 34 moveto
876 905 24 lineto
877 903 34 lineto
878 closepath
879 fill
880 0.667 0.776 0.439 edgecolor
881 end grestore
882 end grestore
883
884 %       Node190 -> Node189
885 gsave 10 dict begin
886 solid
887 0.667 0.776 0.439 edgecolor
888 newpath 938 60 moveto
889 979 51 1048 35 1093 26 curveto
890 stroke
891 gsave 10 dict begin
892 solid
893 0.667 0.776 0.439 edgecolor
894 newpath 1092 29 moveto
895 1101 24 lineto
896 1091 24 lineto
897 closepath
898 fill
899 0.667 0.776 0.439 edgecolor
900 end grestore
901 end grestore
902 endpage
903 grestore
904 %%PageTrailer
905 %%EndPage: 1
906 %%Trailer
907 %%Pages: 1
908 end
909 restore
910 %%EOF