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
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!-- Generated by fdp version 2.2.1 (Thu Apr 6 00:32:47 UTC 2006)
For user: (stub) Stuart Bishop,,, Title: g Pages: 1 -->
<svg width="5546px" height="3268px"
viewBox = "-1 -1 5545 3267"
xmlns="http://www.w3.org/2000/svg">
<g id="graph0" class="graph" style="font-family:Times-Roman;font-size:14.00;">
<title>g</title>
<text text-anchor="middle" style="font-size:22.00;" x="2772" y="3250">Soyuz</text>
<g id="node1" class="node"><title>binarypackagefile</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="233,1014 233,938 477,938 477,1014 233,1014"/>
<polygon style="fill:white;stroke:white;" points="236,955 236,941 474,941 474,955 236,955"/>
<text text-anchor="middle" style="font-size:8.00;" x="355" y="951">binarypackagefile</text>
<polygon style="fill:none;stroke:black;" points="236,955 236,941 474,941 474,955 236,955"/>
<text text-anchor="middle" style="font-size:8.00;" x="274" y="966">binarypackagerelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="327" y="966">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="409" y="966"> REFERENCES binarypackagerelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="255" y="980">libraryfile</text>
<text text-anchor="middle" style="font-size:8.00;" x="327" y="980">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="397" y="980"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="251" y="994">filetype</text>
<text text-anchor="middle" style="font-size:8.00;" x="327" y="994">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="242" y="1008">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="327" y="1008">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="375" y="1008"> PRIMARY KEY </text>
<polygon style="fill:none;stroke:black;" points="233,1014 233,938 477,938 477,1014 233,1014"/>
</g>
<g id="node3" class="node"><title>binarypackagerelease</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="871,1394 871,1038 1181,1038 1181,1394 871,1394"/>
<polygon style="fill:white;stroke:white;" points="874,1055 874,1041 1178,1041 1178,1055 874,1055"/>
<text text-anchor="middle" style="font-size:8.00;" x="1026" y="1051">binarypackagerelease</text>
<polygon style="fill:none;stroke:black;" points="874,1055 874,1041 1178,1041 1178,1055 874,1055"/>
<text text-anchor="middle" style="font-size:8.00;" x="880" y="1066">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="957" y="1066">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1019" y="1066"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="909" y="1080">binarypackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1080">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1083" y="1080"> REFERENCES binarypackagename UNIQUE UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="889" y="1094">version</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1094">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="1007" y="1094"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="892" y="1108">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1108">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="894" y="1122">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1122">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="885" y="1136">build</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1136">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1059" y="1136"> UNIQUE REFERENCES build UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="906" y="1150">binpackageformat</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1150">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="895" y="1164">component</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1164">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1036" y="1164"> REFERENCES component </text>
<text text-anchor="middle" style="font-size:8.00;" x="888" y="1178">section</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1178">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1029" y="1178"> REFERENCES section </text>
<text text-anchor="middle" style="font-size:8.00;" x="889" y="1192">priority</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1192">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="892" y="1206">shlibdeps</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1206">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="890" y="1220">depends</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1220">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="898" y="1234">recommends</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1234">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="890" y="1248">suggests</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1248">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="890" y="1262">conflicts</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1262">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="890" y="1276">replaces</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1276">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="891" y="1290">provides</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1290">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="891" y="1304">essential</text>
<text text-anchor="middle" style="font-size:8.00;" x="962" y="1304">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="897" y="1318">installedsize</text>
<text text-anchor="middle" style="font-size:8.00;" x="960" y="1318">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="892" y="1332">copyright</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1332">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="888" y="1346">licence</text>
<text text-anchor="middle" style="font-size:8.00;" x="955" y="1346">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="908" y="1360">architecturespecific</text>
<text text-anchor="middle" style="font-size:8.00;" x="962" y="1360">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="881" y="1374">fti</text>
<text text-anchor="middle" style="font-size:8.00;" x="962" y="1374">tsvector</text>
<text text-anchor="middle" style="font-size:8.00;" x="895" y="1388">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="966" y="1388">timestamp</text>
<polygon style="fill:none;stroke:black;" points="871,1394 871,1038 1181,1038 1181,1394 871,1394"/>
</g>
<g id="edge2" class="edge"><title>binarypackagefile->binarypackagerelease</title>
<path style="fill:none;stroke:black;" d="M473,1018C578,1056 734,1112 853,1155"/>
<polygon style="fill:black;stroke:black;" points="854,1152 863,1158 852,1158 854,1152"/>
</g>
<g id="node25" class="node"><title>fake_libraryfilealias_6</title>
<ellipse cx="41" cy="883" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="41" y="886">libraryfilealias</text>
</g>
<g id="edge4" class="edge"><title>binarypackagefile->fake_libraryfilealias_6</title>
<path style="fill:none;stroke:black;" d="M225,937C173,922 117,906 81,895"/>
<polygon style="fill:black;stroke:black;" points="80,898 71,892 82,892 80,898"/>
</g>
<g id="node2" class="node"><title>binarypackagename</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="438,1181 438,1133 558,1133 558,1181 438,1181"/>
<polygon style="fill:white;stroke:white;" points="441,1150 441,1136 555,1136 555,1150 441,1150"/>
<text text-anchor="middle" style="font-size:8.00;" x="498" y="1146">binarypackagename</text>
<polygon style="fill:none;stroke:black;" points="441,1150 441,1136 555,1136 555,1150 441,1150"/>
<text text-anchor="middle" style="font-size:8.00;" x="447" y="1161">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="478" y="1161">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="523" y="1161"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="453" y="1175">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="476" y="1175">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="511" y="1175"> UNIQUE </text>
<polygon style="fill:none;stroke:black;" points="438,1181 438,1133 558,1133 558,1181 438,1181"/>
</g>
<g id="edge6" class="edge"><title>binarypackagerelease->binarypackagename</title>
<path style="fill:none;stroke:black;" d="M863,1198C767,1187 652,1174 576,1165"/>
<polygon style="fill:black;stroke:black;" points="576,1168 566,1164 576,1162 576,1168"/>
</g>
<g id="node4" class="node"><title>build</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1763,1336 1763,1148 2019,1148 2019,1336 1763,1336"/>
<polygon style="fill:white;stroke:white;" points="1766,1165 1766,1151 2016,1151 2016,1165 1766,1165"/>
<text text-anchor="middle" style="font-size:8.00;" x="1891" y="1161">build</text>
<polygon style="fill:none;stroke:black;" points="1766,1165 1766,1151 2016,1151 2016,1165 1766,1165"/>
<text text-anchor="middle" style="font-size:8.00;" x="1772" y="1176">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1855" y="1176">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1917" y="1176"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1787" y="1190">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="1864" y="1190">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1785" y="1204">processor</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1204">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1931" y="1204"> REFERENCES processor </text>
<text text-anchor="middle" style="font-size:8.00;" x="1796" y="1218">distroarchrelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1218">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1943" y="1218"> REFERENCES distroarchrelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="1785" y="1232">buildstate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1232">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1783" y="1246">datebuilt</text>
<text text-anchor="middle" style="font-size:8.00;" x="1864" y="1246">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1791" y="1260">buildduration</text>
<text text-anchor="middle" style="font-size:8.00;" x="1859" y="1260">interval</text>
<text text-anchor="middle" style="font-size:8.00;" x="1783" y="1274">buildlog</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1274">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1939" y="1274"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="1780" y="1288">builder</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1288">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1927" y="1288"> REFERENCES builder </text>
<text text-anchor="middle" style="font-size:8.00;" x="1804" y="1302">sourcepackagerelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1302">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1951" y="1302"> REFERENCES sourcepackagerelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="1780" y="1316">pocket</text>
<text text-anchor="middle" style="font-size:8.00;" x="1858" y="1316">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1790" y="1330">dependencies</text>
<text text-anchor="middle" style="font-size:8.00;" x="1853" y="1330">text</text>
<polygon style="fill:none;stroke:black;" points="1763,1336 1763,1148 2019,1148 2019,1336 1763,1336"/>
</g>
<g id="edge8" class="edge"><title>binarypackagerelease->build</title>
<path style="fill:none;stroke:black;" d="M1189,1224C1285,1229 1409,1234 1519,1237 1593,1239 1676,1241 1745,1241"/>
<polygon style="fill:black;stroke:black;" points="1745,1237 1755,1241 1745,1244 1745,1237"/>
</g>
<g id="node29" class="node"><title>fake_component_10</title>
<ellipse cx="667" cy="880" rx="30" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="667" y="883">component</text>
</g>
<g id="edge10" class="edge"><title>binarypackagerelease->fake_component_10</title>
<path style="fill:none;stroke:black;" d="M863,1063C796,1001 727,935 691,902"/>
<polygon style="fill:black;stroke:black;" points="688,904 683,895 693,899 688,904"/>
</g>
<g id="node31" class="node"><title>fake_section_12</title>
<ellipse cx="567" cy="1364" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="567" y="1367">section</text>
</g>
<g id="edge12" class="edge"><title>binarypackagerelease->fake_section_12</title>
<path style="fill:none;stroke:black;" d="M863,1269C768,1299 656,1335 602,1353"/>
<polygon style="fill:black;stroke:black;" points="603,1356 592,1356 601,1350 603,1356"/>
</g>
<g id="node9" class="node"><title>distroarchrelease</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2245,1807 2245,1689 2511,1689 2511,1807 2245,1807"/>
<polygon style="fill:white;stroke:white;" points="2248,1706 2248,1692 2508,1692 2508,1706 2248,1706"/>
<text text-anchor="middle" style="font-size:8.00;" x="2378" y="1702">distroarchrelease</text>
<polygon style="fill:none;stroke:black;" points="2248,1706 2248,1692 2508,1692 2508,1706 2248,1706"/>
<text text-anchor="middle" style="font-size:8.00;" x="2254" y="1717">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2319" y="1717">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2373" y="1717"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2271" y="1731">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="2322" y="1731">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2425" y="1731"> REFERENCES distrorelease UNIQUE UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2277" y="1745">processorfamily</text>
<text text-anchor="middle" style="font-size:8.00;" x="2322" y="1745">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2414" y="1745"> REFERENCES processorfamily UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2274" y="1759">architecturetag</text>
<text text-anchor="middle" style="font-size:8.00;" x="2317" y="1759">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2361" y="1759"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2261" y="1773">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="2322" y="1773">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2383" y="1773"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="2262" y="1787">official</text>
<text text-anchor="middle" style="font-size:8.00;" x="2324" y="1787">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="2275" y="1801">package_count</text>
<text text-anchor="middle" style="font-size:8.00;" x="2322" y="1801">integer</text>
<polygon style="fill:none;stroke:black;" points="2245,1807 2245,1689 2511,1689 2511,1807 2245,1807"/>
</g>
<g id="edge16" class="edge"><title>build->distroarchrelease</title>
<path style="fill:none;stroke:black;" d="M1985,1340C2080,1439 2226,1590 2310,1678"/>
<polygon style="fill:black;stroke:black;" points="2312,1675 2317,1685 2307,1680 2312,1675"/>
</g>
<g id="node22" class="node"><title>sourcepackagerelease</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2603,1209 2603,937 2849,937 2849,1209 2603,1209"/>
<polygon style="fill:white;stroke:white;" points="2606,954 2606,940 2846,940 2846,954 2606,954"/>
<text text-anchor="middle" style="font-size:8.00;" x="2726" y="950">sourcepackagerelease</text>
<polygon style="fill:none;stroke:black;" points="2606,954 2606,940 2846,940 2846,954 2606,954"/>
<text text-anchor="middle" style="font-size:8.00;" x="2612" y="965">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2689" y="965">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2751" y="965"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2620" y="979">creator</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="979">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2761" y="979"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="2621" y="993">version</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="993">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2630" y="1007">dateuploaded</text>
<text text-anchor="middle" style="font-size:8.00;" x="2698" y="1007">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2622" y="1021">urgency</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1021">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2632" y="1035">dscsigningkey</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1035">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2762" y="1035"> REFERENCES gpgkey </text>
<text text-anchor="middle" style="font-size:8.00;" x="2627" y="1049">component</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1049">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2768" y="1049"> REFERENCES component </text>
<text text-anchor="middle" style="font-size:8.00;" x="2625" y="1063">changelog</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="1063">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2631" y="1077">builddepends</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="1077">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2640" y="1091">builddependsindep</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="1091">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2639" y="1105">architecturehintlist</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="1105">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2614" y="1119">dsc</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="1119">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2620" y="1133">section</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1133">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2761" y="1133"> REFERENCES section </text>
<text text-anchor="middle" style="font-size:8.00;" x="2623" y="1147">manifest</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1147">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2780" y="1147"> REFERENCES manifest UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2626" y="1161">maintainer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1161">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2761" y="1161"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="2641" y="1175">sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1175">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2783" y="1175"> REFERENCES sourcepackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="2640" y="1189">uploaddistrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1189">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2770" y="1189"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="2620" y="1203">format</text>
<text text-anchor="middle" style="font-size:8.00;" x="2692" y="1203">integer</text>
<polygon style="fill:none;stroke:black;" points="2603,1209 2603,937 2849,937 2849,1209 2603,1209"/>
</g>
<g id="edge22" class="edge"><title>build->sourcepackagerelease</title>
<path style="fill:none;stroke:black;" d="M2027,1214C2181,1184 2429,1133 2585,1102"/>
<polygon style="fill:black;stroke:black;" points="2585,1099 2595,1100 2586,1105 2585,1099"/>
</g>
<g id="node33" class="node"><title>fake_processor_83</title>
<ellipse cx="1683" cy="920" rx="28" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1683" y="923">processor</text>
</g>
<g id="edge14" class="edge"><title>build->fake_processor_83</title>
<path style="fill:none;stroke:black;" d="M1827,1144C1782,1075 1726,988 1699,946"/>
<polygon style="fill:black;stroke:black;" points="1696,947 1694,937 1702,944 1696,947"/>
</g>
<g id="node36" class="node"><title>fake_libraryfilealias_86</title>
<ellipse cx="1519" cy="1218" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1519" y="1221">libraryfilealias</text>
</g>
<g id="edge18" class="edge"><title>build->fake_libraryfilealias_86</title>
<path style="fill:none;stroke:black;" d="M1755,1233C1688,1228 1612,1224 1564,1221"/>
<polygon style="fill:black;stroke:black;" points="1564,1224 1554,1220 1564,1218 1564,1224"/>
</g>
<g id="node38" class="node"><title>fake_builder_88</title>
<ellipse cx="1571" cy="1042" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1571" y="1045">builder</text>
</g>
<g id="edge20" class="edge"><title>build->fake_builder_88</title>
<path style="fill:none;stroke:black;" d="M1755,1157C1697,1120 1635,1082 1600,1060"/>
<polygon style="fill:black;stroke:black;" points="1597,1062 1591,1054 1601,1057 1597,1062"/>
</g>
<g id="node5" class="node"><title>component</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2874,1401 2874,1353 2994,1353 2994,1401 2874,1401"/>
<polygon style="fill:white;stroke:white;" points="2877,1370 2877,1356 2991,1356 2991,1370 2877,1370"/>
<text text-anchor="middle" style="font-size:8.00;" x="2934" y="1366">component</text>
<polygon style="fill:none;stroke:black;" points="2877,1370 2877,1356 2991,1356 2991,1370 2877,1370"/>
<text text-anchor="middle" style="font-size:8.00;" x="2883" y="1381">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2914" y="1381">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2959" y="1381"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2889" y="1395">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2912" y="1395">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2947" y="1395"> UNIQUE </text>
<polygon style="fill:none;stroke:black;" points="2874,1401 2874,1353 2994,1353 2994,1401 2874,1401"/>
</g>
<g id="node6" class="node"><title>componentselection</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3616,2388 3616,2326 3802,2326 3802,2388 3616,2388"/>
<polygon style="fill:white;stroke:white;" points="3619,2343 3619,2329 3799,2329 3799,2343 3619,2343"/>
<text text-anchor="middle" style="font-size:8.00;" x="3709" y="2339">componentselection</text>
<polygon style="fill:none;stroke:black;" points="3619,2343 3619,2329 3799,2329 3799,2343 3619,2343"/>
<text text-anchor="middle" style="font-size:8.00;" x="3625" y="2354">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3678" y="2354">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3729" y="2354"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3642" y="2368">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3681" y="2368">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3748" y="2368"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3640" y="2382">component</text>
<text text-anchor="middle" style="font-size:8.00;" x="3681" y="2382">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3746" y="2382"> REFERENCES component </text>
<polygon style="fill:none;stroke:black;" points="3616,2388 3616,2326 3802,2326 3802,2388 3616,2388"/>
</g>
<g id="node10" class="node"><title>distrorelease</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3196,2089 3196,1789 3480,1789 3480,2089 3196,2089"/>
<polygon style="fill:white;stroke:white;" points="3199,1806 3199,1792 3477,1792 3477,1806 3199,1806"/>
<text text-anchor="middle" style="font-size:8.00;" x="3338" y="1802">distrorelease</text>
<polygon style="fill:none;stroke:black;" points="3199,1806 3199,1792 3477,1792 3477,1806 3199,1806"/>
<text text-anchor="middle" style="font-size:8.00;" x="3205" y="1817">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3284" y="1817">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3363" y="1817"> UNIQUE PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3220" y="1831">distribution</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="1831">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3396" y="1831"> REFERENCES distribution UNIQUE UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3211" y="1845">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1845">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3334" y="1845"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3208" y="1859">title</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1859">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3219" y="1873">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1873">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3214" y="1887">version</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1887">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3222" y="1901">releasestatus</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="1901">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3221" y="1915">datereleased</text>
<text text-anchor="middle" style="font-size:8.00;" x="3293" y="1915">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3223" y="1929">parentrelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="1929">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3365" y="1929"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3212" y="1943">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="1943">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3356" y="1943"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="3222" y="1957">lucilleconfig</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1957">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3217" y="1971">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1971">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3222" y="1985">displayname</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="1985">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3228" y="1999">datelastlangpack</text>
<text text-anchor="middle" style="font-size:8.00;" x="3293" y="1999">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3225" y="2013">messagecount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="2013">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3235" y="2027">nominatedarchindep</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="2027">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3372" y="2027"> REFERENCES distroarchrelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3219" y="2041">changeslist</text>
<text text-anchor="middle" style="font-size:8.00;" x="3282" y="2041">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="3221" y="2055">binarycount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="2055">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3221" y="2069">sourcecount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="2069">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3211" y="2083">driver</text>
<text text-anchor="middle" style="font-size:8.00;" x="3287" y="2083">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3356" y="2083"> REFERENCES person </text>
<polygon style="fill:none;stroke:black;" points="3196,2089 3196,1789 3480,1789 3480,2089 3196,2089"/>
</g>
<g id="edge24" class="edge"><title>componentselection->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3678,2322C3634,2274 3553,2182 3482,2101"/>
<polygon style="fill:black;stroke:black;" points="3479,2103 3475,2093 3484,2098 3479,2103"/>
</g>
<g id="node42" class="node"><title>fake_component_99</title>
<ellipse cx="3897" cy="2555" rx="30" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3897" y="2558">component</text>
</g>
<g id="edge26" class="edge"><title>componentselection->fake_component_99</title>
<path style="fill:none;stroke:black;" d="M3743,2392C3781,2432 3843,2497 3875,2532"/>
<polygon style="fill:black;stroke:black;" points="3877,2529 3882,2539 3872,2534 3877,2529"/>
</g>
<g id="node7" class="node"><title>distribution</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="4344,2476 4344,2162 4574,2162 4574,2476 4344,2476"/>
<polygon style="fill:white;stroke:white;" points="4347,2179 4347,2165 4571,2165 4571,2179 4347,2179"/>
<text text-anchor="middle" style="font-size:8.00;" x="4459" y="2175">distribution</text>
<polygon style="fill:none;stroke:black;" points="4347,2179 4347,2165 4571,2165 4571,2179 4347,2179"/>
<text text-anchor="middle" style="font-size:8.00;" x="4353" y="2190">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="4435" y="2190">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="4489" y="2190"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="4359" y="2204">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2204">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4477" y="2204"> UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="4356" y="2218">title</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2218">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4367" y="2232">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2232">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4370" y="2246">domainname</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2246">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4360" y="2260">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2260">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2260"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4370" y="2274">lucilleconfig</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2274">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4370" y="2288">displayname</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2288">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4365" y="2302">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2302">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="4365" y="2316">members</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2316">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2316"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4376" y="2330">translationgroup</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2330">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4514" y="2330"> REFERENCES translationgroup </text>
<text text-anchor="middle" style="font-size:8.00;" x="4385" y="2344">translationpermission</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2344">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4368" y="2358">bugcontact</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2358">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2358"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4375" y="2372">official_malone</text>
<text text-anchor="middle" style="font-size:8.00;" x="4440" y="2372">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="4374" y="2386">official_rosetta</text>
<text text-anchor="middle" style="font-size:8.00;" x="4440" y="2386">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="4376" y="2400">security_contact</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2400">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2400"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4359" y="2414">driver</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2414">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2414"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4378" y="2428">translation_focus</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2428">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4508" y="2428"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="4372" y="2442">mirror_admin</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2442">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2442"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4373" y="2456">upload_admin</text>
<text text-anchor="middle" style="font-size:8.00;" x="4438" y="2456">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="4499" y="2456"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="4374" y="2470">upload_sender</text>
<text text-anchor="middle" style="font-size:8.00;" x="4433" y="2470">text</text>
<polygon style="fill:none;stroke:black;" points="4344,2476 4344,2162 4574,2162 4574,2476 4344,2476"/>
</g>
<g id="edge40" class="edge"><title>distribution->distrorelease</title>
<path style="fill:none;stroke:black;" d="M4336,2281C4177,2231 3892,2141 3651,2056 3601,2038 3547,2019 3498,2000"/>
<polygon style="fill:black;stroke:black;" points="3497,2003 3488,1997 3499,1997 3497,2003"/>
</g>
<g id="node44" class="node"><title>fake_person_107</title>
<ellipse cx="4677" cy="2701" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4677" y="2704">person</text>
</g>
<g id="edge28" class="edge"><title>distribution->fake_person_107</title>
<path style="fill:none;stroke:black;" d="M4551,2480C4594,2554 4640,2635 4662,2675"/>
<polygon style="fill:black;stroke:black;" points="4665,2674 4667,2684 4659,2677 4665,2674"/>
</g>
<g id="node46" class="node"><title>fake_person_109</title>
<ellipse cx="4870" cy="2121" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4870" y="2124">person</text>
</g>
<g id="edge30" class="edge"><title>distribution->fake_person_109</title>
<path style="fill:none;stroke:black;" d="M4582,2260C4670,2217 4785,2162 4839,2136"/>
<polygon style="fill:black;stroke:black;" points="4837,2133 4848,2132 4840,2139 4837,2133"/>
</g>
<g id="node48" class="node"><title>fake_translationgroup_111</title>
<ellipse cx="4929" cy="2382" rx="38" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4929" y="2385">translationgroup</text>
</g>
<g id="edge32" class="edge"><title>distribution->fake_translationgroup_111</title>
<path style="fill:none;stroke:black;" d="M4582,2336C4680,2348 4812,2366 4882,2376"/>
<polygon style="fill:black;stroke:black;" points="4882,2373 4892,2377 4882,2379 4882,2373"/>
</g>
<g id="node50" class="node"><title>fake_person_113</title>
<ellipse cx="4848" cy="2504" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4848" y="2507">person</text>
</g>
<g id="edge34" class="edge"><title>distribution->fake_person_113</title>
<path style="fill:none;stroke:black;" d="M4582,2378C4665,2417 4766,2466 4817,2489"/>
<polygon style="fill:black;stroke:black;" points="4818,2486 4826,2493 4815,2492 4818,2486"/>
</g>
<g id="node52" class="node"><title>fake_person_115</title>
<ellipse cx="4901" cy="2252" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4901" y="2255">person</text>
</g>
<g id="edge36" class="edge"><title>distribution->fake_person_115</title>
<path style="fill:none;stroke:black;" d="M4582,2300C4677,2286 4803,2267 4864,2258"/>
<polygon style="fill:black;stroke:black;" points="4864,2255 4874,2256 4865,2261 4864,2255"/>
</g>
<g id="node54" class="node"><title>fake_person_117</title>
<ellipse cx="4534" cy="2730" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4534" y="2733">person</text>
</g>
<g id="edge38" class="edge"><title>distribution->fake_person_117</title>
<path style="fill:none;stroke:black;" d="M4488,2480C4503,2563 4520,2656 4529,2702"/>
<polygon style="fill:black;stroke:black;" points="4532,2702 4531,2712 4526,2703 4532,2702"/>
</g>
<g id="node57" class="node"><title>fake_person_120</title>
<ellipse cx="4785" cy="2623" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4785" y="2626">person</text>
</g>
<g id="edge42" class="edge"><title>distribution->fake_person_120</title>
<path style="fill:none;stroke:black;" d="M4582,2434C4649,2495 4725,2566 4761,2601"/>
<polygon style="fill:black;stroke:black;" points="4764,2599 4769,2608 4759,2604 4764,2599"/>
</g>
<g id="node59" class="node"><title>fake_person_122</title>
<ellipse cx="4767" cy="2014" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4767" y="2017">person</text>
</g>
<g id="edge44" class="edge"><title>distribution->fake_person_122</title>
<path style="fill:none;stroke:black;" d="M4582,2197C4643,2137 4711,2070 4745,2036"/>
<polygon style="fill:black;stroke:black;" points="4742,2034 4752,2029 4747,2039 4742,2034"/>
</g>
<g id="node8" class="node"><title>distributionsourcepackagecache</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="4998,2631 4998,2499 5268,2499 5268,2631 4998,2631"/>
<polygon style="fill:white;stroke:white;" points="5001,2516 5001,2502 5265,2502 5265,2516 5001,2516"/>
<text text-anchor="middle" style="font-size:8.00;" x="5133" y="2512">distributionsourcepackagecache</text>
<polygon style="fill:none;stroke:black;" points="5001,2516 5001,2502 5265,2502 5265,2516 5001,2516"/>
<text text-anchor="middle" style="font-size:8.00;" x="5007" y="2527">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="5084" y="2527">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="5138" y="2527"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="5022" y="2541">distribution</text>
<text text-anchor="middle" style="font-size:8.00;" x="5087" y="2541">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="5172" y="2541"> REFERENCES distribution UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="5036" y="2555">sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="5087" y="2555">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="5186" y="2555"> UNIQUE REFERENCES sourcepackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="5013" y="2569">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="5082" y="2569">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="5026" y="2583">binpkgnames</text>
<text text-anchor="middle" style="font-size:8.00;" x="5082" y="2583">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="5033" y="2597">binpkgsummaries</text>
<text text-anchor="middle" style="font-size:8.00;" x="5082" y="2597">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="5035" y="2611">binpkgdescriptions</text>
<text text-anchor="middle" style="font-size:8.00;" x="5082" y="2611">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="5008" y="2625">fti</text>
<text text-anchor="middle" style="font-size:8.00;" x="5089" y="2625">tsvector</text>
<polygon style="fill:none;stroke:black;" points="4998,2631 4998,2499 5268,2499 5268,2631 4998,2631"/>
</g>
<g id="edge46" class="edge"><title>distributionsourcepackagecache->distribution</title>
<path style="fill:none;stroke:black;" d="M4990,2513C4872,2469 4706,2409 4592,2367"/>
<polygon style="fill:black;stroke:black;" points="4591,2370 4582,2364 4593,2364 4591,2370"/>
</g>
<g id="node62" class="node"><title>fake_sourcepackagename_131</title>
<ellipse cx="5494" cy="2699" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="5494" y="2702">sourcepackagename</text>
</g>
<g id="edge48" class="edge"><title>distributionsourcepackagecache->fake_sourcepackagename_131</title>
<path style="fill:none;stroke:black;" d="M5276,2618C5339,2642 5408,2667 5451,2683"/>
<polygon style="fill:black;stroke:black;" points="5453,2680 5461,2687 5450,2687 5453,2680"/>
</g>
<g id="edge50" class="edge"><title>distroarchrelease->distrorelease</title>
<path style="fill:none;stroke:black;" d="M2519,1776C2695,1811 2994,1871 3178,1907"/>
<polygon style="fill:black;stroke:black;" points="3179,1904 3188,1909 3178,1910 3179,1904"/>
</g>
<g id="node65" class="node"><title>fake_processorfamily_134</title>
<ellipse cx="2022" cy="1841" rx="38" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2022" y="1844">processorfamily</text>
</g>
<g id="edge52" class="edge"><title>distroarchrelease->fake_processorfamily_134</title>
<path style="fill:none;stroke:black;" d="M2237,1785C2175,1801 2108,1818 2066,1829"/>
<polygon style="fill:black;stroke:black;" points="2067,1832 2056,1832 2065,1826 2067,1832"/>
</g>
<g id="node67" class="node"><title>fake_person_136</title>
<ellipse cx="2127" cy="2004" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2127" y="2007">person</text>
</g>
<g id="edge54" class="edge"><title>distroarchrelease->fake_person_136</title>
<path style="fill:none;stroke:black;" d="M2316,1811C2262,1866 2186,1944 2149,1982"/>
<polygon style="fill:black;stroke:black;" points="2152,1984 2142,1989 2147,1979 2152,1984"/>
</g>
<g id="edge56" class="edge"><title>distrorelease->distribution</title>
<path style="fill:none;stroke:black;" d="M3488,1997C3540,2016 3598,2037 3651,2056 3887,2139 4165,2227 4326,2278"/>
<polygon style="fill:black;stroke:black;" points="4327,2275 4336,2281 4325,2281 4327,2275"/>
</g>
<g id="edge62" class="edge"><title>distrorelease->distroarchrelease</title>
<path style="fill:none;stroke:black;" d="M3188,1909C3008,1873 2709,1813 2529,1778"/>
<polygon style="fill:black;stroke:black;" points="2528,1781 2519,1776 2529,1775 2528,1781"/>
</g>
<g id="edge58" class="edge"><title>distrorelease->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3488,2025C3499,2005 3506,1977 3506,1939 3506,1906 3501,1881 3493,1862"/>
<polygon style="fill:black;stroke:black;" points="3490,1863 3488,1853 3496,1860 3490,1863"/>
</g>
<g id="node71" class="node"><title>fake_person_143</title>
<ellipse cx="3002" cy="2045" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3002" y="2048">person</text>
</g>
<g id="edge60" class="edge"><title>distrorelease->fake_person_143</title>
<path style="fill:none;stroke:black;" d="M3188,1986C3132,2004 3073,2022 3037,2034"/>
<polygon style="fill:black;stroke:black;" points="3038,2037 3027,2037 3036,2031 3038,2037"/>
</g>
<g id="node74" class="node"><title>fake_person_146</title>
<ellipse cx="3671" cy="2043" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3671" y="2046">person</text>
</g>
<g id="edge64" class="edge"><title>distrorelease->fake_person_146</title>
<path style="fill:none;stroke:black;" d="M3488,1986C3544,2003 3602,2021 3636,2032"/>
<polygon style="fill:black;stroke:black;" points="3637,2029 3646,2035 3635,2035 3637,2029"/>
</g>
<g id="node11" class="node"><title>distroreleaselanguage</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3100,2635 3100,2503 3342,2503 3342,2635 3100,2635"/>
<polygon style="fill:white;stroke:white;" points="3103,2520 3103,2506 3339,2506 3339,2520 3103,2520"/>
<text text-anchor="middle" style="font-size:8.00;" x="3221" y="2516">distroreleaselanguage</text>
<polygon style="fill:none;stroke:black;" points="3103,2520 3103,2506 3339,2506 3339,2520 3103,2520"/>
<text text-anchor="middle" style="font-size:8.00;" x="3109" y="2531">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3175" y="2531">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3237" y="2531"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3126" y="2545">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="2545">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3272" y="2545"> REFERENCES distrorelease UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="3121" y="2559">language</text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="2559">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3267" y="2559"> UNIQUE REFERENCES language </text>
<text text-anchor="middle" style="font-size:8.00;" x="3126" y="2573">currentcount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="2573">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3127" y="2587">updatescount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="2587">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3126" y="2601">rosettacount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="2601">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3132" y="2615">contributorcount</text>
<text text-anchor="middle" style="font-size:8.00;" x="3178" y="2615">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3125" y="2629">dateupdated</text>
<text text-anchor="middle" style="font-size:8.00;" x="3184" y="2629">timestamp</text>
<polygon style="fill:none;stroke:black;" points="3100,2635 3100,2503 3342,2503 3342,2635 3100,2635"/>
</g>
<g id="edge66" class="edge"><title>distroreleaselanguage->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3234,2499C3252,2404 3284,2232 3308,2103"/>
<polygon style="fill:black;stroke:black;" points="3305,2102 3310,2093 3311,2103 3305,2102"/>
</g>
<g id="node77" class="node"><title>fake_language_149</title>
<ellipse cx="3158" cy="2904" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3158" y="2907">language</text>
</g>
<g id="edge68" class="edge"><title>distroreleaselanguage->fake_language_149</title>
<path style="fill:none;stroke:black;" d="M3208,2639C3194,2712 3173,2824 3163,2876"/>
<polygon style="fill:black;stroke:black;" points="3166,2877 3161,2886 3160,2876 3166,2877"/>
</g>
<g id="node12" class="node"><title>distroreleasepackagecache</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2639,2398 2639,2252 2909,2252 2909,2398 2639,2398"/>
<polygon style="fill:white;stroke:white;" points="2642,2269 2642,2255 2906,2255 2906,2269 2642,2269"/>
<text text-anchor="middle" style="font-size:8.00;" x="2774" y="2265">distroreleasepackagecache</text>
<polygon style="fill:none;stroke:black;" points="2642,2269 2642,2255 2906,2255 2906,2269 2642,2269"/>
<text text-anchor="middle" style="font-size:8.00;" x="2648" y="2280">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2725" y="2280">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2779" y="2280"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2665" y="2294">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="2728" y="2294">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2814" y="2294"> UNIQUE REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="2677" y="2308">binarypackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2728" y="2308">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2827" y="2308"> REFERENCES binarypackagename UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2654" y="2322">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2723" y="2322">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2660" y="2336">summary</text>
<text text-anchor="middle" style="font-size:8.00;" x="2723" y="2336">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2662" y="2350">description</text>
<text text-anchor="middle" style="font-size:8.00;" x="2723" y="2350">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2662" y="2364">summaries</text>
<text text-anchor="middle" style="font-size:8.00;" x="2723" y="2364">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2664" y="2378">descriptions</text>
<text text-anchor="middle" style="font-size:8.00;" x="2723" y="2378">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2649" y="2392">fti</text>
<text text-anchor="middle" style="font-size:8.00;" x="2730" y="2392">tsvector</text>
<polygon style="fill:none;stroke:black;" points="2639,2398 2639,2252 2909,2252 2909,2398 2639,2398"/>
</g>
<g id="edge70" class="edge"><title>distroreleasepackagecache->distrorelease</title>
<path style="fill:none;stroke:black;" d="M2887,2248C2970,2191 3086,2111 3180,2048"/>
<polygon style="fill:black;stroke:black;" points="3178,2045 3188,2042 3182,2051 3178,2045"/>
</g>
<g id="node80" class="node"><title>fake_binarypackagename_152</title>
<ellipse cx="2457" cy="2545" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2457" y="2548">binarypackagename</text>
</g>
<g id="edge72" class="edge"><title>distroreleasepackagecache->fake_binarypackagename_152</title>
<path style="fill:none;stroke:black;" d="M2663,2402C2601,2446 2528,2496 2487,2523"/>
<polygon style="fill:black;stroke:black;" points="2489,2526 2479,2529 2485,2520 2489,2526"/>
</g>
<g id="node13" class="node"><title>packageselection</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3422,2869 3422,2737 3658,2737 3658,2869 3422,2869"/>
<polygon style="fill:white;stroke:white;" points="3425,2754 3425,2740 3655,2740 3655,2754 3425,2754"/>
<text text-anchor="middle" style="font-size:8.00;" x="3540" y="2750">packageselection</text>
<polygon style="fill:none;stroke:black;" points="3425,2754 3425,2740 3655,2740 3655,2754 3425,2754"/>
<text text-anchor="middle" style="font-size:8.00;" x="3431" y="2765">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3509" y="2765">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3560" y="2765"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3448" y="2779">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2779">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3579" y="2779"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3460" y="2793">sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2793">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3592" y="2793"> REFERENCES sourcepackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="3460" y="2807">binarypackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2807">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3591" y="2807"> REFERENCES binarypackagename </text>
<text text-anchor="middle" style="font-size:8.00;" x="3437" y="2821">action</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2821">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3446" y="2835">component</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2835">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3577" y="2835"> REFERENCES component </text>
<text text-anchor="middle" style="font-size:8.00;" x="3439" y="2849">section</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2849">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3570" y="2849"> REFERENCES section </text>
<text text-anchor="middle" style="font-size:8.00;" x="3440" y="2863">priority</text>
<text text-anchor="middle" style="font-size:8.00;" x="3512" y="2863">integer</text>
<polygon style="fill:none;stroke:black;" points="3422,2869 3422,2737 3658,2737 3658,2869 3422,2869"/>
</g>
<g id="edge74" class="edge"><title>packageselection->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3524,2733C3492,2596 3420,2293 3376,2103"/>
<polygon style="fill:black;stroke:black;" points="3373,2103 3374,2093 3379,2102 3373,2103"/>
</g>
<g id="node83" class="node"><title>fake_sourcepackagename_214</title>
<ellipse cx="3431" cy="3176" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3431" y="3179">sourcepackagename</text>
</g>
<g id="edge76" class="edge"><title>packageselection->fake_sourcepackagename_214</title>
<path style="fill:none;stroke:black;" d="M3519,2873C3495,2956 3456,3090 3439,3148"/>
<polygon style="fill:black;stroke:black;" points="3442,3149 3436,3158 3436,3147 3442,3149"/>
</g>
<g id="node85" class="node"><title>fake_binarypackagename_216</title>
<ellipse cx="3569" cy="3207" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3569" y="3210">binarypackagename</text>
</g>
<g id="edge78" class="edge"><title>packageselection->fake_binarypackagename_216</title>
<path style="fill:none;stroke:black;" d="M3545,2873C3552,2964 3563,3116 3567,3179"/>
<polygon style="fill:black;stroke:black;" points="3570,3179 3568,3189 3564,3179 3570,3179"/>
</g>
<g id="node87" class="node"><title>fake_component_218</title>
<ellipse cx="3684" cy="3145" rx="30" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3684" y="3148">component</text>
</g>
<g id="edge80" class="edge"><title>packageselection->fake_component_218</title>
<path style="fill:none;stroke:black;" d="M3569,2873C3602,2949 3651,3066 3673,3118"/>
<polygon style="fill:black;stroke:black;" points="3676,3116 3677,3127 3670,3119 3676,3116"/>
</g>
<g id="node89" class="node"><title>fake_section_220</title>
<ellipse cx="3788" cy="3056" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3788" y="3059">section</text>
</g>
<g id="edge82" class="edge"><title>packageselection->fake_section_220</title>
<path style="fill:none;stroke:black;" d="M3609,2873C3661,2927 3730,2997 3766,3033"/>
<polygon style="fill:black;stroke:black;" points="3769,3031 3773,3041 3764,3036 3769,3031"/>
</g>
<g id="node14" class="node"><title>packaging</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2750,2745 2750,2627 3028,2627 3028,2745 2750,2745"/>
<polygon style="fill:white;stroke:white;" points="2753,2644 2753,2630 3025,2630 3025,2644 2753,2644"/>
<text text-anchor="middle" style="font-size:8.00;" x="2889" y="2640">packaging</text>
<polygon style="fill:none;stroke:black;" points="2753,2644 2753,2630 3025,2630 3025,2644 2753,2644"/>
<text text-anchor="middle" style="font-size:8.00;" x="2773" y="2655">packaging</text>
<text text-anchor="middle" style="font-size:8.00;" x="2839" y="2655">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2759" y="2669">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2839" y="2669">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2898" y="2669"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2788" y="2683">sourcepackagename</text>
<text text-anchor="middle" style="font-size:8.00;" x="2839" y="2683">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2946" y="2683"> REFERENCES sourcepackagename UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2776" y="2697">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="2839" y="2697">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2933" y="2697"> REFERENCES distrorelease UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2778" y="2711">productseries</text>
<text text-anchor="middle" style="font-size:8.00;" x="2839" y="2711">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2935" y="2711"> REFERENCES productseries UNIQUE </text>
<text text-anchor="middle" style="font-size:8.00;" x="2774" y="2725">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="2845" y="2725">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="2766" y="2739">owner</text>
<text text-anchor="middle" style="font-size:8.00;" x="2839" y="2739">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2908" y="2739"> REFERENCES person </text>
<polygon style="fill:none;stroke:black;" points="2750,2745 2750,2627 3028,2627 3028,2745 2750,2745"/>
</g>
<g id="edge86" class="edge"><title>packaging->distrorelease</title>
<path style="fill:none;stroke:black;" d="M2927,2623C2996,2509 3142,2266 3240,2102"/>
<polygon style="fill:black;stroke:black;" points="3237,2100 3245,2093 3243,2103 3237,2100"/>
</g>
<g id="node91" class="node"><title>fake_sourcepackagename_222</title>
<ellipse cx="2824" cy="3091" rx="44" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2824" y="3094">sourcepackagename</text>
</g>
<g id="edge84" class="edge"><title>packaging->fake_sourcepackagename_222</title>
<path style="fill:none;stroke:black;" d="M2879,2749C2865,2839 2839,2998 2829,3063"/>
<polygon style="fill:black;stroke:black;" points="2832,3064 2827,3073 2826,3063 2832,3064"/>
</g>
<g id="node94" class="node"><title>fake_productseries_225</title>
<ellipse cx="2689" cy="3028" rx="34" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2689" y="3031">productseries</text>
</g>
<g id="edge88" class="edge"><title>packaging->fake_productseries_225</title>
<path style="fill:none;stroke:black;" d="M2852,2749C2808,2824 2736,2948 2704,3002"/>
<polygon style="fill:black;stroke:black;" points="2707,3004 2699,3011 2701,3001 2707,3004"/>
</g>
<g id="node96" class="node"><title>fake_person_227</title>
<ellipse cx="2589" cy="2919" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2589" y="2922">person</text>
</g>
<g id="edge90" class="edge"><title>packaging->fake_person_227</title>
<path style="fill:none;stroke:black;" d="M2808,2749C2743,2800 2657,2866 2615,2899"/>
<polygon style="fill:black;stroke:black;" points="2617,2902 2607,2905 2613,2896 2617,2902"/>
</g>
<g id="node15" class="node"><title>personalpackagearchive</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3748,1302 3748,1170 3960,1170 3960,1302 3748,1302"/>
<polygon style="fill:white;stroke:white;" points="3751,1187 3751,1173 3957,1173 3957,1187 3751,1187"/>
<text text-anchor="middle" style="font-size:8.00;" x="3854" y="1183">personalpackagearchive</text>
<polygon style="fill:none;stroke:black;" points="3751,1187 3751,1173 3957,1173 3957,1187 3751,1187"/>
<text text-anchor="middle" style="font-size:8.00;" x="3757" y="1198">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3819" y="1198">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3881" y="1198"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3765" y="1212">person</text>
<text text-anchor="middle" style="font-size:8.00;" x="3822" y="1212">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3891" y="1212"> REFERENCES person </text>
<text text-anchor="middle" style="font-size:8.00;" x="3774" y="1226">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3822" y="1226">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3900" y="1226"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3769" y="1240">packages</text>
<text text-anchor="middle" style="font-size:8.00;" x="3822" y="1240">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3903" y="1240"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="3766" y="1254">sources</text>
<text text-anchor="middle" style="font-size:8.00;" x="3822" y="1254">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3903" y="1254"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="3765" y="1268">release</text>
<text text-anchor="middle" style="font-size:8.00;" x="3822" y="1268">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3903" y="1268"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="3773" y="1282">release_gpg</text>
<text text-anchor="middle" style="font-size:8.00;" x="3822" y="1282">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3903" y="1282"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="3779" y="1296">datelastupdated</text>
<text text-anchor="middle" style="font-size:8.00;" x="3828" y="1296">timestamp</text>
<polygon style="fill:none;stroke:black;" points="3748,1302 3748,1170 3960,1170 3960,1302 3748,1302"/>
</g>
<g id="edge94" class="edge"><title>personalpackagearchive->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3802,1306C3723,1415 3566,1628 3457,1777"/>
<polygon style="fill:black;stroke:black;" points="3460,1779 3451,1785 3454,1775 3460,1779"/>
</g>
<g id="node98" class="node"><title>fake_person_236</title>
<ellipse cx="4178" cy="1232" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4178" y="1235">person</text>
</g>
<g id="edge92" class="edge"><title>personalpackagearchive->fake_person_236</title>
<path style="fill:none;stroke:black;" d="M3968,1235C4029,1234 4099,1233 4141,1232"/>
<polygon style="fill:black;stroke:black;" points="4141,1228 4151,1232 4141,1235 4141,1228"/>
</g>
<g id="node101" class="node"><title>fake_libraryfilealias_239</title>
<ellipse cx="4049" cy="907" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4049" y="910">libraryfilealias</text>
</g>
<g id="edge96" class="edge"><title>personalpackagearchive->fake_libraryfilealias_239</title>
<path style="fill:none;stroke:black;" d="M3896,1166C3939,1093 4004,983 4034,933"/>
<polygon style="fill:black;stroke:black;" points="4031,931 4039,924 4037,934 4031,931"/>
</g>
<g id="node103" class="node"><title>fake_libraryfilealias_241</title>
<ellipse cx="4195" cy="1096" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4195" y="1099">libraryfilealias</text>
</g>
<g id="edge98" class="edge"><title>personalpackagearchive->fake_libraryfilealias_241</title>
<path style="fill:none;stroke:black;" d="M3968,1189C4034,1162 4112,1130 4158,1111"/>
<polygon style="fill:black;stroke:black;" points="4156,1108 4167,1107 4159,1114 4156,1108"/>
</g>
<g id="node105" class="node"><title>fake_libraryfilealias_243</title>
<ellipse cx="4138" cy="988" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4138" y="991">libraryfilealias</text>
</g>
<g id="edge100" class="edge"><title>personalpackagearchive->fake_libraryfilealias_243</title>
<path style="fill:none;stroke:black;" d="M3934,1166C3994,1114 4073,1045 4112,1011"/>
<polygon style="fill:black;stroke:black;" points="4110,1008 4120,1004 4115,1013 4110,1008"/>
</g>
<g id="node107" class="node"><title>fake_libraryfilealias_245</title>
<ellipse cx="3921" cy="878" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3921" y="881">libraryfilealias</text>
</g>
<g id="edge102" class="edge"><title>personalpackagearchive->fake_libraryfilealias_245</title>
<path style="fill:none;stroke:black;" d="M3867,1166C3882,1086 3906,962 3916,906"/>
<polygon style="fill:black;stroke:black;" points="3913,905 3918,896 3919,906 3913,905"/>
</g>
<g id="node16" class="node"><title>personalsourcepackagepublication</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3192,1058 3192,996 3484,996 3484,1058 3192,1058"/>
<polygon style="fill:white;stroke:white;" points="3195,1013 3195,999 3481,999 3481,1013 3195,1013"/>
<text text-anchor="middle" style="font-size:8.00;" x="3338" y="1009">personalsourcepackagepublication</text>
<polygon style="fill:none;stroke:black;" points="3195,1013 3195,999 3481,999 3481,1013 3195,1013"/>
<text text-anchor="middle" style="font-size:8.00;" x="3201" y="1024">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3291" y="1024">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3342" y="1024"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3237" y="1038">personalpackagearchive</text>
<text text-anchor="middle" style="font-size:8.00;" x="3294" y="1038">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3396" y="1038"> UNIQUE REFERENCES personalpackagearchive </text>
<text text-anchor="middle" style="font-size:8.00;" x="3233" y="1052">sourcepackagerelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3294" y="1052">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3392" y="1052"> UNIQUE REFERENCES sourcepackagerelease </text>
<polygon style="fill:none;stroke:black;" points="3192,1058 3192,996 3484,996 3484,1058 3192,1058"/>
</g>
<g id="edge104" class="edge"><title>personalsourcepackagepublication->personalpackagearchive</title>
<path style="fill:none;stroke:black;" d="M3425,1062C3509,1096 3636,1148 3731,1186"/>
<polygon style="fill:black;stroke:black;" points="3732,1183 3740,1190 3729,1189 3732,1183"/>
</g>
<g id="edge106" class="edge"><title>personalsourcepackagepublication->sourcepackagerelease</title>
<path style="fill:none;stroke:black;" d="M3184,1039C3087,1046 2962,1055 2867,1062"/>
<polygon style="fill:black;stroke:black;" points="2867,1065 2857,1063 2867,1059 2867,1065"/>
</g>
<g id="node17" class="node"><title>section</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2614,1661 2614,1613 2734,1613 2734,1661 2614,1661"/>
<polygon style="fill:white;stroke:white;" points="2617,1630 2617,1616 2731,1616 2731,1630 2617,1630"/>
<text text-anchor="middle" style="font-size:8.00;" x="2674" y="1626">section</text>
<polygon style="fill:none;stroke:black;" points="2617,1630 2617,1616 2731,1616 2731,1630 2617,1630"/>
<text text-anchor="middle" style="font-size:8.00;" x="2623" y="1641">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2654" y="1641">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2699" y="1641"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2629" y="1655">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2652" y="1655">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2687" y="1655"> UNIQUE </text>
<polygon style="fill:none;stroke:black;" points="2614,1661 2614,1613 2734,1613 2734,1661 2614,1661"/>
</g>
<g id="node18" class="node"><title>sectionselection</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3782,1854 3782,1792 3968,1792 3968,1854 3782,1854"/>
<polygon style="fill:white;stroke:white;" points="3785,1809 3785,1795 3965,1795 3965,1809 3785,1809"/>
<text text-anchor="middle" style="font-size:8.00;" x="3875" y="1805">sectionselection</text>
<polygon style="fill:none;stroke:black;" points="3785,1809 3785,1795 3965,1795 3965,1809 3785,1809"/>
<text text-anchor="middle" style="font-size:8.00;" x="3791" y="1820">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3844" y="1820">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3895" y="1820"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3808" y="1834">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3847" y="1834">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3914" y="1834"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3799" y="1848">section</text>
<text text-anchor="middle" style="font-size:8.00;" x="3847" y="1848">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3905" y="1848"> REFERENCES section </text>
<polygon style="fill:none;stroke:black;" points="3782,1854 3782,1792 3968,1792 3968,1854 3782,1854"/>
</g>
<g id="edge108" class="edge"><title>sectionselection->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3774,1845C3696,1861 3587,1885 3498,1904"/>
<polygon style="fill:black;stroke:black;" points="3498,1907 3488,1906 3497,1901 3498,1907"/>
</g>
<g id="node112" class="node"><title>fake_section_341</title>
<ellipse cx="4164" cy="1759" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="4164" y="1762">section</text>
</g>
<g id="edge110" class="edge"><title>sectionselection->fake_section_341</title>
<path style="fill:none;stroke:black;" d="M3976,1801C4029,1789 4090,1776 4128,1767"/>
<polygon style="fill:black;stroke:black;" points="4128,1764 4138,1765 4129,1770 4128,1764"/>
</g>
<g id="node19" class="node"><title>securebinarypackagepublishinghistory</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="1477,1814 1477,1556 1733,1556 1733,1814 1477,1814"/>
<polygon style="fill:white;stroke:white;" points="1480,1573 1480,1559 1730,1559 1730,1573 1480,1573"/>
<text text-anchor="middle" style="font-size:8.00;" x="1605" y="1569">securebinarypackagepublishinghistory</text>
<polygon style="fill:none;stroke:black;" points="1480,1573 1480,1559 1730,1559 1730,1573 1480,1573"/>
<text text-anchor="middle" style="font-size:8.00;" x="1486" y="1584">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="1569" y="1584">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="1631" y="1584"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="1518" y="1598">binarypackagerelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1598">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1665" y="1598"> REFERENCES binarypackagerelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="1510" y="1612">distroarchrelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1612">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1657" y="1612"> REFERENCES distroarchrelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="1492" y="1626">status</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1626">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1501" y="1640">component</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1640">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1648" y="1640"> REFERENCES component </text>
<text text-anchor="middle" style="font-size:8.00;" x="1494" y="1654">section</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1654">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1641" y="1654"> REFERENCES section </text>
<text text-anchor="middle" style="font-size:8.00;" x="1495" y="1668">priority</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1668">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1501" y="1682">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1682">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1505" y="1696">datepublished</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1696">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1507" y="1710">datesuperseded</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1710">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1505" y="1724">supersededby</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1724">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1638" y="1724"> REFERENCES build </text>
<text text-anchor="middle" style="font-size:8.00;" x="1511" y="1738">datemadepending</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1738">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1518" y="1752">scheduleddeletiondate</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1752">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1503" y="1766">dateremoved</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1766">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="1494" y="1780">pocket</text>
<text text-anchor="middle" style="font-size:8.00;" x="1572" y="1780">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="1497" y="1794">embargo</text>
<text text-anchor="middle" style="font-size:8.00;" x="1574" y="1794">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="1506" y="1808">embargolifted</text>
<text text-anchor="middle" style="font-size:8.00;" x="1578" y="1808">timestamp</text>
<polygon style="fill:none;stroke:black;" points="1477,1814 1477,1556 1733,1556 1733,1814 1477,1814"/>
</g>
<g id="edge112" class="edge"><title>securebinarypackagepublishinghistory->binarypackagerelease</title>
<path style="fill:none;stroke:black;" d="M1469,1575C1387,1509 1283,1425 1197,1354"/>
<polygon style="fill:black;stroke:black;" points="1195,1357 1189,1348 1199,1351 1195,1357"/>
</g>
<g id="edge120" class="edge"><title>securebinarypackagepublishinghistory->build</title>
<path style="fill:none;stroke:black;" d="M1691,1552C1733,1487 1782,1409 1822,1348"/>
<polygon style="fill:black;stroke:black;" points="1819,1346 1828,1340 1825,1350 1819,1346"/>
</g>
<g id="edge114" class="edge"><title>securebinarypackagepublishinghistory->distroarchrelease</title>
<path style="fill:none;stroke:black;" d="M1741,1696C1877,1707 2086,1724 2227,1735"/>
<polygon style="fill:black;stroke:black;" points="2227,1732 2237,1736 2227,1738 2227,1732"/>
</g>
<g id="node116" class="node"><title>fake_component_345</title>
<ellipse cx="1280" cy="1948" rx="30" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1280" y="1951">component</text>
</g>
<g id="edge116" class="edge"><title>securebinarypackagepublishinghistory->fake_component_345</title>
<path style="fill:none;stroke:black;" d="M1469,1795C1408,1844 1342,1898 1306,1927"/>
<polygon style="fill:black;stroke:black;" points="1308,1930 1298,1933 1304,1924 1308,1930"/>
</g>
<g id="node118" class="node"><title>fake_section_347</title>
<ellipse cx="1206" cy="1769" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="1206" y="1772">section</text>
</g>
<g id="edge118" class="edge"><title>securebinarypackagepublishinghistory->fake_section_347</title>
<path style="fill:none;stroke:black;" d="M1469,1714C1389,1731 1293,1751 1242,1762"/>
<polygon style="fill:black;stroke:black;" points="1242,1765 1232,1764 1241,1759 1242,1765"/>
</g>
<g id="node20" class="node"><title>securesourcepackagepublishinghistory</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="3165,1331 3165,1087 3421,1087 3421,1331 3165,1331"/>
<polygon style="fill:white;stroke:white;" points="3168,1104 3168,1090 3418,1090 3418,1104 3168,1104"/>
<text text-anchor="middle" style="font-size:8.00;" x="3293" y="1100">securesourcepackagepublishinghistory</text>
<polygon style="fill:none;stroke:black;" points="3168,1104 3168,1090 3418,1090 3418,1104 3168,1104"/>
<text text-anchor="middle" style="font-size:8.00;" x="3174" y="1115">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="3257" y="1115">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="3319" y="1115"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="3206" y="1129">sourcepackagerelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1129">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3353" y="1129"> REFERENCES sourcepackagerelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3191" y="1143">distrorelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1143">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3338" y="1143"> REFERENCES distrorelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3180" y="1157">status</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1157">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3189" y="1171">component</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1171">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3336" y="1171"> REFERENCES component </text>
<text text-anchor="middle" style="font-size:8.00;" x="3182" y="1185">section</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1185">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3329" y="1185"> REFERENCES section </text>
<text text-anchor="middle" style="font-size:8.00;" x="3189" y="1199">datecreated</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1199">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3193" y="1213">datepublished</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1213">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3195" y="1227">datesuperseded</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1227">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3193" y="1241">supersededby</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1241">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3353" y="1241"> REFERENCES sourcepackagerelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="3199" y="1255">datemadepending</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1255">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3206" y="1269">scheduleddeletiondate</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1269">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3191" y="1283">dateremoved</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1283">timestamp</text>
<text text-anchor="middle" style="font-size:8.00;" x="3182" y="1297">pocket</text>
<text text-anchor="middle" style="font-size:8.00;" x="3260" y="1297">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="3185" y="1311">embargo</text>
<text text-anchor="middle" style="font-size:8.00;" x="3262" y="1311">boolean</text>
<text text-anchor="middle" style="font-size:8.00;" x="3194" y="1325">embargolifted</text>
<text text-anchor="middle" style="font-size:8.00;" x="3266" y="1325">timestamp</text>
<polygon style="fill:none;stroke:black;" points="3165,1331 3165,1087 3421,1087 3421,1331 3165,1331"/>
</g>
<g id="edge124" class="edge"><title>securesourcepackagepublishinghistory->distrorelease</title>
<path style="fill:none;stroke:black;" d="M3301,1335C3309,1457 3319,1641 3328,1775"/>
<polygon style="fill:black;stroke:black;" points="3331,1775 3329,1785 3325,1775 3331,1775"/>
</g>
<g id="edge122" class="edge"><title>securesourcepackagepublishinghistory->sourcepackagerelease</title>
<path style="fill:none;stroke:black;" d="M3157,1176C3069,1155 2956,1128 2867,1106"/>
<polygon style="fill:black;stroke:black;" points="2866,1109 2857,1104 2867,1103 2866,1109"/>
</g>
<g id="edge130" class="edge"><title>securesourcepackagepublishinghistory->sourcepackagerelease</title>
<path style="fill:none;stroke:black;" d="M3157,1176C3069,1155 2956,1128 2867,1106"/>
<polygon style="fill:black;stroke:black;" points="2866,1109 2857,1104 2867,1103 2866,1109"/>
</g>
<g id="node123" class="node"><title>fake_component_352</title>
<ellipse cx="3520" cy="838" rx="30" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3520" y="841">component</text>
</g>
<g id="edge126" class="edge"><title>securesourcepackagepublishinghistory->fake_component_352</title>
<path style="fill:none;stroke:black;" d="M3429,1139C3457,1119 3483,1094 3500,1064 3536,1001 3530,911 3524,866"/>
<polygon style="fill:black;stroke:black;" points="3521,866 3523,856 3527,866 3521,866"/>
</g>
<g id="node125" class="node"><title>fake_section_354</title>
<ellipse cx="3351" cy="780" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="3351" y="783">section</text>
</g>
<g id="edge128" class="edge"><title>securesourcepackagepublishinghistory->fake_section_354</title>
<path style="fill:none;stroke:black;" d="M3184,1083C3181,1077 3178,1070 3176,1064 3165,1033 3165,1021 3176,990 3206,908 3284,834 3325,800"/>
<polygon style="fill:black;stroke:black;" points="3323,797 3333,794 3327,803 3323,797"/>
</g>
<g id="node21" class="node"><title>sourcepackagename</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2413,643 2413,595 2533,595 2533,643 2413,643"/>
<polygon style="fill:white;stroke:white;" points="2416,612 2416,598 2530,598 2530,612 2416,612"/>
<text text-anchor="middle" style="font-size:8.00;" x="2473" y="608">sourcepackagename</text>
<polygon style="fill:none;stroke:black;" points="2416,612 2416,598 2530,598 2530,612 2416,612"/>
<text text-anchor="middle" style="font-size:8.00;" x="2422" y="623">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2453" y="623">serial</text>
<text text-anchor="middle" style="font-size:8.00;" x="2498" y="623"> PRIMARY KEY </text>
<text text-anchor="middle" style="font-size:8.00;" x="2428" y="637">name</text>
<text text-anchor="middle" style="font-size:8.00;" x="2451" y="637">text</text>
<text text-anchor="middle" style="font-size:8.00;" x="2486" y="637"> UNIQUE </text>
<polygon style="fill:none;stroke:black;" points="2413,643 2413,595 2533,595 2533,643 2413,643"/>
</g>
<g id="edge146" class="edge"><title>sourcepackagerelease->distrorelease</title>
<path style="fill:none;stroke:black;" d="M2857,1187C2907,1234 2962,1291 3005,1348 3108,1483 3200,1652 3261,1776"/>
<polygon style="fill:black;stroke:black;" points="3264,1775 3266,1785 3258,1778 3264,1775"/>
</g>
<g id="edge144" class="edge"><title>sourcepackagerelease->sourcepackagename</title>
<path style="fill:none;stroke:black;" d="M2648,933C2595,836 2527,716 2494,656"/>
<polygon style="fill:black;stroke:black;" points="2491,657 2489,647 2497,654 2491,657"/>
</g>
<g id="node128" class="node"><title>fake_person_369</title>
<ellipse cx="2353" cy="889" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2353" y="892">person</text>
</g>
<g id="edge132" class="edge"><title>sourcepackagerelease->fake_person_369</title>
<path style="fill:none;stroke:black;" d="M2595,1008C2519,971 2430,927 2384,905"/>
<polygon style="fill:black;stroke:black;" points="2382,908 2375,900 2385,902 2382,908"/>
</g>
<g id="node130" class="node"><title>fake_gpgkey_371</title>
<ellipse cx="2451" cy="769" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2451" y="772">gpgkey</text>
</g>
<g id="edge134" class="edge"><title>sourcepackagerelease->fake_gpgkey_371</title>
<path style="fill:none;stroke:black;" d="M2599,933C2550,879 2500,823 2472,793"/>
<polygon style="fill:black;stroke:black;" points="2469,795 2465,785 2474,790 2469,795"/>
</g>
<g id="node132" class="node"><title>fake_component_373</title>
<ellipse cx="2348" cy="1086" rx="30" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2348" y="1089">component</text>
</g>
<g id="edge136" class="edge"><title>sourcepackagerelease->fake_component_373</title>
<path style="fill:none;stroke:black;" d="M2595,1078C2522,1080 2438,1083 2388,1085"/>
<polygon style="fill:black;stroke:black;" points="2388,1088 2378,1085 2388,1081 2388,1088"/>
</g>
<g id="node134" class="node"><title>fake_section_375</title>
<ellipse cx="2929" cy="725" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2929" y="728">section</text>
</g>
<g id="edge138" class="edge"><title>sourcepackagerelease->fake_section_375</title>
<path style="fill:none;stroke:black;" d="M2808,933C2848,865 2892,790 2914,751"/>
<polygon style="fill:black;stroke:black;" points="2911,749 2919,742 2917,752 2911,749"/>
</g>
<g id="node136" class="node"><title>fake_manifest_377</title>
<ellipse cx="2797" cy="648" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2797" y="651">manifest</text>
</g>
<g id="edge140" class="edge"><title>sourcepackagerelease->fake_manifest_377</title>
<path style="fill:none;stroke:black;" d="M2749,933C2765,841 2783,727 2792,676"/>
<polygon style="fill:black;stroke:black;" points="2789,675 2794,666 2795,676 2789,675"/>
</g>
<g id="node138" class="node"><title>fake_person_379</title>
<ellipse cx="2645" cy="668" rx="27" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2645" y="671">person</text>
</g>
<g id="edge142" class="edge"><title>sourcepackagerelease->fake_person_379</title>
<path style="fill:none;stroke:black;" d="M2698,933C2681,847 2660,745 2651,696"/>
<polygon style="fill:black;stroke:black;" points="2648,696 2649,686 2654,695 2648,696"/>
</g>
<g id="node23" class="node"><title>sourcepackagereleasefile</title>
<polygon style="fill:#c1cdcc;stroke:#c1cdcc;" points="2510,426 2510,350 2754,350 2754,426 2510,426"/>
<polygon style="fill:white;stroke:white;" points="2513,367 2513,353 2751,353 2751,367 2513,367"/>
<text text-anchor="middle" style="font-size:8.00;" x="2632" y="363">sourcepackagereleasefile</text>
<polygon style="fill:none;stroke:black;" points="2513,367 2513,353 2751,353 2751,367 2513,367"/>
<text text-anchor="middle" style="font-size:8.00;" x="2551" y="378">sourcepackagerelease</text>
<text text-anchor="middle" style="font-size:8.00;" x="2604" y="378">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2686" y="378"> REFERENCES sourcepackagerelease </text>
<text text-anchor="middle" style="font-size:8.00;" x="2532" y="392">libraryfile</text>
<text text-anchor="middle" style="font-size:8.00;" x="2604" y="392">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2674" y="392"> REFERENCES libraryfilealias </text>
<text text-anchor="middle" style="font-size:8.00;" x="2528" y="406">filetype</text>
<text text-anchor="middle" style="font-size:8.00;" x="2604" y="406">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2519" y="420">id</text>
<text text-anchor="middle" style="font-size:8.00;" x="2604" y="420">integer</text>
<text text-anchor="middle" style="font-size:8.00;" x="2652" y="420"> PRIMARY KEY </text>
<polygon style="fill:none;stroke:black;" points="2510,426 2510,350 2754,350 2754,426 2510,426"/>
</g>
<g id="edge148" class="edge"><title>sourcepackagereleasefile->sourcepackagerelease</title>
<path style="fill:none;stroke:black;" d="M2638,430C2647,485 2661,583 2673,668 2684,752 2697,847 2707,923"/>
<polygon style="fill:black;stroke:black;" points="2710,923 2708,933 2704,923 2710,923"/>
</g>
<g id="node143" class="node"><title>fake_libraryfilealias_384</title>
<ellipse cx="2575" cy="23" rx="35" ry="18" style="fill:none;stroke:red;"/>
<text text-anchor="middle" style="font-size:8.00;" x="2575" y="26">libraryfilealias</text>
</g>
<g id="edge150" class="edge"><title>sourcepackagereleasefile->fake_libraryfilealias_384</title>
<path style="fill:none;stroke:black;" d="M2625,346C2614,270 2589,115 2579,51"/>
<polygon style="fill:black;stroke:black;" points="2576,51 2578,41 2582,51 2576,51"/>
</g>
</g>
</svg>
|