1 |
%!PS-Adobe-3.0 |
2 |
%%Creator: graphviz version 2.28.0 (20110507.0327) |
3 |
%%Title: G |
4 |
%%Pages: (atend) |
5 |
%%BoundingBox: (atend) |
6 |
%%EndComments |
7 |
save |
8 |
%%BeginProlog |
9 |
/DotDict 200 dict def |
10 |
DotDict begin |
11 |
|
12 |
/setupLatin1 { |
13 |
mark |
14 |
/EncodingVector 256 array def |
15 |
EncodingVector 0 |
16 |
|
17 |
ISOLatin1Encoding 0 255 getinterval putinterval |
18 |
EncodingVector 45 /hyphen put |
19 |
|
20 |
% Set up ISO Latin 1 character encoding |
21 |
/starnetISO { |
22 |
dup dup findfont dup length dict begin |
23 |
{ 1 index /FID ne { def }{ pop pop } ifelse |
24 |
} forall |
25 |
/Encoding EncodingVector def |
26 |
currentdict end definefont |
27 |
} def |
28 |
/Times-Roman starnetISO def |
29 |
/Times-Italic starnetISO def |
30 |
/Times-Bold starnetISO def |
31 |
/Times-BoldItalic starnetISO def |
32 |
/Helvetica starnetISO def |
33 |
/Helvetica-Oblique starnetISO def |
34 |
/Helvetica-Bold starnetISO def |
35 |
/Helvetica-BoldOblique starnetISO def |
36 |
/Courier starnetISO def |
37 |
/Courier-Oblique starnetISO def |
38 |
/Courier-Bold starnetISO def |
39 |
/Courier-BoldOblique starnetISO def |
40 |
cleartomark |
41 |
} bind def |
42 |
|
43 |
%%BeginResource: procset graphviz 0 0 |
44 |
/coord-font-family /Times-Roman def |
45 |
/default-font-family /Times-Roman def |
46 |
/coordfont coord-font-family findfont 8 scalefont def |
47 |
|
48 |
/InvScaleFactor 1.0 def |
49 |
/set_scale { |
50 |
dup 1 exch div /InvScaleFactor exch def |
51 |
scale |
52 |
} bind def |
53 |
|
54 |
% styles |
55 |
/solid { [] 0 setdash } bind def |
56 |
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def |
57 |
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def |
58 |
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def |
59 |
/bold { 2 setlinewidth } bind def |
60 |
/filled { } bind def |
61 |
/unfilled { } bind def |
62 |
/rounded { } bind def |
63 |
/diagonals { } bind def |
64 |
|
65 |
% hooks for setting color |
66 |
/nodecolor { sethsbcolor } bind def |
67 |
/edgecolor { sethsbcolor } bind def |
68 |
/graphcolor { sethsbcolor } bind def |
69 |
/nopcolor {pop pop pop} bind def |
70 |
|
71 |
/beginpage { % i j npages |
72 |
/npages exch def |
73 |
/j exch def |
74 |
/i exch def |
75 |
/str 10 string def |
76 |
npages 1 gt { |
77 |
gsave |
78 |
coordfont setfont |
79 |
0 0 moveto |
80 |
(\() show i str cvs show (,) show j str cvs show (\)) show |
81 |
grestore |
82 |
} if |
83 |
} bind def |
84 |
|
85 |
/set_font { |
86 |
findfont exch |
87 |
scalefont setfont |
88 |
} def |
89 |
|
90 |
% draw text fitted to its expected width |
91 |
/alignedtext { % width text |
92 |
/text exch def |
93 |
/width exch def |
94 |
gsave |
95 |
width 0 gt { |
96 |
[] 0 setdash |
97 |
text stringwidth pop width exch sub text length div 0 text ashow |
98 |
} if |
99 |
grestore |
100 |
} def |
101 |
|
102 |
/boxprim { % xcorner ycorner xsize ysize |
103 |
4 2 roll |
104 |
moveto |
105 |
2 copy |
106 |
exch 0 rlineto |
107 |
0 exch rlineto |
108 |
pop neg 0 rlineto |
109 |
closepath |
110 |
} bind def |
111 |
|
112 |
/ellipse_path { |
113 |
/ry exch def |
114 |
/rx exch def |
115 |
/y exch def |
116 |
/x exch def |
117 |
matrix currentmatrix |
118 |
newpath |
119 |
x y translate |
120 |
rx ry scale |
121 |
0 0 1 0 360 arc |
122 |
setmatrix |
123 |
} bind def |
124 |
|
125 |
/endpage { showpage } bind def |
126 |
/showpage { } def |
127 |
|
128 |
/layercolorseq |
129 |
[ % layer color sequence - darkest to lightest |
130 |
[0 0 0] |
131 |
[.2 .8 .8] |
132 |
[.4 .8 .8] |
133 |
[.6 .8 .8] |
134 |
[.8 .8 .8] |
135 |
] |
136 |
def |
137 |
|
138 |
/layerlen layercolorseq length def |
139 |
|
140 |
/setlayer {/maxlayer exch def /curlayer exch def |
141 |
layercolorseq curlayer 1 sub layerlen mod get |
142 |
aload pop sethsbcolor |
143 |
/nodecolor {nopcolor} def |
144 |
/edgecolor {nopcolor} def |
145 |
/graphcolor {nopcolor} def |
146 |
} bind def |
147 |
|
148 |
/onlayer { curlayer ne {invis} if } def |
149 |
|
150 |
/onlayers { |
151 |
/myupper exch def |
152 |
/mylower exch def |
153 |
curlayer mylower lt |
154 |
curlayer myupper gt |
155 |
or |
156 |
{invis} if |
157 |
} def |
158 |
|
159 |
/curlayer 0 def |
160 |
|
161 |
%%EndResource |
162 |
%%EndProlog |
163 |
%%BeginSetup |
164 |
14 default-font-family set_font |
165 |
1 setmiterlimit |
166 |
% /arrowlength 10 def |
167 |
% /arrowwidth 5 def |
168 |
|
169 |
% make sure pdfmark is harmless for PS-interpreters other than Distiller |
170 |
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse |
171 |
% make '<<' and '>>' safe on PS Level 1 devices |
172 |
/languagelevel where {pop languagelevel}{1} ifelse |
173 |
2 lt { |
174 |
userdict (<<) cvn ([) cvn load put |
175 |
userdict (>>) cvn ([) cvn load put |
176 |
} if |
177 |
|
178 |
%%EndSetup |
179 |
setupLatin1 |
180 |
%%Page: 1 1 |
181 |
%%PageBoundingBox: 36 36 511 416 |
182 |
%%PageOrientation: Portrait |
183 |
0 0 1 beginpage |
184 |
gsave |
185 |
36 36 475 380 boxprim clip newpath |
186 |
1 1 set_scale 0 rotate 40 41 translate |
187 |
% Node1 |
188 |
gsave |
189 |
0 0 0.74902 nodecolor |
190 |
newpath 109 68.5 moveto |
191 |
109 87.5 lineto |
192 |
201 87.5 lineto |
193 |
201 68.5 lineto |
194 |
closepath fill |
195 |
1 setlinewidth |
196 |
filled |
197 |
0 0 0 nodecolor |
198 |
newpath 109 68.5 moveto |
199 |
109 87.5 lineto |
200 |
201 87.5 lineto |
201 |
201 68.5 lineto |
202 |
closepath stroke |
203 |
0 0 0 nodecolor |
204 |
10 /Helvetica set_font |
205 |
117 75.5 moveto 76 (QuaZipFilePrivate) alignedtext |
206 |
grestore |
207 |
% Node9 |
208 |
gsave |
209 |
[ /Rect [ 94.5 0 157 20 ] |
210 |
/Border [ 0 0 0 ] |
211 |
/Action << /Subtype /URI /URI ($classQuaZipFile.html) >> |
212 |
/Subtype /Link |
213 |
/ANN pdfmark |
214 |
0 0 1 nodecolor |
215 |
newpath 94.5 .5 moveto |
216 |
94.5 19.5 lineto |
217 |
157.5 19.5 lineto |
218 |
157.5 .5 lineto |
219 |
closepath fill |
220 |
1 setlinewidth |
221 |
filled |
222 |
0 0 0 nodecolor |
223 |
newpath 94.5 .5 moveto |
224 |
94.5 19.5 lineto |
225 |
157.5 19.5 lineto |
226 |
157.5 .5 lineto |
227 |
closepath stroke |
228 |
0 0 0 nodecolor |
229 |
10 /Helvetica set_font |
230 |
102.5 7.5 moveto 47 (QuaZipFile) alignedtext |
231 |
grestore |
232 |
% Node1->Node9 |
233 |
gsave |
234 |
1 setlinewidth |
235 |
dashed |
236 |
0.77647 0.75294 0.80392 edgecolor |
237 |
newpath 147.17 59.19 moveto |
238 |
141.58 46.45 134.29 29.86 129.88 19.84 curveto |
239 |
stroke |
240 |
0.77647 0.75294 0.80392 edgecolor |
241 |
newpath 143.98 60.62 moveto |
242 |
151.21 68.37 lineto |
243 |
150.39 57.81 lineto |
244 |
closepath fill |
245 |
1 setlinewidth |
246 |
solid |
247 |
0.77647 0.75294 0.80392 edgecolor |
248 |
newpath 143.98 60.62 moveto |
249 |
151.21 68.37 lineto |
250 |
150.39 57.81 lineto |
251 |
closepath stroke |
252 |
0 0 0 edgecolor |
253 |
10 /Helvetica set_font |
254 |
144 41.5 moveto 6 (p) alignedtext |
255 |
grestore |
256 |
% Node2 |
257 |
gsave |
258 |
[ /Rect [ 131.5 136 178 156 ] |
259 |
/Border [ 0 0 0 ] |
260 |
/Action << /Subtype /URI /URI ($classQuaZip.html) >> |
261 |
/Subtype /Link |
262 |
/ANN pdfmark |
263 |
0 0 1 nodecolor |
264 |
newpath 131.5 136.5 moveto |
265 |
131.5 155.5 lineto |
266 |
178.5 155.5 lineto |
267 |
178.5 136.5 lineto |
268 |
closepath fill |
269 |
1 setlinewidth |
270 |
filled |
271 |
0 0 0 nodecolor |
272 |
newpath 131.5 136.5 moveto |
273 |
131.5 155.5 lineto |
274 |
178.5 155.5 lineto |
275 |
178.5 136.5 lineto |
276 |
closepath stroke |
277 |
0 0 0 nodecolor |
278 |
10 /Helvetica set_font |
279 |
139.5 143.5 moveto 31 (QuaZip) alignedtext |
280 |
grestore |
281 |
% Node2->Node1 |
282 |
gsave |
283 |
1 setlinewidth |
284 |
dashed |
285 |
0.77647 0.75294 0.80392 edgecolor |
286 |
newpath 155 126.04 moveto |
287 |
155 113.47 155 97.56 155 87.84 curveto |
288 |
stroke |
289 |
0.77647 0.75294 0.80392 edgecolor |
290 |
newpath 151.5 126.37 moveto |
291 |
155 136.37 lineto |
292 |
158.5 126.37 lineto |
293 |
closepath fill |
294 |
1 setlinewidth |
295 |
solid |
296 |
0.77647 0.75294 0.80392 edgecolor |
297 |
newpath 151.5 126.37 moveto |
298 |
155 136.37 lineto |
299 |
158.5 126.37 lineto |
300 |
closepath stroke |
301 |
0 0 0 edgecolor |
302 |
10 /Helvetica set_font |
303 |
155 109.5 moveto 13 (zip) alignedtext |
304 |
grestore |
305 |
% Node3 |
306 |
gsave |
307 |
[ /Rect [ 131.5 204 208 224 ] |
308 |
/Border [ 0 0 0 ] |
309 |
/Action << /Subtype /URI /URI ($classQuaZipPrivate.html) >> |
310 |
/Subtype /Link |
311 |
/ANN pdfmark |
312 |
0 0 1 nodecolor |
313 |
newpath 131.5 204.5 moveto |
314 |
131.5 223.5 lineto |
315 |
208.5 223.5 lineto |
316 |
208.5 204.5 lineto |
317 |
closepath fill |
318 |
1 setlinewidth |
319 |
filled |
320 |
0 0 0 nodecolor |
321 |
newpath 131.5 204.5 moveto |
322 |
131.5 223.5 lineto |
323 |
208.5 223.5 lineto |
324 |
208.5 204.5 lineto |
325 |
closepath stroke |
326 |
0 0 0 nodecolor |
327 |
10 /Helvetica set_font |
328 |
139.5 211.5 moveto 61 (QuaZipPrivate) alignedtext |
329 |
grestore |
330 |
% Node2->Node3 |
331 |
gsave |
332 |
1 setlinewidth |
333 |
dashed |
334 |
0.77647 0.75294 0.80392 edgecolor |
335 |
newpath 154.47 165.97 moveto |
336 |
154.68 172.41 155.36 179.6 157 186 curveto |
337 |
158.65 192.45 161.9 199.2 164.74 204.34 curveto |
338 |
stroke |
339 |
0.77647 0.75294 0.80392 edgecolor |
340 |
newpath 157.97 165.52 moveto |
341 |
154.48 155.51 lineto |
342 |
150.97 165.51 lineto |
343 |
closepath fill |
344 |
1 setlinewidth |
345 |
solid |
346 |
0.77647 0.75294 0.80392 edgecolor |
347 |
newpath 157.97 165.52 moveto |
348 |
154.48 155.51 lineto |
349 |
150.97 165.51 lineto |
350 |
closepath stroke |
351 |
0 0 0 edgecolor |
352 |
10 /Helvetica set_font |
353 |
157 177.5 moveto 6 (q) alignedtext |
354 |
grestore |
355 |
% Node3->Node2 |
356 |
gsave |
357 |
1 setlinewidth |
358 |
dashed |
359 |
0.77647 0.75294 0.80392 edgecolor |
360 |
newpath 165.78 194.42 moveto |
361 |
162.91 181.8 159.24 165.66 157.01 155.84 curveto |
362 |
stroke |
363 |
0.77647 0.75294 0.80392 edgecolor |
364 |
newpath 162.41 195.4 moveto |
365 |
168.04 204.37 lineto |
366 |
169.24 193.84 lineto |
367 |
closepath fill |
368 |
1 setlinewidth |
369 |
solid |
370 |
0.77647 0.75294 0.80392 edgecolor |
371 |
newpath 162.41 195.4 moveto |
372 |
168.04 204.37 lineto |
373 |
169.24 193.84 lineto |
374 |
closepath stroke |
375 |
0 0 0 edgecolor |
376 |
10 /Helvetica set_font |
377 |
164 177.5 moveto 6 (p) alignedtext |
378 |
grestore |
379 |
% Node4 |
380 |
gsave |
381 |
[ /Rect [ 80 294 248 314 ] |
382 |
/Border [ 0 0 0 ] |
383 |
/Action << /Subtype /URI /URI (qtcore.tags$qhash.html) >> |
384 |
/Subtype /Link |
385 |
/ANN pdfmark |
386 |
0 0 1 nodecolor |
387 |
newpath 80 294.5 moveto |
388 |
80 313.5 lineto |
389 |
248 313.5 lineto |
390 |
248 294.5 lineto |
391 |
closepath fill |
392 |
1 setlinewidth |
393 |
filled |
394 |
0 0 0 nodecolor |
395 |
newpath 80 294.5 moveto |
396 |
80 313.5 lineto |
397 |
248 313.5 lineto |
398 |
248 294.5 lineto |
399 |
closepath stroke |
400 |
0 0 0 nodecolor |
401 |
10 /Helvetica set_font |
402 |
88 301.5 moveto 152 (QHash< QString, unz64_file_pos >) alignedtext |
403 |
grestore |
404 |
% Node4->Node3 |
405 |
gsave |
406 |
1 setlinewidth |
407 |
dashed |
408 |
0.77647 0.75294 0.80392 edgecolor |
409 |
newpath 163.5 284.1 moveto |
410 |
163.38 272.02 163.59 256.06 165 242 curveto |
411 |
165.61 235.93 166.86 229.18 167.96 223.95 curveto |
412 |
stroke |
413 |
0.77647 0.75294 0.80392 edgecolor |
414 |
newpath 160 284.35 moveto |
415 |
163.69 294.29 lineto |
416 |
167 284.22 lineto |
417 |
closepath fill |
418 |
1 setlinewidth |
419 |
solid |
420 |
0.77647 0.75294 0.80392 edgecolor |
421 |
newpath 160 284.35 moveto |
422 |
163.69 294.29 lineto |
423 |
167 284.22 lineto |
424 |
closepath stroke |
425 |
0 0 0 edgecolor |
426 |
10 /Helvetica set_font |
427 |
168 262 moveto 100 (directoryCaseSensitive) alignedtext |
428 |
0 0 0 edgecolor |
429 |
10 /Helvetica set_font |
430 |
165 251 moveto 106 (directoryCaseInsensitive) alignedtext |
431 |
grestore |
432 |
% Node5 |
433 |
gsave |
434 |
[ /Rect [ 0 294 62 314 ] |
435 |
/Border [ 0 0 0 ] |
436 |
/Action << /Subtype /URI /URI (qtcore.tags$qiodevice.html) >> |
437 |
/Subtype /Link |
438 |
/ANN pdfmark |
439 |
0 0 1 nodecolor |
440 |
newpath 0 294.5 moveto |
441 |
0 313.5 lineto |
442 |
62 313.5 lineto |
443 |
62 294.5 lineto |
444 |
closepath fill |
445 |
1 setlinewidth |
446 |
filled |
447 |
0 0 0 nodecolor |
448 |
newpath 0 294.5 moveto |
449 |
0 313.5 lineto |
450 |
62 313.5 lineto |
451 |
62 294.5 lineto |
452 |
closepath stroke |
453 |
0 0 0 nodecolor |
454 |
10 /Helvetica set_font |
455 |
8 301.5 moveto 46 (QIODevice) alignedtext |
456 |
grestore |
457 |
% Node5->Node3 |
458 |
gsave |
459 |
1 setlinewidth |
460 |
dashed |
461 |
0.77647 0.75294 0.80392 edgecolor |
462 |
newpath 56.67 289.46 moveto |
463 |
64.02 285.35 71.94 280.68 79 276 curveto |
464 |
99.6 262.35 102.46 255.74 123 242 curveto |
465 |
132.85 235.41 144.39 228.76 153.57 223.72 curveto |
466 |
stroke |
467 |
0.77647 0.75294 0.80392 edgecolor |
468 |
newpath 54.88 286.46 moveto |
469 |
47.79 294.33 lineto |
470 |
58.24 292.59 lineto |
471 |
closepath fill |
472 |
1 setlinewidth |
473 |
solid |
474 |
0.77647 0.75294 0.80392 edgecolor |
475 |
newpath 54.88 286.46 moveto |
476 |
47.79 294.33 lineto |
477 |
58.24 292.59 lineto |
478 |
closepath stroke |
479 |
0 0 0 edgecolor |
480 |
10 /Helvetica set_font |
481 |
123 256.5 moveto 37 (ioDevice) alignedtext |
482 |
grestore |
483 |
% Node5->Node9 |
484 |
gsave |
485 |
1 setlinewidth |
486 |
solid |
487 |
0.66667 0.77647 0.43922 edgecolor |
488 |
newpath 42.62 285.33 moveto |
489 |
52.81 268.12 66 240.84 66 215 curveto |
490 |
66 215 66 215 66 77 curveto |
491 |
66 50.83 92.15 30.45 109.92 19.62 curveto |
492 |
stroke |
493 |
0.66667 0.77647 0.43922 edgecolor |
494 |
newpath 39.41 283.87 moveto |
495 |
37.1 294.21 lineto |
496 |
45.35 287.57 lineto |
497 |
closepath fill |
498 |
1 setlinewidth |
499 |
solid |
500 |
0.66667 0.77647 0.43922 edgecolor |
501 |
newpath 39.41 283.87 moveto |
502 |
37.1 294.21 lineto |
503 |
45.35 287.57 lineto |
504 |
closepath stroke |
505 |
grestore |
506 |
% Node6 |
507 |
gsave |
508 |
[ /Rect [ 4.5 352 57 372 ] |
509 |
/Border [ 0 0 0 ] |
510 |
/Action << /Subtype /URI /URI (qtcore.tags$qobject.html) >> |
511 |
/Subtype /Link |
512 |
/ANN pdfmark |
513 |
0 0 1 nodecolor |
514 |
newpath 4.5 352.5 moveto |
515 |
4.5 371.5 lineto |
516 |
57.5 371.5 lineto |
517 |
57.5 352.5 lineto |
518 |
closepath fill |
519 |
1 setlinewidth |
520 |
filled |
521 |
0 0 0 nodecolor |
522 |
newpath 4.5 352.5 moveto |
523 |
4.5 371.5 lineto |
524 |
57.5 371.5 lineto |
525 |
57.5 352.5 lineto |
526 |
closepath stroke |
527 |
0 0 0 nodecolor |
528 |
10 /Helvetica set_font |
529 |
12.5 359.5 moveto 37 (QObject) alignedtext |
530 |
grestore |
531 |
% Node6->Node5 |
532 |
gsave |
533 |
1 setlinewidth |
534 |
solid |
535 |
0.66667 0.77647 0.43922 edgecolor |
536 |
newpath 31 341.95 moveto |
537 |
31 332.29 31 321.03 31 313.51 curveto |
538 |
stroke |
539 |
0.66667 0.77647 0.43922 edgecolor |
540 |
newpath 27.5 342.25 moveto |
541 |
31 352.25 lineto |
542 |
34.5 342.25 lineto |
543 |
closepath fill |
544 |
1 setlinewidth |
545 |
solid |
546 |
0.66667 0.77647 0.43922 edgecolor |
547 |
newpath 27.5 342.25 moveto |
548 |
31 352.25 lineto |
549 |
34.5 342.25 lineto |
550 |
closepath stroke |
551 |
grestore |
552 |
% Node7 |
553 |
gsave |
554 |
[ /Rect [ 417 294 467 314 ] |
555 |
/Border [ 0 0 0 ] |
556 |
/Action << /Subtype /URI /URI (qtcore.tags$qstring.html) >> |
557 |
/Subtype /Link |
558 |
/ANN pdfmark |
559 |
0 0 1 nodecolor |
560 |
newpath 417 294.5 moveto |
561 |
417 313.5 lineto |
562 |
467 313.5 lineto |
563 |
467 294.5 lineto |
564 |
closepath fill |
565 |
1 setlinewidth |
566 |
filled |
567 |
0 0 0 nodecolor |
568 |
newpath 417 294.5 moveto |
569 |
417 313.5 lineto |
570 |
467 313.5 lineto |
571 |
467 294.5 lineto |
572 |
closepath stroke |
573 |
0 0 0 nodecolor |
574 |
10 /Helvetica set_font |
575 |
425 301.5 moveto 34 (QString) alignedtext |
576 |
grestore |
577 |
% Node7->Node1 |
578 |
gsave |
579 |
1 setlinewidth |
580 |
dashed |
581 |
0.77647 0.75294 0.80392 edgecolor |
582 |
newpath 452.75 284.95 moveto |
583 |
458.84 272.2 463.81 255.11 456 242 curveto |
584 |
399.36 146.91 265.81 103.9 197.24 87.53 curveto |
585 |
stroke |
586 |
0.77647 0.75294 0.80392 edgecolor |
587 |
newpath 449.5 283.62 moveto |
588 |
447.86 294.09 lineto |
589 |
455.67 286.92 lineto |
590 |
closepath fill |
591 |
1 setlinewidth |
592 |
solid |
593 |
0.77647 0.75294 0.80392 edgecolor |
594 |
newpath 449.5 283.62 moveto |
595 |
447.86 294.09 lineto |
596 |
455.67 286.92 lineto |
597 |
closepath stroke |
598 |
0 0 0 edgecolor |
599 |
10 /Helvetica set_font |
600 |
406 177.5 moveto 38 (fileName) alignedtext |
601 |
grestore |
602 |
% Node7->Node3 |
603 |
gsave |
604 |
1 setlinewidth |
605 |
dashed |
606 |
0.77647 0.75294 0.80392 edgecolor |
607 |
newpath 425.2 287.2 moveto |
608 |
421.7 283.64 418.12 279.78 415 276 curveto |
609 |
403.39 261.93 407.57 251.51 392 242 curveto |
610 |
362.1 223.73 264 217.8 208.74 215.89 curveto |
611 |
stroke |
612 |
0.77647 0.75294 0.80392 edgecolor |
613 |
newpath 422.96 289.91 moveto |
614 |
432.55 294.41 lineto |
615 |
427.86 284.91 lineto |
616 |
closepath fill |
617 |
1 setlinewidth |
618 |
solid |
619 |
0.77647 0.75294 0.80392 edgecolor |
620 |
newpath 422.96 289.91 moveto |
621 |
432.55 294.41 lineto |
622 |
427.86 284.91 lineto |
623 |
closepath stroke |
624 |
0 0 0 edgecolor |
625 |
10 /Helvetica set_font |
626 |
415 262 moveto 41 (comment) alignedtext |
627 |
0 0 0 edgecolor |
628 |
10 /Helvetica set_font |
629 |
416 251 moveto 39 (zipName) alignedtext |
630 |
grestore |
631 |
% Node8 |
632 |
gsave |
633 |
[ /Rect [ 266.5 294 337 314 ] |
634 |
/Border [ 0 0 0 ] |
635 |
/Action << /Subtype /URI /URI (qtcore.tags$qtextcodec.html) >> |
636 |
/Subtype /Link |
637 |
/ANN pdfmark |
638 |
0 0 1 nodecolor |
639 |
newpath 266.5 294.5 moveto |
640 |
266.5 313.5 lineto |
641 |
337.5 313.5 lineto |
642 |
337.5 294.5 lineto |
643 |
closepath fill |
644 |
1 setlinewidth |
645 |
filled |
646 |
0 0 0 nodecolor |
647 |
newpath 266.5 294.5 moveto |
648 |
266.5 313.5 lineto |
649 |
337.5 313.5 lineto |
650 |
337.5 294.5 lineto |
651 |
closepath stroke |
652 |
0 0 0 nodecolor |
653 |
10 /Helvetica set_font |
654 |
274.5 301.5 moveto 55 (QTextCodec) alignedtext |
655 |
grestore |
656 |
% Node8->Node3 |
657 |
gsave |
658 |
1 setlinewidth |
659 |
dashed |
660 |
0.77647 0.75294 0.80392 edgecolor |
661 |
newpath 296.99 284.26 moveto |
662 |
292.39 270.63 284.26 252.74 271 242 curveto |
663 |
253.51 227.83 229.27 221.05 208.92 217.83 curveto |
664 |
stroke |
665 |
0.77647 0.75294 0.80392 edgecolor |
666 |
newpath 293.7 285.5 moveto |
667 |
299.94 294.07 lineto |
668 |
300.41 283.48 lineto |
669 |
closepath fill |
670 |
1 setlinewidth |
671 |
solid |
672 |
0.77647 0.75294 0.80392 edgecolor |
673 |
newpath 293.7 285.5 moveto |
674 |
299.94 294.07 lineto |
675 |
300.41 283.48 lineto |
676 |
closepath stroke |
677 |
0 0 0 edgecolor |
678 |
10 /Helvetica set_font |
679 |
308.5 267.5 moveto 69 (commentCodec) alignedtext |
680 |
0 0 0 edgecolor |
681 |
10 /Helvetica set_font |
682 |
294 256.5 moveto 98 (defaultFileNameCodec) alignedtext |
683 |
0 0 0 edgecolor |
684 |
10 /Helvetica set_font |
685 |
310 245.5 moveto 66 (fileNameCodec) alignedtext |
686 |
grestore |
687 |
% Node9->Node1 |
688 |
gsave |
689 |
1 setlinewidth |
690 |
dashed |
691 |
0.77647 0.75294 0.80392 edgecolor |
692 |
newpath 125.52 29.9 moveto |
693 |
125.97 36.5 127.2 43.8 130 50 curveto |
694 |
133.21 57.1 139.04 63.57 144.26 68.39 curveto |
695 |
stroke |
696 |
0.77647 0.75294 0.80392 edgecolor |
697 |
newpath 129.02 29.71 moveto |
698 |
125.35 19.77 lineto |
699 |
122.02 29.83 lineto |
700 |
closepath fill |
701 |
1 setlinewidth |
702 |
solid |
703 |
0.77647 0.75294 0.80392 edgecolor |
704 |
newpath 129.02 29.71 moveto |
705 |
125.35 19.77 lineto |
706 |
122.02 29.83 lineto |
707 |
closepath stroke |
708 |
0 0 0 edgecolor |
709 |
10 /Helvetica set_font |
710 |
130 41.5 moveto 6 (q) alignedtext |
711 |
grestore |
712 |
endpage |
713 |
showpage |
714 |
grestore |
715 |
%%PageTrailer |
716 |
%%EndPage: 1 |
717 |
%%Trailer |
718 |
%%Pages: 1 |
719 |
%%BoundingBox: 36 36 511 416 |
720 |
end |
721 |
restore |
722 |
%%EOF |