-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3629 lines (3597 loc) · 242 KB
/
index.html
File metadata and controls
3629 lines (3597 loc) · 242 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>ceph-dashboard documentation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top visible-xs">
<a href="./" class="navbar-brand">ceph-dashboard documentation</a>
<button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button>
</div>
<div class="xs-menu menu" id="mobile-menu">
<div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu>
</div>
<div class="container-fluid main">
<div class="row main">
<div class="hidden-xs menu">
<compodoc-menu mode="normal"></compodoc-menu>
</div>
<!-- START CONTENT -->
<div class="content overview">
<div class="content-data">
<ol class="breadcrumb">
<li>Overview</li>
</ol>
<div class="text-center module-graph-container">
<div id="module-graph-svg">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: dependencies Pages: 1 -->
<svg width="25716pt" height="596pt"
viewBox="0.00 0.00 25716.00 596.11" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 592.1076)">
<title>dependencies</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-592.1076 25712,-592.1076 25712,4 -4,4"/>
<text text-anchor="start" x="12833.0091" y="-42.4" font-family="sans-serif" font-weight="bold" font-size="14.00" fill="#000000">Legend</text>
<polygon fill="#ffffb3" stroke="transparent" points="12620,-10 12620,-30 12640,-30 12640,-10 12620,-10"/>
<text text-anchor="start" x="12643.629" y="-15.4" font-family="sans-serif" font-size="14.00" fill="#000000">  Declarations</text>
<polygon fill="#8dd3c7" stroke="transparent" points="12733,-10 12733,-30 12753,-30 12753,-10 12733,-10"/>
<text text-anchor="start" x="12756.7251" y="-15.4" font-family="sans-serif" font-size="14.00" fill="#000000">  Module</text>
<polygon fill="#80b1d3" stroke="transparent" points="12819,-10 12819,-30 12839,-30 12839,-10 12819,-10"/>
<text text-anchor="start" x="12842.7812" y="-15.4" font-family="sans-serif" font-size="14.00" fill="#000000">  Bootstrap</text>
<polygon fill="#fdb462" stroke="transparent" points="12916,-10 12916,-30 12936,-30 12936,-10 12916,-10"/>
<text text-anchor="start" x="12939.6732" y="-15.4" font-family="sans-serif" font-size="14.00" fill="#000000">  Providers</text>
<polygon fill="#fb8072" stroke="transparent" points="13012,-10 13012,-30 13032,-30 13032,-10 13012,-10"/>
<text text-anchor="start" x="13035.7258" y="-15.4" font-family="sans-serif" font-size="14.00" fill="#000000">  Exports</text>
<g id="clust7" class="cluster">
<title>cluster_AppModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="3238,-214 3238,-580.1076 4444,-580.1076 4444,-214 3238,-214"/>
</g>
<g id="clust8" class="cluster">
<title>cluster_AppModule_declarations</title>
<polygon fill="none" stroke="#000000" points="3940,-384.1076 3940,-436.1076 4062,-436.1076 4062,-384.1076 3940,-384.1076"/>
</g>
<g id="clust9" class="cluster">
<title>cluster_AppModule_AppComponent_providers</title>
<polygon fill="none" stroke="#000000" points="3246,-222 3246,-368.1076 4062,-368.1076 4062,-222 3246,-222"/>
</g>
<g id="clust10" class="cluster">
<title>cluster_AppModule_imports</title>
<polygon fill="none" stroke="#000000" points="4070,-269.0538 4070,-436.1076 4436,-436.1076 4436,-269.0538 4070,-269.0538"/>
</g>
<g id="clust11" class="cluster">
<title>cluster_AppModule_exports</title>
<polygon fill="none" stroke="#000000" points="3791,-520.1076 3791,-572.1076 3909,-572.1076 3909,-520.1076 3791,-520.1076"/>
</g>
<g id="clust12" class="cluster">
<title>cluster_AppModule_bootstrap</title>
<polygon fill="none" stroke="#000000" points="3917,-520.1076 3917,-572.1076 4041,-572.1076 4041,-520.1076 3917,-520.1076"/>
</g>
<g id="clust13" class="cluster">
<title>cluster_AppModule_providers</title>
<polygon fill="none" stroke="#000000" points="3722,-384.1076 3722,-436.1076 3932,-436.1076 3932,-384.1076 3722,-384.1076"/>
</g>
<g id="clust20" class="cluster">
<title>cluster_AuthModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="14227,-138 14227,-321.0538 15475,-321.0538 15475,-138 14227,-138"/>
</g>
<g id="clust21" class="cluster">
<title>cluster_AuthModule_declarations</title>
<polygon fill="none" stroke="#000000" points="14235,-146 14235,-198 15467,-198 15467,-146 14235,-146"/>
</g>
<g id="clust34" class="cluster">
<title>cluster_BlockModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="15483,-261.0538 15483,-512.1076 19619,-512.1076 19619,-261.0538 15483,-261.0538"/>
</g>
<g id="clust35" class="cluster">
<title>cluster_BlockModule_declarations</title>
<polygon fill="none" stroke="#000000" points="15629,-269.0538 15629,-321.0538 19611,-321.0538 19611,-269.0538 15629,-269.0538"/>
</g>
<g id="clust56" class="cluster">
<title>cluster_BlockModule_imports</title>
<polygon fill="none" stroke="#000000" points="15491,-269.0538 15491,-321.0538 15621,-321.0538 15621,-269.0538 15491,-269.0538"/>
</g>
<g id="clust57" class="cluster">
<title>cluster_BlockModule_exports</title>
<polygon fill="none" stroke="#000000" points="17372,-452.1076 17372,-504.1076 17832,-504.1076 17832,-452.1076 17372,-452.1076"/>
</g>
<g id="clust60" class="cluster">
<title>cluster_CephfsModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="11820,-261.0538 11820,-436.1076 12516,-436.1076 12516,-261.0538 11820,-261.0538"/>
</g>
<g id="clust61" class="cluster">
<title>cluster_CephfsModule_declarations</title>
<polygon fill="none" stroke="#000000" points="11828,-269.0538 11828,-321.0538 12508,-321.0538 12508,-269.0538 11828,-269.0538"/>
</g>
<g id="clust70" class="cluster">
<title>cluster_CephModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="11368,-376.1076 11368,-512.1076 11812,-512.1076 11812,-376.1076 11368,-376.1076"/>
</g>
<g id="clust72" class="cluster">
<title>cluster_CephModule_imports</title>
<polygon fill="none" stroke="#000000" points="11376,-384.1076 11376,-504.1076 11804,-504.1076 11804,-384.1076 11376,-384.1076"/>
</g>
<g id="clust82" class="cluster">
<title>cluster_ClusterModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="8302,-376.1076 8302,-444.1076 11360,-444.1076 11360,-376.1076 8302,-376.1076"/>
</g>
<g id="clust83" class="cluster">
<title>cluster_ClusterModule_declarations</title>
<polygon fill="none" stroke="#000000" points="8466,-384.1076 8466,-436.1076 11352,-436.1076 11352,-384.1076 8466,-384.1076"/>
</g>
<g id="clust100" class="cluster">
<title>cluster_ClusterModule_imports</title>
<polygon fill="none" stroke="#000000" points="8310,-384.1076 8310,-436.1076 8458,-436.1076 8458,-384.1076 8310,-384.1076"/>
</g>
<g id="clust104" class="cluster">
<title>cluster_ComponentsModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="8,-138 8,-444.1076 3230,-444.1076 3230,-138 8,-138"/>
</g>
<g id="clust105" class="cluster">
<title>cluster_ComponentsModule_declarations</title>
<polygon fill="none" stroke="#000000" points="16,-146 16,-198 3080,-198 3080,-146 16,-146"/>
</g>
<g id="clust124" class="cluster">
<title>cluster_ComponentsModule_imports</title>
<polygon fill="none" stroke="#000000" points="3088,-146 3088,-198 3222,-198 3222,-146 3088,-146"/>
</g>
<g id="clust125" class="cluster">
<title>cluster_ComponentsModule_exports</title>
<polygon fill="none" stroke="#000000" points="224,-384.1076 224,-436.1076 2881,-436.1076 2881,-384.1076 224,-384.1076"/>
</g>
<g id="clust128" class="cluster">
<title>cluster_CoreModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="12524,-376.1076 12524,-444.1076 13146,-444.1076 13146,-376.1076 12524,-376.1076"/>
</g>
<g id="clust129" class="cluster">
<title>cluster_CoreModule_declarations</title>
<polygon fill="none" stroke="#000000" points="12682,-384.1076 12682,-436.1076 12992,-436.1076 12992,-384.1076 12682,-384.1076"/>
</g>
<g id="clust132" class="cluster">
<title>cluster_CoreModule_imports</title>
<polygon fill="none" stroke="#000000" points="13000,-384.1076 13000,-436.1076 13138,-436.1076 13138,-384.1076 13000,-384.1076"/>
</g>
<g id="clust133" class="cluster">
<title>cluster_CoreModule_exports</title>
<polygon fill="none" stroke="#000000" points="12532,-384.1076 12532,-436.1076 12674,-436.1076 12674,-384.1076 12532,-384.1076"/>
</g>
<g id="clust136" class="cluster">
<title>cluster_DashboardModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="10335,-261.0538 10335,-329.0538 11812,-329.0538 11812,-261.0538 10335,-261.0538"/>
</g>
<g id="clust137" class="cluster">
<title>cluster_DashboardModule_declarations</title>
<polygon fill="none" stroke="#000000" points="10343,-269.0538 10343,-321.0538 11652,-321.0538 11652,-269.0538 10343,-269.0538"/>
</g>
<g id="clust147" class="cluster">
<title>cluster_DashboardModule_imports</title>
<polygon fill="none" stroke="#000000" points="11660,-269.0538 11660,-321.0538 11804,-321.0538 11804,-269.0538 11660,-269.0538"/>
</g>
<g id="clust151" class="cluster">
<title>cluster_DataTableModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="4452,-70 4452,-329.0538 4970,-329.0538 4970,-70 4452,-70"/>
</g>
<g id="clust152" class="cluster">
<title>cluster_DataTableModule_declarations</title>
<polygon fill="none" stroke="#000000" points="4465,-78 4465,-130 4957,-130 4957,-78 4465,-78"/>
</g>
<g id="clust157" class="cluster">
<title>cluster_DataTableModule_exports</title>
<polygon fill="none" stroke="#000000" points="4460,-269.0538 4460,-321.0538 4962,-321.0538 4962,-269.0538 4460,-269.0538"/>
</g>
<g id="clust160" class="cluster">
<title>cluster_DirectivesModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="20635,-261.0538 20635,-329.0538 23097,-329.0538 23097,-261.0538 20635,-261.0538"/>
</g>
<g id="clust161" class="cluster">
<title>cluster_DirectivesModule_declarations</title>
<polygon fill="none" stroke="#000000" points="21883,-269.0538 21883,-321.0538 23089,-321.0538 23089,-269.0538 21883,-269.0538"/>
</g>
<g id="clust170" class="cluster">
<title>cluster_DirectivesModule_exports</title>
<polygon fill="none" stroke="#000000" points="20643,-269.0538 20643,-321.0538 21875,-321.0538 21875,-269.0538 20643,-269.0538"/>
</g>
<g id="clust173" class="cluster">
<title>cluster_MgrModulesModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="8029,-261.0538 8029,-329.0538 8635,-329.0538 8635,-261.0538 8029,-261.0538"/>
</g>
<g id="clust174" class="cluster">
<title>cluster_MgrModulesModule_declarations</title>
<polygon fill="none" stroke="#000000" points="8037,-269.0538 8037,-321.0538 8627,-321.0538 8627,-269.0538 8037,-269.0538"/>
</g>
<g id="clust182" class="cluster">
<title>cluster_MirroringModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="15483,-138 15483,-206 16733,-206 16733,-138 15483,-138"/>
</g>
<g id="clust183" class="cluster">
<title>cluster_MirroringModule_declarations</title>
<polygon fill="none" stroke="#000000" points="15655,-146 15655,-198 16725,-198 16725,-146 15655,-146"/>
</g>
<g id="clust191" class="cluster">
<title>cluster_MirroringModule_exports</title>
<polygon fill="none" stroke="#000000" points="15491,-146 15491,-198 15647,-198 15647,-146 15491,-146"/>
</g>
<g id="clust194" class="cluster">
<title>cluster_NavigationModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="12524,-261.0538 12524,-329.0538 14219,-329.0538 14219,-261.0538 12524,-261.0538"/>
</g>
<g id="clust195" class="cluster">
<title>cluster_NavigationModule_declarations</title>
<polygon fill="none" stroke="#000000" points="12881,-269.0538 12881,-321.0538 14211,-321.0538 14211,-269.0538 12881,-269.0538"/>
</g>
<g id="clust205" class="cluster">
<title>cluster_NavigationModule_exports</title>
<polygon fill="none" stroke="#000000" points="12532,-269.0538 12532,-321.0538 12873,-321.0538 12873,-269.0538 12532,-269.0538"/>
</g>
<g id="clust208" class="cluster">
<title>cluster_NfsModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="8643,-261.0538 8643,-329.0538 9583,-329.0538 9583,-261.0538 8643,-261.0538"/>
</g>
<g id="clust209" class="cluster">
<title>cluster_NfsModule_declarations</title>
<polygon fill="none" stroke="#000000" points="8801,-269.0538 8801,-321.0538 9575,-321.0538 9575,-269.0538 8801,-269.0538"/>
</g>
<g id="clust216" class="cluster">
<title>cluster_NfsModule_exports</title>
<polygon fill="none" stroke="#000000" points="8651,-269.0538 8651,-321.0538 8793,-321.0538 8793,-269.0538 8651,-269.0538"/>
</g>
<g id="clust219" class="cluster">
<title>cluster_PerformanceCounterModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="9591,-261.0538 9591,-329.0538 10327,-329.0538 10327,-261.0538 9591,-261.0538"/>
</g>
<g id="clust220" class="cluster">
<title>cluster_PerformanceCounterModule_declarations</title>
<polygon fill="none" stroke="#000000" points="9857,-269.0538 9857,-321.0538 10319,-321.0538 10319,-269.0538 9857,-269.0538"/>
</g>
<g id="clust224" class="cluster">
<title>cluster_PerformanceCounterModule_exports</title>
<polygon fill="none" stroke="#000000" points="9599,-269.0538 9599,-321.0538 9849,-321.0538 9849,-269.0538 9599,-269.0538"/>
</g>
<g id="clust227" class="cluster">
<title>cluster_PipesModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="23105,-70 23105,-329.0538 25700,-329.0538 25700,-70 23105,-70"/>
</g>
<g id="clust228" class="cluster">
<title>cluster_PipesModule_declarations</title>
<polygon fill="none" stroke="#000000" points="23147,-78 23147,-130 25658,-130 25658,-78 23147,-78"/>
</g>
<g id="clust250" class="cluster">
<title>cluster_PipesModule_exports</title>
<polygon fill="none" stroke="#000000" points="23113,-269.0538 23113,-321.0538 25692,-321.0538 25692,-269.0538 23113,-269.0538"/>
</g>
<g id="clust253" class="cluster">
<title>cluster_PoolModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="19777,-261.0538 19777,-512.1076 20627,-512.1076 20627,-261.0538 19777,-261.0538"/>
</g>
<g id="clust254" class="cluster">
<title>cluster_PoolModule_declarations</title>
<polygon fill="none" stroke="#000000" points="19915,-269.0538 19915,-321.0538 20619,-321.0538 20619,-269.0538 19915,-269.0538"/>
</g>
<g id="clust259" class="cluster">
<title>cluster_PoolModule_imports</title>
<polygon fill="none" stroke="#000000" points="19785,-269.0538 19785,-321.0538 19907,-321.0538 19907,-269.0538 19785,-269.0538"/>
</g>
<g id="clust260" class="cluster">
<title>cluster_PoolModule_exports</title>
<polygon fill="none" stroke="#000000" points="19785,-452.1076 19785,-504.1076 20092,-504.1076 20092,-452.1076 19785,-452.1076"/>
</g>
<g id="clust263" class="cluster">
<title>cluster_RgwModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="4602,-376.1076 4602,-580.1076 7255,-580.1076 7255,-376.1076 4602,-376.1076"/>
</g>
<g id="clust264" class="cluster">
<title>cluster_RgwModule_declarations</title>
<polygon fill="none" stroke="#000000" points="4610,-384.1076 4610,-436.1076 7247,-436.1076 7247,-384.1076 4610,-384.1076"/>
</g>
<g id="clust279" class="cluster">
<title>cluster_RgwModule_exports</title>
<polygon fill="none" stroke="#000000" points="5231,-520.1076 5231,-572.1076 6765,-572.1076 6765,-520.1076 5231,-520.1076"/>
</g>
<g id="clust282" class="cluster">
<title>cluster_RoutedAuthModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="14623,-384.1076 14623,-436.1076 14767,-436.1076 14767,-384.1076 14623,-384.1076"/>
</g>
<g id="clust288" class="cluster">
<title>cluster_RoutedBlockModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="15325,-452.1076 15325,-504.1076 15475,-504.1076 15475,-452.1076 15325,-452.1076"/>
</g>
<g id="clust294" class="cluster">
<title>cluster_RoutedPoolModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="19627,-452.1076 19627,-504.1076 19769,-504.1076 19769,-452.1076 19627,-452.1076"/>
</g>
<g id="clust300" class="cluster">
<title>cluster_RoutedRgwModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="4452,-520.1076 4452,-572.1076 4594,-572.1076 4594,-520.1076 4452,-520.1076"/>
</g>
<g id="clust312" class="cluster">
<title>cluster_SharedModule</title>
<polygon fill="none" stroke="#000000" stroke-dasharray="1,5" points="7291,-376.1076 7291,-444.1076 8294,-444.1076 8294,-376.1076 7291,-376.1076"/>
</g>
<g id="clust314" class="cluster">
<title>cluster_SharedModule_imports</title>
<polygon fill="none" stroke="#000000" points="8190,-384.1076 8190,-436.1076 8286,-436.1076 8286,-384.1076 8190,-384.1076"/>
</g>
<g id="clust315" class="cluster">
<title>cluster_SharedModule_exports</title>
<polygon fill="none" stroke="#000000" points="7675,-384.1076 7675,-436.1076 8182,-436.1076 8182,-384.1076 7675,-384.1076"/>
</g>
<g id="clust317" class="cluster">
<title>cluster_SharedModule_providers</title>
<polygon fill="none" stroke="#000000" points="7299,-384.1076 7299,-436.1076 7667,-436.1076 7667,-384.1076 7299,-384.1076"/>
</g>
<!-- AppComponent -->
<g id="node1" class="node">
<title>AppComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="4053.9399,-428.1076 3948.0601,-428.1076 3948.0601,-392.1076 4053.9399,-392.1076 4053.9399,-428.1076"/>
<text text-anchor="middle" x="4001" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">AppComponent</text>
</g>
<!-- AppModule -->
<g id="node2" class="node">
<title>AppModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="3955.6571,-496.1076 3952.6571,-500.1076 3931.6571,-500.1076 3928.6571,-496.1076 3872.3429,-496.1076 3872.3429,-460.1076 3955.6571,-460.1076 3955.6571,-496.1076"/>
<text text-anchor="middle" x="3914" y="-473.9076" font-family="Times,serif" font-size="14.00" fill="#000000">AppModule</text>
</g>
<!-- AppComponent->AppModule -->
<g id="edge1" class="edge">
<title>AppComponent->AppModule</title>
<path fill="none" stroke="#000000" d="M3952.0544,-428.3304C3952.0544,-428.3304 3952.0544,-449.8346 3952.0544,-449.8346"/>
<polygon fill="#000000" stroke="#000000" points="3948.5544,-449.8346 3952.0544,-459.8346 3955.5544,-449.8346 3948.5544,-449.8346"/>
</g>
<!-- SharedModule -->
<g id="node8" class="node">
<title>SharedModule </title>
<polygon fill="#fb8072" stroke="#000000" points="3900.9222,-564.1076 3799.0778,-564.1076 3799.0778,-528.1076 3900.9222,-528.1076 3900.9222,-564.1076"/>
<text text-anchor="middle" x="3850" y="-541.9076" font-family="Times,serif" font-size="14.00" fill="#000000">SharedModule </text>
</g>
<!-- AppModule->SharedModule -->
<g id="edge7" class="edge">
<title>AppModule->SharedModule </title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M3886.5665,-496.3304C3886.5665,-496.3304 3886.5665,-517.8346 3886.5665,-517.8346"/>
<polygon fill="#000000" stroke="#000000" points="3883.0665,-517.8346 3886.5665,-527.8346 3890.0665,-517.8346 3883.0665,-517.8346"/>
</g>
<!-- AppComponent -->
<g id="node9" class="node">
<title>AppComponent </title>
<polygon fill="#80b1d3" stroke="#000000" points="4033.439,-564.1076 3924.561,-564.1076 3924.561,-528.1076 4033.439,-528.1076 4033.439,-564.1076"/>
<text text-anchor="middle" x="3979" y="-541.9076" font-family="Times,serif" font-size="14.00" fill="#000000">AppComponent </text>
</g>
<!-- AppModule->AppComponent -->
<g id="edge8" class="edge">
<title>AppModule->AppComponent </title>
<path fill="none" stroke="#000000" stroke-dasharray="1,5" d="M3940.1794,-496.3304C3940.1794,-496.3304 3940.1794,-517.8346 3940.1794,-517.8346"/>
<polygon fill="#000000" stroke="#000000" points="3936.6794,-517.8346 3940.1794,-527.8346 3943.6794,-517.8346 3936.6794,-517.8346"/>
</g>
<!-- {
   provide: TooltipConfig, useFactory: (): TooltipConfig => Object.assign(new TooltipConfig(), {
       container:
   })
} -->
<g id="node3" class="node">
<title>{
   provide: TooltipConfig, useFactory: (): TooltipConfig => Object.assign(new TooltipConfig(), {
       container:
   })
}</title>
<ellipse fill="#fdb462" stroke="#000000" cx="3654" cy="-295.0538" rx="400.1427" ry="65.1077"/>
<text text-anchor="middle" x="3654" y="-324.4538" font-family="Times,serif" font-size="14.00" fill="#000000">{</text>
<text text-anchor="middle" x="3654" y="-307.6538" font-family="Times,serif" font-size="14.00" fill="#000000">    provide: TooltipConfig, useFactory: (): TooltipConfig => Object.assign(new TooltipConfig(), {</text>
<text text-anchor="middle" x="3654" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">        container: </text>
<text text-anchor="middle" x="3654" y="-274.0538" font-family="Times,serif" font-size="14.00" fill="#000000">    })</text>
<text text-anchor="middle" x="3654" y="-257.2538" font-family="Times,serif" font-size="14.00" fill="#000000">}</text>
</g>
<!-- {
   provide: TooltipConfig, useFactory: (): TooltipConfig => Object.assign(new TooltipConfig(), {
       container:
   })
}->AppComponent -->
<g id="edge2" class="edge">
<title>{
   provide: TooltipConfig, useFactory: (): TooltipConfig => Object.assign(new TooltipConfig(), {
       container:
   })
}->AppComponent</title>
<path fill="none" stroke="#000000" d="M4001,-327.7159C4001,-327.7159 4001,-382.0316 4001,-382.0316"/>
<polygon fill="#000000" stroke="#000000" points="3997.5001,-382.0316 4001,-392.0316 4004.5001,-382.0317 3997.5001,-382.0316"/>
</g>
<!-- AppRoutingModule -->
<g id="node4" class="node">
<title>AppRoutingModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="4323.2744,-313.0538 4320.2744,-317.0538 4299.2744,-317.0538 4296.2744,-313.0538 4194.7256,-313.0538 4194.7256,-277.0538 4323.2744,-277.0538 4323.2744,-313.0538"/>
<text text-anchor="middle" x="4259" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">AppRoutingModule</text>
</g>
<!-- AppRoutingModule->AppModule -->
<g id="edge3" class="edge">
<title>AppRoutingModule->AppModule</title>
<path fill="none" stroke="#000000" d="M4297.6323,-313.2526C4297.6323,-357.1218 4297.6323,-465.1076 4297.6323,-465.1076 4297.6323,-465.1076 3965.7857,-465.1076 3965.7857,-465.1076"/>
<polygon fill="#000000" stroke="#000000" points="3965.7857,-461.6077 3955.7857,-465.1076 3965.7856,-468.6077 3965.7857,-461.6077"/>
</g>
<!-- CephfsModule -->
<g id="node48" class="node">
<title>CephfsModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="11965.7064,-428.1076 11962.7064,-432.1076 11941.7064,-432.1076 11938.7064,-428.1076 11866.2936,-428.1076 11866.2936,-392.1076 11965.7064,-392.1076 11965.7064,-428.1076"/>
<text text-anchor="middle" x="11916" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">CephfsModule</text>
</g>
<!-- AppRoutingModule->CephfsModule -->
<g id="edge47" class="edge">
<title>AppRoutingModule->CephfsModule</title>
<path fill="none" stroke="#000000" d="M4246.1226,-313.118C4246.1226,-319.9496 4246.1226,-326.1076 4246.1226,-326.1076 4246.1226,-326.1076 11945.7619,-326.1076 11945.7619,-326.1076 11945.7619,-326.1076 11945.7619,-381.8809 11945.7619,-381.8809"/>
<polygon fill="#000000" stroke="#000000" points="11942.262,-381.8809 11945.7619,-391.8809 11949.262,-381.8809 11942.262,-381.8809"/>
</g>
<!-- MgrModulesModule -->
<g id="node69" class="node">
<title>MgrModulesModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="8450.1499,-428.1076 8447.1499,-432.1076 8426.1499,-432.1076 8423.1499,-428.1076 8317.8501,-428.1076 8317.8501,-392.1076 8450.1499,-392.1076 8450.1499,-428.1076"/>
<text text-anchor="middle" x="8384" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">MgrModulesModule</text>
</g>
<!-- AppRoutingModule->MgrModulesModule -->
<g id="edge147" class="edge">
<title>AppRoutingModule->MgrModulesModule</title>
<path fill="none" stroke="#000000" d="M4220.3677,-313.2771C4220.3677,-321.3736 4220.3677,-329.1076 4220.3677,-329.1076 4220.3677,-329.1076 8374.6665,-329.1076 8374.6665,-329.1076 8374.6665,-329.1076 8374.6665,-381.7275 8374.6665,-381.7275"/>
<polygon fill="#000000" stroke="#000000" points="8371.1666,-381.7275 8374.6665,-391.7275 8378.1666,-381.7275 8371.1666,-381.7275"/>
</g>
<!-- NavigationModule -->
<g id="node108" class="node">
<title>NavigationModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="13129.7576,-428.1076 13126.7576,-432.1076 13105.7576,-432.1076 13102.7576,-428.1076 13008.2424,-428.1076 13008.2424,-392.1076 13129.7576,-392.1076 13129.7576,-428.1076"/>
<text text-anchor="middle" x="13069" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">NavigationModule</text>
</g>
<!-- AppRoutingModule->NavigationModule -->
<g id="edge165" class="edge">
<title>AppRoutingModule->NavigationModule</title>
<path fill="none" stroke="#000000" d="M4271.8774,-313.2958C4271.8774,-318.654 4271.8774,-323.1076 4271.8774,-323.1076 4271.8774,-323.1076 13029.2488,-323.1076 13029.2488,-323.1076 13029.2488,-323.1076 13029.2488,-382.0812 13029.2488,-382.0812"/>
<polygon fill="#000000" stroke="#000000" points="13025.7489,-382.0812 13029.2488,-392.0812 13032.7489,-382.0812 13025.7489,-382.0812"/>
</g>
<!-- CephModule -->
<g id="node5" class="node">
<title>CephModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="4427.6011,-428.1076 4424.6011,-432.1076 4403.6011,-432.1076 4400.6011,-428.1076 4338.3989,-428.1076 4338.3989,-392.1076 4427.6011,-392.1076 4427.6011,-428.1076"/>
<text text-anchor="middle" x="4383" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">CephModule</text>
</g>
<!-- CephModule->AppModule -->
<g id="edge4" class="edge">
<title>CephModule->AppModule</title>
<path fill="none" stroke="#000000" d="M4397.8502,-428.1302C4397.8502,-445.481 4397.8502,-469.1076 4397.8502,-469.1076 4397.8502,-469.1076 3965.6716,-469.1076 3965.6716,-469.1076"/>
<polygon fill="#000000" stroke="#000000" points="3965.6716,-465.6077 3955.6716,-469.1076 3965.6715,-472.6077 3965.6716,-465.6077"/>
</g>
<!-- CoreModule -->
<g id="node6" class="node">
<title>CoreModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="4428.2619,-313.0538 4425.2619,-317.0538 4404.2619,-317.0538 4401.2619,-313.0538 4341.7381,-313.0538 4341.7381,-277.0538 4428.2619,-277.0538 4428.2619,-313.0538"/>
<text text-anchor="middle" x="4385" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">CoreModule</text>
</g>
<!-- CoreModule->AppModule -->
<g id="edge5" class="edge">
<title>CoreModule->AppModule</title>
<path fill="none" stroke="#000000" d="M4341.6031,-295.1076C4335.3159,-295.1076 4330.9183,-295.1076 4330.9183,-295.1076 4330.9183,-295.1076 4330.9183,-467.1076 4330.9183,-467.1076 4330.9183,-467.1076 3965.8846,-467.1076 3965.8846,-467.1076"/>
<polygon fill="#000000" stroke="#000000" points="3965.8846,-463.6077 3955.8846,-467.1076 3965.8846,-470.6077 3965.8846,-463.6077"/>
</g>
<!-- NavigationModule -->
<g id="node109" class="node">
<title>NavigationModule </title>
<polygon fill="#fb8072" stroke="#000000" points="12665.7577,-428.1076 12540.2423,-428.1076 12540.2423,-392.1076 12665.7577,-392.1076 12665.7577,-428.1076"/>
<text text-anchor="middle" x="12603" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">NavigationModule </text>
</g>
<!-- CoreModule->NavigationModule -->
<g id="edge112" class="edge">
<title>CoreModule->NavigationModule </title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M4351.1671,-313.0916C4351.1671,-338.0583 4351.1671,-380.1076 4351.1671,-380.1076 4351.1671,-380.1076 12603.0544,-380.1076 12603.0544,-380.1076 12603.0544,-380.1076 12603.0544,-381.9644 12603.0544,-381.9644"/>
<polygon fill="#000000" stroke="#000000" points="12599.5544,-381.9644 12603.0544,-391.9644 12606.5544,-381.9645 12599.5544,-381.9644"/>
</g>
<!-- SharedModule -->
<g id="node7" class="node">
<title>SharedModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="4176.4231,-313.0538 4173.4231,-317.0538 4152.4231,-317.0538 4149.4231,-313.0538 4077.5769,-313.0538 4077.5769,-277.0538 4176.4231,-277.0538 4176.4231,-313.0538"/>
<text text-anchor="middle" x="4127" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">SharedModule</text>
</g>
<!-- SharedModule->AppModule -->
<g id="edge6" class="edge">
<title>SharedModule->AppModule</title>
<path fill="none" stroke="#000000" d="M4109.1051,-313.3584C4109.1051,-356.9143 4109.1051,-463.1076 4109.1051,-463.1076 4109.1051,-463.1076 3965.8549,-463.1076 3965.8549,-463.1076"/>
<polygon fill="#000000" stroke="#000000" points="3965.855,-459.6077 3955.8549,-463.1076 3965.8549,-466.6077 3965.855,-459.6077"/>
</g>
<!-- SharedModule->CephModule -->
<g id="edge54" class="edge">
<title>SharedModule->CephModule</title>
<path fill="none" stroke="#000000" d="M4091.2101,-313.2844C4091.2101,-345.7265 4091.2101,-410.1076 4091.2101,-410.1076 4091.2101,-410.1076 4328.3658,-410.1076 4328.3658,-410.1076"/>
<polygon fill="#000000" stroke="#000000" points="4328.3658,-413.6077 4338.3658,-410.1076 4328.3657,-406.6077 4328.3658,-413.6077"/>
</g>
<!-- AuthModule -->
<g id="node19" class="node">
<title>AuthModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="14738.5482,-313.0538 14735.5482,-317.0538 14714.5482,-317.0538 14711.5482,-313.0538 14651.4518,-313.0538 14651.4518,-277.0538 14738.5482,-277.0538 14738.5482,-313.0538"/>
<text text-anchor="middle" x="14695" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">AuthModule</text>
</g>
<!-- SharedModule->AuthModule -->
<g id="edge18" class="edge">
<title>SharedModule->AuthModule</title>
<path fill="none" stroke="#000000" d="M4102.3945,-277.0357C4102.3945,-260.3522 4102.3945,-238.1076 4102.3945,-238.1076 4102.3945,-238.1076 14661.1664,-238.1076 14661.1664,-238.1076 14661.1664,-238.1076 14661.1664,-267.0357 14661.1664,-267.0357"/>
<polygon fill="#000000" stroke="#000000" points="14657.6665,-267.0357 14661.1664,-277.0357 14664.6665,-267.0357 14657.6665,-267.0357"/>
</g>
<!-- BlockModule -->
<g id="node40" class="node">
<title>BlockModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="17645.4916,-428.1076 17642.4916,-432.1076 17621.4916,-432.1076 17618.4916,-428.1076 17552.5084,-428.1076 17552.5084,-392.1076 17645.4916,-392.1076 17645.4916,-428.1076"/>
<text text-anchor="middle" x="17599" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">BlockModule</text>
</g>
<!-- SharedModule->BlockModule -->
<g id="edge40" class="edge">
<title>SharedModule->BlockModule</title>
<path fill="none" stroke="#000000" d="M4162.7899,-313.1491C4162.7899,-317.5949 4162.7899,-321.1076 4162.7899,-321.1076 4162.7899,-321.1076 17567.3693,-321.1076 17567.3693,-321.1076 17567.3693,-321.1076 17567.3693,-382.0972 17567.3693,-382.0972"/>
<polygon fill="#000000" stroke="#000000" points="17563.8694,-382.0971 17567.3693,-392.0972 17570.8694,-382.0972 17563.8694,-382.0971"/>
</g>
<!-- MirroringModule -->
<g id="node41" class="node">
<title>MirroringModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="15613.2577,-313.0538 15610.2577,-317.0538 15589.2577,-317.0538 15586.2577,-313.0538 15498.7423,-313.0538 15498.7423,-277.0538 15613.2577,-277.0538 15613.2577,-313.0538"/>
<text text-anchor="middle" x="15556" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">MirroringModule</text>
</g>
<!-- SharedModule->MirroringModule -->
<g id="edge155" class="edge">
<title>SharedModule->MirroringModule</title>
<path fill="none" stroke="#000000" d="M4171.7374,-313.257C4171.7374,-314.4026 4171.7374,-315.1076 4171.7374,-315.1076 4171.7374,-315.1076 15536.8738,-315.1076 15536.8738,-315.1076 15536.8738,-315.1076 15536.8738,-314.9226 15536.8738,-314.9226"/>
<polygon fill="#000000" stroke="#000000" points="15540.3744,-323.2568 15536.8738,-313.257 15533.3744,-323.2572 15540.3744,-323.2568"/>
</g>
<!-- SharedModule->CephfsModule -->
<g id="edge48" class="edge">
<title>SharedModule->CephfsModule</title>
<path fill="none" stroke="#000000" d="M4153.8424,-313.3279C4153.8424,-320.5263 4153.8424,-327.1076 4153.8424,-327.1076 4153.8424,-327.1076 11925.9206,-327.1076 11925.9206,-327.1076 11925.9206,-327.1076 11925.9206,-382.0979 11925.9206,-382.0979"/>
<polygon fill="#000000" stroke="#000000" points="11922.4207,-382.0978 11925.9206,-392.0979 11929.4207,-382.0979 11922.4207,-382.0978"/>
</g>
<!-- ClusterModule -->
<g id="node49" class="node">
<title>ClusterModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="11483.9874,-496.1076 11480.9874,-500.1076 11459.9874,-500.1076 11456.9874,-496.1076 11384.0126,-496.1076 11384.0126,-460.1076 11483.9874,-460.1076 11483.9874,-496.1076"/>
<text text-anchor="middle" x="11434" y="-473.9076" font-family="Times,serif" font-size="14.00" fill="#000000">ClusterModule</text>
</g>
<!-- SharedModule->ClusterModule -->
<g id="edge73" class="edge">
<title>SharedModule->ClusterModule</title>
<path fill="none" stroke="#000000" d="M4118.0525,-313.3307C4118.0525,-353.1324 4118.0525,-444.1076 4118.0525,-444.1076 4118.0525,-444.1076 11410.7064,-444.1076 11410.7064,-444.1076 11410.7064,-444.1076 11410.7064,-449.9132 11410.7064,-449.9132"/>
<polygon fill="#000000" stroke="#000000" points="11407.2065,-449.9132 11410.7064,-459.9132 11414.2065,-449.9132 11407.2065,-449.9132"/>
</g>
<!-- DashboardModule -->
<g id="node50" class="node">
<title>DashboardModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="11796.191,-428.1076 11793.191,-432.1076 11772.191,-432.1076 11769.191,-428.1076 11675.809,-428.1076 11675.809,-392.1076 11796.191,-392.1076 11796.191,-428.1076"/>
<text text-anchor="middle" x="11736" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">DashboardModule</text>
</g>
<!-- SharedModule->DashboardModule -->
<g id="edge123" class="edge">
<title>SharedModule->DashboardModule</title>
<path fill="none" stroke="#000000" d="M4149.3687,-313.1115C4149.3687,-326.3809 4149.3687,-342.1076 4149.3687,-342.1076 4149.3687,-342.1076 11703.6159,-342.1076 11703.6159,-342.1076 11703.6159,-342.1076 11703.6159,-381.8849 11703.6159,-381.8849"/>
<polygon fill="#000000" stroke="#000000" points="11700.116,-381.8849 11703.6159,-391.8849 11707.116,-381.8849 11700.116,-381.8849"/>
</g>
<!-- NfsModule -->
<g id="node51" class="node">
<title>NfsModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="11463.762,-428.1076 11460.762,-432.1076 11439.762,-432.1076 11436.762,-428.1076 11384.238,-428.1076 11384.238,-392.1076 11463.762,-392.1076 11463.762,-428.1076"/>
<text text-anchor="middle" x="11424" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">NfsModule</text>
</g>
<!-- SharedModule->NfsModule -->
<g id="edge175" class="edge">
<title>SharedModule->NfsModule</title>
<path fill="none" stroke="#000000" d="M4140.4212,-313.0805C4140.4212,-329.1365 4140.4212,-350.1076 4140.4212,-350.1076 4140.4212,-350.1076 11437.2936,-350.1076 11437.2936,-350.1076 11437.2936,-350.1076 11437.2936,-382.1057 11437.2936,-382.1057"/>
<polygon fill="#000000" stroke="#000000" points="11433.7937,-382.1056 11437.2936,-392.1057 11440.7937,-382.1057 11433.7937,-382.1056"/>
</g>
<!-- PerformanceCounterModule -->
<g id="node52" class="node">
<title>PerformanceCounterModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="11658.1657,-428.1076 11655.1657,-432.1076 11634.1657,-432.1076 11631.1657,-428.1076 11481.8343,-428.1076 11481.8343,-392.1076 11658.1657,-392.1076 11658.1657,-428.1076"/>
<text text-anchor="middle" x="11570" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">PerformanceCounterModule</text>
</g>
<!-- SharedModule->PerformanceCounterModule -->
<g id="edge179" class="edge">
<title>SharedModule->PerformanceCounterModule</title>
<path fill="none" stroke="#000000" d="M4144.8949,-313.1244C4144.8949,-327.4617 4144.8949,-345.1076 4144.8949,-345.1076 4144.8949,-345.1076 11499.0376,-345.1076 11499.0376,-345.1076 11499.0376,-345.1076 11499.0376,-382.0015 11499.0376,-382.0015"/>
<polygon fill="#000000" stroke="#000000" points="11495.5377,-382.0015 11499.0376,-392.0015 11502.5377,-382.0016 11495.5377,-382.0015"/>
</g>
<!-- SharedModule->MgrModulesModule -->
<g id="edge148" class="edge">
<title>SharedModule->MgrModulesModule</title>
<path fill="none" stroke="#000000" d="M4135.9475,-313.0982C4135.9475,-329.4845 4135.9475,-351.1076 4135.9475,-351.1076 4135.9475,-351.1076 8355.6694,-351.1076 8355.6694,-351.1076 8355.6694,-351.1076 8355.6694,-382.0851 8355.6694,-382.0851"/>
<polygon fill="#000000" stroke="#000000" points="8352.1695,-382.0851 8355.6694,-392.0851 8359.1695,-382.0852 8352.1695,-382.0851"/>
</g>
<!-- SharedModule->NavigationModule -->
<g id="edge167" class="edge">
<title>SharedModule->NavigationModule</title>
<path fill="none" stroke="#000000" d="M4158.3162,-313.2891C4158.3162,-319.1264 4158.3162,-324.1076 4158.3162,-324.1076 4158.3162,-324.1076 13025.7275,-324.1076 13025.7275,-324.1076 13025.7275,-324.1076 13025.7275,-381.8693 13025.7275,-381.8693"/>
<polygon fill="#000000" stroke="#000000" points="13022.2276,-381.8692 13025.7275,-391.8693 13029.2276,-381.8693 13022.2276,-381.8692"/>
</g>
<!-- PoolModule -->
<g id="node215" class="node">
<title>PoolModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="19901.7233,-428.1076 19898.7233,-432.1076 19877.7233,-432.1076 19874.7233,-428.1076 19816.2767,-428.1076 19816.2767,-392.1076 19901.7233,-392.1076 19901.7233,-428.1076"/>
<text text-anchor="middle" x="19859" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">PoolModule</text>
</g>
<!-- SharedModule->PoolModule -->
<g id="edge228" class="edge">
<title>SharedModule->PoolModule</title>
<path fill="none" stroke="#000000" d="M4167.2636,-313.2616C4167.2636,-317.1472 4167.2636,-320.1076 4167.2636,-320.1076 4167.2636,-320.1076 19837.1629,-320.1076 19837.1629,-320.1076 19837.1629,-320.1076 19837.1629,-381.8948 19837.1629,-381.8948"/>
<polygon fill="#000000" stroke="#000000" points="19833.663,-381.8948 19837.1629,-391.8948 19840.663,-381.8948 19833.663,-381.8948"/>
</g>
<!-- RgwModule -->
<g id="node232" class="node">
<title>RgwModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="6003.993,-496.1076 6000.993,-500.1076 5979.993,-500.1076 5976.993,-496.1076 5918.007,-496.1076 5918.007,-460.1076 6003.993,-460.1076 6003.993,-496.1076"/>
<text text-anchor="middle" x="5961" y="-473.9076" font-family="Times,serif" font-size="14.00" fill="#000000">RgwModule</text>
</g>
<!-- SharedModule->RgwModule -->
<g id="edge246" class="edge">
<title>SharedModule->RgwModule</title>
<path fill="none" stroke="#000000" d="M4113.5788,-313.277C4113.5788,-360.8459 4113.5788,-485.1076 4113.5788,-485.1076 4113.5788,-485.1076 5907.6055,-485.1076 5907.6055,-485.1076"/>
<polygon fill="#000000" stroke="#000000" points="5907.6055,-488.6077 5917.6055,-485.1076 5907.6054,-481.6077 5907.6055,-488.6077"/>
</g>
<!-- ApiModule -->
<g id="node246" class="node">
<title>ApiModule </title>
<polygon fill="#fb8072" stroke="#000000" points="8174.047,-428.1076 8089.953,-428.1076 8089.953,-392.1076 8174.047,-392.1076 8174.047,-428.1076"/>
<text text-anchor="middle" x="8132" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">ApiModule </text>
</g>
<!-- SharedModule->ApiModule -->
<g id="edge263" class="edge">
<title>SharedModule->ApiModule </title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M4131.4737,-313.1042C4131.4737,-330.146 4131.4737,-353.1076 4131.4737,-353.1076 4131.4737,-353.1076 8132,-353.1076 8132,-353.1076 8132,-353.1076 8132,-382.0725 8132,-382.0725"/>
<polygon fill="#000000" stroke="#000000" points="8128.5001,-382.0725 8132,-392.0725 8135.5001,-382.0725 8128.5001,-382.0725"/>
</g>
<!-- DataTableModule -->
<g id="node247" class="node">
<title>DataTableModule </title>
<polygon fill="#fb8072" stroke="#000000" points="8071.8491,-428.1076 7950.1509,-428.1076 7950.1509,-392.1076 8071.8491,-392.1076 8071.8491,-428.1076"/>
<text text-anchor="middle" x="8011" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">DataTableModule </text>
</g>
<!-- SharedModule->DataTableModule -->
<g id="edge264" class="edge">
<title>SharedModule->DataTableModule </title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M4127,-313.0928C4127,-330.4594 4127,-354.1076 4127,-354.1076 4127,-354.1076 7997.4714,-354.1076 7997.4714,-354.1076 7997.4714,-354.1076 7997.4714,-382.0806 7997.4714,-382.0806"/>
<polygon fill="#000000" stroke="#000000" points="7993.9715,-382.0806 7997.4714,-392.0806 8000.9715,-382.0807 7993.9715,-382.0806"/>
</g>
<!-- DirectivesModule -->
<g id="node248" class="node">
<title>DirectivesModule </title>
<polygon fill="#fb8072" stroke="#000000" points="7932.0779,-428.1076 7811.9221,-428.1076 7811.9221,-392.1076 7932.0779,-392.1076 7932.0779,-428.1076"/>
<text text-anchor="middle" x="7872" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">DirectivesModule </text>
</g>
<!-- SharedModule->DirectivesModule -->
<g id="edge265" class="edge">
<title>SharedModule->DirectivesModule </title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M4122.5263,-313.372C4122.5263,-331.3558 4122.5263,-356.1076 4122.5263,-356.1076 4122.5263,-356.1076 7872,-356.1076 7872,-356.1076 7872,-356.1076 7872,-381.8257 7872,-381.8257"/>
<polygon fill="#000000" stroke="#000000" points="7868.5001,-381.8257 7872,-391.8257 7875.5001,-381.8257 7868.5001,-381.8257"/>
</g>
<!-- ServicesModule -->
<g id="node249" class="node">
<title>ServicesModule </title>
<polygon fill="#fb8072" stroke="#000000" points="7793.473,-428.1076 7682.527,-428.1076 7682.527,-392.1076 7793.473,-392.1076 7793.473,-428.1076"/>
<text text-anchor="middle" x="7738" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">ServicesModule </text>
</g>
<!-- SharedModule->ServicesModule -->
<g id="edge266" class="edge">
<title>SharedModule->ServicesModule </title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M4104.6313,-313.3364C4104.6313,-331.6407 4104.6313,-357.1076 4104.6313,-357.1076 4104.6313,-357.1076 7738,-357.1076 7738,-357.1076 7738,-357.1076 7738,-381.8681 7738,-381.8681"/>
<polygon fill="#000000" stroke="#000000" points="7734.5001,-381.868 7738,-391.8681 7741.5001,-381.8681 7734.5001,-381.868"/>
</g>
<!-- ApiInterceptorService -->
<g id="node10" class="node">
<title>ApiInterceptorService</title>
<ellipse fill="#fdb462" stroke="#000000" cx="3827" cy="-410.1076" rx="96.6656" ry="18"/>
<text text-anchor="middle" x="3827" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">ApiInterceptorService</text>
</g>
<!-- ApiInterceptorService->AppModule -->
<g id="edge9" class="edge">
<title>ApiInterceptorService->AppModule</title>
<path fill="none" stroke="#000000" d="M3898.0022,-422.5799C3898.0022,-422.5799 3898.0022,-450.0774 3898.0022,-450.0774"/>
<polygon fill="#000000" stroke="#000000" points="3894.5023,-450.0773 3898.0022,-460.0774 3901.5023,-450.0774 3894.5023,-450.0773"/>
</g>
<!-- LoginComponent -->
<g id="node11" class="node">
<title>LoginComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="15459.2758,-190 15344.7242,-190 15344.7242,-154 15459.2758,-154 15459.2758,-190"/>
<text text-anchor="middle" x="15402" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">LoginComponent</text>
</g>
<!-- LoginComponent->AuthModule -->
<g id="edge10" class="edge">
<title>LoginComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M15402,-190.0864C15402,-226.692 15402,-306.1076 15402,-306.1076 15402,-306.1076 14748.6925,-306.1076 14748.6925,-306.1076"/>
<polygon fill="#000000" stroke="#000000" points="14748.6925,-302.6077 14738.6925,-306.1076 14748.6924,-309.6077 14748.6925,-302.6077"/>
</g>
<!-- RoleDetailsComponent -->
<g id="node12" class="node">
<title>RoleDetailsComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="15326.927,-190 15179.073,-190 15179.073,-154 15326.927,-154 15326.927,-190"/>
<text text-anchor="middle" x="15253" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">RoleDetailsComponent</text>
</g>
<!-- RoleDetailsComponent->AuthModule -->
<g id="edge11" class="edge">
<title>RoleDetailsComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M15253,-190.2114C15253,-225.3578 15253,-299.1076 15253,-299.1076 15253,-299.1076 14748.7853,-299.1076 14748.7853,-299.1076"/>
<polygon fill="#000000" stroke="#000000" points="14748.7854,-295.6077 14738.7853,-299.1076 14748.7853,-302.6077 14748.7854,-295.6077"/>
</g>
<!-- RoleFormComponent -->
<g id="node13" class="node">
<title>RoleFormComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="15161.108,-190 15022.892,-190 15022.892,-154 15161.108,-154 15161.108,-190"/>
<text text-anchor="middle" x="15092" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">RoleFormComponent</text>
</g>
<!-- RoleFormComponent->AuthModule -->
<g id="edge12" class="edge">
<title>RoleFormComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M15092,-190.2418C15092,-223.8415 15092,-292.1076 15092,-292.1076 15092,-292.1076 14748.6216,-292.1076 14748.6216,-292.1076"/>
<polygon fill="#000000" stroke="#000000" points="14748.6216,-288.6077 14738.6216,-292.1076 14748.6215,-295.6077 14748.6216,-288.6077"/>
</g>
<!-- RoleListComponent -->
<g id="node14" class="node">
<title>RoleListComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="15004.5534,-190 14875.4466,-190 14875.4466,-154 15004.5534,-154 15004.5534,-190"/>
<text text-anchor="middle" x="14940" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">RoleListComponent</text>
</g>
<!-- RoleListComponent->AuthModule -->
<g id="edge13" class="edge">
<title>RoleListComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M14940,-190.1727C14940,-222.1456 14940,-285.1076 14940,-285.1076 14940,-285.1076 14748.8011,-285.1076 14748.8011,-285.1076"/>
<polygon fill="#000000" stroke="#000000" points="14748.8011,-281.6077 14738.8011,-285.1076 14748.8011,-288.6077 14748.8011,-281.6077"/>
</g>
<!-- SsoNotFoundComponent -->
<g id="node15" class="node">
<title>SsoNotFoundComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="14857.3398,-190 14698.6602,-190 14698.6602,-154 14857.3398,-154 14857.3398,-190"/>
<text text-anchor="middle" x="14778" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">SsoNotFoundComponent</text>
</g>
<!-- SsoNotFoundComponent->AuthModule -->
<g id="edge14" class="edge">
<title>SsoNotFoundComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M14718.8019,-190.157C14718.8019,-190.157 14718.8019,-266.8223 14718.8019,-266.8223"/>
<polygon fill="#000000" stroke="#000000" points="14715.302,-266.8223 14718.8019,-276.8223 14722.302,-266.8224 14715.302,-266.8223"/>
</g>
<!-- UserFormComponent -->
<g id="node16" class="node">
<title>UserFormComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="14681.0926,-190 14542.9074,-190 14542.9074,-154 14681.0926,-154 14681.0926,-190"/>
<text text-anchor="middle" x="14612" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">UserFormComponent</text>
</g>
<!-- UserFormComponent->AuthModule -->
<g id="edge15" class="edge">
<title>UserFormComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M14671.1064,-190.157C14671.1064,-190.157 14671.1064,-266.8223 14671.1064,-266.8223"/>
<polygon fill="#000000" stroke="#000000" points="14667.6065,-266.8223 14671.1064,-276.8223 14674.6065,-266.8224 14667.6065,-266.8223"/>
</g>
<!-- UserListComponent -->
<g id="node17" class="node">
<title>UserListComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="14524.538,-190 14395.462,-190 14395.462,-154 14524.538,-154 14524.538,-190"/>
<text text-anchor="middle" x="14460" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">UserListComponent</text>
</g>
<!-- UserListComponent->AuthModule -->
<g id="edge16" class="edge">
<title>UserListComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M14481.5895,-190.0807C14481.5895,-222.256 14481.5895,-286.1076 14481.5895,-286.1076 14481.5895,-286.1076 14641.2982,-286.1076 14641.2982,-286.1076"/>
<polygon fill="#000000" stroke="#000000" points="14641.2983,-289.6077 14651.2982,-286.1076 14641.2982,-282.6077 14641.2983,-289.6077"/>
</g>
<!-- UserTabsComponent -->
<g id="node18" class="node">
<title>UserTabsComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="14377.4706,-190 14242.5294,-190 14242.5294,-154 14377.4706,-154 14377.4706,-190"/>
<text text-anchor="middle" x="14310" y="-167.8" font-family="Times,serif" font-size="14.00" fill="#000000">UserTabsComponent</text>
</g>
<!-- UserTabsComponent->AuthModule -->
<g id="edge17" class="edge">
<title>UserTabsComponent->AuthModule</title>
<path fill="none" stroke="#000000" d="M14310,-190.165C14310,-224.4094 14310,-295.1076 14310,-295.1076 14310,-295.1076 14641.2104,-295.1076 14641.2104,-295.1076"/>
<polygon fill="#000000" stroke="#000000" points="14641.2105,-298.6077 14651.2104,-295.1076 14641.2104,-291.6077 14641.2105,-298.6077"/>
</g>
<!-- AuthModule->NavigationModule -->
<g id="edge166" class="edge">
<title>AuthModule->NavigationModule</title>
<path fill="none" stroke="#000000" d="M14651.1822,-304.1076C14577.8972,-304.1076 14438.4105,-304.1076 14438.4105,-304.1076 14438.4105,-304.1076 14438.4105,-424.1076 14438.4105,-424.1076 14438.4105,-424.1076 13140.0542,-424.1076 13140.0542,-424.1076"/>
<polygon fill="#000000" stroke="#000000" points="13140.0542,-420.6077 13130.0542,-424.1076 13140.0542,-427.6077 13140.0542,-420.6077"/>
</g>
<!-- RoutedAuthModule -->
<g id="node241" class="node">
<title>RoutedAuthModule</title>
<polygon fill="#8dd3c7" stroke="#000000" points="14758.9888,-428.1076 14755.9888,-432.1076 14734.9888,-432.1076 14731.9888,-428.1076 14631.0112,-428.1076 14631.0112,-392.1076 14758.9888,-392.1076 14758.9888,-428.1076"/>
<text text-anchor="middle" x="14695" y="-405.9076" font-family="Times,serif" font-size="14.00" fill="#000000">RoutedAuthModule</text>
</g>
<!-- AuthModule->RoutedAuthModule -->
<g id="edge255" class="edge">
<title>AuthModule->RoutedAuthModule</title>
<path fill="none" stroke="#000000" d="M14695,-313.2844C14695,-313.2844 14695,-381.9623 14695,-381.9623"/>
<polygon fill="#000000" stroke="#000000" points="14691.5001,-381.9623 14695,-391.9623 14698.5001,-381.9624 14691.5001,-381.9623"/>
</g>
<!-- IscsiComponent -->
<g id="node20" class="node">
<title>IscsiComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="17722.4874,-313.0538 17615.5126,-313.0538 17615.5126,-277.0538 17722.4874,-277.0538 17722.4874,-313.0538"/>
<text text-anchor="middle" x="17669" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiComponent</text>
</g>
<!-- IscsiComponent->BlockModule -->
<g id="edge19" class="edge">
<title>IscsiComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M17630.5011,-313.2844C17630.5011,-313.2844 17630.5011,-381.9623 17630.5011,-381.9623"/>
<polygon fill="#000000" stroke="#000000" points="17627.0011,-381.9623 17630.5011,-391.9623 17634.0011,-381.9624 17627.0011,-381.9623"/>
</g>
<!-- IscsiTabsComponent -->
<g id="node21" class="node">
<title>IscsiTabsComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="17597.1993,-313.0538 17462.8007,-313.0538 17462.8007,-277.0538 17597.1993,-277.0538 17597.1993,-313.0538"/>
<text text-anchor="middle" x="17530" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTabsComponent</text>
</g>
<!-- IscsiTabsComponent->BlockModule -->
<g id="edge20" class="edge">
<title>IscsiTabsComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M17582.2345,-313.2844C17582.2345,-313.2844 17582.2345,-381.9623 17582.2345,-381.9623"/>
<polygon fill="#000000" stroke="#000000" points="17578.7346,-381.9623 17582.2345,-391.9623 17585.7346,-381.9624 17578.7346,-381.9623"/>
</g>
<!-- IscsiTargetDetailsComponent -->
<g id="node22" class="node">
<title>IscsiTargetDetailsComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="17444.6727,-313.0538 17261.3273,-313.0538 17261.3273,-277.0538 17444.6727,-277.0538 17444.6727,-313.0538"/>
<text text-anchor="middle" x="17353" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTargetDetailsComponent</text>
</g>
<!-- IscsiTargetDetailsComponent->BlockModule -->
<g id="edge21" class="edge">
<title>IscsiTargetDetailsComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M17412.1703,-313.1202C17412.1703,-342.1869 17412.1703,-396.1076 17412.1703,-396.1076 17412.1703,-396.1076 17542.3369,-396.1076 17542.3369,-396.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.3369,-399.6077 17552.3369,-396.1076 17542.3369,-392.6077 17542.3369,-399.6077"/>
</g>
<!-- IscsiTargetDiscoveryModalComponent -->
<g id="node23" class="node">
<title>IscsiTargetDiscoveryModalComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="17243.6021,-313.0538 17006.3979,-313.0538 17006.3979,-277.0538 17243.6021,-277.0538 17243.6021,-313.0538"/>
<text text-anchor="middle" x="17125" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTargetDiscoveryModalComponent</text>
</g>
<!-- IscsiTargetDiscoveryModalComponent->BlockModule -->
<g id="edge22" class="edge">
<title>IscsiTargetDiscoveryModalComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M17125,-313.1786C17125,-342.9907 17125,-399.1076 17125,-399.1076 17125,-399.1076 17542.2538,-399.1076 17542.2538,-399.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.2539,-402.6077 17552.2538,-399.1076 17542.2538,-395.6077 17542.2539,-402.6077"/>
</g>
<!-- IscsiTargetFormComponent -->
<g id="node24" class="node">
<title>IscsiTargetFormComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="16987.8543,-313.0538 16814.1457,-313.0538 16814.1457,-277.0538 16987.8543,-277.0538 16987.8543,-313.0538"/>
<text text-anchor="middle" x="16901" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTargetFormComponent</text>
</g>
<!-- IscsiTargetFormComponent->BlockModule -->
<g id="edge23" class="edge">
<title>IscsiTargetFormComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M16901,-313.214C16901,-343.757 16901,-402.1076 16901,-402.1076 16901,-402.1076 17542.3904,-402.1076 17542.3904,-402.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.3904,-405.6077 17552.3904,-402.1076 17542.3904,-398.6077 17542.3904,-405.6077"/>
</g>
<!-- IscsiTargetImageSettingsModalComponent -->
<g id="node25" class="node">
<title>IscsiTargetImageSettingsModalComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="16796.1643,-313.0538 16535.8357,-313.0538 16535.8357,-277.0538 16796.1643,-277.0538 16796.1643,-313.0538"/>
<text text-anchor="middle" x="16666" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTargetImageSettingsModalComponent</text>
</g>
<!-- IscsiTargetImageSettingsModalComponent->BlockModule -->
<g id="edge24" class="edge">
<title>IscsiTargetImageSettingsModalComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M16666,-313.3921C16666,-344.9345 16666,-406.1076 16666,-406.1076 16666,-406.1076 17542.4132,-406.1076 17542.4132,-406.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.4132,-409.6077 17552.4132,-406.1076 17542.4131,-402.6077 17542.4132,-409.6077"/>
</g>
<!-- IscsiTargetIqnSettingsModalComponent -->
<g id="node26" class="node">
<title>IscsiTargetIqnSettingsModalComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="16517.8444,-313.0538 16274.1556,-313.0538 16274.1556,-277.0538 16517.8444,-277.0538 16517.8444,-313.0538"/>
<text text-anchor="middle" x="16396" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTargetIqnSettingsModalComponent</text>
</g>
<!-- IscsiTargetIqnSettingsModalComponent->BlockModule -->
<g id="edge25" class="edge">
<title>IscsiTargetIqnSettingsModalComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M16396,-313.126C16396,-345.2861 16396,-409.1076 16396,-409.1076 16396,-409.1076 17542.2102,-409.1076 17542.2102,-409.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.2102,-412.6077 17552.2102,-409.1076 17542.2102,-405.6077 17542.2102,-412.6077"/>
</g>
<!-- IscsiTargetListComponent -->
<g id="node27" class="node">
<title>IscsiTargetListComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="16255.7991,-313.0538 16090.2009,-313.0538 16090.2009,-277.0538 16255.7991,-277.0538 16255.7991,-313.0538"/>
<text text-anchor="middle" x="16173" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">IscsiTargetListComponent</text>
</g>
<!-- IscsiTargetListComponent->BlockModule -->
<g id="edge26" class="edge">
<title>IscsiTargetListComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M16173,-313.087C16173,-345.9215 16173,-412.1076 16173,-412.1076 16173,-412.1076 17542.3652,-412.1076 17542.3652,-412.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.3652,-415.6077 17552.3652,-412.1076 17542.3651,-408.6077 17542.3652,-415.6077"/>
</g>
<!-- RbdConfigurationFormComponent -->
<g id="node28" class="node">
<title>RbdConfigurationFormComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="16072.5475,-313.0538 15859.4525,-313.0538 15859.4525,-277.0538 16072.5475,-277.0538 16072.5475,-313.0538"/>
<text text-anchor="middle" x="15966" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdConfigurationFormComponent</text>
</g>
<!-- RbdConfigurationFormComponent->BlockModule -->
<g id="edge27" class="edge">
<title>RbdConfigurationFormComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M15966,-313.2874C15966,-346.8721 15966,-415.1076 15966,-415.1076 15966,-415.1076 17542.3242,-415.1076 17542.3242,-415.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.3242,-418.6077 17552.3242,-415.1076 17542.3242,-411.6077 17542.3242,-418.6077"/>
</g>
<!-- RbdConfigurationListComponent -->
<g id="node29" class="node">
<title>RbdConfigurationListComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="15841.4916,-313.0538 15636.5084,-313.0538 15636.5084,-277.0538 15841.4916,-277.0538 15841.4916,-313.0538"/>
<text text-anchor="middle" x="15739" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdConfigurationListComponent</text>
</g>
<!-- RbdConfigurationListComponent->BlockModule -->
<g id="edge28" class="edge">
<title>RbdConfigurationListComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M15739,-313.0923C15739,-347.4983 15739,-419.1076 15739,-419.1076 15739,-419.1076 17542.092,-419.1076 17542.092,-419.1076"/>
<polygon fill="#000000" stroke="#000000" points="17542.092,-422.6077 17552.092,-419.1076 17542.0919,-415.6077 17542.092,-422.6077"/>
</g>
<!-- RbdDetailsComponent -->
<g id="node30" class="node">
<title>RbdDetailsComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="19603.3216,-313.0538 19458.6784,-313.0538 19458.6784,-277.0538 19603.3216,-277.0538 19603.3216,-313.0538"/>
<text text-anchor="middle" x="19531" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdDetailsComponent</text>
</g>
<!-- RbdDetailsComponent->BlockModule -->
<g id="edge29" class="edge">
<title>RbdDetailsComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M19531,-313.2377C19531,-347.9211 19531,-420.1076 19531,-420.1076 19531,-420.1076 17655.8003,-420.1076 17655.8003,-420.1076"/>
<polygon fill="#000000" stroke="#000000" points="17655.8003,-416.6077 17645.8003,-420.1076 17655.8002,-423.6077 17655.8003,-416.6077"/>
</g>
<!-- RbdFormComponent -->
<g id="node31" class="node">
<title>RbdFormComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="19440.5028,-313.0538 19305.4972,-313.0538 19305.4972,-277.0538 19440.5028,-277.0538 19440.5028,-313.0538"/>
<text text-anchor="middle" x="19373" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdFormComponent</text>
</g>
<!-- RbdFormComponent->BlockModule -->
<g id="edge30" class="edge">
<title>RbdFormComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M19373,-313.0633C19373,-347.0146 19373,-417.1076 19373,-417.1076 19373,-417.1076 17655.5383,-417.1076 17655.5383,-417.1076"/>
<polygon fill="#000000" stroke="#000000" points="17655.5384,-413.6077 17645.5383,-417.1076 17655.5383,-420.6077 17655.5384,-413.6077"/>
</g>
<!-- RbdImagesComponent -->
<g id="node32" class="node">
<title>RbdImagesComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="19287.594,-313.0538 19142.406,-313.0538 19142.406,-277.0538 19287.594,-277.0538 19287.594,-313.0538"/>
<text text-anchor="middle" x="19215" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdImagesComponent</text>
</g>
<!-- RbdImagesComponent->BlockModule -->
<g id="edge31" class="edge">
<title>RbdImagesComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M19215,-313.2874C19215,-346.8721 19215,-415.1076 19215,-415.1076 19215,-415.1076 17655.621,-415.1076 17655.621,-415.1076"/>
<polygon fill="#000000" stroke="#000000" points="17655.621,-411.6077 17645.621,-415.1076 17655.6209,-418.6077 17655.621,-411.6077"/>
</g>
<!-- RbdListComponent -->
<g id="node33" class="node">
<title>RbdListComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="19124.4482,-313.0538 18997.5518,-313.0538 18997.5518,-277.0538 19124.4482,-277.0538 19124.4482,-313.0538"/>
<text text-anchor="middle" x="19061" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdListComponent</text>
</g>
<!-- RbdListComponent->BlockModule -->
<g id="edge32" class="edge">
<title>RbdListComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M19061,-313.087C19061,-345.9215 19061,-412.1076 19061,-412.1076 19061,-412.1076 17655.5776,-412.1076 17655.5776,-412.1076"/>
<polygon fill="#000000" stroke="#000000" points="17655.5777,-408.6077 17645.5776,-412.1076 17655.5776,-415.6077 17655.5777,-408.6077"/>
</g>
<!-- RbdSnapshotFormComponent -->
<g id="node34" class="node">
<title>RbdSnapshotFormComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="18980.3355,-313.0538 18793.6645,-313.0538 18793.6645,-277.0538 18980.3355,-277.0538 18980.3355,-313.0538"/>
<text text-anchor="middle" x="18887" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdSnapshotFormComponent</text>
</g>
<!-- RbdSnapshotFormComponent->BlockModule -->
<g id="edge33" class="edge">
<title>RbdSnapshotFormComponent->BlockModule</title>
<path fill="none" stroke="#000000" d="M18887,-313.126C18887,-345.2861 18887,-409.1076 18887,-409.1076 18887,-409.1076 17655.6015,-409.1076 17655.6015,-409.1076"/>
<polygon fill="#000000" stroke="#000000" points="17655.6016,-405.6077 17645.6015,-409.1076 17655.6015,-412.6077 17655.6016,-405.6077"/>
</g>
<!-- RbdSnapshotListComponent -->
<g id="node35" class="node">
<title>RbdSnapshotListComponent</title>
<polygon fill="#ffffb3" stroke="#000000" points="18775.7799,-313.0538 18598.2201,-313.0538 18598.2201,-277.0538 18775.7799,-277.0538 18775.7799,-313.0538"/>
<text text-anchor="middle" x="18687" y="-290.8538" font-family="Times,serif" font-size="14.00" fill="#000000">RbdSnapshotListComponent</text>
</g>
<!-- RbdSnapshotListComponent->BlockModule -->