rec22.ps
20.8 KB
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
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
%!PS-Adobe-2.0
%%Creator: dotneato version 1.6 (Sat Aug 5 11:20:22 CDT 2000)
%%For: (connolly)
%%Title: makeREC
%%Pages: (atend)
%%BoundingBox: 36 36 997 1208
%%EndComments
%%BeginProlog
save
/DotDict 200 dict def
DotDict begin
%%BeginResource: procset
/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
dup scale
} bind def
% styles
/solid { } 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 aligned label in bounding box aligned to current point
% alignfactor tells what fraction to place on the left.
% -.5 is centered.
/alignedtext { % text labelwidth fontsz alignfactor
/alignfactor exch def
/fontsz exch def
/width exch def
/text exch def
gsave
% even if node or edge is dashed, don't paint text with dashes
[] 0 setdash
currentpoint newpath moveto
text stringwidth pop
alignfactor mul fontsz -.3 mul rmoveto
text show
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
/layercolorseq
[ % layer color sequence - darkest to lightest
[0 0 0]
[.2 .8 .8]
[.4 .8 .8]
[.6 .8 .8]
[.8 .8 .8]
]
def
/setlayer {/maxlayer exch def /curlayer exch def
layercolorseq curlayer 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
%%EndSetup
%%Page: 1 1
%%PageBoundingBox: 36 36 997 1208
%%PageOrientation: Portrait
gsave
35 35 962 1173 boxprim clip newpath
36 36 translate
0 0 1 beginpage
0 0 translate 0 rotate
0.000 0.000 0.000 graphcolor
14.00 /Times-Roman set_font
gsave 10 dict begin
480 25 moveto (@@TODO: model membership maintenance ala) 273 14.00 -0.50 alignedtext
480 9 moveto (WG charter and activity statement maintenance) 265 14.00 -0.50 alignedtext
end grestore
gsave 10 dict begin
newpath 0 1013 moveto
496 1013 lineto
496 1155 lineto
0 1155 lineto
closepath
stroke
gsave 10 dict begin
42 1164 moveto (Key/Schema) 71 14.00 -0.50 alignedtext
end grestore
end grestore
% ACnotice
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
118 1128 37 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
118 1129 moveto (ACnotice) 53 14.00 -0.50 alignedtext
end grestore
end grestore
% trPub
gsave 10 dict begin
0.667 1.000 1.000 nodecolor
36 1128 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
36 1129 moveto (trPub) 30 14.00 -0.50 alignedtext
end grestore
end grestore
% ACaction
gsave 10 dict begin
0.106 1.000 1.000 nodecolor
450 1128 37 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
450 1129 moveto (ACaction) 53 14.00 -0.50 alignedtext
end grestore
end grestore
% WGaction
gsave 10 dict begin
0.000 0.745 0.647 nodecolor
356 1128 39 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
356 1129 moveto (WGaction) 57 14.00 -0.50 alignedtext
end grestore
end grestore
% x
gsave 10 dict begin
272 1128 27 18 ellipse_path
stroke
gsave 10 dict begin
272 1129 moveto (x) 7 14.00 -0.50 alignedtext
end grestore
end grestore
% y
gsave 10 dict begin
272 1040 27 18 ellipse_path
stroke
gsave 10 dict begin
272 1041 moveto (y) 7 14.00 -0.50 alignedtext
end grestore
end grestore
% x -> y
gsave 10 dict begin
dotted
newpath 270 1110 moveto
270 1103 269 1097 269 1092 curveto
268 1086 269 1077 269 1068 curveto
stroke
newpath 267 1068 moveto
270 1058 lineto
271 1068 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
335 1085 moveto (optional dependency) 116 14.00 -0.50 alignedtext
end grestore
end grestore
% a
gsave 10 dict begin
200 1128 27 18 ellipse_path
stroke
gsave 10 dict begin
200 1129 moveto (a) 6 14.00 -0.50 alignedtext
end grestore
end grestore
% b
gsave 10 dict begin
128 1040 27 18 ellipse_path
stroke
gsave 10 dict begin
128 1041 moveto (b) 7 14.00 -0.50 alignedtext
end grestore
end grestore
% a -> b
gsave 10 dict begin
dotted
0.769 0.867 0.941 edgecolor
newpath 178 1117 moveto
166 1110 151 1101 143 1092 curveto
138 1085 135 1075 132 1065 curveto
stroke
newpath 130 1068 moveto
131 1058 lineto
135 1068 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
0.000 0.000 0.000 edgecolor
168 1085 moveto (choice) 36 14.00 -0.50 alignedtext
end grestore
end grestore
% c
gsave 10 dict begin
200 1040 27 18 ellipse_path
stroke
gsave 10 dict begin
200 1041 moveto (c) 6 14.00 -0.50 alignedtext
end grestore
end grestore
% a -> c
gsave 10 dict begin
dotted
0.769 0.867 0.941 edgecolor
newpath 200 1110 moveto
200 1098 200 1081 200 1067 curveto
stroke
newpath 198 1068 moveto
200 1058 lineto
203 1068 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
0.000 0.000 0.000 edgecolor
225 1085 moveto (choice) 36 14.00 -0.50 alignedtext
end grestore
end grestore
% REC
gsave 10 dict begin
0.667 1.000 1.000 nodecolor
532 1128 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
532 1129 moveto (REC) 27 14.00 -0.50 alignedtext
end grestore
end grestore
% RECdd
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
799 1128 31 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
799 1129 moveto (RECdd) 41 14.00 -0.50 alignedtext
end grestore
end grestore
% REC -> RECdd
newpath 558 1123 moveto
625 1112 693 1112 760 1122 curveto
stroke
newpath 759 1119 moveto
769 1123 lineto
759 1124 lineto
closepath
gsave 0 setgray stroke grestore fill
% PR
gsave 10 dict begin
0.667 1.000 1.000 nodecolor
532 952 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
532 953 moveto (PR) 17 14.00 -0.50 alignedtext
end grestore
end grestore
% REC -> PR
newpath 532 1110 moveto
532 1078 532 1013 532 977 curveto
stroke
newpath 530 980 moveto
532 970 lineto
535 980 lineto
closepath
gsave 0 setgray stroke grestore fill
% RECdd -> REC
newpath 564 1134 moveto
633 1144 701 1145 769 1133 curveto
stroke
newpath 567 1137 moveto
558 1133 lineto
568 1132 lineto
closepath
gsave 0 setgray stroke grestore fill
% prReview
gsave 10 dict begin
0.106 1.000 1.000 nodecolor
836 1040 37 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
836 1041 moveto (prReview) 54 14.00 -0.50 alignedtext
end grestore
end grestore
% RECdd -> prReview
newpath 806 1110 moveto
812 1098 819 1081 825 1067 curveto
stroke
newpath 822 1067 moveto
828 1058 lineto
827 1068 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
862 1085 moveto (2weeks@@) 67 14.00 -0.50 alignedtext
end grestore
% CFR
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
771 952 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
771 953 moveto (CFR) 26 14.00 -0.50 alignedtext
end grestore
end grestore
% RECdd -> CFR
newpath 796 1110 moveto
791 1078 781 1013 775 977 curveto
stroke
newpath 773 980 moveto
774 970 lineto
778 980 lineto
closepath
gsave 0 setgray stroke grestore fill
% PR -> CFR
newpath 558 957 moveto
617 968 677 968 737 958 curveto
stroke
newpath 735 956 moveto
745 957 lineto
735 961 lineto
closepath
gsave 0 setgray stroke grestore fill
% CR
gsave 10 dict begin
0.667 1.000 1.000 nodecolor
500 878 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
500 879 moveto (CR) 18 14.00 -0.50 alignedtext
end grestore
end grestore
% PR -> CR
gsave 10 dict begin
dotted
newpath 524 934 moveto
520 926 516 914 512 905 curveto
stroke
newpath 510 906 moveto
508 896 lineto
514 904 lineto
closepath
gsave 0 setgray stroke grestore fill
end grestore
% WD
gsave 10 dict begin
0.667 1.000 1.000 nodecolor
550 656 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
550 657 moveto (WD) 23 14.00 -0.50 alignedtext
end grestore
end grestore
% PR -> WD
newpath 540 935 moveto
546 918 555 893 555 878 curveto
555 878 555 878 555 730 curveto
555 728 553 702 552 682 curveto
stroke
newpath 550 684 moveto
551 674 lineto
555 684 lineto
closepath
gsave 0 setgray stroke grestore fill
% prReview -> CFR
newpath 823 1023 moveto
814 1009 800 991 789 975 curveto
stroke
newpath 788 977 moveto
783 968 lineto
791 974 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
851 997 moveto (4weeks@@) 67 14.00 -0.50 alignedtext
end grestore
% orgJoins
gsave 10 dict begin
0.106 1.000 1.000 nodecolor
546 50 34 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
546 51 moveto (orgJoins) 47 14.00 -0.50 alignedtext
end grestore
end grestore
% prReview -> orgJoins
newpath 864 1028 moveto
898 1013 949 984 950 952 curveto
950 952 950 952 950 124 curveto
949 69 693 55 589 51 curveto
stroke
newpath 590 54 moveto
580 51 lineto
590 49 lineto
closepath
gsave 0 setgray stroke grestore fill
% CFR -> PR
newpath 566 946 moveto
626 936 686 936 745 947 curveto
stroke
newpath 568 948 moveto
558 947 lineto
568 943 lineto
closepath
gsave 0 setgray stroke grestore fill
% PRreq
gsave 10 dict begin
0.000 0.745 0.647 nodecolor
754 804 28 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
754 805 moveto (PRreq) 35 14.00 -0.50 alignedtext
end grestore
end grestore
% CFR -> PRreq
newpath 769 934 moveto
765 908 760 862 757 831 curveto
stroke
newpath 755 832 moveto
756 822 lineto
760 832 lineto
closepath
gsave 0 setgray stroke grestore fill
% CR -> WD
newpath 504 860 moveto
511 823 528 739 538 692 curveto
539 689 540 685 541 681 curveto
stroke
newpath 538 683 moveto
543 674 lineto
543 684 lineto
closepath
gsave 0 setgray stroke grestore fill
% CFI
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
610 878 27 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
610 879 moveto (CFI) 21 14.00 -0.50 alignedtext
end grestore
end grestore
% CR -> CFI
newpath 523 887 moveto
542 892 559 893 577 889 curveto
stroke
newpath 576 887 moveto
586 887 lineto
577 892 lineto
closepath
gsave 0 setgray stroke grestore fill
% WDreq
gsave 10 dict begin
0.000 0.745 0.647 nodecolor
550 582 31 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
550 583 moveto (WDreq) 41 14.00 -0.50 alignedtext
end grestore
end grestore
% WD -> WDreq
newpath 550 638 moveto
550 629 550 619 550 610 curveto
stroke
newpath 548 610 moveto
550 600 lineto
553 610 lineto
closepath
gsave 0 setgray stroke grestore fill
% activityStatement
gsave 10 dict begin
442 582 59 18 ellipse_path
stroke
gsave 10 dict begin
442 583 moveto (activityStatement) 98 14.00 -0.50 alignedtext
end grestore
end grestore
% WD -> activityStatement
newpath 531 643 moveto
515 633 493 617 474 604 curveto
stroke
newpath 473 606 moveto
466 599 lineto
476 602 lineto
closepath
gsave 0 setgray stroke grestore fill
% impEvidence
gsave 10 dict begin
748 730 47 18 ellipse_path
stroke
gsave 10 dict begin
748 731 moveto (impEvidence) 73 14.00 -0.50 alignedtext
end grestore
end grestore
% PRreq -> impEvidence
newpath 753 786 moveto
752 777 752 767 751 758 curveto
stroke
newpath 749 758 moveto
750 748 lineto
753 758 lineto
closepath
gsave 0 setgray stroke grestore fill
% lastCall
gsave 10 dict begin
0.000 0.745 0.647 nodecolor
614 730 31 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
614 731 moveto (lastCall) 42 14.00 -0.50 alignedtext
end grestore
end grestore
% PRreq -> lastCall
newpath 732 792 moveto
709 780 672 761 646 746 curveto
stroke
newpath 645 748 moveto
637 742 lineto
647 744 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgAction
gsave 10 dict begin
0.000 0.745 0.647 nodecolor
664 494 38 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
664 495 moveto (wgAction) 55 14.00 -0.50 alignedtext
end grestore
end grestore
% PRreq -> wgAction
newpath 774 791 moveto
794 776 823 751 823 730 curveto
823 730 823 730 823 582 curveto
823 541 753 515 705 504 curveto
stroke
newpath 708 508 moveto
699 502 lineto
709 503 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
872 657 moveto (rdf:subClassOf) 84 14.00 -0.50 alignedtext
end grestore
% lastCall -> WD
newpath 600 714 moveto
591 703 579 690 570 679 curveto
stroke
newpath 569 681 moveto
564 672 lineto
572 678 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgParticipation
gsave 10 dict begin
582 420 54 18 ellipse_path
stroke
gsave 10 dict begin
582 421 moveto (wgParticipation) 88 14.00 -0.50 alignedtext
end grestore
end grestore
% wgAction -> wgParticipation
newpath 646 478 moveto
635 468 620 454 608 443 curveto
stroke
newpath 607 445 moveto
601 437 lineto
610 442 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgChairNom
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
580 272 48 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
580 273 moveto (wgChairNom) 76 14.00 -0.50 alignedtext
end grestore
end grestore
% wgAction -> wgChairNom
newpath 662 476 moveto
659 441 649 366 629 328 curveto
624 318 614 307 605 296 curveto
stroke
newpath 603 298 moveto
598 289 lineto
607 294 lineto
closepath
gsave 0 setgray stroke grestore fill
% CFI -> CR
newpath 530 867 moveto
549 863 568 864 587 869 curveto
stroke
newpath 533 869 moveto
523 869 lineto
532 864 lineto
closepath
gsave 0 setgray stroke grestore fill
% CRreq
gsave 10 dict begin
0.000 0.745 0.647 nodecolor
614 804 28 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
614 805 moveto (CRreq) 36 14.00 -0.50 alignedtext
end grestore
end grestore
% CFI -> CRreq
newpath 611 860 moveto
612 851 612 841 612 832 curveto
stroke
newpath 610 832 moveto
613 822 lineto
614 832 lineto
closepath
gsave 0 setgray stroke grestore fill
% CRreq -> lastCall
newpath 614 786 moveto
614 777 614 767 614 758 curveto
stroke
newpath 612 758 moveto
614 748 lineto
617 758 lineto
closepath
gsave 0 setgray stroke grestore fill
% CRreq -> wgAction
newpath 632 790 moveto
649 774 673 750 673 730 curveto
673 730 673 730 673 582 curveto
673 566 670 541 668 521 curveto
stroke
newpath 666 522 moveto
667 512 lineto
671 522 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
722 657 moveto (rdf:subClassOf) 84 14.00 -0.50 alignedtext
end grestore
% WDreq -> wgAction
newpath 549 564 moveto
548 551 550 536 557 530 curveto
572 519 597 510 620 504 curveto
stroke
newpath 619 502 moveto
629 501 lineto
620 507 lineto
closepath
gsave 0 setgray stroke grestore fill
gsave 10 dict begin
606 539 moveto (rdf:subClassOf) 84 14.00 -0.50 alignedtext
end grestore
% activityCreation
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
492 198 55 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
492 199 moveto (activityCreation) 90 14.00 -0.50 alignedtext
end grestore
end grestore
% activityStatement -> activityCreation
newpath 456 564 moveto
468 549 482 527 484 512 curveto
495 430 494 283 492 224 curveto
stroke
newpath 490 226 moveto
492 216 lineto
495 226 lineto
closepath
gsave 0 setgray stroke grestore fill
% activityUpdate
gsave 10 dict begin
421 494 51 18 ellipse_path
stroke
gsave 10 dict begin
421 495 moveto (activityUpdate) 82 14.00 -0.50 alignedtext
end grestore
end grestore
% activityStatement -> activityUpdate
newpath 438 564 moveto
435 552 431 535 427 521 curveto
stroke
newpath 425 522 moveto
425 512 lineto
430 521 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgCharter
gsave 10 dict begin
338 272 40 18 ellipse_path
stroke
gsave 10 dict begin
338 273 moveto (wgCharter) 58 14.00 -0.50 alignedtext
end grestore
end grestore
% wgCFP
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
445 272 31 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
445 273 moveto (wgCFP) 42 14.00 -0.50 alignedtext
end grestore
end grestore
% wgCharter -> wgCFP
gsave 10 dict begin
dotted
0.769 0.867 0.941 edgecolor
newpath 370 261 moveto
383 259 396 258 409 260 curveto
stroke
newpath 410 258 moveto
419 262 lineto
409 262 lineto
closepath
gsave 0 setgray stroke grestore fill
end grestore
% charterRevision
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
352 198 54 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
352 199 moveto (charterRevision) 88 14.00 -0.50 alignedtext
end grestore
end grestore
% wgCharter -> charterRevision
gsave 10 dict begin
dotted
0.769 0.867 0.941 edgecolor
newpath 341 254 moveto
343 245 345 235 347 226 curveto
stroke
newpath 345 225 moveto
349 216 lineto
349 226 lineto
closepath
gsave 0 setgray stroke grestore fill
end grestore
% wgCFP -> wgCharter
newpath 376 284 moveto
390 287 404 285 419 282 curveto
stroke
newpath 379 287 moveto
369 283 lineto
379 282 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgCFP -> wgChairNom
newpath 472 281 moveto
492 285 511 287 531 284 curveto
stroke
newpath 531 282 moveto
541 283 lineto
531 286 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgCFP -> activityCreation
newpath 456 255 moveto
461 246 469 234 476 224 curveto
stroke
newpath 474 223 moveto
481 216 lineto
478 226 lineto
closepath
gsave 0 setgray stroke grestore fill
% nomination
gsave 10 dict begin
0.106 1.000 1.000 nodecolor
338 346 42 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
338 347 moveto (nomination) 63 14.00 -0.50 alignedtext
end grestore
end grestore
% nomination -> orgJoins
newpath 316 331 moveto
296 316 270 292 270 272 curveto
270 272 270 272 270 124 curveto
270 43 428 88 506 68 curveto
508 68 509 67 511 66 curveto
stroke
newpath 511 63 moveto
521 62 lineto
513 68 lineto
closepath
gsave 0 setgray stroke grestore fill
% nomination -> wgCharter
newpath 338 328 moveto
338 319 338 309 338 300 curveto
stroke
newpath 336 300 moveto
338 290 lineto
341 300 lineto
closepath
gsave 0 setgray stroke grestore fill
% wgParticipation -> nomination
gsave 10 dict begin
dotted
0.769 0.867 0.941 edgecolor
newpath 542 408 moveto
497 395 424 372 379 358 curveto
stroke
newpath 382 362 moveto
373 356 lineto
383 357 lineto
closepath
gsave 0 setgray stroke grestore fill
end grestore
% invitation
gsave 10 dict begin
580 346 37 18 ellipse_path
stroke
gsave 10 dict begin
580 347 moveto (invitation) 53 14.00 -0.50 alignedtext
end grestore
end grestore
% wgParticipation -> invitation
gsave 10 dict begin
dotted
0.769 0.867 0.941 edgecolor
newpath 582 402 moveto
581 393 581 383 581 374 curveto
stroke
newpath 579 374 moveto
581 364 lineto
584 374 lineto
closepath
gsave 0 setgray stroke grestore fill
end grestore
% wgChairNom -> wgCFP
newpath 479 262 moveto
500 258 521 257 542 261 curveto
stroke
newpath 482 264 moveto
472 263 lineto
482 259 lineto
closepath
gsave 0 setgray stroke grestore fill
% invitation -> wgCharter
newpath 548 336 moveto
505 323 425 298 377 284 curveto
stroke
newpath 380 288 moveto
371 282 lineto
381 283 lineto
closepath
gsave 0 setgray stroke grestore fill
% invitation -> wgChairNom
newpath 580 328 moveto
580 319 580 309 580 300 curveto
stroke
newpath 578 300 moveto
580 290 lineto
583 300 lineto
closepath
gsave 0 setgray stroke grestore fill
% apReview
gsave 10 dict begin
0.106 1.000 1.000 nodecolor
492 124 38 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
492 125 moveto (apReview) 55 14.00 -0.50 alignedtext
end grestore
end grestore
% activityCreation -> apReview
newpath 492 180 moveto
492 171 492 161 492 152 curveto
stroke
newpath 490 152 moveto
492 142 lineto
495 152 lineto
closepath
gsave 0 setgray stroke grestore fill
% apReview -> orgJoins
newpath 505 107 moveto
511 97 520 85 528 75 curveto
stroke
newpath 526 74 moveto
534 67 lineto
530 77 lineto
closepath
gsave 0 setgray stroke grestore fill
% activityProposal
gsave 10 dict begin
0.333 1.000 1.000 nodecolor
438 50 56 18 ellipse_path
stroke
gsave 10 dict begin
0.000 0.000 0.000 nodecolor
438 51 moveto (activityProposal) 91 14.00 -0.50 alignedtext
end grestore
end grestore
% apReview -> activityProposal
newpath 479 107 moveto
473 97 464 86 457 76 curveto
stroke
newpath 455 78 moveto
451 68 lineto
459 75 lineto
closepath
gsave 0 setgray stroke grestore fill
endpage
grestore
%%PageTrailer
%%EndPage: 1
%%Trailer
%%Pages: 1
end
restore
%%EOF