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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
text {
font: 10px sans-serif;
pointer-events: none;
}
</style>
<script type="text/javascript" src="/gnu/store/d74zg27gc831j3ck7f3zvzgj9spaxnrb-guix-module-union/share/guile/site/3.0/guix/d3.v3.js"></script>
</head>
<body>
<script type="text/javascript">
var nodes = {},
nodeArray = [],
links = [];
nodes["140550228278192"] = {"id": "140550228278192", "label": "waybar-new@0.9.22", "index": nodeArray.length};
nodeArray.push(nodes["140550228278192"]);
links.push({"source": "140550228278192", "target": "140550156000528"});
links.push({"source": "140550228278192", "target": "140550459778960"});
links.push({"source": "140550228278192", "target": "140550159904016"});
links.push({"source": "140550228278192", "target": "140550170777312"});
links.push({"source": "140550228278192", "target": "140550228278544"});
links.push({"source": "140550228278192", "target": "140550155684080"});
links.push({"source": "140550228278192", "target": "140550168427440"});
links.push({"source": "140550228278192", "target": "140550169729440"});
links.push({"source": "140550228278192", "target": "140550169705040"});
links.push({"source": "140550228278192", "target": "140550167187056"});
links.push({"source": "140550228278192", "target": "140550169729616"});
links.push({"source": "140550228278192", "target": "140550168275888"});
links.push({"source": "140550228278192", "target": "140550170779072"});
links.push({"source": "140550228278192", "target": "140550224334448"});
links.push({"source": "140550228278192", "target": "140550157898960"});
links.push({"source": "140550228278192", "target": "140550169727504"});
links.push({"source": "140550228278192", "target": "140550158020608"});
links.push({"source": "140550228278192", "target": "140550190898976"});
links.push({"source": "140550228278192", "target": "140550225229536"});
links.push({"source": "140550228278192", "target": "140550223606640"});
links.push({"source": "140550228278192", "target": "140550170777488"});
links.push({"source": "140550228278192", "target": "140550158044960"});
nodes["140550156000528"] = {"id": "140550156000528", "label": "glib@2.72.3", "index": nodeArray.length};
nodeArray.push(nodes["140550156000528"]);
links.push({"source": "140550156000528", "target": "140550155915264"});
links.push({"source": "140550156000528", "target": "140550159771184"});
links.push({"source": "140550156000528", "target": "140550459779840"});
links.push({"source": "140550156000528", "target": "140550160707584"});
links.push({"source": "140550156000528", "target": "140550459778960"});
links.push({"source": "140550156000528", "target": "140550160343392"});
links.push({"source": "140550156000528", "target": "140550160375408"});
links.push({"source": "140550156000528", "target": "140550161420464"});
links.push({"source": "140550156000528", "target": "140550160709520"});
links.push({"source": "140550156000528", "target": "140550160343392"});
links.push({"source": "140550156000528", "target": "140550160375408"});
links.push({"source": "140550156000528", "target": "140550157412944"});
links.push({"source": "140550156000528", "target": "140550458590240"});
links.push({"source": "140550156000528", "target": "140550157879536"});
links.push({"source": "140550156000528", "target": "140550160636496"});
nodes["140550155915264"] = {"id": "140550155915264", "label": "dbus@1.14.0", "index": nodeArray.length};
nodeArray.push(nodes["140550155915264"]);
links.push({"source": "140550155915264", "target": "140550459778960"});
links.push({"source": "140550155915264", "target": "140550159684112"});
links.push({"source": "140550155915264", "target": "140550159773472"});
links.push({"source": "140550155915264", "target": "140550155464128"});
links.push({"source": "140550155915264", "target": "140550169807968"});
links.push({"source": "140550155915264", "target": "140550169727504"});
links.push({"source": "140550155915264", "target": "140550169780000"});
links.push({"source": "140550155915264", "target": "140550155265232"});
links.push({"source": "140550155915264", "target": "140550169727856"});
links.push({"source": "140550155915264", "target": "140550168348912"});
nodes["140550459778960"] = {"id": "140550459778960", "label": "pkg-config@0.29.2", "index": nodeArray.length};
nodeArray.push(nodes["140550459778960"]);
nodes["140550159684112"] = {"id": "140550159684112", "label": "docbook-xml@4.4", "index": nodeArray.length};
nodeArray.push(nodes["140550159684112"]);
nodes["140550159773472"] = {"id": "140550159773472", "label": "docbook-xsl@1.79.2-0.fe16c90", "index": nodeArray.length};
nodeArray.push(nodes["140550159773472"]);
nodes["140550155464128"] = {"id": "140550155464128", "label": "doxygen@1.9.5", "index": nodeArray.length};
nodeArray.push(nodes["140550155464128"]);
nodes["140550169807968"] = {"id": "140550169807968", "label": "xmlto@0.0.28", "index": nodeArray.length};
nodeArray.push(nodes["140550169807968"]);
nodes["140550169727504"] = {"id": "140550169727504", "label": "libxml2@2.9.14", "index": nodeArray.length};
nodeArray.push(nodes["140550169727504"]);
nodes["140550169780000"] = {"id": "140550169780000", "label": "libxslt@1.1.37", "index": nodeArray.length};
nodeArray.push(nodes["140550169780000"]);
nodes["140550155265232"] = {"id": "140550155265232", "label": "yelp-tools@3.32.2", "index": nodeArray.length};
nodeArray.push(nodes["140550155265232"]);
nodes["140550169727856"] = {"id": "140550169727856", "label": "expat@2.5.0", "index": nodeArray.length};
nodeArray.push(nodes["140550169727856"]);
nodes["140550168348912"] = {"id": "140550168348912", "label": "libx11@1.8.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168348912"]);
nodes["140550159771184"] = {"id": "140550159771184", "label": "gettext-minimal@0.21", "index": nodeArray.length};
nodeArray.push(nodes["140550159771184"]);
links.push({"source": "140550159771184", "target": "140550458589888"});
links.push({"source": "140550159771184", "target": "140550169727504"});
links.push({"source": "140550159771184", "target": "140550159586512"});
nodes["140550458589888"] = {"id": "140550458589888", "label": "libunistring@1.0", "index": nodeArray.length};
nodeArray.push(nodes["140550458589888"]);
nodes["140550159586512"] = {"id": "140550159586512", "label": "ncurses@6.2.20210619", "index": nodeArray.length};
nodeArray.push(nodes["140550159586512"]);
nodes["140550459779840"] = {"id": "140550459779840", "label": "m4@1.4.19", "index": nodeArray.length};
nodeArray.push(nodes["140550459779840"]);
nodes["140550160707584"] = {"id": "140550160707584", "label": "perl@5.36.0", "index": nodeArray.length};
nodeArray.push(nodes["140550160707584"]);
nodes["140550160343392"] = {"id": "140550160343392", "label": "python@3.10.7", "index": nodeArray.length};
nodeArray.push(nodes["140550160343392"]);
links.push({"source": "140550160343392", "target": "140550161420464"});
links.push({"source": "140550160343392", "target": "140550160658432"});
links.push({"source": "140550160343392", "target": "140550160658608"});
links.push({"source": "140550160343392", "target": "140550459778960"});
links.push({"source": "140550160343392", "target": "140550160635616"});
links.push({"source": "140550160343392", "target": "140550169727856"});
links.push({"source": "140550160343392", "target": "140550459779136"});
links.push({"source": "140550160343392", "target": "140550157412944"});
links.push({"source": "140550160343392", "target": "140550307256208"});
links.push({"source": "140550160343392", "target": "140550167241408"});
links.push({"source": "140550160343392", "target": "140550458590944"});
links.push({"source": "140550160343392", "target": "140550160636496"});
links.push({"source": "140550160343392", "target": "140550157678480"});
links.push({"source": "140550160343392", "target": "140550157677952"});
nodes["140550161420464"] = {"id": "140550161420464", "label": "tzdata@2022a", "index": nodeArray.length};
nodeArray.push(nodes["140550161420464"]);
nodes["140550160658432"] = {"id": "140550160658432", "label": "unzip@6.0", "index": nodeArray.length};
nodeArray.push(nodes["140550160658432"]);
nodes["140550160658608"] = {"id": "140550160658608", "label": "zip@3.0", "index": nodeArray.length};
nodeArray.push(nodes["140550160658608"]);
nodes["140550160635616"] = {"id": "140550160635616", "label": "bzip2@1.0.8", "index": nodeArray.length};
nodeArray.push(nodes["140550160635616"]);
nodes["140550459779136"] = {"id": "140550459779136", "label": "gdbm@1.23", "index": nodeArray.length};
nodeArray.push(nodes["140550459779136"]);
nodes["140550157412944"] = {"id": "140550157412944", "label": "libffi@3.4.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157412944"]);
nodes["140550307256208"] = {"id": "140550307256208", "label": "sqlite@3.39.3", "index": nodeArray.length};
nodeArray.push(nodes["140550307256208"]);
nodes["140550167241408"] = {"id": "140550167241408", "label": "openssl@3.0.8", "index": nodeArray.length};
nodeArray.push(nodes["140550167241408"]);
nodes["140550458590944"] = {"id": "140550458590944", "label": "readline@8.1.2", "index": nodeArray.length};
nodeArray.push(nodes["140550458590944"]);
nodes["140550160636496"] = {"id": "140550160636496", "label": "zlib@1.2.13", "index": nodeArray.length};
nodeArray.push(nodes["140550160636496"]);
nodes["140550157678480"] = {"id": "140550157678480", "label": "tcl@8.6.12", "index": nodeArray.length};
nodeArray.push(nodes["140550157678480"]);
nodes["140550157677952"] = {"id": "140550157677952", "label": "tk@8.6.12", "index": nodeArray.length};
nodeArray.push(nodes["140550157677952"]);
nodes["140550160375408"] = {"id": "140550160375408", "label": "python-wrapper@3.10.7", "index": nodeArray.length};
nodeArray.push(nodes["140550160375408"]);
links.push({"source": "140550160375408", "target": "140550161420464"});
links.push({"source": "140550160375408", "target": "140550160658432"});
links.push({"source": "140550160375408", "target": "140550160658608"});
links.push({"source": "140550160375408", "target": "140550459778960"});
links.push({"source": "140550160375408", "target": "140550160709696"});
links.push({"source": "140550160375408", "target": "140550160343392"});
nodes["140550160709696"] = {"id": "140550160709696", "label": "bash@5.1.16", "index": nodeArray.length};
nodeArray.push(nodes["140550160709696"]);
nodes["140550160709520"] = {"id": "140550160709520", "label": "bash-minimal@5.1.16", "index": nodeArray.length};
nodeArray.push(nodes["140550160709520"]);
nodes["140550458590240"] = {"id": "140550458590240", "label": "pcre@8.45", "index": nodeArray.length};
nodeArray.push(nodes["140550458590240"]);
links.push({"source": "140550458590240", "target": "140550160635616"});
links.push({"source": "140550458590240", "target": "140550458590944"});
links.push({"source": "140550458590240", "target": "140550160636496"});
nodes["140550157879536"] = {"id": "140550157879536", "label": "util-linux@2.37.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157879536"]);
links.push({"source": "140550157879536", "target": "140550160526960"});
links.push({"source": "140550157879536", "target": "140550160707584"});
links.push({"source": "140550157879536", "target": "140550306205472"});
links.push({"source": "140550157879536", "target": "140550159586512"});
links.push({"source": "140550157879536", "target": "140550160636496"});
nodes["140550160526960"] = {"id": "140550160526960", "label": "net-base@5.3", "index": nodeArray.length};
nodeArray.push(nodes["140550160526960"]);
nodes["140550306205472"] = {"id": "140550306205472", "label": "file@5.44", "index": nodeArray.length};
nodeArray.push(nodes["140550306205472"]);
nodes["140550159904016"] = {"id": "140550159904016", "label": "scdoc@1.11.2", "index": nodeArray.length};
nodeArray.push(nodes["140550159904016"]);
nodes["140550170777312"] = {"id": "140550170777312", "label": "wayland-protocols@1.32", "index": nodeArray.length};
nodeArray.push(nodes["140550170777312"]);
links.push({"source": "140550170777312", "target": "140550459778960"});
links.push({"source": "140550170777312", "target": "140550160343392"});
links.push({"source": "140550170777312", "target": "140550170777488"});
nodes["140550170777488"] = {"id": "140550170777488", "label": "wayland@1.22.0", "index": nodeArray.length};
nodeArray.push(nodes["140550170777488"]);
links.push({"source": "140550170777488", "target": "140550159683760"});
links.push({"source": "140550170777488", "target": "140550159684288"});
links.push({"source": "140550170777488", "target": "140550159773472"});
links.push({"source": "140550170777488", "target": "140550155388464"});
links.push({"source": "140550170777488", "target": "140550155464128"});
links.push({"source": "140550170777488", "target": "140550459778960"});
links.push({"source": "140550170777488", "target": "140550160343392"});
links.push({"source": "140550170777488", "target": "140550169807968"});
links.push({"source": "140550170777488", "target": "140550169780000"});
links.push({"source": "140550170777488", "target": "140550169727856"});
links.push({"source": "140550170777488", "target": "140550169727504"});
links.push({"source": "140550170777488", "target": "140550157412944"});
nodes["140550159683760"] = {"id": "140550159683760", "label": "docbook-xml@4.2", "index": nodeArray.length};
nodeArray.push(nodes["140550159683760"]);
nodes["140550159684288"] = {"id": "140550159684288", "label": "docbook-xml@4.5", "index": nodeArray.length};
nodeArray.push(nodes["140550159684288"]);
nodes["140550155388464"] = {"id": "140550155388464", "label": "graphviz@7.0.1", "index": nodeArray.length};
nodeArray.push(nodes["140550155388464"]);
nodes["140550228278544"] = {"id": "140550228278544", "label": "gtkmm@3.24.6", "index": nodeArray.length};
nodeArray.push(nodes["140550228278544"]);
links.push({"source": "140550228278544", "target": "140550155388464"});
links.push({"source": "140550228278544", "target": "140550155464128"});
links.push({"source": "140550228278544", "target": "140550156000528"});
links.push({"source": "140550228278544", "target": "140550459779840"});
links.push({"source": "140550228278544", "target": "140550155118832"});
links.push({"source": "140550228278544", "target": "140550160707584"});
links.push({"source": "140550228278544", "target": "140550459778960"});
links.push({"source": "140550228278544", "target": "140550160343392"});
links.push({"source": "140550228278544", "target": "140550169780000"});
links.push({"source": "140550228278544", "target": "140550168349616"});
links.push({"source": "140550228278544", "target": "140550228278720"});
links.push({"source": "140550228278544", "target": "140550169705392"});
links.push({"source": "140550228278544", "target": "140550169706096"});
links.push({"source": "140550228278544", "target": "140550155998592"});
links.push({"source": "140550228278544", "target": "140550169675136"});
links.push({"source": "140550228278544", "target": "140550169705744"});
nodes["140550155118832"] = {"id": "140550155118832", "label": "mm-common@1.0.3", "index": nodeArray.length};
nodeArray.push(nodes["140550155118832"]);
links.push({"source": "140550155118832", "target": "140550161303616"});
links.push({"source": "140550155118832", "target": "140550159771184"});
links.push({"source": "140550155118832", "target": "140550459778960"});
links.push({"source": "140550155118832", "target": "140550161304496"});
links.push({"source": "140550155118832", "target": "140550160343392"});
nodes["140550161303616"] = {"id": "140550161303616", "label": "coreutils@9.1", "index": nodeArray.length};
nodeArray.push(nodes["140550161303616"]);
nodes["140550161304496"] = {"id": "140550161304496", "label": "sed@4.8", "index": nodeArray.length};
nodeArray.push(nodes["140550161304496"]);
nodes["140550168349616"] = {"id": "140550168349616", "label": "xorg-server@21.1.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168349616"]);
links.push({"source": "140550168349616", "target": "140550160375408"});
links.push({"source": "140550168349616", "target": "140550459778960"});
links.push({"source": "140550168349616", "target": "140550157923536"});
links.push({"source": "140550168349616", "target": "140550155915264"});
links.push({"source": "140550168349616", "target": "140550168243648"});
links.push({"source": "140550168349616", "target": "140550168689232"});
links.push({"source": "140550168349616", "target": "140550170701248"});
links.push({"source": "140550168349616", "target": "140550168327200"});
links.push({"source": "140550168349616", "target": "140550168348208"});
links.push({"source": "140550168349616", "target": "140550168241888"});
links.push({"source": "140550168349616", "target": "140550168327024"});
links.push({"source": "140550168349616", "target": "140550168326672"});
links.push({"source": "140550168349616", "target": "140550168241536"});
links.push({"source": "140550168349616", "target": "140550168328256"});
links.push({"source": "140550168349616", "target": "140550168241008"});
links.push({"source": "140550168349616", "target": "140550168243472"});
links.push({"source": "140550168349616", "target": "140550168348384"});
links.push({"source": "140550168349616", "target": "140550168327904"});
links.push({"source": "140550168349616", "target": "140550168321472"});
links.push({"source": "140550168349616", "target": "140550168320768"});
links.push({"source": "140550168349616", "target": "140550168317952"});
links.push({"source": "140550168349616", "target": "140550160636496"});
links.push({"source": "140550168349616", "target": "140550168347856"});
links.push({"source": "140550168349616", "target": "140550168347328"});
links.push({"source": "140550168349616", "target": "140550168347152"});
links.push({"source": "140550168349616", "target": "140550168346976"});
links.push({"source": "140550168349616", "target": "140550168346800"});
links.push({"source": "140550168349616", "target": "140550168242944"});
links.push({"source": "140550168349616", "target": "140550168350144"});
links.push({"source": "140550168349616", "target": "140550168604672"});
links.push({"source": "140550168349616", "target": "140550190062336"});
links.push({"source": "140550168349616", "target": "140550168188288"});
nodes["140550157923536"] = {"id": "140550157923536", "label": "eudev@3.2.11", "index": nodeArray.length};
nodeArray.push(nodes["140550157923536"]);
nodes["140550168243648"] = {"id": "140550168243648", "label": "libdmx@1.1.4", "index": nodeArray.length};
nodeArray.push(nodes["140550168243648"]);
nodes["140550168689232"] = {"id": "140550168689232", "label": "libepoxy@1.5.10", "index": nodeArray.length};
nodeArray.push(nodes["140550168689232"]);
nodes["140550170701248"] = {"id": "140550170701248", "label": "libgcrypt@1.10.1", "index": nodeArray.length};
nodeArray.push(nodes["140550170701248"]);
nodes["140550168327200"] = {"id": "140550168327200", "label": "libxau@1.0.10", "index": nodeArray.length};
nodeArray.push(nodes["140550168327200"]);
nodes["140550168348208"] = {"id": "140550168348208", "label": "libxaw@1.0.14", "index": nodeArray.length};
nodeArray.push(nodes["140550168348208"]);
nodes["140550168241888"] = {"id": "140550168241888", "label": "libxdmcp@1.1.3", "index": nodeArray.length};
nodeArray.push(nodes["140550168241888"]);
nodes["140550168327024"] = {"id": "140550168327024", "label": "libxfixes@6.0.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168327024"]);
nodes["140550168326672"] = {"id": "140550168326672", "label": "libxfont@2.0.4", "index": nodeArray.length};
nodeArray.push(nodes["140550168326672"]);
nodes["140550168241536"] = {"id": "140550168241536", "label": "libxkbfile@1.1.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168241536"]);
nodes["140550168328256"] = {"id": "140550168328256", "label": "libxrender@0.9.10", "index": nodeArray.length};
nodeArray.push(nodes["140550168328256"]);
nodes["140550168241008"] = {"id": "140550168241008", "label": "libxres@1.2.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168241008"]);
nodes["140550168243472"] = {"id": "140550168243472", "label": "libxshmfence@1.3", "index": nodeArray.length};
nodeArray.push(nodes["140550168243472"]);
nodes["140550168348384"] = {"id": "140550168348384", "label": "libxt@1.2.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168348384"]);
nodes["140550168327904"] = {"id": "140550168327904", "label": "libxv@1.0.12", "index": nodeArray.length};
nodeArray.push(nodes["140550168327904"]);
nodes["140550168321472"] = {"id": "140550168321472", "label": "xkbcomp@1.4.5", "index": nodeArray.length};
nodeArray.push(nodes["140550168321472"]);
nodes["140550168320768"] = {"id": "140550168320768", "label": "xkeyboard-config@2.38", "index": nodeArray.length};
nodeArray.push(nodes["140550168320768"]);
nodes["140550168317952"] = {"id": "140550168317952", "label": "xtrans@1.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168317952"]);
nodes["140550168347856"] = {"id": "140550168347856", "label": "xcb-util@0.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168347856"]);
nodes["140550168347328"] = {"id": "140550168347328", "label": "xcb-util-image@0.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168347328"]);
nodes["140550168347152"] = {"id": "140550168347152", "label": "xcb-util-keysyms@0.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168347152"]);
nodes["140550168346976"] = {"id": "140550168346976", "label": "xcb-util-renderutil@0.3.9", "index": nodeArray.length};
nodeArray.push(nodes["140550168346976"]);
nodes["140550168346800"] = {"id": "140550168346800", "label": "xcb-util-wm@0.4.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168346800"]);
nodes["140550168242944"] = {"id": "140550168242944", "label": "libpciaccess@0.16", "index": nodeArray.length};
nodeArray.push(nodes["140550168242944"]);
nodes["140550168350144"] = {"id": "140550168350144", "label": "libxcvt@0.1.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168350144"]);
nodes["140550168604672"] = {"id": "140550168604672", "label": "mesa@23.1.4", "index": nodeArray.length};
nodeArray.push(nodes["140550168604672"]);
nodes["140550190062336"] = {"id": "140550190062336", "label": "pixman@0.40.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190062336"]);
nodes["140550168188288"] = {"id": "140550168188288", "label": "xorgproto@2022.2", "index": nodeArray.length};
nodeArray.push(nodes["140550168188288"]);
nodes["140550228278720"] = {"id": "140550228278720", "label": "pangomm@2.46.2", "index": nodeArray.length};
nodeArray.push(nodes["140550228278720"]);
links.push({"source": "140550228278720", "target": "140550155388464"});
links.push({"source": "140550228278720", "target": "140550155464128"});
links.push({"source": "140550228278720", "target": "140550459779840"});
links.push({"source": "140550228278720", "target": "140550155118832"});
links.push({"source": "140550228278720", "target": "140550160707584"});
links.push({"source": "140550228278720", "target": "140550459778960"});
links.push({"source": "140550228278720", "target": "140550160343392"});
links.push({"source": "140550228278720", "target": "140550169780000"});
links.push({"source": "140550228278720", "target": "140550169706096"});
links.push({"source": "140550228278720", "target": "140550155998240"});
links.push({"source": "140550228278720", "target": "140550169637216"});
nodes["140550169706096"] = {"id": "140550169706096", "label": "cairomm@1.14.2", "index": nodeArray.length};
nodeArray.push(nodes["140550169706096"]);
nodes["140550155998240"] = {"id": "140550155998240", "label": "glibmm@2.64.5", "index": nodeArray.length};
nodeArray.push(nodes["140550155998240"]);
nodes["140550169637216"] = {"id": "140550169637216", "label": "pango@1.50.10", "index": nodeArray.length};
nodeArray.push(nodes["140550169637216"]);
nodes["140550169705392"] = {"id": "140550169705392", "label": "atkmm@2.28.1", "index": nodeArray.length};
nodeArray.push(nodes["140550169705392"]);
links.push({"source": "140550169705392", "target": "140550155388464"});
links.push({"source": "140550169705392", "target": "140550155464128"});
links.push({"source": "140550169705392", "target": "140550459779840"});
links.push({"source": "140550169705392", "target": "140550155118832"});
links.push({"source": "140550169705392", "target": "140550160707584"});
links.push({"source": "140550169705392", "target": "140550459778960"});
links.push({"source": "140550169705392", "target": "140550160343392"});
links.push({"source": "140550169705392", "target": "140550169780000"});
links.push({"source": "140550169705392", "target": "140550155998240"});
links.push({"source": "140550169705392", "target": "140550169676016"});
nodes["140550169676016"] = {"id": "140550169676016", "label": "at-spi2-core@2.45.90", "index": nodeArray.length};
nodeArray.push(nodes["140550169676016"]);
nodes["140550155998592"] = {"id": "140550155998592", "label": "glibmm@2.72.1", "index": nodeArray.length};
nodeArray.push(nodes["140550155998592"]);
links.push({"source": "140550155998592", "target": "140550155388464"});
links.push({"source": "140550155998592", "target": "140550155464128"});
links.push({"source": "140550155998592", "target": "140550156000528"});
links.push({"source": "140550155998592", "target": "140550459779840"});
links.push({"source": "140550155998592", "target": "140550155118832"});
links.push({"source": "140550155998592", "target": "140550160707584"});
links.push({"source": "140550155998592", "target": "140550459778960"});
links.push({"source": "140550155998592", "target": "140550169780000"});
links.push({"source": "140550155998592", "target": "140550155998944"});
links.push({"source": "140550155998592", "target": "140550156000528"});
nodes["140550155998944"] = {"id": "140550155998944", "label": "libsigc++@3.0.6", "index": nodeArray.length};
nodeArray.push(nodes["140550155998944"]);
nodes["140550169675136"] = {"id": "140550169675136", "label": "gtk+@3.24.37", "index": nodeArray.length};
nodeArray.push(nodes["140550169675136"]);
links.push({"source": "140550169675136", "target": "140550159683936"});
links.push({"source": "140550169675136", "target": "140550159773472"});
links.push({"source": "140550169675136", "target": "140550159771184"});
links.push({"source": "140550169675136", "target": "140550156000528"});
links.push({"source": "140550169675136", "target": "140550156000000"});
links.push({"source": "140550169675136", "target": "140550155164064"});
links.push({"source": "140550169675136", "target": "140550459778960"});
links.push({"source": "140550169675136", "target": "140550160375408"});
links.push({"source": "140550169675136", "target": "140550228671584"});
links.push({"source": "140550169675136", "target": "140550168349616"});
links.push({"source": "140550169675136", "target": "140550169780000"});
links.push({"source": "140550169675136", "target": "140550155223392"});
links.push({"source": "140550169675136", "target": "140550170553792"});
links.push({"source": "140550169675136", "target": "140550169730672"});
links.push({"source": "140550169675136", "target": "140550169637744"});
links.push({"source": "140550169675136", "target": "140550308666992"});
links.push({"source": "140550169675136", "target": "140550155226912"});
links.push({"source": "140550169675136", "target": "140550169727504"});
links.push({"source": "140550169675136", "target": "140550155226032"});
links.push({"source": "140550169675136", "target": "140550169676016"});
links.push({"source": "140550169675136", "target": "140550169638272"});
links.push({"source": "140550169675136", "target": "140550458591296"});
links.push({"source": "140550169675136", "target": "140550159983296"});
links.push({"source": "140550169675136", "target": "140550159903136"});
links.push({"source": "140550169675136", "target": "140550155162480"});
links.push({"source": "140550169675136", "target": "140550156000528"});
links.push({"source": "140550169675136", "target": "140550155027664"});
links.push({"source": "140550169675136", "target": "140550168689232"});
links.push({"source": "140550169675136", "target": "140550168348912"});
links.push({"source": "140550169675136", "target": "140550168242064"});
links.push({"source": "140550169675136", "target": "140550168348560"});
links.push({"source": "140550169675136", "target": "140550168328960"});
links.push({"source": "140550169675136", "target": "140550168328784"});
links.push({"source": "140550169675136", "target": "140550168327024"});
links.push({"source": "140550169675136", "target": "140550168326496"});
links.push({"source": "140550169675136", "target": "140550168328608"});
links.push({"source": "140550169675136", "target": "140550190063216"});
links.push({"source": "140550169675136", "target": "140550168326320"});
links.push({"source": "140550169675136", "target": "140550168328256"});
links.push({"source": "140550169675136", "target": "140550168604672"});
links.push({"source": "140550169675136", "target": "140550169637216"});
links.push({"source": "140550169675136", "target": "140550170777488"});
links.push({"source": "140550169675136", "target": "140550170777312"});
nodes["140550159683936"] = {"id": "140550159683936", "label": "docbook-xml@4.3", "index": nodeArray.length};
nodeArray.push(nodes["140550159683936"]);
nodes["140550156000000"] = {"id": "140550156000000", "label": "gobject-introspection@1.72.0", "index": nodeArray.length};
nodeArray.push(nodes["140550156000000"]);
nodes["140550155164064"] = {"id": "140550155164064", "label": "hicolor-icon-theme@0.17", "index": nodeArray.length};
nodeArray.push(nodes["140550155164064"]);
nodes["140550228671584"] = {"id": "140550228671584", "label": "sassc@3.6.2", "index": nodeArray.length};
nodeArray.push(nodes["140550228671584"]);
nodes["140550155223392"] = {"id": "140550155223392", "label": "colord-minimal@1.4.6", "index": nodeArray.length};
nodeArray.push(nodes["140550155223392"]);
nodes["140550170553792"] = {"id": "140550170553792", "label": "cups@2.4.2", "index": nodeArray.length};
nodeArray.push(nodes["140550170553792"]);
nodes["140550169730672"] = {"id": "140550169730672", "label": "graphene@1.10.6", "index": nodeArray.length};
nodeArray.push(nodes["140550169730672"]);
nodes["140550169637744"] = {"id": "140550169637744", "label": "harfbuzz@5.3.1", "index": nodeArray.length};
nodeArray.push(nodes["140550169637744"]);
nodes["140550308666992"] = {"id": "140550308666992", "label": "iso-codes@4.5.0", "index": nodeArray.length};
nodeArray.push(nodes["140550308666992"]);
nodes["140550155226912"] = {"id": "140550155226912", "label": "json-glib-minimal@1.6.2", "index": nodeArray.length};
nodeArray.push(nodes["140550155226912"]);
nodes["140550155226032"] = {"id": "140550155226032", "label": "rest@0.8.1", "index": nodeArray.length};
nodeArray.push(nodes["140550155226032"]);
nodes["140550169638272"] = {"id": "140550169638272", "label": "cairo@1.16.0", "index": nodeArray.length};
nodeArray.push(nodes["140550169638272"]);
nodes["140550458591296"] = {"id": "140550458591296", "label": "fribidi@1.0.12", "index": nodeArray.length};
nodeArray.push(nodes["140550458591296"]);
nodes["140550159983296"] = {"id": "140550159983296", "label": "fontconfig-minimal@2.14.0", "index": nodeArray.length};
nodeArray.push(nodes["140550159983296"]);
nodes["140550159903136"] = {"id": "140550159903136", "label": "freetype@2.13.0", "index": nodeArray.length};
nodeArray.push(nodes["140550159903136"]);
nodes["140550155162480"] = {"id": "140550155162480", "label": "librsvg@2.54.5", "index": nodeArray.length};
nodeArray.push(nodes["140550155162480"]);
nodes["140550155027664"] = {"id": "140550155027664", "label": "libcloudproviders-minimal@0.3.1", "index": nodeArray.length};
nodeArray.push(nodes["140550155027664"]);
nodes["140550168242064"] = {"id": "140550168242064", "label": "libxcomposite@0.4.5", "index": nodeArray.length};
nodeArray.push(nodes["140550168242064"]);
nodes["140550168348560"] = {"id": "140550168348560", "label": "libxcursor@1.2.1", "index": nodeArray.length};
nodeArray.push(nodes["140550168348560"]);
nodes["140550168328960"] = {"id": "140550168328960", "label": "libxdamage@1.1.5", "index": nodeArray.length};
nodeArray.push(nodes["140550168328960"]);
nodes["140550168328784"] = {"id": "140550168328784", "label": "libxext@1.3.4", "index": nodeArray.length};
nodeArray.push(nodes["140550168328784"]);
nodes["140550168326496"] = {"id": "140550168326496", "label": "libxi@1.7.10", "index": nodeArray.length};
nodeArray.push(nodes["140550168326496"]);
nodes["140550168328608"] = {"id": "140550168328608", "label": "libxinerama@1.1.4", "index": nodeArray.length};
nodeArray.push(nodes["140550168328608"]);
nodes["140550190063216"] = {"id": "140550190063216", "label": "libxkbcommon@1.4.1", "index": nodeArray.length};
nodeArray.push(nodes["140550190063216"]);
nodes["140550168326320"] = {"id": "140550168326320", "label": "libxrandr@1.5.2", "index": nodeArray.length};
nodeArray.push(nodes["140550168326320"]);
nodes["140550169705744"] = {"id": "140550169705744", "label": "pangomm@2.46.2", "index": nodeArray.length};
nodeArray.push(nodes["140550169705744"]);
links.push({"source": "140550169705744", "target": "140550155388464"});
links.push({"source": "140550169705744", "target": "140550155464128"});
links.push({"source": "140550169705744", "target": "140550459779840"});
links.push({"source": "140550169705744", "target": "140550155118832"});
links.push({"source": "140550169705744", "target": "140550160707584"});
links.push({"source": "140550169705744", "target": "140550459778960"});
links.push({"source": "140550169705744", "target": "140550160343392"});
links.push({"source": "140550169705744", "target": "140550169780000"});
links.push({"source": "140550169705744", "target": "140550169706096"});
links.push({"source": "140550169705744", "target": "140550155998240"});
links.push({"source": "140550169705744", "target": "140550169637216"});
nodes["140550155684080"] = {"id": "140550155684080", "label": "date@2.4.1-9a0ee254", "index": nodeArray.length};
nodeArray.push(nodes["140550155684080"]);
links.push({"source": "140550155684080", "target": "140550161420464"});
nodes["140550168427440"] = {"id": "140550168427440", "label": "fmt@9.1.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168427440"]);
links.push({"source": "140550168427440", "target": "140550160658432"});
nodes["140550169729440"] = {"id": "140550169729440", "label": "gtk-layer-shell@0.6.0", "index": nodeArray.length};
nodeArray.push(nodes["140550169729440"]);
links.push({"source": "140550169729440", "target": "140550459778960"});
links.push({"source": "140550169729440", "target": "140550156000000"});
links.push({"source": "140550169729440", "target": "140550170777488"});
links.push({"source": "140550169729440", "target": "140550169675136"});
nodes["140550169705040"] = {"id": "140550169705040", "label": "gtkmm@3.24.6", "index": nodeArray.length};
nodeArray.push(nodes["140550169705040"]);
links.push({"source": "140550169705040", "target": "140550155388464"});
links.push({"source": "140550169705040", "target": "140550155464128"});
links.push({"source": "140550169705040", "target": "140550156000528"});
links.push({"source": "140550169705040", "target": "140550459779840"});
links.push({"source": "140550169705040", "target": "140550155118832"});
links.push({"source": "140550169705040", "target": "140550160707584"});
links.push({"source": "140550169705040", "target": "140550459778960"});
links.push({"source": "140550169705040", "target": "140550160343392"});
links.push({"source": "140550169705040", "target": "140550169780000"});
links.push({"source": "140550169705040", "target": "140550168349616"});
links.push({"source": "140550169705040", "target": "140550169705392"});
links.push({"source": "140550169705040", "target": "140550169706096"});
links.push({"source": "140550169705040", "target": "140550155998592"});
links.push({"source": "140550169705040", "target": "140550169675136"});
links.push({"source": "140550169705040", "target": "140550169705744"});
nodes["140550167187056"] = {"id": "140550167187056", "label": "jsoncpp@1.9.5", "index": nodeArray.length};
nodeArray.push(nodes["140550167187056"]);
nodes["140550169729616"] = {"id": "140550169729616", "label": "libdbusmenu@16.04.0-496", "index": nodeArray.length};
nodeArray.push(nodes["140550169729616"]);
links.push({"source": "140550169729616", "target": "140550160374000"});
links.push({"source": "140550169729616", "target": "140550160372592"});
links.push({"source": "140550169729616", "target": "140550156000528"});
links.push({"source": "140550169729616", "target": "140550156000000"});
links.push({"source": "140550169729616", "target": "140550155143232"});
links.push({"source": "140550169729616", "target": "140550169703280"});
links.push({"source": "140550169729616", "target": "140550155999648"});
links.push({"source": "140550169729616", "target": "140550155226736"});
links.push({"source": "140550169729616", "target": "140550160372416"});
links.push({"source": "140550169729616", "target": "140550169780000"});
links.push({"source": "140550169729616", "target": "140550459778960"});
links.push({"source": "140550169729616", "target": "140550160375408"});
links.push({"source": "140550169729616", "target": "140550161420992"});
links.push({"source": "140550169729616", "target": "140550155187232"});
links.push({"source": "140550169729616", "target": "140550156000528"});
links.push({"source": "140550169729616", "target": "140550169675136"});
links.push({"source": "140550169729616", "target": "140550169675312"});
nodes["140550160374000"] = {"id": "140550160374000", "label": "autoconf@2.69", "index": nodeArray.length};
nodeArray.push(nodes["140550160374000"]);
links.push({"source": "140550160374000", "target": "140550160707584"});
links.push({"source": "140550160374000", "target": "140550459779840"});
links.push({"source": "140550160374000", "target": "140550160709520"});
links.push({"source": "140550160374000", "target": "140550459779840"});
links.push({"source": "140550160374000", "target": "140550160707584"});
nodes["140550160372592"] = {"id": "140550160372592", "label": "automake@1.16.5", "index": nodeArray.length};
nodeArray.push(nodes["140550160372592"]);
links.push({"source": "140550160372592", "target": "140550160373120"});
links.push({"source": "140550160372592", "target": "140550160707584"});
links.push({"source": "140550160372592", "target": "140550160373120"});
links.push({"source": "140550160372592", "target": "140550160709520"});
links.push({"source": "140550160372592", "target": "140550160707584"});
nodes["140550160373120"] = {"id": "140550160373120", "label": "autoconf-wrapper@2.69", "index": nodeArray.length};
nodeArray.push(nodes["140550160373120"]);
nodes["140550155143232"] = {"id": "140550155143232", "label": "gnome-common@3.18.0", "index": nodeArray.length};
nodeArray.push(nodes["140550155143232"]);
nodes["140550169703280"] = {"id": "140550169703280", "label": "gtk-doc@1.33.2", "index": nodeArray.length};
nodeArray.push(nodes["140550169703280"]);
links.push({"source": "140550169703280", "target": "140550159771184"});
links.push({"source": "140550169703280", "target": "140550156000528"});
links.push({"source": "140550169703280", "target": "140550156000000"});
links.push({"source": "140550169703280", "target": "140550155999472"});
links.push({"source": "140550169703280", "target": "140550160707584"});
links.push({"source": "140550169703280", "target": "140550459778960"});
links.push({"source": "140550169703280", "target": "140550160375408"});
links.push({"source": "140550169703280", "target": "140550160442752"});
links.push({"source": "140550169703280", "target": "140550159772064"});
links.push({"source": "140550169703280", "target": "140550159683936"});
links.push({"source": "140550169703280", "target": "140550159773472"});
links.push({"source": "140550169703280", "target": "140550156000528"});
links.push({"source": "140550169703280", "target": "140550169727504"});
links.push({"source": "140550169703280", "target": "140550169780000"});
links.push({"source": "140550169703280", "target": "140550160343392"});
links.push({"source": "140550169703280", "target": "140550156518608"});
links.push({"source": "140550169703280", "target": "140550169824352"});
links.push({"source": "140550169703280", "target": "140550160285472"});
links.push({"source": "140550169703280", "target": "140550156545296"});
links.push({"source": "140550169703280", "target": "140550168426560"});
links.push({"source": "140550169703280", "target": "140550155265232"});
nodes["140550155999472"] = {"id": "140550155999472", "label": "itstool@2.0.7", "index": nodeArray.length};
nodeArray.push(nodes["140550155999472"]);
nodes["140550160442752"] = {"id": "140550160442752", "label": "bc@1.07.1", "index": nodeArray.length};
nodeArray.push(nodes["140550160442752"]);
nodes["140550159772064"] = {"id": "140550159772064", "label": "dblatex@0.3.12", "index": nodeArray.length};
nodeArray.push(nodes["140550159772064"]);
nodes["140550156518608"] = {"id": "140550156518608", "label": "python-anytree@2.8.0", "index": nodeArray.length};
nodeArray.push(nodes["140550156518608"]);
nodes["140550169824352"] = {"id": "140550169824352", "label": "python-lxml@4.9.1", "index": nodeArray.length};
nodeArray.push(nodes["140550169824352"]);
nodes["140550160285472"] = {"id": "140550160285472", "label": "python-parameterized@0.8.1", "index": nodeArray.length};
nodeArray.push(nodes["140550160285472"]);
nodes["140550156545296"] = {"id": "140550156545296", "label": "python-pygments@2.12.0", "index": nodeArray.length};
nodeArray.push(nodes["140550156545296"]);
nodes["140550168426560"] = {"id": "140550168426560", "label": "source-highlight@3.1.9", "index": nodeArray.length};
nodeArray.push(nodes["140550168426560"]);
nodes["140550155999648"] = {"id": "140550155999648", "label": "intltool@0.51.0", "index": nodeArray.length};
nodeArray.push(nodes["140550155999648"]);
links.push({"source": "140550155999648", "target": "140550306205472"});
links.push({"source": "140550155999648", "target": "140550159771184"});
links.push({"source": "140550155999648", "target": "140550169779120"});
links.push({"source": "140550155999648", "target": "140550160707584"});
nodes["140550169779120"] = {"id": "140550169779120", "label": "perl-xml-parser@2.46", "index": nodeArray.length};
nodeArray.push(nodes["140550169779120"]);
nodes["140550155226736"] = {"id": "140550155226736", "label": "json-glib@1.6.2", "index": nodeArray.length};
nodeArray.push(nodes["140550155226736"]);
links.push({"source": "140550155226736", "target": "140550159683936"});
links.push({"source": "140550155226736", "target": "140550159773472"});
links.push({"source": "140550155226736", "target": "140550156000000"});
links.push({"source": "140550155226736", "target": "140550169703280"});
links.push({"source": "140550155226736", "target": "140550169780000"});
links.push({"source": "140550155226736", "target": "140550159771184"});
links.push({"source": "140550155226736", "target": "140550156000528"});
links.push({"source": "140550155226736", "target": "140550459778960"});
links.push({"source": "140550155226736", "target": "140550160709520"});
links.push({"source": "140550155226736", "target": "140550156000528"});
nodes["140550160372416"] = {"id": "140550160372416", "label": "libtool@2.4.7", "index": nodeArray.length};
nodeArray.push(nodes["140550160372416"]);
links.push({"source": "140550160372416", "target": "140550459779840"});
links.push({"source": "140550160372416", "target": "140550160707584"});
links.push({"source": "140550160372416", "target": "140550160372064"});
links.push({"source": "140550160372416", "target": "140550159904192"});
links.push({"source": "140550160372416", "target": "140550160372592"});
links.push({"source": "140550160372416", "target": "140550160373120"});
links.push({"source": "140550160372416", "target": "140550459779840"});
nodes["140550160372064"] = {"id": "140550160372064", "label": "libltdl@2.4.7", "index": nodeArray.length};
nodeArray.push(nodes["140550160372064"]);
nodes["140550159904192"] = {"id": "140550159904192", "label": "help2man@1.49.2", "index": nodeArray.length};
nodeArray.push(nodes["140550159904192"]);
nodes["140550161420992"] = {"id": "140550161420992", "label": "which@2.21", "index": nodeArray.length};
nodeArray.push(nodes["140550161420992"]);
nodes["140550155187232"] = {"id": "140550155187232", "label": "vala@0.56.3", "index": nodeArray.length};
nodeArray.push(nodes["140550155187232"]);
links.push({"source": "140550155187232", "target": "140550159903488"});
links.push({"source": "140550155187232", "target": "140550155915264"});
links.push({"source": "140550155187232", "target": "140550159684112"});
links.push({"source": "140550155187232", "target": "140550159773472"});
links.push({"source": "140550155187232", "target": "140550159903664"});
links.push({"source": "140550155187232", "target": "140550156000000"});
links.push({"source": "140550155187232", "target": "140550159904192"});
links.push({"source": "140550155187232", "target": "140550160707584"});
links.push({"source": "140550155187232", "target": "140550459778960"});
links.push({"source": "140550155187232", "target": "140550169780000"});
links.push({"source": "140550155187232", "target": "140550156000528"});
links.push({"source": "140550155187232", "target": "140550155388464"});
nodes["140550159903488"] = {"id": "140550159903488", "label": "bison@3.8.2", "index": nodeArray.length};
nodeArray.push(nodes["140550159903488"]);
nodes["140550159903664"] = {"id": "140550159903664", "label": "flex@2.6.4", "index": nodeArray.length};
nodeArray.push(nodes["140550159903664"]);
nodes["140550169675312"] = {"id": "140550169675312", "label": "gtk+@2.24.33", "index": nodeArray.length};
nodeArray.push(nodes["140550169675312"]);
links.push({"source": "140550169675312", "target": "140550159771184"});
links.push({"source": "140550169675312", "target": "140550156000528"});
links.push({"source": "140550169675312", "target": "140550156000000"});
links.push({"source": "140550169675312", "target": "140550155999648"});
links.push({"source": "140550169675312", "target": "140550160707584"});
links.push({"source": "140550169675312", "target": "140550459778960"});
links.push({"source": "140550169675312", "target": "140550160375408"});
links.push({"source": "140550169675312", "target": "140550168349616"});
links.push({"source": "140550169675312", "target": "140550170553792"});
links.push({"source": "140550169675312", "target": "140550168348912"});
links.push({"source": "140550169675312", "target": "140550168242064"});
links.push({"source": "140550169675312", "target": "140550168348560"});
links.push({"source": "140550169675312", "target": "140550168328784"});
links.push({"source": "140550169675312", "target": "140550168328960"});
links.push({"source": "140550169675312", "target": "140550168326496"});
links.push({"source": "140550169675312", "target": "140550168328608"});
links.push({"source": "140550169675312", "target": "140550190063216"});
links.push({"source": "140550169675312", "target": "140550168326320"});
links.push({"source": "140550169675312", "target": "140550168328256"});
links.push({"source": "140550169675312", "target": "140550168243472"});
links.push({"source": "140550169675312", "target": "140550169676016"});
links.push({"source": "140550169675312", "target": "140550169638272"});
links.push({"source": "140550169675312", "target": "140550156000528"});
links.push({"source": "140550169675312", "target": "140550155162480"});
links.push({"source": "140550169675312", "target": "140550169637216"});
nodes["140550168275888"] = {"id": "140550168275888", "label": "libevdev@1.11.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168275888"]);
links.push({"source": "140550168275888", "target": "140550160343392"});
nodes["140550170779072"] = {"id": "140550170779072", "label": "libinput-minimal@1.22.1", "index": nodeArray.length};
nodeArray.push(nodes["140550170779072"]);
links.push({"source": "140550170779072", "target": "140550160180080"});
links.push({"source": "140550170779072", "target": "140550459778960"});
links.push({"source": "140550170779072", "target": "140550168275888"});
links.push({"source": "140550170779072", "target": "140550190061984"});
links.push({"source": "140550170779072", "target": "140550157923536"});
nodes["140550160180080"] = {"id": "140550160180080", "label": "check@0.15.2", "index": nodeArray.length};
nodeArray.push(nodes["140550160180080"]);
nodes["140550190061984"] = {"id": "140550190061984", "label": "mtdev@1.1.6", "index": nodeArray.length};
nodeArray.push(nodes["140550190061984"]);
nodes["140550224334448"] = {"id": "140550224334448", "label": "libmpdclient@2.20", "index": nodeArray.length};
nodeArray.push(nodes["140550224334448"]);
links.push({"source": "140550224334448", "target": "140550459778960"});
links.push({"source": "140550224334448", "target": "140550155464128"});
links.push({"source": "140550224334448", "target": "140550160180080"});
nodes["140550157898960"] = {"id": "140550157898960", "label": "libnl@3.5.0", "index": nodeArray.length};
nodeArray.push(nodes["140550157898960"]);
links.push({"source": "140550157898960", "target": "140550159903488"});
links.push({"source": "140550157898960", "target": "140550159903664"});
links.push({"source": "140550157898960", "target": "140550459778960"});
links.push({"source": "140550157898960", "target": "140550159586864"});
nodes["140550159586864"] = {"id": "140550159586864", "label": "swig@4.0.2", "index": nodeArray.length};
nodeArray.push(nodes["140550159586864"]);
links.push({"source": "140550159586864", "target": "140550159588448"});
links.push({"source": "140550159586864", "target": "140550458590240"});
links.push({"source": "140550159586864", "target": "140550157411184"});
links.push({"source": "140550159586864", "target": "140550160707584"});
links.push({"source": "140550159586864", "target": "140550458590240"});
nodes["140550159588448"] = {"id": "140550159588448", "label": "boost@1.80.0", "index": nodeArray.length};
nodeArray.push(nodes["140550159588448"]);
nodes["140550157411184"] = {"id": "140550157411184", "label": "guile@3.0.9", "index": nodeArray.length};
nodeArray.push(nodes["140550157411184"]);
nodes["140550158020608"] = {"id": "140550158020608", "label": "pipewire@0.3.77", "index": nodeArray.length};
nodeArray.push(nodes["140550158020608"]);
links.push({"source": "140550158020608", "target": "140550156000528"});
links.push({"source": "140550158020608", "target": "140550459778960"});
links.push({"source": "140550158020608", "target": "140550156517728"});
links.push({"source": "140550158020608", "target": "140550157900896"});
links.push({"source": "140550158020608", "target": "140550156024224"});
links.push({"source": "140550158020608", "target": "140550157965904"});
links.push({"source": "140550158020608", "target": "140550155915264"});
links.push({"source": "140550158020608", "target": "140550157923536"});
links.push({"source": "140550158020608", "target": "140550190571696"});
links.push({"source": "140550158020608", "target": "140550168718432"});
links.push({"source": "140550158020608", "target": "140550168718608"});
links.push({"source": "140550158020608", "target": "140550154904256"});
links.push({"source": "140550158020608", "target": "140550154965872"});
links.push({"source": "140550158020608", "target": "140550168729136"});
links.push({"source": "140550158020608", "target": "140550154980800"});
links.push({"source": "140550158020608", "target": "140550154980624"});
links.push({"source": "140550158020608", "target": "140550225229888"});
links.push({"source": "140550158020608", "target": "140550190712720"});
links.push({"source": "140550158020608", "target": "140550167241408"});
links.push({"source": "140550158020608", "target": "140550190572048"});
links.push({"source": "140550158020608", "target": "140550225229536"});
links.push({"source": "140550158020608", "target": "140550458590944"});
links.push({"source": "140550158020608", "target": "140550157966080"});
links.push({"source": "140550158020608", "target": "140550227542720"});
links.push({"source": "140550158020608", "target": "140550227542544"});
links.push({"source": "140550158020608", "target": "140550154790624"});
nodes["140550156517728"] = {"id": "140550156517728", "label": "python-docutils@0.19", "index": nodeArray.length};
nodeArray.push(nodes["140550156517728"]);
nodes["140550157900896"] = {"id": "140550157900896", "label": "alsa-lib@1.2.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157900896"]);
links.push({"source": "140550157900896", "target": "140550157901248"});
links.push({"source": "140550157900896", "target": "140550157901072"});
nodes["140550157901248"] = {"id": "140550157901248", "label": "alsa-ucm-conf@1.2.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157901248"]);
nodes["140550157901072"] = {"id": "140550157901072", "label": "alsa-topology-conf@1.2.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157901072"]);
nodes["140550156024224"] = {"id": "140550156024224", "label": "avahi@0.8", "index": nodeArray.length};
nodeArray.push(nodes["140550156024224"]);
links.push({"source": "140550156024224", "target": "140550159771184"});
links.push({"source": "140550156024224", "target": "140550156000528"});
links.push({"source": "140550156024224", "target": "140550459778960"});
links.push({"source": "140550156024224", "target": "140550160709520"});
links.push({"source": "140550156024224", "target": "140550155915264"});
links.push({"source": "140550156024224", "target": "140550169727856"});
links.push({"source": "140550156024224", "target": "140550459779136"});
links.push({"source": "140550156024224", "target": "140550156000528"});
links.push({"source": "140550156024224", "target": "140550157899312"});
links.push({"source": "140550156024224", "target": "140550156024400"});
links.push({"source": "140550156024224", "target": "140550169896672"});
nodes["140550157899312"] = {"id": "140550157899312", "label": "libcap@2.64", "index": nodeArray.length};
nodeArray.push(nodes["140550157899312"]);
nodes["140550156024400"] = {"id": "140550156024400", "label": "libdaemon@0.14", "index": nodeArray.length};
nodeArray.push(nodes["140550156024400"]);
nodes["140550169896672"] = {"id": "140550169896672", "label": "libevent@2.1.12", "index": nodeArray.length};
nodeArray.push(nodes["140550169896672"]);
nodes["140550157965904"] = {"id": "140550157965904", "label": "bluez@5.66", "index": nodeArray.length};
nodeArray.push(nodes["140550157965904"]);
links.push({"source": "140550157965904", "target": "140550159771184"});
links.push({"source": "140550157965904", "target": "140550459778960"});
links.push({"source": "140550157965904", "target": "140550156517728"});
links.push({"source": "140550157965904", "target": "140550156000528"});
links.push({"source": "140550157965904", "target": "140550155915264"});
links.push({"source": "140550157965904", "target": "140550157923536"});
links.push({"source": "140550157965904", "target": "140550155683904"});
links.push({"source": "140550157965904", "target": "140550458590944"});
nodes["140550155683904"] = {"id": "140550155683904", "label": "libical@3.0.16", "index": nodeArray.length};
nodeArray.push(nodes["140550155683904"]);
nodes["140550190571696"] = {"id": "140550190571696", "label": "ffmpeg@6.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190571696"]);
links.push({"source": "140550190571696", "target": "140550160442752"});
links.push({"source": "140550190571696", "target": "140550160707584"});
links.push({"source": "140550190571696", "target": "140550459778960"});
links.push({"source": "140550190571696", "target": "140550159770304"});
links.push({"source": "140550190571696", "target": "140550190497392"});
links.push({"source": "140550190571696", "target": "140550160606064"});
links.push({"source": "140550190571696", "target": "140550190659648"});
links.push({"source": "140550190571696", "target": "140550190661056"});
links.push({"source": "140550190571696", "target": "140550159983296"});
links.push({"source": "140550190571696", "target": "140550159903136"});
links.push({"source": "140550190571696", "target": "140550190638112"});
links.push({"source": "140550190571696", "target": "140550167242464"});
links.push({"source": "140550190571696", "target": "140550190496336"});
links.push({"source": "140550190571696", "target": "140550154903552"});
links.push({"source": "140550190571696", "target": "140550190714480"});
links.push({"source": "140550190571696", "target": "140550190574336"});
links.push({"source": "140550190571696", "target": "140550190573104"});
links.push({"source": "140550190571696", "target": "140550190588256"});
links.push({"source": "140550190571696", "target": "140550190572928"});
links.push({"source": "140550190571696", "target": "140550154994896"});
links.push({"source": "140550190571696", "target": "140550190062160"});
links.push({"source": "140550190571696", "target": "140550190497568"});
links.push({"source": "140550190571696", "target": "140550190572048"});
links.push({"source": "140550190571696", "target": "140550190609440"});
links.push({"source": "140550190571696", "target": "140550225227776"});
links.push({"source": "140550190571696", "target": "140550190589664"});
links.push({"source": "140550190571696", "target": "140550157635584"});
links.push({"source": "140550190571696", "target": "140550168348912"});
links.push({"source": "140550190571696", "target": "140550190573984"});
links.push({"source": "140550190571696", "target": "140550168604672"});
links.push({"source": "140550190571696", "target": "140550154920816"});
links.push({"source": "140550190571696", "target": "140550225229536"});
links.push({"source": "140550190571696", "target": "140550227396496"});
links.push({"source": "140550190571696", "target": "140550154932400"});
links.push({"source": "140550190571696", "target": "140550190497392"});
links.push({"source": "140550190571696", "target": "140550168728256"});
links.push({"source": "140550190571696", "target": "140550154932224"});
links.push({"source": "140550190571696", "target": "140550190637232"});
links.push({"source": "140550190571696", "target": "140550190573280"});
links.push({"source": "140550190571696", "target": "140550190611376"});
links.push({"source": "140550190571696", "target": "140550160636496"});
nodes["140550159770304"] = {"id": "140550159770304", "label": "texinfo@6.8", "index": nodeArray.length};
nodeArray.push(nodes["140550159770304"]);
nodes["140550190497392"] = {"id": "140550190497392", "label": "speex@1.2.1", "index": nodeArray.length};
nodeArray.push(nodes["140550190497392"]);
nodes["140550160606064"] = {"id": "140550160606064", "label": "yasm@1.3.0", "index": nodeArray.length};
nodeArray.push(nodes["140550160606064"]);
nodes["140550190659648"] = {"id": "140550190659648", "label": "rav1e@0.6.3", "index": nodeArray.length};
nodeArray.push(nodes["140550190659648"]);
nodes["140550190661056"] = {"id": "140550190661056", "label": "dav1d@1.0.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190661056"]);
nodes["140550190638112"] = {"id": "140550190638112", "label": "frei0r-plugins@1.7.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190638112"]);
nodes["140550167242464"] = {"id": "140550167242464", "label": "gnutls@3.7.7", "index": nodeArray.length};
nodeArray.push(nodes["140550167242464"]);
nodes["140550190496336"] = {"id": "140550190496336", "label": "opus@1.3.1", "index": nodeArray.length};
nodeArray.push(nodes["140550190496336"]);
nodes["140550154903552"] = {"id": "140550154903552", "label": "ladspa@1.13", "index": nodeArray.length};
nodeArray.push(nodes["140550154903552"]);
nodes["140550190714480"] = {"id": "140550190714480", "label": "lame@3.100", "index": nodeArray.length};
nodeArray.push(nodes["140550190714480"]);
nodes["140550190574336"] = {"id": "140550190574336", "label": "libaom@3.5.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190574336"]);
nodes["140550190573104"] = {"id": "140550190573104", "label": "libass@0.15.1", "index": nodeArray.length};
nodeArray.push(nodes["140550190573104"]);
nodes["140550190588256"] = {"id": "140550190588256", "label": "libbluray@1.0.2", "index": nodeArray.length};
nodeArray.push(nodes["140550190588256"]);
nodes["140550190572928"] = {"id": "140550190572928", "label": "libcaca@0.99.beta19", "index": nodeArray.length};
nodeArray.push(nodes["140550190572928"]);
nodes["140550154994896"] = {"id": "140550154994896", "label": "libcdio-paranoia@10.2+2.0.1", "index": nodeArray.length};
nodeArray.push(nodes["140550154994896"]);
nodes["140550190062160"] = {"id": "140550190062160", "label": "libdrm@2.4.114", "index": nodeArray.length};
nodeArray.push(nodes["140550190062160"]);
nodes["140550190497568"] = {"id": "140550190497568", "label": "libtheora@1.1.1", "index": nodeArray.length};
nodeArray.push(nodes["140550190497568"]);
nodes["140550190572048"] = {"id": "140550190572048", "label": "libva@2.19.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190572048"]);
nodes["140550190609440"] = {"id": "140550190609440", "label": "libvdpau@1.5", "index": nodeArray.length};
nodeArray.push(nodes["140550190609440"]);
nodes["140550225227776"] = {"id": "140550225227776", "label": "libvorbis@1.3.7", "index": nodeArray.length};
nodeArray.push(nodes["140550225227776"]);
nodes["140550190589664"] = {"id": "140550190589664", "label": "libvpx@1.12.0", "index": nodeArray.length};
nodeArray.push(nodes["140550190589664"]);
nodes["140550157635584"] = {"id": "140550157635584", "label": "libwebp@1.2.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157635584"]);
nodes["140550190573984"] = {"id": "140550190573984", "label": "libx264@164-0.b093bbe", "index": nodeArray.length};
nodeArray.push(nodes["140550190573984"]);
nodes["140550154920816"] = {"id": "140550154920816", "label": "openal@1.22.2", "index": nodeArray.length};
nodeArray.push(nodes["140550154920816"]);
nodes["140550225229536"] = {"id": "140550225229536", "label": "pulseaudio@16.1", "index": nodeArray.length};
nodeArray.push(nodes["140550225229536"]);
nodes["140550227396496"] = {"id": "140550227396496", "label": "sdl2@2.26.2", "index": nodeArray.length};
nodeArray.push(nodes["140550227396496"]);
nodes["140550154932400"] = {"id": "140550154932400", "label": "soxr@0.1.3", "index": nodeArray.length};
nodeArray.push(nodes["140550154932400"]);
nodes["140550168728256"] = {"id": "140550168728256", "label": "srt@1.4.4", "index": nodeArray.length};
nodeArray.push(nodes["140550168728256"]);
nodes["140550154932224"] = {"id": "140550154932224", "label": "twolame@0.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550154932224"]);
nodes["140550190637232"] = {"id": "140550190637232", "label": "vidstab@1.1.0-0.aeabc8d", "index": nodeArray.length};
nodeArray.push(nodes["140550190637232"]);
nodes["140550190573280"] = {"id": "140550190573280", "label": "x265@3.5", "index": nodeArray.length};
nodeArray.push(nodes["140550190573280"]);
nodes["140550190611376"] = {"id": "140550190611376", "label": "xvid@1.3.7", "index": nodeArray.length};
nodeArray.push(nodes["140550190611376"]);
nodes["140550168718432"] = {"id": "140550168718432", "label": "gst-plugins-base@1.22.2", "index": nodeArray.length};
nodeArray.push(nodes["140550168718432"]);
links.push({"source": "140550168718432", "target": "140550459778960"});
links.push({"source": "140550168718432", "target": "140550156000528"});
links.push({"source": "140550168718432", "target": "140550156000000"});
links.push({"source": "140550168718432", "target": "140550160375408"});
links.push({"source": "140550168718432", "target": "140550159771184"});
links.push({"source": "140550168718432", "target": "140550168349616"});
links.push({"source": "140550168718432", "target": "140550157900896"});
links.push({"source": "140550168718432", "target": "140550154994544"});
links.push({"source": "140550168718432", "target": "140550169730672"});
links.push({"source": "140550168718432", "target": "140550308666992"});
links.push({"source": "140550168718432", "target": "140550157658000"});
links.push({"source": "140550168718432", "target": "140550225227952"});
links.push({"source": "140550168718432", "target": "140550157546176"});
links.push({"source": "140550168718432", "target": "140550190497568"});
links.push({"source": "140550168718432", "target": "140550168686768"});
links.push({"source": "140550168718432", "target": "140550225227776"});
links.push({"source": "140550168718432", "target": "140550168348912"});
links.push({"source": "140550168718432", "target": "140550168328784"});
links.push({"source": "140550168718432", "target": "140550168327904"});
links.push({"source": "140550168718432", "target": "140550168604672"});
links.push({"source": "140550168718432", "target": "140550190496336"});
links.push({"source": "140550168718432", "target": "140550169637216"});
links.push({"source": "140550168718432", "target": "140550170777312"});
links.push({"source": "140550168718432", "target": "140550160636496"});
links.push({"source": "140550168718432", "target": "140550156000528"});
links.push({"source": "140550168718432", "target": "140550168718608"});
links.push({"source": "140550168718432", "target": "140550155266992"});
links.push({"source": "140550168718432", "target": "140550170777488"});
links.push({"source": "140550168718432", "target": "140550168718960"});
nodes["140550154994544"] = {"id": "140550154994544", "label": "cdparanoia@10.2", "index": nodeArray.length};
nodeArray.push(nodes["140550154994544"]);
nodes["140550157658000"] = {"id": "140550157658000", "label": "libjpeg-turbo@2.1.4", "index": nodeArray.length};
nodeArray.push(nodes["140550157658000"]);
nodes["140550225227952"] = {"id": "140550225227952", "label": "libogg@1.3.5", "index": nodeArray.length};
nodeArray.push(nodes["140550225227952"]);
nodes["140550157546176"] = {"id": "140550157546176", "label": "libpng@1.6.37", "index": nodeArray.length};
nodeArray.push(nodes["140550157546176"]);
nodes["140550168686768"] = {"id": "140550168686768", "label": "libvisual@0.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168686768"]);
nodes["140550168718608"] = {"id": "140550168718608", "label": "gstreamer@1.22.2", "index": nodeArray.length};
nodeArray.push(nodes["140550168718608"]);
nodes["140550155266992"] = {"id": "140550155266992", "label": "libgudev@236", "index": nodeArray.length};
nodeArray.push(nodes["140550155266992"]);
nodes["140550168718960"] = {"id": "140550168718960", "label": "orc@0.4.32", "index": nodeArray.length};
nodeArray.push(nodes["140550168718960"]);
nodes["140550154904256"] = {"id": "140550154904256", "label": "jack2@1.9.21", "index": nodeArray.length};
nodeArray.push(nodes["140550154904256"]);
links.push({"source": "140550154904256", "target": "140550459778960"});
links.push({"source": "140550154904256", "target": "140550157900896"});
links.push({"source": "140550154904256", "target": "140550155915264"});
links.push({"source": "140550154904256", "target": "140550169727856"});
links.push({"source": "140550154904256", "target": "140550225229712"});
links.push({"source": "140550154904256", "target": "140550190496336"});
links.push({"source": "140550154904256", "target": "140550156684208"});
links.push({"source": "140550154904256", "target": "140550458590944"});
links.push({"source": "140550154904256", "target": "140550157879536"});
links.push({"source": "140550154904256", "target": "140550459779312"});
nodes["140550225229712"] = {"id": "140550225229712", "label": "libsamplerate@0.1.9", "index": nodeArray.length};
nodeArray.push(nodes["140550225229712"]);
nodes["140550156684208"] = {"id": "140550156684208", "label": "python-dbus@1.2.18", "index": nodeArray.length};
nodeArray.push(nodes["140550156684208"]);
nodes["140550459779312"] = {"id": "140550459779312", "label": "bdb@6.2.32", "index": nodeArray.length};
nodeArray.push(nodes["140550459779312"]);
nodes["140550154965872"] = {"id": "140550154965872", "label": "ldacbt@2.0.2.3", "index": nodeArray.length};
nodeArray.push(nodes["140550154965872"]);
nodes["140550168729136"] = {"id": "140550168729136", "label": "libcamera@0.1.0", "index": nodeArray.length};
nodeArray.push(nodes["140550168729136"]);
links.push({"source": "140550168729136", "target": "140550160265920"});
links.push({"source": "140550168729136", "target": "140550155388464"});
links.push({"source": "140550168729136", "target": "140550155464128"});
links.push({"source": "140550168729136", "target": "140550459778960"});
links.push({"source": "140550168729136", "target": "140550160375408"});
links.push({"source": "140550168729136", "target": "140550154754464"});
links.push({"source": "140550168729136", "target": "140550156493152"});
links.push({"source": "140550168729136", "target": "140550159588448"});
links.push({"source": "140550168729136", "target": "140550157923536"});
links.push({"source": "140550168729136", "target": "140550156000528"});
links.push({"source": "140550168729136", "target": "140550168718432"});
links.push({"source": "140550168729136", "target": "140550167242464"});
links.push({"source": "140550168729136", "target": "140550157638400"});
links.push({"source": "140550168729136", "target": "140550167155216"});
links.push({"source": "140550168729136", "target": "140550167241408"});
links.push({"source": "140550168729136", "target": "140550156519840"});
links.push({"source": "140550168729136", "target": "140550156921952"});
links.push({"source": "140550168729136", "target": "140550308363536"});
nodes["140550160265920"] = {"id": "140550160265920", "label": "googletest@1.12.1", "index": nodeArray.length};
nodeArray.push(nodes["140550160265920"]);
nodes["140550154754464"] = {"id": "140550154754464", "label": "python-sphinx@5.1.1", "index": nodeArray.length};
nodeArray.push(nodes["140550154754464"]);
nodes["140550156493152"] = {"id": "140550156493152", "label": "python-pyyaml@6.0", "index": nodeArray.length};
nodeArray.push(nodes["140550156493152"]);
nodes["140550157638400"] = {"id": "140550157638400", "label": "libtiff@4.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550157638400"]);
nodes["140550167155216"] = {"id": "140550167155216", "label": "libyaml@0.2.5", "index": nodeArray.length};
nodeArray.push(nodes["140550167155216"]);
nodes["140550156519840"] = {"id": "140550156519840", "label": "python-jinja2@3.1.1", "index": nodeArray.length};
nodeArray.push(nodes["140550156519840"]);
nodes["140550156921952"] = {"id": "140550156921952", "label": "python-ply@3.11", "index": nodeArray.length};
nodeArray.push(nodes["140550156921952"]);
nodes["140550308363536"] = {"id": "140550308363536", "label": "qtbase@5.15.10", "index": nodeArray.length};
nodeArray.push(nodes["140550308363536"]);
nodes["140550154980800"] = {"id": "140550154980800", "label": "libfdk@2.0.1", "index": nodeArray.length};
nodeArray.push(nodes["140550154980800"]);
links.push({"source": "140550154980800", "target": "140550160374000"});
links.push({"source": "140550154980800", "target": "140550160372592"});
links.push({"source": "140550154980800", "target": "140550160372416"});
nodes["140550154980624"] = {"id": "140550154980624", "label": "libfreeaptx@0.1.1", "index": nodeArray.length};
nodeArray.push(nodes["140550154980624"]);
nodes["140550225229888"] = {"id": "140550225229888", "label": "libsndfile@1.2.0", "index": nodeArray.length};
nodeArray.push(nodes["140550225229888"]);
links.push({"source": "140550225229888", "target": "140550160374000"});
links.push({"source": "140550225229888", "target": "140550157469408"});
links.push({"source": "140550225229888", "target": "140550160372592"});
links.push({"source": "140550225229888", "target": "140550160372416"});
links.push({"source": "140550225229888", "target": "140550459778960"});
links.push({"source": "140550225229888", "target": "140550160343392"});
links.push({"source": "140550225229888", "target": "140550190496864"});
links.push({"source": "140550225229888", "target": "140550225227952"});
links.push({"source": "140550225229888", "target": "140550225227776"});
links.push({"source": "140550225229888", "target": "140550190496336"});
nodes["140550157469408"] = {"id": "140550157469408", "label": "autogen@5.18.16", "index": nodeArray.length};
nodeArray.push(nodes["140550157469408"]);
nodes["140550190496864"] = {"id": "140550190496864", "label": "flac@1.3.4", "index": nodeArray.length};
nodeArray.push(nodes["140550190496864"]);
nodes["140550190712720"] = {"id": "140550190712720", "label": "libusb@1.0.25", "index": nodeArray.length};
nodeArray.push(nodes["140550190712720"]);
nodes["140550157966080"] = {"id": "140550157966080", "label": "sbc@1.5", "index": nodeArray.length};
nodeArray.push(nodes["140550157966080"]);
links.push({"source": "140550157966080", "target": "140550459778960"});
links.push({"source": "140550157966080", "target": "140550225229888"});
nodes["140550227542720"] = {"id": "140550227542720", "label": "vulkan-headers@sdk-1.3.231.1", "index": nodeArray.length};
nodeArray.push(nodes["140550227542720"]);
nodes["140550227542544"] = {"id": "140550227542544", "label": "vulkan-loader@sdk-1.3.232", "index": nodeArray.length};
nodeArray.push(nodes["140550227542544"]);
links.push({"source": "140550227542544", "target": "140550160265920"});
links.push({"source": "140550227542544", "target": "140550168326320"});
links.push({"source": "140550227542544", "target": "140550459778960"});
links.push({"source": "140550227542544", "target": "140550160343392"});
links.push({"source": "140550227542544", "target": "140550170777488"});
links.push({"source": "140550227542544", "target": "140550227542720"});
nodes["140550154790624"] = {"id": "140550154790624", "label": "webrtc-audio-processing@0.3.1", "index": nodeArray.length};
nodeArray.push(nodes["140550154790624"]);
nodes["140550190898976"] = {"id": "140550190898976", "label": "playerctl@2.4.1", "index": nodeArray.length};
nodeArray.push(nodes["140550190898976"]);
links.push({"source": "140550190898976", "target": "140550156000528"});
links.push({"source": "140550190898976", "target": "140550459778960"});
links.push({"source": "140550190898976", "target": "140550156000000"});
nodes["140550223606640"] = {"id": "140550223606640", "label": "spdlog@1.12.0", "index": nodeArray.length};
nodeArray.push(nodes["140550223606640"]);
links.push({"source": "140550223606640", "target": "140550160268032"});
nodes["140550160268032"] = {"id": "140550160268032", "label": "catch2@3.4.0", "index": nodeArray.length};
nodeArray.push(nodes["140550160268032"]);
links.push({"source": "140550160268032", "target": "140550160375408"});
nodes["140550158044960"] = {"id": "140550158044960", "label": "wireplumber@0.4.14", "index": nodeArray.length};
nodeArray.push(nodes["140550158044960"]);
links.push({"source": "140550158044960", "target": "140550156000528"});
links.push({"source": "140550158044960", "target": "140550459778960"});
links.push({"source": "140550158044960", "target": "140550155915264"});
links.push({"source": "140550158044960", "target": "140550170778720"});
links.push({"source": "140550158044960", "target": "140550156000528"});
links.push({"source": "140550158044960", "target": "140550168426208"});
links.push({"source": "140550158044960", "target": "140550158020608"});
nodes["140550170778720"] = {"id": "140550170778720", "label": "elogind@252.9", "index": nodeArray.length};
nodeArray.push(nodes["140550170778720"]);
links.push({"source": "140550170778720", "target": "140550159684288"});
links.push({"source": "140550170778720", "target": "140550159683760"});
links.push({"source": "140550170778720", "target": "140550159773472"});
links.push({"source": "140550170778720", "target": "140550159771184"});
links.push({"source": "140550170778720", "target": "140550461082016"});
links.push({"source": "140550170778720", "target": "140550169727504"});
links.push({"source": "140550170778720", "target": "140550459779840"});
links.push({"source": "140550170778720", "target": "140550459778960"});
links.push({"source": "140550170778720", "target": "140550160343392"});
links.push({"source": "140550170778720", "target": "140550156519840"});
links.push({"source": "140550170778720", "target": "140550169780000"});
links.push({"source": "140550170778720", "target": "140550158044608"});
links.push({"source": "140550170778720", "target": "140550157880768"});
links.push({"source": "140550170778720", "target": "140550157899312"});
links.push({"source": "140550170778720", "target": "140550157879536"});
links.push({"source": "140550170778720", "target": "140550160498688"});
links.push({"source": "140550170778720", "target": "140550160501856"});
links.push({"source": "140550170778720", "target": "140550155915264"});
links.push({"source": "140550170778720", "target": "140550157923536"});
links.push({"source": "140550170778720", "target": "140550161305200"});
nodes["140550461082016"] = {"id": "140550461082016", "label": "gperf@3.1", "index": nodeArray.length};
nodeArray.push(nodes["140550461082016"]);
nodes["140550158044608"] = {"id": "140550158044608", "label": "kexec-tools@2.0.23", "index": nodeArray.length};
nodeArray.push(nodes["140550158044608"]);
nodes["140550157880768"] = {"id": "140550157880768", "label": "linux-pam@1.5.2", "index": nodeArray.length};
nodeArray.push(nodes["140550157880768"]);
nodes["140550160498688"] = {"id": "140550160498688", "label": "shadow@4.13", "index": nodeArray.length};
nodeArray.push(nodes["140550160498688"]);
nodes["140550160501856"] = {"id": "140550160501856", "label": "shepherd@0.9.3", "index": nodeArray.length};
nodeArray.push(nodes["140550160501856"]);
nodes["140550161305200"] = {"id": "140550161305200", "label": "acl@2.3.1", "index": nodeArray.length};
nodeArray.push(nodes["140550161305200"]);
nodes["140550168426208"] = {"id": "140550168426208", "label": "lua@5.3.5", "index": nodeArray.length};
nodeArray.push(nodes["140550168426208"]);
links.push({"source": "140550168426208", "target": "140550458590944"});
</script><script type="text/javascript" src="/gnu/store/d74zg27gc831j3ck7f3zvzgj9spaxnrb-guix-module-union/share/guile/site/3.0/guix/graph.js"></script></body></html>
|