-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUntitled Diagram.drawio
2409 lines (2409 loc) · 234 KB
/
Untitled Diagram.drawio
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
<mxfile host="app.diagrams.net" modified="2022-11-08T08:01:53.270Z" agent="5.0 (Macintosh)" etag="t9xQIovHxYl5LReHwfBe" version="20.5.1" type="github" pages="9">
<diagram id="WkCiSp-jyLo-nHGhpcF1" name="Projekt Übersicht">
<mxGraphModel dx="1426" dy="767" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="6Mo01X-mlYxBvYi0odGK-1" value="Projekt Untergliederung" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=1;align=center;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="120" y="110" width="750" height="450" as="geometry" />
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-18" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="6Mo01X-mlYxBvYi0odGK-1" vertex="1">
<mxGeometry y="30" width="750" height="80" as="geometry" />
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-19" value="Ebene" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontStyle=1" parent="6Mo01X-mlYxBvYi0odGK-18" vertex="1">
<mxGeometry width="201" height="80" as="geometry">
<mxRectangle width="201" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-20" value="Scope" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontStyle=1" parent="6Mo01X-mlYxBvYi0odGK-18" vertex="1">
<mxGeometry x="201" width="198" height="80" as="geometry">
<mxRectangle width="198" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-21" value="Beschreibung" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontStyle=1" parent="6Mo01X-mlYxBvYi0odGK-18" vertex="1">
<mxGeometry x="399" width="351" height="80" as="geometry">
<mxRectangle width="351" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="6Mo01X-mlYxBvYi0odGK-1" vertex="1">
<mxGeometry y="110" width="750" height="80" as="geometry" />
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-3" value="Ebene 3" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-2" vertex="1">
<mxGeometry width="201" height="80" as="geometry">
<mxRectangle width="201" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-4" value="Gesamt System" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-2" vertex="1">
<mxGeometry x="201" width="198" height="80" as="geometry">
<mxRectangle width="198" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-5" value="<ul><li>nicht Teil dieser Arbeit.</li><li>Details sind dem Anhang zu entnehmen<br></li></ul>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;align=left;fontStyle=2" parent="6Mo01X-mlYxBvYi0odGK-2" vertex="1">
<mxGeometry x="399" width="351" height="80" as="geometry">
<mxRectangle width="351" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-6" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="6Mo01X-mlYxBvYi0odGK-1" vertex="1">
<mxGeometry y="190" width="750" height="80" as="geometry" />
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-7" value="Ebene 2" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-6" vertex="1">
<mxGeometry width="201" height="80" as="geometry">
<mxRectangle width="201" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-8" value="Edge" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-6" vertex="1">
<mxGeometry x="201" width="198" height="80" as="geometry">
<mxRectangle width="198" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-9" value="<div align="left"><ul><li>ECCO-Boxen werden in der Edge betrieben<br></li></ul></div>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;align=left;" parent="6Mo01X-mlYxBvYi0odGK-6" vertex="1">
<mxGeometry x="399" width="351" height="80" as="geometry">
<mxRectangle width="351" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-10" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;align=left;" parent="6Mo01X-mlYxBvYi0odGK-1" vertex="1">
<mxGeometry y="270" width="750" height="80" as="geometry" />
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-11" value="Ebene 1" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-10" vertex="1">
<mxGeometry width="201" height="80" as="geometry">
<mxRectangle width="201" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-12" value="ECCO-Box" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-10" vertex="1">
<mxGeometry x="201" width="198" height="80" as="geometry">
<mxRectangle width="198" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-13" value="<div align="left"><ul><li>besteht aus mehreren Modulen</li><li>Module kommunizieren über P2P-Modul<br></li></ul></div>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;align=left;" parent="6Mo01X-mlYxBvYi0odGK-10" vertex="1">
<mxGeometry x="399" width="351" height="80" as="geometry">
<mxRectangle width="351" height="80" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-14" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="6Mo01X-mlYxBvYi0odGK-1" vertex="1">
<mxGeometry y="350" width="750" height="100" as="geometry" />
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-15" value="Ebene 0" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-14" vertex="1">
<mxGeometry width="201" height="100" as="geometry">
<mxRectangle width="201" height="100" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-16" value="P2P-Modul" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;" parent="6Mo01X-mlYxBvYi0odGK-14" vertex="1">
<mxGeometry x="201" width="198" height="100" as="geometry">
<mxRectangle width="198" height="100" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="6Mo01X-mlYxBvYi0odGK-17" value="<ul><li>teil der ECCO-Box</li><li>Verbindet ECCO-Boxen</li><li>Realisiert Dezentrale architektur<br></li><li>verantwortlich für Speicherung und Bereitstellung der Daten<br></li></ul>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;align=left;verticalAlign=middle;" parent="6Mo01X-mlYxBvYi0odGK-14" vertex="1">
<mxGeometry x="399" width="351" height="100" as="geometry">
<mxRectangle width="351" height="100" as="alternateBounds" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="uun_jjjuWUNww76_Udy4" name="E0: Vergleich">
<mxGraphModel dx="1426" dy="767" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="2KaCRzUMMeswWlVjjDwV-10" value="Stack" style="swimlane;" parent="1" vertex="1">
<mxGeometry x="90" y="60" width="520" height="380" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-4" value="Hyper*" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="180" y="50" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-9" value="IPFS merkledag (also known as IPLD - InterPlanetary Linked Data)" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="340" y="170" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-5" value="Hypercore<br>( append-only log )" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="180" y="170" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-8" value="IPFS" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="340" y="50" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-11" value="Libp2p" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="340" y="290" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-6" value="Hyperswarm" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="180" y="290" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-12" value="Protocol" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="20" y="50" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-13" value="Low-level Data Structures" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="20" y="170" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="2KaCRzUMMeswWlVjjDwV-14" value="Networking" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="20" y="290" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="oaFbPJ7K2uqsgNcsHxHo-1" value="Storage" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="20" y="230" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="oaFbPJ7K2uqsgNcsHxHo-2" value="Corestore<br>(disk-storage manager for Hypercores)" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="180" y="230" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="oaFbPJ7K2uqsgNcsHxHo-3" value="" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="340" y="230" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="oaFbPJ7K2uqsgNcsHxHo-4" value="unixfs, a content-addressed unix filesystem" style="whiteSpace=wrap;html=1;align=center;fontStyle=0;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="340" y="110" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="oaFbPJ7K2uqsgNcsHxHo-5" value="Hyperdrive <br style="font-size: 12px;">Hyperbee" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="180" y="110" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="oaFbPJ7K2uqsgNcsHxHo-6" value="High-level Data Structures" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="2KaCRzUMMeswWlVjjDwV-10" vertex="1">
<mxGeometry x="20" y="110" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="9APJkuDEGpzCLgwEaH0s-1" value="Fehlerhaft -&gt; überarbeiten!" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="75" y="25" width="170" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="UbkjploW9XkOTzss3_vL" name="E0: P2P-Modul Softwarearchitektur">
<mxGraphModel dx="6555" dy="2191" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="HRsr6uZMeXx9bVtFUv4O-1" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1160" y="30" width="320" height="360" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-2" value="Low-level Data Structures" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry y="180" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-3" value="Networking" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry y="300" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-4" value="Storage-Manager" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry y="240" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-5" value="High-level Data Structures" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry y="120" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-6" value="Hyperswarm" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry x="160" y="300" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-7" value="Hyperbee" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry x="160" y="120" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-8" value="Hypercore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry x="160" y="180" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-9" value="Corestore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry x="160" y="240" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-10" value="Database" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry y="60" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-11" value="..." style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry x="160" y="60" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HRsr6uZMeXx9bVtFUv4O-12" value="API-Stack P2P-Modul" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="HRsr6uZMeXx9bVtFUv4O-1" vertex="1">
<mxGeometry width="320" height="60" as="geometry" />
</mxCell>
<mxCell id="gUhW5xfFkw9-NHsOvD3Q-5" value="<div><br></div>Was muss das p2p Modul alles leisten? <h1></h1><div>Nodes finden<br>Daten suchen / austauschen <br>Node hinzufügen / entfernen <br>Daten für andere Module aufbereiten und bereitstellen (time series Datenbanken, sind es nur neue puts?)<br><br></div><div><br></div><div>Disk-storage manager for Hypercores<br></div>" style="text;html=1;strokeColor=none;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;fontSize=8;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="-810" y="80" width="190" height="120" as="geometry" />
</mxCell>
<mxCell id="gUhW5xfFkw9-NHsOvD3Q-6" value="store : Corestore" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;collapsible=0;recursiveResize=0;outlineConnect=0;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;fillColor=#7EA6E0;" parent="1" vertex="1">
<mxGeometry x="-990" y="504" width="100" height="300" as="geometry" />
</mxCell>
<mxCell id="gUhW5xfFkw9-NHsOvD3Q-7" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;fillColor=#808080;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;" parent="gUhW5xfFkw9-NHsOvD3Q-6" vertex="1">
<mxGeometry x="45" y="86" width="10" height="30" as="geometry" />
</mxCell>
<mxCell id="gUhW5xfFkw9-NHsOvD3Q-8" value="node<sub>N+1 </sub>:<sub> </sub>Node<sub><br></sub>" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;collapsible=0;recursiveResize=0;outlineConnect=0;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;fillColor=#7EA6E0;" parent="1" vertex="1">
<mxGeometry x="-1110" y="450" width="100" height="300" as="geometry" />
</mxCell>
<mxCell id="gUhW5xfFkw9-NHsOvD3Q-9" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;fillColor=#7EA6E0;" parent="gUhW5xfFkw9-NHsOvD3Q-8" vertex="1">
<mxGeometry x="45" y="60" width="10" height="30" as="geometry" />
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-11" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;fillColor=#7EA6E0;" parent="gUhW5xfFkw9-NHsOvD3Q-8" vertex="1">
<mxGeometry x="45" y="110" width="10" height="30" as="geometry" />
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-18" value="create( this )" style="html=1;verticalAlign=bottom;labelBackgroundColor=none;endArrow=open;endFill=0;dashed=1;rounded=0;fontSize=8;fontColor=#000000;exitX=1.039;exitY=0.662;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.001;entryY=0.077;entryDx=0;entryDy=0;entryPerimeter=0;" parent="gUhW5xfFkw9-NHsOvD3Q-8" edge="1">
<mxGeometry x="-0.1896" width="160" relative="1" as="geometry">
<mxPoint x="54.999999999999886" y="123.79999999999995" as="sourcePoint" />
<mxPoint x="240.10000000000014" y="124.10000000000002" as="targetPoint" />
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="gUhW5xfFkw9-NHsOvD3Q-10" value="create( )" style="html=1;verticalAlign=bottom;labelBackgroundColor=none;endArrow=open;endFill=0;dashed=1;rounded=0;fontSize=8;fontColor=#000000;" parent="1" edge="1">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="-1270" y="470" as="sourcePoint" />
<mxPoint x="-1110" y="470" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-4" value="swarm : Hyperswarm" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;collapsible=0;recursiveResize=0;outlineConnect=0;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;fillColor=#7EA6E0;" parent="1" vertex="1">
<mxGeometry x="-870" y="552" width="100" height="300" as="geometry" />
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-5" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;fillColor=#808080;fontSize=8;fontColor=#000000;strokeColor=default;strokeWidth=1;" parent="QDAvq0NdBVYoEpwS3TSa-4" vertex="1">
<mxGeometry x="45" y="90" width="10" height="120" as="geometry" />
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-8" value="create( this )" style="html=1;verticalAlign=bottom;labelBackgroundColor=none;endArrow=open;endFill=0;dashed=1;rounded=0;fontSize=8;fontColor=#000000;exitX=1.039;exitY=0.662;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="-1054.6100000000001" y="523.8599999999999" as="sourcePoint" />
<mxPoint x="-990" y="524" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-9" value="" style="html=1;verticalAlign=bottom;labelBackgroundColor=none;endArrow=block;endFill=1;rounded=0;entryX=0.088;entryY=0.002;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="gUhW5xfFkw9-NHsOvD3Q-9" edge="1">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="-1190" y="510" as="sourcePoint" />
<mxPoint x="-1070" y="510" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-10" value="initCoreStore( localDirectory )" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="QDAvq0NdBVYoEpwS3TSa-9" vertex="1" connectable="0">
<mxGeometry x="-0.2306" relative="1" as="geometry">
<mxPoint x="8" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-16" value="" style="html=1;verticalAlign=bottom;labelBackgroundColor=none;endArrow=block;endFill=1;rounded=0;entryX=0.088;entryY=0.002;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="-1190" y="560" as="sourcePoint" />
<mxPoint x="-1064.12" y="560.0600000000001" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QDAvq0NdBVYoEpwS3TSa-17" value="joinSwarm( )" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="QDAvq0NdBVYoEpwS3TSa-16" vertex="1" connectable="0">
<mxGeometry x="-0.2306" relative="1" as="geometry">
<mxPoint x="8" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-1" value="Corestore" style="swimlane;fontSize=8;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="-2410" y="80" width="130" height="230" as="geometry">
<mxRectangle x="-2410" y="80" width="80" height="23" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-2" value="" style="group;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="4t9rjOy6H2c8DJBezyQW-1" vertex="1" connectable="0">
<mxGeometry x="15" y="35" width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-3" value="Hypercore<sub>1</sub>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=none;verticalAlign=bottom;" parent="4t9rjOy6H2c8DJBezyQW-2" vertex="1">
<mxGeometry width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-4" value="Hyperbee" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=#7EA6E0;" parent="4t9rjOy6H2c8DJBezyQW-2" vertex="1">
<mxGeometry x="18" y="10" width="64" height="20" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-5" value="" style="group;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="4t9rjOy6H2c8DJBezyQW-1" vertex="1" connectable="0">
<mxGeometry x="15" y="95" width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-6" value="Hypercore<sub>2</sub>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=none;verticalAlign=bottom;" parent="4t9rjOy6H2c8DJBezyQW-5" vertex="1">
<mxGeometry width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-7" value="Hyperbee" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=#7EA6E0;" parent="4t9rjOy6H2c8DJBezyQW-5" vertex="1">
<mxGeometry x="18" y="10" width="64" height="20" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-8" value="" style="group;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="4t9rjOy6H2c8DJBezyQW-1" vertex="1" connectable="0">
<mxGeometry x="15" y="160" width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-9" value="Hypercore<sub>n</sub>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=none;verticalAlign=bottom;" parent="4t9rjOy6H2c8DJBezyQW-8" vertex="1">
<mxGeometry width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-10" value="Hyperbee" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=#7EA6E0;" parent="4t9rjOy6H2c8DJBezyQW-8" vertex="1">
<mxGeometry x="18" y="10" width="64" height="20" as="geometry" />
</mxCell>
<mxCell id="4t9rjOy6H2c8DJBezyQW-12" value="P2P-Modul" style="swimlane;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-2430" y="40" width="170" height="290" as="geometry" />
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-1" value="Hyperbee" style="swimlane;fontSize=12;fillColor=#7EA6E0;strokeColor=#000000;" parent="1" vertex="1">
<mxGeometry x="-2238" y="40" width="170" height="110" as="geometry" />
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-2" value="" style="shape=table;html=1;whiteSpace=wrap;startSize=0;container=1;collapsible=0;childLayout=tableLayout;fontSize=12;fillColor=none;" parent="8QMSm4IEBs8lO0lCdCEI-1" vertex="1">
<mxGeometry x="20" y="40" width="130" height="50" as="geometry" />
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-3" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;" parent="8QMSm4IEBs8lO0lCdCEI-2" vertex="1">
<mxGeometry width="130" height="25" as="geometry" />
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-4" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontSize=8;fontStyle=1" parent="8QMSm4IEBs8lO0lCdCEI-3" vertex="1">
<mxGeometry width="66" height="25" as="geometry">
<mxRectangle width="66" height="25" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-5" value="Value" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontSize=8;fontStyle=1" parent="8QMSm4IEBs8lO0lCdCEI-3" vertex="1">
<mxGeometry x="66" width="64" height="25" as="geometry">
<mxRectangle width="64" height="25" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-7" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;" parent="8QMSm4IEBs8lO0lCdCEI-2" vertex="1">
<mxGeometry y="25" width="130" height="25" as="geometry" />
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-8" value="Timestamp" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontSize=8;" parent="8QMSm4IEBs8lO0lCdCEI-7" vertex="1">
<mxGeometry width="66" height="25" as="geometry">
<mxRectangle width="66" height="25" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="8QMSm4IEBs8lO0lCdCEI-9" value="Datapoint" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;overflow=hidden;fontSize=8;" parent="8QMSm4IEBs8lO0lCdCEI-7" vertex="1">
<mxGeometry x="66" width="64" height="25" as="geometry">
<mxRectangle width="64" height="25" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="F23dcrWXI7tYwa330TNb-1" target="F23dcrWXI7tYwa330TNb-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-4" value="instantiate" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="F23dcrWXI7tYwa330TNb-3" vertex="1" connectable="0">
<mxGeometry x="-0.116" y="-1" relative="1" as="geometry">
<mxPoint y="-39" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="F23dcrWXI7tYwa330TNb-1" target="F23dcrWXI7tYwa330TNb-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-11" value="instantiate" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="F23dcrWXI7tYwa330TNb-10" vertex="1" connectable="0">
<mxGeometry x="-0.1117" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;startArrow=none;startFill=0;" parent="1" source="F23dcrWXI7tYwa330TNb-1" target="F23dcrWXI7tYwa330TNb-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-25" value="instantiate" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="F23dcrWXI7tYwa330TNb-24" vertex="1" connectable="0">
<mxGeometry x="0.0546" y="-2" relative="1" as="geometry">
<mxPoint y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-1" value="Node" style="html=1;" parent="1" vertex="1">
<mxGeometry x="-2430" y="529" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="F23dcrWXI7tYwa330TNb-2" target="F23dcrWXI7tYwa330TNb-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-7" value="gets HC by name or PK" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="F23dcrWXI7tYwa330TNb-6" vertex="1" connectable="0">
<mxGeometry x="-0.2066" y="-1" relative="1" as="geometry">
<mxPoint x="12" y="-40" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-2" value="Corestore" style="html=1;" parent="1" vertex="1">
<mxGeometry x="-2260" y="529" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-26" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;startArrow=classic;startFill=1;endArrow=none;endFill=0;" parent="1" source="F23dcrWXI7tYwa330TNb-5" target="F23dcrWXI7tYwa330TNb-20" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-2035" y="435" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-27" value="uses" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="F23dcrWXI7tYwa330TNb-26" vertex="1" connectable="0">
<mxGeometry x="0.2737" y="-2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-5" value="Hypercore" style="html=1;" parent="1" vertex="1">
<mxGeometry x="-2090" y="529" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="F23dcrWXI7tYwa330TNb-9" target="F23dcrWXI7tYwa330TNb-12" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-14" value="join swarm on Topic" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="F23dcrWXI7tYwa330TNb-13" vertex="1" connectable="0">
<mxGeometry x="-0.2188" y="3" relative="1" as="geometry">
<mxPoint x="-3" y="13" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-9" value="swarm" style="html=1;" parent="1" vertex="1">
<mxGeometry x="-2430" y="645" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-12" value="Hyperswarm" style="html=1;" parent="1" vertex="1">
<mxGeometry x="-2430" y="760" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="F23dcrWXI7tYwa330TNb-20" value="Hyperbee" style="html=1;" parent="1" vertex="1">
<mxGeometry x="-2430" y="410" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=default;fontSize=5;" edge="1" parent="1" source="ByqXSgtIzuTKyRGlq2mm-2" target="ByqXSgtIzuTKyRGlq2mm-3">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1890" y="265" />
<mxPoint x="-1890" y="215" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-7" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=default;fontSize=5;" edge="1" parent="1" source="ByqXSgtIzuTKyRGlq2mm-2" target="ByqXSgtIzuTKyRGlq2mm-4">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1890" y="265" />
<mxPoint x="-1890" y="315" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-2" value="Hypercore" style="html=1;" vertex="1" parent="1">
<mxGeometry x="-2020" y="240" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-3" value="Private Key" style="html=1;" vertex="1" parent="1">
<mxGeometry x="-1860" y="190" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=default;fontSize=5;" edge="1" parent="1" source="ByqXSgtIzuTKyRGlq2mm-4" target="ByqXSgtIzuTKyRGlq2mm-5">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-4" value="Public Key" style="html=1;" vertex="1" parent="1">
<mxGeometry x="-1860" y="290" width="110" height="50" as="geometry" />
</mxCell>
<mxCell id="ByqXSgtIzuTKyRGlq2mm-5" value="Discovery Key" style="html=1;" vertex="1" parent="1">
<mxGeometry x="-1720" y="290" width="110" height="50" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="JXnR_LFC6wYwE75qUCAt" name="E0: API-Stack Options HC">
<mxGraphModel dx="698" dy="587" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="43YB2q3m0qKI83pl-AG2-2" value="Hypercore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="173" y="190" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-3" value="Hyperswarm" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="173" y="310" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-5" value="Low-level Data Structures" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="13" y="190" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-6" value="Networking" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="13" y="310" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-7" value="Storage" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="13" y="250" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-10" value="High-level Data Structures" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="13" y="130" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-11" value="Hyperswarm" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="333" y="310" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="idVanv6z-U9O3tD_HgQB-4" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=1;entryDx=0;entryDy=0;fontSize=8;endArrow=none;endFill=0;" parent="1" source="43YB2q3m0qKI83pl-AG2-12" target="mYdC2qalN-g83nR6YLBW-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="idVanv6z-U9O3tD_HgQB-5" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=1;entryDx=0;entryDy=0;fontSize=8;endArrow=none;endFill=0;" parent="1" source="43YB2q3m0qKI83pl-AG2-12" target="mYdC2qalN-g83nR6YLBW-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-12" value="Hyperbee" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="333" y="130" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-13" value="Hypercore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="333" y="190" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="43YB2q3m0qKI83pl-AG2-14" value="Corestore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="333" y="250" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="mYdC2qalN-g83nR6YLBW-1" value="Optionen" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="13" y="10" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="mYdC2qalN-g83nR6YLBW-2" value="Option 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="173" y="10" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="mYdC2qalN-g83nR6YLBW-3" value="Option 2" style="whiteSpace=wrap;html=1;align=center;fontSize=12;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="333" y="10" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="H91OHPO0gdRgHUgm59LL-1" value="Option 3" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="493" y="10" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="H91OHPO0gdRgHUgm59LL-2" value="Hyperbee" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="493" y="130" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="H91OHPO0gdRgHUgm59LL-3" value="Hypercore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="493" y="190" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="H91OHPO0gdRgHUgm59LL-4" value="Corestore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="493" y="250" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="H91OHPO0gdRgHUgm59LL-5" value="Corestore-Networker" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="493" y="310" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="LGBoZu-ThHH1ndbxJvS--1" value="Corestore-Networker" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="653" y="310" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="LGBoZu-ThHH1ndbxJvS--2" value="Corestore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="653" y="250" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="LGBoZu-ThHH1ndbxJvS--3" value="Hypercore" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="653" y="190" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="idVanv6z-U9O3tD_HgQB-3" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=1;entryDx=0;entryDy=0;fontSize=8;endArrow=none;endFill=0;" parent="1" source="LGBoZu-ThHH1ndbxJvS--4" target="LGBoZu-ThHH1ndbxJvS--5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="idVanv6z-U9O3tD_HgQB-6" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0;exitDx=0;exitDy=0;entryX=1;entryY=1;entryDx=0;entryDy=0;fontSize=8;endArrow=none;endFill=0;" parent="1" source="LGBoZu-ThHH1ndbxJvS--4" target="H91OHPO0gdRgHUgm59LL-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LGBoZu-ThHH1ndbxJvS--4" value="Hypertrie" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="653" y="130" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="LGBoZu-ThHH1ndbxJvS--5" value="Option 3" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="653" y="10" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="idVanv6z-U9O3tD_HgQB-2" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=0;entryDy=0;fontSize=8;endArrow=none;endFill=0;" parent="1" source="idVanv6z-U9O3tD_HgQB-1" target="43YB2q3m0qKI83pl-AG2-12" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="idVanv6z-U9O3tD_HgQB-1" value="Database" style="whiteSpace=wrap;html=1;align=center;fontStyle=1;fontSize=12;" parent="1" vertex="1">
<mxGeometry x="13" y="70" width="160" height="60" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="TWpIVF_u3TdZswTRyqDv" name="E0: Netzwerk">
<mxGraphModel dx="5777" dy="438" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-14" value="Netzwork (Share the same Public Key)" style="swimlane;" parent="1" vertex="1">
<mxGeometry x="-2090" y="195" width="740" height="505" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-18" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=1;entryDx=0;entryDy=0;endArrow=none;endFill=0;exitX=0;exitY=0;exitDx=0;exitDy=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-2" target="yDLoRIvNL7hG9R2Gn2BZ-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-2" value="Sensor-Node 2" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" vertex="1">
<mxGeometry x="510" y="362.5" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-3" target="yDLoRIvNL7hG9R2Gn2BZ-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-15" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;exitX=0;exitY=1;exitDx=0;exitDy=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-3" target="yDLoRIvNL7hG9R2Gn2BZ-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-3" value="Node 3" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" vertex="1">
<mxGeometry x="510" y="82.5" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-5" value="Node 5" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" vertex="1">
<mxGeometry x="290" y="222.5" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-16" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;exitX=1;exitY=1;exitDx=0;exitDy=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-1" target="yDLoRIvNL7hG9R2Gn2BZ-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-1" value="Sensor-Node 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" vertex="1">
<mxGeometry x="70" y="82.5" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;endArrow=none;endFill=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-1" target="yDLoRIvNL7hG9R2Gn2BZ-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-17" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=1;entryDx=0;entryDy=0;endArrow=none;endFill=0;exitX=1;exitY=0;exitDx=0;exitDy=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-4" target="yDLoRIvNL7hG9R2Gn2BZ-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-4" value="Node 4" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" vertex="1">
<mxGeometry x="70" y="362.5" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-2" target="yDLoRIvNL7hG9R2Gn2BZ-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;endArrow=none;endFill=0;" parent="yDLoRIvNL7hG9R2Gn2BZ-14" source="yDLoRIvNL7hG9R2Gn2BZ-4" target="yDLoRIvNL7hG9R2Gn2BZ-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-19" value="<div align="left">Sensor-Node's: <br></div><div align="left"><ul><li>Write measured values in Hyperbee, which sits on top of the local HC. Only the Node how has the Private Key (owns the HC) can write Data<br></li><li>should also be able to query the measured data of other sensor nodes<br></li></ul></div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="-2090" y="60" width="260" height="100" as="geometry" />
</mxCell>
<mxCell id="yDLoRIvNL7hG9R2Gn2BZ-20" value="<div align="left">Node's: <br><ul><li>query the measured data of sensor nodes</li><li>dosn't has the PK to the Hyperbee-Cores (can only querie Data)<br></li><li>contribute to load sharing in the network<br></li></ul></div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="-1800" y="60" width="260" height="100" as="geometry" />
</mxCell>
<mxCell id="hv78FTbzO6wwOHshBAjz-2" value="Corestore
Sensor-Node 1" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=40;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;" parent="1" vertex="1">
<mxGeometry x="-2090" y="749" width="260" height="130" as="geometry" />
</mxCell>
<mxCell id="hv78FTbzO6wwOHshBAjz-4" value="Local Hypercore w/ Hyperbee" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="hv78FTbzO6wwOHshBAjz-2" vertex="1">
<mxGeometry y="40" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="hv78FTbzO6wwOHshBAjz-3" value="Core initializing w/ PK from Sensor-Node 2" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="hv78FTbzO6wwOHshBAjz-2" vertex="1">
<mxGeometry y="70" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="hv78FTbzO6wwOHshBAjz-5" value="Core initializing w/ PK from Sensor-Node-n" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="hv78FTbzO6wwOHshBAjz-2" vertex="1">
<mxGeometry y="100" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-1" value="Corestore
Sensor-Node 2" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=40;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;" parent="1" vertex="1">
<mxGeometry x="-1790" y="749" width="260" height="130" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-2" value="Local Hypercore /w Hyperbee" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-1" vertex="1">
<mxGeometry y="40" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-3" value="Core initializing w/ PK from Sensor-Node 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-1" vertex="1">
<mxGeometry y="70" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-4" value="Core initializing w/ PK from Sensor-Node-n" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-1" vertex="1">
<mxGeometry y="100" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-5" value="Corestore
Node 3" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=40;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;" parent="1" vertex="1">
<mxGeometry x="-2090" y="908" width="260" height="130" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-7" value="Core initializing w/ PK from Sensor-Node 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-5" vertex="1">
<mxGeometry y="40" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-9" value="Core initializing w/ PK from Sensor-Node-2" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-5" vertex="1">
<mxGeometry y="70" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-8" value="Core initializing w/ PK from Sensor-Node-n" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-5" vertex="1">
<mxGeometry y="100" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-10" value="Corestore
Node 4" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=40;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;" parent="1" vertex="1">
<mxGeometry x="-1790" y="908" width="260" height="130" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-12" value="Core initializing w/ PK from Sensor-Node 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-10" vertex="1">
<mxGeometry y="40" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-13" value="Core initializing w/ PK from Sensor-Node-2" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-10" vertex="1">
<mxGeometry y="70" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="qo_IWUPF1YgZeCXnUva5-14" value="Core initializing w/ PK from Sensor-Node-n" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;" parent="qo_IWUPF1YgZeCXnUva5-10" vertex="1">
<mxGeometry y="100" width="260" height="30" as="geometry" />
</mxCell>
<mxCell id="Am2QJXAv5DCv3JJJguPB-1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=12;endArrow=none;endFill=0;startArrow=classic;startFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-33" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-3502" y="119.82051282051282" as="targetPoint" />
<Array as="points">
<mxPoint x="-3242" y="120" />
<mxPoint x="-3242" y="120" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Am2QJXAv5DCv3JJJguPB-5" value="6. replicate all HC <br>where K<sub>Pub</sub> match" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="Am2QJXAv5DCv3JJJguPB-1" vertex="1" connectable="0">
<mxGeometry x="-0.604" y="-1" relative="1" as="geometry">
<mxPoint x="6" y="12" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="mKhUOinb8A0f9kn4ed1i-1" value="<div><b>Hyperswarm</b></div><div><b>Topic &lt;T&gt;<br></b></div>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;fontSize=8;" parent="1" vertex="1">
<mxGeometry x="-3420" y="65" width="150" height="100" as="geometry" />
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-24" value="Corestore" style="swimlane;fontSize=8;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="-3600.5" y="205" width="130" height="100" as="geometry" />
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-25" value="" style="group;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="AGEcDhdIV9XkqIyL7STR-24" vertex="1" connectable="0">
<mxGeometry x="15" y="35" width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-19" value="Write-Hypercore<sub>n</sub>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=none;verticalAlign=bottom;" parent="AGEcDhdIV9XkqIyL7STR-25" vertex="1">
<mxGeometry width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-23" value="Hyperbee" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=#7EA6E0;" parent="AGEcDhdIV9XkqIyL7STR-25" vertex="1">
<mxGeometry x="18" y="10" width="64" height="20" as="geometry" />
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=8;endArrow=classic;endFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-26" target="AGEcDhdIV9XkqIyL7STR-23" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-3620" y="115" />
<mxPoint x="-3620" y="260" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-30" value="<div>1. create Corestore /w Write-HC and Hyperbee on top<br></div><div>1.1. Gets Data from Consumer-Modul<br></div><div>1.2. write Data to Hyperbee</div>" style="edgeLabel;html=1;align=left;verticalAlign=middle;resizable=0;points=[];fontSize=8;labelBackgroundColor=default;" parent="AGEcDhdIV9XkqIyL7STR-29" vertex="1" connectable="0">
<mxGeometry x="-0.1076" y="-2" relative="1" as="geometry">
<mxPoint x="-88" y="13" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=8;endArrow=classic;endFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-26" target="mKhUOinb8A0f9kn4ed1i-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-3492" y="100" />
<mxPoint x="-3492" y="100" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-32" value="<div>2. Join w/ <br>Topic &lt;T&gt;<br></div>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="AGEcDhdIV9XkqIyL7STR-31" vertex="1" connectable="0">
<mxGeometry x="-0.1681" relative="1" as="geometry">
<mxPoint y="-11" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-34" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=8;endArrow=none;endFill=0;dashed=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-26" target="AGEcDhdIV9XkqIyL7STR-33" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-3536" y="60" />
<mxPoint x="-3135" y="60" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-35" value="Shared K<sub>Pub</sub>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="AGEcDhdIV9XkqIyL7STR-34" vertex="1" connectable="0">
<mxGeometry x="-0.0881" y="-2" relative="1" as="geometry">
<mxPoint x="20" y="-10" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-26" value="<b><font style="font-size: 8px;">P2P-Modul</font></b>" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#000000;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.iot_thing_humidity_sensor;" parent="1" vertex="1">
<mxGeometry x="-3565" y="86" width="58" height="58" as="geometry" />
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-41" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=8;endArrow=classic;endFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-33" target="AGEcDhdIV9XkqIyL7STR-36" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-3050" y="115" />
<mxPoint x="-3050" y="230" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-42" value="3. create Corestore" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="AGEcDhdIV9XkqIyL7STR-41" vertex="1" connectable="0">
<mxGeometry x="0.1081" y="2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=8;endArrow=classic;endFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-33" target="mKhUOinb8A0f9kn4ed1i-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-3172" y="100" />
<mxPoint x="-3172" y="100" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-9" value="5. Join Swarm <br>w/ Topic &lt;T&gt;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="NdUSqLAHfX-COyxvkVGV-8" vertex="1" connectable="0">
<mxGeometry x="0.2065" y="1" relative="1" as="geometry">
<mxPoint x="15" y="-12" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-17" value="7. Processor and Producer<br>can now read data from Hyperbee" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=8;endArrow=none;endFill=0;startArrow=classic;startFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-33" target="NdUSqLAHfX-COyxvkVGV-1" edge="1">
<mxGeometry x="0.0044" y="10" relative="1" as="geometry">
<Array as="points">
<mxPoint x="-2990" y="105" />
<mxPoint x="-2990" y="345" />
</Array>
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-33" value="<b>P2P-Modul</b>" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#000000;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.concepts.node_generic;fontSize=8;" parent="1" vertex="1">
<mxGeometry x="-3158" y="89" width="46" height="52" as="geometry" />
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fontSize=8;endArrow=classic;endFill=1;" parent="1" source="AGEcDhdIV9XkqIyL7STR-36" target="NdUSqLAHfX-COyxvkVGV-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-7" value="4. create Read-HC w/ remote K<sub>Pub </sub>and Hyperbee<sub><br></sub>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="NdUSqLAHfX-COyxvkVGV-5" vertex="1" connectable="0">
<mxGeometry x="-0.0833" y="2" relative="1" as="geometry">
<mxPoint y="-2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="AGEcDhdIV9XkqIyL7STR-36" value="Corestore" style="swimlane;fontSize=8;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="-3200" y="205" width="130" height="50" as="geometry" />
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-1" value="Corestore" style="swimlane;fontSize=8;fillColor=default;" parent="1" vertex="1">
<mxGeometry x="-3200" y="295" width="130" height="100" as="geometry" />
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-2" value="" style="group;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="NdUSqLAHfX-COyxvkVGV-1" vertex="1" connectable="0">
<mxGeometry x="15" y="35" width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-3" value="Read-Hypercore<sub>n</sub>" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=none;verticalAlign=bottom;" parent="NdUSqLAHfX-COyxvkVGV-2" vertex="1">
<mxGeometry width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="NdUSqLAHfX-COyxvkVGV-4" value="Hyperbee" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;fillColor=#7EA6E0;" parent="NdUSqLAHfX-COyxvkVGV-2" vertex="1">
<mxGeometry x="18" y="10" width="64" height="20" as="geometry" />
</mxCell>
<mxCell id="3TmlsE2vNMLRQlV-ahkL-1" value="Topic: "sensor network"" style="swimlane;strokeColor=#000000;fillColor=#7EA6E0;" parent="1" vertex="1">
<mxGeometry x="-4890" y="30" width="950" height="1280" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-32" value="Join on Topic: "sensor network"<br>dynamically adds a new Hypercore to the replication stream" style="shape=umlFrame;whiteSpace=wrap;html=1;width=521;height=52;boundedLbl=1;verticalAlign=middle;align=left;spacingLeft=5;fontSize=8;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;connectable=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="89" y="450" width="751" height="770" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-30" value="Join on Topic: "sensor network"<br>Sensor-Node 1 and Node 3 form Swarm" style="shape=umlFrame;whiteSpace=wrap;html=1;width=181;height=40;boundedLbl=1;verticalAlign=middle;align=left;spacingLeft=5;fontSize=8;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;connectable=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="89" y="70" width="750" height="290" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-18" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;endArrow=classic;endFill=1;startArrow=classic;startFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="271.02000000000044" y="890" as="sourcePoint" />
<mxPoint x="463.02000000000044" y="890" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-19" value="<div style="font-size: 8px;">Start announcing self and <br>finding Nodes on DHT.<br> Join swarm with Topic<br></div>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-18" vertex="1" connectable="0">
<mxGeometry x="0.0155" y="-2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-22" value="Sensor-Node 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="109" y="550" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-23" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;endArrow=classic;endFill=1;startArrow=classic;startFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-65" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="465.8435294117644" y="890" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-24" value="<div style="font-size: 8px;">Start announcing self and <br>finding Nodes on DHT.<br> Join swarm with Topic<br></div>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-23" vertex="1" connectable="0">
<mxGeometry x="-0.4038" y="2" relative="1" as="geometry">
<mxPoint x="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-27" value="Sensor-Node 2" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="659" y="550" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-28" value="Hyperswarm DHT" style="line;strokeWidth=4;direction=south;html=1;perimeter=backbonePerimeter;points=[];outlineConnect=0;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="459" y="540" width="10" height="650" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-33" value="Sensor-Node 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="109" y="690" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-36" value="Sensor-Node 2" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="659" y="690" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-7" value="Sensor-Node 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="109" y="210" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-12" value="Node 3" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="659" y="210" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;curved=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;endArrow=none;endFill=0;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-7" target="x7AMFaH7mYMsXKSdwF_M-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="189" y="120" />
<mxPoint x="739" y="120" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-2" value="Share the same PK" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="x7AMFaH7mYMsXKSdwF_M-1" vertex="1" connectable="0">
<mxGeometry x="-0.001" y="-2" relative="1" as="geometry">
<mxPoint y="-12" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-13" value="Hyperswarm DHT" style="line;strokeWidth=4;direction=south;html=1;perimeter=backbonePerimeter;points=[];outlineConnect=0;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="459" y="160" width="10" height="180" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-3" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;endArrow=classic;endFill=1;startArrow=classic;startFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-7" target="x7AMFaH7mYMsXKSdwF_M-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-4" value="<div style="font-size: 8px;">Start announcing self and <br>finding Nodes on DHT.<br> Join swarm with Topic<br></div>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-3" vertex="1" connectable="0">
<mxGeometry x="0.0155" y="-2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-5" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;startArrow=none;startFill=0;endArrow=classic;endFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-40" target="x7AMFaH7mYMsXKSdwF_M-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-6" value="Replicate data /w live updates" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-5" vertex="1" connectable="0">
<mxGeometry x="-0.0948" y="-1" relative="1" as="geometry">
<mxPoint x="13" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-8" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;endArrow=classic;endFill=1;startArrow=classic;startFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-12" target="x7AMFaH7mYMsXKSdwF_M-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-9" value="Start announcing self and <br>finding Nodes on DHT.<br> Join swarm with Topic" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-8" vertex="1" connectable="0">
<mxGeometry x="-0.4038" y="2" relative="1" as="geometry">
<mxPoint x="-42" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-10" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;startArrow=classic;startFill=1;endArrow=none;endFill=0;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-44" target="x7AMFaH7mYMsXKSdwF_M-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-11" value="Replicate data /w live updates" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-10" vertex="1" connectable="0">
<mxGeometry x="-0.0397" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-39" value="Corestore" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="109" y="270" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-40" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-39" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-43" value="Corestore" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="659" y="270" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-44" value="Remote Hypercore (PK Sensor-Node 1)" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-43" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-70" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;fontSize=8;startArrow=classic;startFill=1;endArrow=classic;endFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-39" target="x7AMFaH7mYMsXKSdwF_M-43" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-71" value="connection established" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-70" vertex="1" connectable="0">
<mxGeometry x="-0.0289" y="1" relative="1" as="geometry">
<mxPoint x="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-45" value="<div>Local Hypercore: Hypercore initialized with <b>new </b>Keypair</div><div>Remote Hypercore: Hypercore initialized with <b>remote public key</b> to read data<br></div>" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="89" y="410" width="281" height="30" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-46" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="109" y="610" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-47" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-46" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-48" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="659" y="610" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-50" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-48" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-103" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;fontSize=8;startArrow=none;startFill=0;endArrow=classic;endFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-27" target="x7AMFaH7mYMsXKSdwF_M-48" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="890" y="565" />
<mxPoint x="890" y="623" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-104" value="Need Sensor-Data <br>from Sensor-Node 1 and<br>calls method to init HC<br>with PK from Sensor-Node 1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-103" vertex="1" connectable="0">
<mxGeometry x="-0.1395" y="-4" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-52" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="109" y="750" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-53" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-52" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-55" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="659" y="750" width="160" height="78" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-56" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-55" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-107" value="Remote Hypercore (PK Sensor-Node 1)" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-55" vertex="1">
<mxGeometry y="52" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-108" style="edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=8;startArrow=none;startFill=0;endArrow=classic;endFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-36" target="x7AMFaH7mYMsXKSdwF_M-107" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="890" y="705" />
<mxPoint x="890" y="815" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-109" value="Init HC with PK from <br>Sensor-Node 1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-108" vertex="1" connectable="0">
<mxGeometry x="-0.1059" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-58" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="110.02000000000044" y="920" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-59" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-58" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-61" value="Sensor-Node 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="110.02000000000044" y="860" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-62" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="660.0200000000004" y="920" width="160" height="78" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-63" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-62" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-64" value="Remote Hypercore (PK Sensor-Node 1)" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-62" vertex="1">
<mxGeometry y="52" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-65" value="Sensor-Node 2" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="660.0200000000004" y="860" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-80" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=8;startArrow=classic;startFill=1;endArrow=classic;endFill=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-59" target="x7AMFaH7mYMsXKSdwF_M-64" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-81" value="Replicate data /w live updates" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-80" vertex="1" connectable="0">
<mxGeometry x="-0.1492" y="-2" relative="1" as="geometry">
<mxPoint x="30" y="2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-82" value="Sensor-Node 1" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="110.02000000000044" y="1030" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-67" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;fontSize=8;startArrow=classic;startFill=1;endArrow=classic;endFill=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-52" target="x7AMFaH7mYMsXKSdwF_M-107" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-69" value="Share same PK" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-67" vertex="1" connectable="0">
<mxGeometry x="-0.076" y="-1" relative="1" as="geometry">
<mxPoint x="15" y="4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-83" value="Corestore" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fontSize=8;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="110.02000000000044" y="1090" width="160" height="52" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-84" value="Local Hypercore" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-83" vertex="1">
<mxGeometry y="26" width="160" height="26" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-85" value="Sensor-Node 2" style="whiteSpace=wrap;html=1;align=center;fontSize=12;" parent="3TmlsE2vNMLRQlV-ahkL-1" vertex="1">
<mxGeometry x="660.0200000000004" y="1030" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-97" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=8;startArrow=none;startFill=0;endArrow=classic;endFill=1;curved=1;" parent="3TmlsE2vNMLRQlV-ahkL-1" source="x7AMFaH7mYMsXKSdwF_M-82" target="x7AMFaH7mYMsXKSdwF_M-84" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="51.02000000000044" y="1045" />
<mxPoint x="51.02000000000044" y="1129" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="x7AMFaH7mYMsXKSdwF_M-98" value="writes sensor <br>Data to DB" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;" parent="x7AMFaH7mYMsXKSdwF_M-97" vertex="1" connectable="0">
<mxGeometry x="-0.0015" y="-1" relative="1" as="geometry">