blob: d9ec02d6a83f8e7800d3798d9509d9b0682f25e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
|
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: graphviz version 2.26.3 (20100126.1600)
%%Title: bpki_rpkid
%%Pages: 1
%%BoundingBox: 36 36 1044 274
%%EndComments
save
%%BeginProlog
/DotDict 200 dict def
DotDict begin
/setupLatin1 {
mark
/EncodingVector 256 array def
EncodingVector 0
ISOLatin1Encoding 0 255 getinterval putinterval
EncodingVector 45 /hyphen put
% Set up ISO Latin 1 character encoding
/starnetISO {
dup dup findfont dup length dict begin
{ 1 index /FID ne { def }{ pop pop } ifelse
} forall
/Encoding EncodingVector def
currentdict end definefont
} def
/Times-Roman starnetISO def
/Times-Italic starnetISO def
/Times-Bold starnetISO def
/Times-BoldItalic starnetISO def
/Helvetica starnetISO def
/Helvetica-Oblique starnetISO def
/Helvetica-Bold starnetISO def
/Helvetica-BoldOblique starnetISO def
/Courier starnetISO def
/Courier-Oblique starnetISO def
/Courier-Bold starnetISO def
/Courier-BoldOblique starnetISO def
cleartomark
} bind def
%%BeginResource: procset graphviz 0 0
/coord-font-family /Times-Roman def
/default-font-family /Times-Roman def
/coordfont coord-font-family findfont 8 scalefont def
/InvScaleFactor 1.0 def
/set_scale {
dup 1 exch div /InvScaleFactor exch def
scale
} bind def
% styles
/solid { [] 0 setdash } bind def
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
/bold { 2 setlinewidth } bind def
/filled { } bind def
/unfilled { } bind def
/rounded { } bind def
/diagonals { } bind def
% hooks for setting color
/nodecolor { sethsbcolor } bind def
/edgecolor { sethsbcolor } bind def
/graphcolor { sethsbcolor } bind def
/nopcolor {pop pop pop} bind def
/beginpage { % i j npages
/npages exch def
/j exch def
/i exch def
/str 10 string def
npages 1 gt {
gsave
coordfont setfont
0 0 moveto
(\() show i str cvs show (,) show j str cvs show (\)) show
grestore
} if
} bind def
/set_font {
findfont exch
scalefont setfont
} def
% draw text fitted to its expected width
/alignedtext { % width text
/text exch def
/width exch def
gsave
width 0 gt {
[] 0 setdash
text stringwidth pop width exch sub text length div 0 text ashow
} if
grestore
} def
/boxprim { % xcorner ycorner xsize ysize
4 2 roll
moveto
2 copy
exch 0 rlineto
0 exch rlineto
pop neg 0 rlineto
closepath
} bind def
/ellipse_path {
/ry exch def
/rx exch def
/y exch def
/x exch def
matrix currentmatrix
newpath
x y translate
rx ry scale
0 0 1 0 360 arc
setmatrix
} bind def
/endpage { showpage } bind def
/showpage { } def
/layercolorseq
[ % layer color sequence - darkest to lightest
[0 0 0]
[.2 .8 .8]
[.4 .8 .8]
[.6 .8 .8]
[.8 .8 .8]
]
def
/layerlen layercolorseq length def
/setlayer {/maxlayer exch def /curlayer exch def
layercolorseq curlayer 1 sub layerlen mod get
aload pop sethsbcolor
/nodecolor {nopcolor} def
/edgecolor {nopcolor} def
/graphcolor {nopcolor} def
} bind def
/onlayer { curlayer ne {invis} if } def
/onlayers {
/myupper exch def
/mylower exch def
curlayer mylower lt
curlayer myupper gt
or
{invis} if
} def
/curlayer 0 def
%%EndResource
%%EndProlog
%%BeginSetup
14 default-font-family set_font
1 setmiterlimit
% /arrowlength 10 def
% /arrowwidth 5 def
% make sure pdfmark is harmless for PS-interpreters other than Distiller
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
% make '<<' and '>>' safe on PS Level 1 devices
/languagelevel where {pop languagelevel}{1} ifelse
2 lt {
userdict (<<) cvn ([) cvn load put
userdict (>>) cvn ([) cvn load put
} if
%%EndSetup
setupLatin1
%%Page: 1 1
%%PageBoundingBox: 36 36 1044 274
%%PageOrientation: Portrait
0 0 1 beginpage
gsave
36 36 1008 238 boxprim clip newpath
0.838602 0.838602 set_scale 0 rotate 46.9286 47.9286 translate
% TA
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 417.87 250.54 moveto
417.87 265.46 lineto
399.2 276 lineto
372.8 276 lineto
354.13 265.46 lineto
354.13 250.54 lineto
372.8 240 lineto
399.2 240 lineto
closepath stroke
0 0 0 nodecolor
9 /Times set_font
368.5 254.9 moveto 35 (BPKI TA) alignedtext
grestore
% rpkid
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 0 149 moveto
0 203 lineto
140 203 lineto
140 149 lineto
closepath stroke
0 0 0 nodecolor
9 /Times set_font
8 172.9 moveto 21 (rpkid) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 37 149 moveto
37 203 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
61.5 190.9 moveto 54 (HTTPS server) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 37 185 moveto
140 185 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
45 172.9 moveto 87 (HTTPS left-right client) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 37 167 moveto
140 167 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
61 154.9 moveto 55 (CMS left-right) alignedtext
grestore
% TA->rpkid
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 353.88 251.92 moveto
309.91 243.33 228.39 226.44 150.1 204.2 curveto
stroke
0 0 0 edgecolor
newpath 150.65 200.71 moveto
140.07 201.31 lineto
148.72 207.44 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 150.65 200.71 moveto
140.07 201.31 lineto
148.72 207.44 lineto
closepath stroke
grestore
% irdbd
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 157.5 158 moveto
157.5 194 lineto
298.5 194 lineto
298.5 158 lineto
closepath stroke
0 0 0 nodecolor
9 /Times set_font
165.5 172.9 moveto 20 (irdbd) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 193.5 158 moveto
193.5 194 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
201.5 181.9 moveto 89 (HTTPS left-right server) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 193.5 176 moveto
298.5 176 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
218.5 163.9 moveto 55 (CMS left-right) alignedtext
grestore
% TA->irdbd
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 362.35 245.72 moveto
338.58 233.39 301.37 214.08 272.14 198.91 curveto
stroke
0 0 0 edgecolor
newpath 273.44 195.64 moveto
262.95 194.14 lineto
270.21 201.85 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 273.44 195.64 moveto
262.95 194.14 lineto
270.21 201.85 lineto
closepath stroke
grestore
% irbe
gsave
1 setlinewidth
0 0 0 nodecolor
newpath 315.5 158 moveto
315.5 194 lineto
456.5 194 lineto
456.5 158 lineto
closepath stroke
0 0 0 nodecolor
9 /Times set_font
323.5 172.9 moveto 22 (IRBE) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 353.5 158 moveto
353.5 194 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
361.5 181.9 moveto 87 (HTTPS left-right client) alignedtext
1 setlinewidth
0 0 0 nodecolor
newpath 353.5 176 moveto
456.5 176 lineto
stroke
0 0 0 nodecolor
9 /Times set_font
377.5 163.9 moveto 55 (CMS left-right) alignedtext
grestore
% TA->irbe
gsave
1 setlinewidth
dotted
0 0 0 edgecolor
newpath 386 239.8 moveto
386 229.4 386 216.12 386 204.38 curveto
stroke
0 0 0 edgecolor
newpath 389.5 204.15 moveto
386 194.15 lineto
382.5 204.15 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 389.5 204.15 moveto
386 194.15 lineto
382.5 204.15 lineto
closepath stroke
grestore
% Alice_CA
gsave
1 setlinewidth
0.66667 1 1 nodecolor
newpath 518 194 moveto
473.91 176 lineto
518 158 lineto
562.09 176 lineto
closepath stroke
0.66667 1 1 nodecolor
9 /Times set_font
499 172.9 moveto 38 (Alice_CA) alignedtext
grestore
% TA->Alice_CA
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 407.5 244.64 moveto
430.53 230.33 467.1 207.62 491.8 192.28 curveto
stroke
0 0 0 edgecolor
newpath 493.67 195.24 moveto
500.31 186.99 lineto
489.97 189.29 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 493.67 195.24 moveto
500.31 186.99 lineto
489.97 189.29 lineto
closepath stroke
grestore
% Ellen_CA
gsave
1 setlinewidth
0.66667 1 1 nodecolor
newpath 897 194 moveto
852.91 176 lineto
897 158 lineto
941.09 176 lineto
closepath stroke
0.66667 1 1 nodecolor
9 /Times set_font
878 172.9 moveto 38 (Ellen_CA) alignedtext
grestore
% TA->Ellen_CA
gsave
1 setlinewidth
solid
0 0 0 edgecolor
newpath 417.97 252.87 moveto
506.6 238.65 755.48 198.71 855.05 182.73 curveto
stroke
0 0 0 edgecolor
newpath 855.73 186.17 moveto
865.05 181.13 lineto
854.62 179.26 lineto
closepath fill
1 setlinewidth
solid
0 0 0 edgecolor
newpath 855.73 186.17 moveto
865.05 181.13 lineto
854.62 179.26 lineto
closepath stroke
grestore
% Alice_EE
gsave
1 setlinewidth
0.66667 1 1 nodecolor
newpath 208 75 moveto
208 111 lineto
358 111 lineto
358 75 lineto
closepath stroke
0.66667 1 1 nodecolor
9 /Times set_font
221.5 94.9 moveto 21 (Alice) alignedtext
0.66667 1 1 nodecolor
9 /Times set_font
216 84.9 moveto 32 (BSC EE) alignedtext
1 setlinewidth
0.66667 1 1 nodecolor
newpath 256 75 moveto
256 111 lineto
stroke
0.66667 1 1 nodecolor
9 /Times set_font
264 98.9 moveto 86 (HTTPS up-down client) alignedtext
1 setlinewidth
0.66667 1 1 nodecolor
newpath 256 93 moveto
358 93 lineto
stroke
0.66667 1 1 nodecolor
9 /Times set_font
280 80.9 moveto 54 (CMS up-down) alignedtext
grestore
% Alice_CA->Alice_EE
gsave
1 setlinewidth
dotted
0.66667 1 1 edgecolor
newpath 499.78 165.25 moveto
489.74 159.63 476.94 152.9 465 148 curveto
432.63 134.7 395.85 122.98 363.87 113.82 curveto
stroke
0.66667 1 1 edgecolor
newpath 364.68 110.41 moveto
354.11 111.06 lineto
362.78 117.15 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 364.68 110.41 moveto
354.11 111.06 lineto
362.78 117.15 lineto
closepath stroke
grestore
% Bob_CA
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 416 111 moveto
375.99 93 lineto
416 75 lineto
456.01 93 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
399.5 89.9 moveto 33 (Bob_CA) alignedtext
grestore
% Alice_CA->Bob_CA
gsave
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 502.95 163.75 moveto
485.88 149.86 457.88 127.08 438.28 111.13 curveto
stroke
0.66667 1 1 edgecolor
newpath 440.42 108.36 moveto
430.45 104.76 lineto
436 113.79 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 440.42 108.36 moveto
430.45 104.76 lineto
436 113.79 lineto
closepath stroke
grestore
% Carol_CA
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 518 111 moveto
473.91 93 lineto
518 75 lineto
562.09 93 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
499 89.9 moveto 38 (Carol_CA) alignedtext
grestore
% Alice_CA->Carol_CA
gsave
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 518 157.99 moveto
518 147.3 518 133.5 518 121.37 curveto
stroke
0.66667 1 1 edgecolor
newpath 521.5 121.26 moveto
518 111.26 lineto
514.5 121.26 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 521.5 121.26 moveto
518 111.26 lineto
514.5 121.26 lineto
closepath stroke
grestore
% Dave_CA
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 623 111 moveto
580.22 93 lineto
623 75 lineto
665.78 93 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
604.5 89.9 moveto 37 (Dave_CA) alignedtext
grestore
% Alice_CA->Dave_CA
gsave
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 533.04 164.11 moveto
550.59 150.24 579.77 127.17 600.13 111.08 curveto
stroke
0.66667 1 1 edgecolor
newpath 602.31 113.82 moveto
607.98 104.87 lineto
597.97 108.33 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 602.31 113.82 moveto
607.98 104.87 lineto
597.97 108.33 lineto
closepath stroke
grestore
% Ellen_EE
gsave
1 setlinewidth
0.66667 1 1 nodecolor
newpath 684 75 moveto
684 111 lineto
834 111 lineto
834 75 lineto
closepath stroke
0.66667 1 1 nodecolor
9 /Times set_font
697.5 94.9 moveto 21 (Ellen) alignedtext
0.66667 1 1 nodecolor
9 /Times set_font
692 84.9 moveto 32 (BSC EE) alignedtext
1 setlinewidth
0.66667 1 1 nodecolor
newpath 732 75 moveto
732 111 lineto
stroke
0.66667 1 1 nodecolor
9 /Times set_font
740 98.9 moveto 86 (HTTPS up-down client) alignedtext
1 setlinewidth
0.66667 1 1 nodecolor
newpath 732 93 moveto
834 93 lineto
stroke
0.66667 1 1 nodecolor
9 /Times set_font
756 80.9 moveto 54 (CMS up-down) alignedtext
grestore
% Ellen_CA->Ellen_EE
gsave
1 setlinewidth
dotted
0.66667 1 1 edgecolor
newpath 878.96 165.15 moveto
858.48 152.83 824.47 132.38 797.88 116.38 curveto
stroke
0.66667 1 1 edgecolor
newpath 799.55 113.31 moveto
789.18 111.15 lineto
795.94 119.3 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 799.55 113.31 moveto
789.18 111.15 lineto
795.94 119.3 lineto
closepath stroke
grestore
% Frank_CA
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 897 111 moveto
851.78 93 lineto
897 75 lineto
942.22 93 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
877 89.9 moveto 40 (Frank_CA) alignedtext
grestore
% Ellen_CA->Frank_CA
gsave
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 897 157.99 moveto
897 147.3 897 133.5 897 121.37 curveto
stroke
0.66667 1 1 edgecolor
newpath 900.5 121.26 moveto
897 111.26 lineto
893.5 121.26 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 900.5 121.26 moveto
897 111.26 lineto
893.5 121.26 lineto
closepath stroke
grestore
% Ginny_CA
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 1005 111 moveto
959.78 93 lineto
1005 75 lineto
1050.22 93 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
985 89.9 moveto 40 (Ginny_CA) alignedtext
grestore
% Ellen_CA->Ginny_CA
gsave
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 912.47 164.11 moveto
930.52 150.24 960.54 127.17 981.47 111.08 curveto
stroke
0.66667 1 1 edgecolor
newpath 983.76 113.74 moveto
989.55 104.87 lineto
979.49 108.19 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 983.76 113.74 moveto
989.55 104.87 lineto
979.49 108.19 lineto
closepath stroke
grestore
% Harry_CA
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 1125 111 moveto
1080.09 93 lineto
1125 75 lineto
1169.91 93 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
1105.5 89.9 moveto 39 (Harry_CA) alignedtext
grestore
% Ellen_CA->Harry_CA
gsave
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 920.54 167.43 moveto
961.24 152.61 1044.89 122.16 1091.59 105.16 curveto
stroke
0.66667 1 1 edgecolor
newpath 1093.05 108.36 moveto
1101.25 101.65 lineto
1090.65 101.78 lineto
closepath fill
1 setlinewidth
solid
0.66667 1 1 edgecolor
newpath 1093.05 108.36 moveto
1101.25 101.65 lineto
1090.65 101.78 lineto
closepath stroke
grestore
% Bob_EE
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 329.5 1 moveto
329.5 37 lineto
442.5 37 lineto
442.5 1 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
337.5 20.9 moveto 17 (Bob) alignedtext
0 1 1 nodecolor
9 /Times set_font
339.5 10.9 moveto 13 (EE) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 362.5 1 moveto
362.5 37 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
370.5 24.9 moveto 64 (HTTPS up-down) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 362.5 19 moveto
442.5 19 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
375.5 6.9 moveto 54 (CMS up-down) alignedtext
grestore
% Bob_CA->Bob_EE
gsave
1 setlinewidth
solid
0 1 1 edgecolor
newpath 409.78 77.67 moveto
406.17 68.75 401.5 57.24 397.26 46.78 curveto
stroke
0 1 1 edgecolor
newpath 400.37 45.14 moveto
393.37 37.19 lineto
393.89 47.77 lineto
closepath fill
1 setlinewidth
solid
0 1 1 edgecolor
newpath 400.37 45.14 moveto
393.37 37.19 lineto
393.89 47.77 lineto
closepath stroke
grestore
% Carol_EE
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 459.5 1 moveto
459.5 37 lineto
576.5 37 lineto
576.5 1 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
467.5 20.9 moveto 21 (Carol) alignedtext
0 1 1 nodecolor
9 /Times set_font
471.5 10.9 moveto 13 (EE) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 496.5 1 moveto
496.5 37 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
504.5 24.9 moveto 64 (HTTPS up-down) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 496.5 19 moveto
576.5 19 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
509.5 6.9 moveto 54 (CMS up-down) alignedtext
grestore
% Carol_CA->Carol_EE
gsave
1 setlinewidth
solid
0 1 1 edgecolor
newpath 518 74.71 moveto
518 66.46 518 56.54 518 47.36 curveto
stroke
0 1 1 edgecolor
newpath 521.5 47.08 moveto
518 37.08 lineto
514.5 47.08 lineto
closepath fill
1 setlinewidth
solid
0 1 1 edgecolor
newpath 521.5 47.08 moveto
518 37.08 lineto
514.5 47.08 lineto
closepath stroke
grestore
% Dave_EE
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 593.5 1 moveto
593.5 37 lineto
710.5 37 lineto
710.5 1 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
601.5 20.9 moveto 21 (Dave) alignedtext
0 1 1 nodecolor
9 /Times set_font
605.5 10.9 moveto 13 (EE) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 630.5 1 moveto
630.5 37 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
638.5 24.9 moveto 64 (HTTPS up-down) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 630.5 19 moveto
710.5 19 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
643.5 6.9 moveto 54 (CMS up-down) alignedtext
grestore
% Dave_CA->Dave_EE
gsave
1 setlinewidth
solid
0 1 1 edgecolor
newpath 629.15 77.31 moveto
632.65 68.37 637.14 56.91 641.21 46.53 curveto
stroke
0 1 1 edgecolor
newpath 644.55 47.6 moveto
644.94 37.01 lineto
638.03 45.05 lineto
closepath fill
1 setlinewidth
solid
0 1 1 edgecolor
newpath 644.55 47.6 moveto
644.94 37.01 lineto
638.03 45.05 lineto
closepath stroke
grestore
% Frank_EE
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 809.5 1 moveto
809.5 37 lineto
928.5 37 lineto
928.5 1 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
817.5 20.9 moveto 23 (Frank) alignedtext
0 1 1 nodecolor
9 /Times set_font
822.5 10.9 moveto 13 (EE) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 848.5 1 moveto
848.5 37 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
856.5 24.9 moveto 64 (HTTPS up-down) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 848.5 19 moveto
928.5 19 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
861.5 6.9 moveto 54 (CMS up-down) alignedtext
grestore
% Frank_CA->Frank_EE
gsave
1 setlinewidth
solid
0 1 1 edgecolor
newpath 891.06 77.31 moveto
887.68 68.37 883.35 56.91 879.42 46.53 curveto
stroke
0 1 1 edgecolor
newpath 882.63 45.13 moveto
875.82 37.01 lineto
876.08 47.61 lineto
closepath fill
1 setlinewidth
solid
0 1 1 edgecolor
newpath 882.63 45.13 moveto
875.82 37.01 lineto
876.08 47.61 lineto
closepath stroke
grestore
% Ginny_EE
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 945.5 1 moveto
945.5 37 lineto
1064.5 37 lineto
1064.5 1 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
953.5 20.9 moveto 23 (Ginny) alignedtext
0 1 1 nodecolor
9 /Times set_font
958.5 10.9 moveto 13 (EE) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 984.5 1 moveto
984.5 37 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
992.5 24.9 moveto 64 (HTTPS up-down) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 984.5 19 moveto
1064.5 19 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
997.5 6.9 moveto 54 (CMS up-down) alignedtext
grestore
% Ginny_CA->Ginny_EE
gsave
1 setlinewidth
solid
0 1 1 edgecolor
newpath 1005 74.71 moveto
1005 66.46 1005 56.54 1005 47.36 curveto
stroke
0 1 1 edgecolor
newpath 1008.5 47.08 moveto
1005 37.08 lineto
1001.5 47.08 lineto
closepath fill
1 setlinewidth
solid
0 1 1 edgecolor
newpath 1008.5 47.08 moveto
1005 37.08 lineto
1001.5 47.08 lineto
closepath stroke
grestore
% Harry_EE
gsave
1 setlinewidth
0 1 1 nodecolor
newpath 1081.5 1 moveto
1081.5 37 lineto
1194.5 37 lineto
1194.5 1 lineto
closepath stroke
0 1 1 nodecolor
9 /Times set_font
1089.5 20.9 moveto 17 (Bob) alignedtext
0 1 1 nodecolor
9 /Times set_font
1091.5 10.9 moveto 13 (EE) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 1114.5 1 moveto
1114.5 37 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
1122.5 24.9 moveto 64 (HTTPS up-down) alignedtext
1 setlinewidth
0 1 1 nodecolor
newpath 1114.5 19 moveto
1194.5 19 lineto
stroke
0 1 1 nodecolor
9 /Times set_font
1127.5 6.9 moveto 54 (CMS up-down) alignedtext
grestore
% Harry_CA->Harry_EE
gsave
1 setlinewidth
solid
0 1 1 edgecolor
newpath 1128.02 75.84 moveto
1129.51 67.31 1131.36 56.78 1133.06 47.12 curveto
stroke
0 1 1 edgecolor
newpath 1136.54 47.56 moveto
1134.82 37.1 lineto
1129.64 46.35 lineto
closepath fill
1 setlinewidth
solid
0 1 1 edgecolor
newpath 1136.54 47.56 moveto
1134.82 37.1 lineto
1129.64 46.35 lineto
closepath stroke
grestore
endpage
showpage
grestore
%%PageTrailer
%%EndPage: 1
%%Trailer
end
restore
%%EOF
|