docs/keysigning-help

diff wot-before.ps @ 0:8d616aba351e

the already finished paper
author meillo@marmaro.de
date Wed, 18 Feb 2009 16:57:20 +0100
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/wot-before.ps	Wed Feb 18 16:57:20 2009 +0100
     1.3 @@ -0,0 +1,321 @@
     1.4 +%!PS-Adobe-3.0 EPSF-3.0
     1.5 +%%Creator: Graphviz version 2.20.2 (Sun Oct 12 22:28:10 UTC 2008)
     1.6 +%%For: (meillo) Meillo  r e t u r n s,,,
     1.7 +%%Title: lugu wot 2008-11-11
     1.8 +%%Pages: (atend)
     1.9 +%%BoundingBox: (atend)
    1.10 +%%EndComments
    1.11 +save
    1.12 +%%BeginProlog
    1.13 +/DotDict 200 dict def
    1.14 +DotDict begin
    1.15 +
    1.16 +/setupLatin1 {
    1.17 +mark
    1.18 +/EncodingVector 256 array def
    1.19 + EncodingVector 0
    1.20 +
    1.21 +ISOLatin1Encoding 0 255 getinterval putinterval
    1.22 +EncodingVector 45 /hyphen put
    1.23 +
    1.24 +% Set up ISO Latin 1 character encoding
    1.25 +/starnetISO {
    1.26 +        dup dup findfont dup length dict begin
    1.27 +        { 1 index /FID ne { def }{ pop pop } ifelse
    1.28 +        } forall
    1.29 +        /Encoding EncodingVector def
    1.30 +        currentdict end definefont
    1.31 +} def
    1.32 +/Times-Roman starnetISO def
    1.33 +/Times-Italic starnetISO def
    1.34 +/Times-Bold starnetISO def
    1.35 +/Times-BoldItalic starnetISO def
    1.36 +/Helvetica starnetISO def
    1.37 +/Helvetica-Oblique starnetISO def
    1.38 +/Helvetica-Bold starnetISO def
    1.39 +/Helvetica-BoldOblique starnetISO def
    1.40 +/Courier starnetISO def
    1.41 +/Courier-Oblique starnetISO def
    1.42 +/Courier-Bold starnetISO def
    1.43 +/Courier-BoldOblique starnetISO def
    1.44 +cleartomark
    1.45 +} bind def
    1.46 +
    1.47 +%%BeginResource: procset graphviz 0 0
    1.48 +/coord-font-family /Times-Roman def
    1.49 +/default-font-family /Times-Roman def
    1.50 +/coordfont coord-font-family findfont 8 scalefont def
    1.51 +
    1.52 +/InvScaleFactor 1.0 def
    1.53 +/set_scale {
    1.54 +       dup 1 exch div /InvScaleFactor exch def
    1.55 +       scale
    1.56 +} bind def
    1.57 +
    1.58 +% styles
    1.59 +/solid { [] 0 setdash } bind def
    1.60 +/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
    1.61 +/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
    1.62 +/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
    1.63 +/bold { 2 setlinewidth } bind def
    1.64 +/filled { } bind def
    1.65 +/unfilled { } bind def
    1.66 +/rounded { } bind def
    1.67 +/diagonals { } bind def
    1.68 +
    1.69 +% hooks for setting color 
    1.70 +/nodecolor { sethsbcolor } bind def
    1.71 +/edgecolor { sethsbcolor } bind def
    1.72 +/graphcolor { sethsbcolor } bind def
    1.73 +/nopcolor {pop pop pop} bind def
    1.74 +
    1.75 +/beginpage {	% i j npages
    1.76 +	/npages exch def
    1.77 +	/j exch def
    1.78 +	/i exch def
    1.79 +	/str 10 string def
    1.80 +	npages 1 gt {
    1.81 +		gsave
    1.82 +			coordfont setfont
    1.83 +			0 0 moveto
    1.84 +			(\() show i str cvs show (,) show j str cvs show (\)) show
    1.85 +		grestore
    1.86 +	} if
    1.87 +} bind def
    1.88 +
    1.89 +/set_font {
    1.90 +	findfont exch
    1.91 +	scalefont setfont
    1.92 +} def
    1.93 +
    1.94 +% draw text fitted to its expected width
    1.95 +/alignedtext {			% width text
    1.96 +	/text exch def
    1.97 +	/width exch def
    1.98 +	gsave
    1.99 +		width 0 gt {
   1.100 +			[] 0 setdash
   1.101 +			text stringwidth pop width exch sub text length div 0 text ashow
   1.102 +		} if
   1.103 +	grestore
   1.104 +} def
   1.105 +
   1.106 +/boxprim {				% xcorner ycorner xsize ysize
   1.107 +		4 2 roll
   1.108 +		moveto
   1.109 +		2 copy
   1.110 +		exch 0 rlineto
   1.111 +		0 exch rlineto
   1.112 +		pop neg 0 rlineto
   1.113 +		closepath
   1.114 +} bind def
   1.115 +
   1.116 +/ellipse_path {
   1.117 +	/ry exch def
   1.118 +	/rx exch def
   1.119 +	/y exch def
   1.120 +	/x exch def
   1.121 +	matrix currentmatrix
   1.122 +	newpath
   1.123 +	x y translate
   1.124 +	rx ry scale
   1.125 +	0 0 1 0 360 arc
   1.126 +	setmatrix
   1.127 +} bind def
   1.128 +
   1.129 +/endpage { showpage } bind def
   1.130 +/showpage { } def
   1.131 +
   1.132 +/layercolorseq
   1.133 +	[	% layer color sequence - darkest to lightest
   1.134 +		[0 0 0]
   1.135 +		[.2 .8 .8]
   1.136 +		[.4 .8 .8]
   1.137 +		[.6 .8 .8]
   1.138 +		[.8 .8 .8]
   1.139 +	]
   1.140 +def
   1.141 +
   1.142 +/layerlen layercolorseq length def
   1.143 +
   1.144 +/setlayer {/maxlayer exch def /curlayer exch def
   1.145 +	layercolorseq curlayer 1 sub layerlen mod get
   1.146 +	aload pop sethsbcolor
   1.147 +	/nodecolor {nopcolor} def
   1.148 +	/edgecolor {nopcolor} def
   1.149 +	/graphcolor {nopcolor} def
   1.150 +} bind def
   1.151 +
   1.152 +/onlayer { curlayer ne {invis} if } def
   1.153 +
   1.154 +/onlayers {
   1.155 +	/myupper exch def
   1.156 +	/mylower exch def
   1.157 +	curlayer mylower lt
   1.158 +	curlayer myupper gt
   1.159 +	or
   1.160 +	{invis} if
   1.161 +} def
   1.162 +
   1.163 +/curlayer 0 def
   1.164 +
   1.165 +%%EndResource
   1.166 +%%EndProlog
   1.167 +%%BeginSetup
   1.168 +14 default-font-family set_font
   1.169 +1 setmiterlimit
   1.170 +% /arrowlength 10 def
   1.171 +% /arrowwidth 5 def
   1.172 +
   1.173 +% make sure pdfmark is harmless for PS-interpreters other than Distiller
   1.174 +/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
   1.175 +% make '<<' and '>>' safe on PS Level 1 devices
   1.176 +/languagelevel where {pop languagelevel}{1} ifelse
   1.177 +2 lt {
   1.178 +    userdict (<<) cvn ([) cvn load put
   1.179 +    userdict (>>) cvn ([) cvn load put
   1.180 +} if
   1.181 +
   1.182 +%%EndSetup
   1.183 +setupLatin1
   1.184 +%%Page: 1 1
   1.185 +%%PageBoundingBox: 36 36 253 253
   1.186 +%%PageOrientation: Portrait
   1.187 +0 0 1 beginpage
   1.188 +gsave
   1.189 +36 36 217 217 boxprim clip newpath
   1.190 +1 1 set_scale 0 rotate 40 40 translate
   1.191 +% 2A411DFD
   1.192 +gsave
   1.193 +1 setlinewidth
   1.194 +0.000 0.000 0.000 nodecolor
   1.195 +52 88 27 18 ellipse_path stroke
   1.196 +0.000 0.000 0.000 nodecolor
   1.197 +14 /Times-Roman set_font
   1.198 +46 83.9 moveto 12 (aa) alignedtext
   1.199 +grestore
   1.200 +% 656D4094
   1.201 +gsave
   1.202 +1 setlinewidth
   1.203 +0.000 0.000 0.000 nodecolor
   1.204 +96 145 27 18 ellipse_path stroke
   1.205 +0.000 0.000 0.000 nodecolor
   1.206 +14 /Times-Roman set_font
   1.207 +88.5 140.9 moveto 15 (bb) alignedtext
   1.208 +grestore
   1.209 +% 2A411DFD->656D4094
   1.210 +gsave
   1.211 +1 setlinewidth
   1.212 +0.000 0.000 0.000 edgecolor
   1.213 +newpath 64 104 moveto
   1.214 +68 109 73 115 77 121 curveto
   1.215 +stroke
   1.216 +0.000 0.000 0.000 edgecolor
   1.217 +newpath 74.2 123.1 moveto
   1.218 +83 129 lineto
   1.219 +79.8 118.9 lineto
   1.220 +closepath fill
   1.221 +1 setlinewidth
   1.222 +solid
   1.223 +0.000 0.000 0.000 edgecolor
   1.224 +newpath 74.2 123.1 moveto
   1.225 +83 129 lineto
   1.226 +79.8 118.9 lineto
   1.227 +closepath stroke
   1.228 +grestore
   1.229 +% 656D4094->2A411DFD
   1.230 +gsave
   1.231 +1 setlinewidth
   1.232 +0.000 0.000 0.000 edgecolor
   1.233 +newpath 84 129 moveto
   1.234 +80 124 75 118 71 112 curveto
   1.235 +stroke
   1.236 +0.000 0.000 0.000 edgecolor
   1.237 +newpath 73.8 109.9 moveto
   1.238 +65 104 lineto
   1.239 +68.2 114.1 lineto
   1.240 +closepath fill
   1.241 +1 setlinewidth
   1.242 +solid
   1.243 +0.000 0.000 0.000 edgecolor
   1.244 +newpath 73.8 109.9 moveto
   1.245 +65 104 lineto
   1.246 +68.2 114.1 lineto
   1.247 +closepath stroke
   1.248 +grestore
   1.249 +% 303FC62A
   1.250 +gsave
   1.251 +1 setlinewidth
   1.252 +0.000 0.000 0.000 nodecolor
   1.253 +118 82 27 18 ellipse_path stroke
   1.254 +0.000 0.000 0.000 nodecolor
   1.255 +14 /Times-Roman set_font
   1.256 +111 77.9 moveto 14 (cc) alignedtext
   1.257 +grestore
   1.258 +% AB69FEE2
   1.259 +gsave
   1.260 +1 setlinewidth
   1.261 +0.000 0.000 0.000 nodecolor
   1.262 +163 136 27 18 ellipse_path stroke
   1.263 +0.000 0.000 0.000 nodecolor
   1.264 +14 /Times-Roman set_font
   1.265 +155.5 131.9 moveto 15 (dd) alignedtext
   1.266 +grestore
   1.267 +% 38F1C023
   1.268 +gsave
   1.269 +1 setlinewidth
   1.270 +0.000 0.000 0.000 nodecolor
   1.271 +118 28 27 18 ellipse_path stroke
   1.272 +0.000 0.000 0.000 nodecolor
   1.273 +14 /Times-Roman set_font
   1.274 +112 23.9 moveto 12 (ee) alignedtext
   1.275 +grestore
   1.276 +% D2F682BE
   1.277 +gsave
   1.278 +1 setlinewidth
   1.279 +0.000 0.000 0.000 nodecolor
   1.280 +28 19 27 18 ellipse_path stroke
   1.281 +0.000 0.000 0.000 nodecolor
   1.282 +14 /Times-Roman set_font
   1.283 +23.5 14.9 moveto 9 (ff) alignedtext
   1.284 +grestore
   1.285 +% D2F682BE->2A411DFD
   1.286 +gsave
   1.287 +1 setlinewidth
   1.288 +0.000 0.000 0.000 edgecolor
   1.289 +newpath 34 37 moveto
   1.290 +37 44 40 53 42 60 curveto
   1.291 +stroke
   1.292 +0.000 0.000 0.000 edgecolor
   1.293 +newpath 39.04 62.02 moveto
   1.294 +46 70 lineto
   1.295 +45.54 59.42 lineto
   1.296 +closepath fill
   1.297 +1 setlinewidth
   1.298 +solid
   1.299 +0.000 0.000 0.000 edgecolor
   1.300 +newpath 39.04 62.02 moveto
   1.301 +46 70 lineto
   1.302 +45.54 59.42 lineto
   1.303 +closepath stroke
   1.304 +grestore
   1.305 +% E5FDA812
   1.306 +gsave
   1.307 +1 setlinewidth
   1.308 +0.000 0.000 0.000 nodecolor
   1.309 +181 190 27 18 ellipse_path stroke
   1.310 +0.000 0.000 0.000 nodecolor
   1.311 +14 /Times-Roman set_font
   1.312 +174 185.9 moveto 14 (gg) alignedtext
   1.313 +grestore
   1.314 +endpage
   1.315 +showpage
   1.316 +grestore
   1.317 +%%PageTrailer
   1.318 +%%EndPage: 1
   1.319 +%%Trailer
   1.320 +%%Pages: 1
   1.321 +%%BoundingBox: 36 36 253 253
   1.322 +end
   1.323 +restore
   1.324 +%%EOF