-
Notifications
You must be signed in to change notification settings - Fork 0
/
spheresDependencies.drawio
1217 lines (1217 loc) · 102 KB
/
spheresDependencies.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="2021-02-25T17:45:41.158Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36" etag="i7gLLcHVVHCrlozvfxUT" version="14.4.2" type="github">
<diagram id="DJ9-_ddOUYUHQFPEdcVO" name="Page-1">
<mxGraphModel dx="1185" dy="1735" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="LYr8p_JjXjSX1QbG3yEF-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="LYr8p_JjXjSX1QbG3yEF-1" target="LYr8p_JjXjSX1QbG3yEF-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-1" value="Family" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="20" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="LYr8p_JjXjSX1QbG3yEF-2" target="LYr8p_JjXjSX1QbG3yEF-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-2" value="Health" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="180" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="LYr8p_JjXjSX1QbG3yEF-3" target="LYr8p_JjXjSX1QbG3yEF-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-3" value="Effectiveness" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="340" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="LYr8p_JjXjSX1QbG3yEF-4" target="LYr8p_JjXjSX1QbG3yEF-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-4" value="Learning" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="500" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="LYr8p_JjXjSX1QbG3yEF-5" target="LYr8p_JjXjSX1QbG3yEF-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-5" value="Career" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="660" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="LYr8p_JjXjSX1QbG3yEF-6" target="LYr8p_JjXjSX1QbG3yEF-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-6" value="Money" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="820" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-7" value="Self-investment" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="980" y="290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-14" value="<font style="font-size: 8px">- If I'm unhappy in the family I feel bad<br><br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="80" y="370" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-15" value="<font style="font-size: 8px">- If I'm sick or tired, I can't be effective<br><br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="260" y="370" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-16" value="<font style="font-size: 8px">- If I'm not effective I don't have time to learn<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="420" y="370" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-17" value="<font style="font-size: 8px">- If I'm not learning nothing is changing<br>&nbsp; in my career<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="590" y="370" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-18" value="<font style="font-size: 8px">- If my career isn't growing I don't earn<br>much money<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="750" y="370" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="LYr8p_JjXjSX1QbG3yEF-19" value="<font style="font-size: 8px">- I can't invest more in me if I don't <br>&nbsp; have money<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="910" y="370" width="140" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-1" value="Family" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="350" y="720" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-2" value="Health" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="350" y="680" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-3" value="Effectiveness" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="350" y="640" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-4" value="Learning" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="1" vertex="1">
<mxGeometry x="350" y="600" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-5" value="Career" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="350" y="560" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-6" value="Money" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="1" vertex="1">
<mxGeometry x="350" y="520" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-7" value="Self-investment" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="350" y="480" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-8" value="<font style="font-size: 8px">Family should provide positive<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="730" width="120" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-10" value="<font style="font-size: 8px">Health should provide energy<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="690" width="120" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-11" value="<font style="font-size: 8px">Effectiveness should provide time&nbsp;<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="650" width="140" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-12" value="<font style="font-size: 8px">Learning should provide knowledge<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="610" width="140" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-13" value="<font style="font-size: 8px">Career should provide good salary<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="570" width="140" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-14" value="<font style="font-size: 8px">Money should provide opportunities<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="530" width="140" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-15" value="<font style="font-size: 8px">Self-investment should provide reinforcement for other spheres&nbsp;<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="490" width="240" height="20" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-16" value="We don't respect each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4220" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-26" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#f8cecc;strokeColor=#FF6666;" parent="1" source="00tfdcvLLPrU-U2BGuaB-17" target="3LwuBaPG_M0YYdpSXuYX-16" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5320" y="1350" />
<mxPoint x="5320" y="2670" />
<mxPoint x="4820" y="2670" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="00tfdcvLLPrU-U2BGuaB-17" target="Hi7dQYCk58TvH-89NMs--6" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5780" y="490" />
<mxPoint x="4730" y="490" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=1;entryDx=0;entryDy=0;" parent="1" source="00tfdcvLLPrU-U2BGuaB-17" target="ftozorBJPaaU_CmOqwdz-7" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5245" y="740" />
<mxPoint x="5245" y="1390" />
<mxPoint x="4751" y="1390" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-20" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=1;entryDx=0;entryDy=0;" parent="1" source="00tfdcvLLPrU-U2BGuaB-17" target="Hi7dQYCk58TvH-89NMs--30" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5810" y="440" />
<mxPoint x="5810" y="440" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-17" value="We don't trust each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5720" y="550" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" source="00tfdcvLLPrU-U2BGuaB-18" target="3LwuBaPG_M0YYdpSXuYX-16" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="3850" y="-100" />
<mxPoint x="3850" y="2670" />
<mxPoint x="4790" y="2670" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-18" value="We don't understand each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3920" y="-130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-19" value="We don't know each other intimately" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3760" y="-210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-21" value="We aren't tolerant to each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3821" y="-290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-22" value="We don't give a feedback in a right way" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3821" y="-370" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-23" value="We aren't working on our shortcomings in building relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3751" y="-450" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-24" value="We aren't working on our relationships together " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5530" y="-616" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-25" value="We don't have proper roles and obligations for each of us " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5408" y="-300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-26" value="We are thinking that we are giving more then getting " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5333" y="-460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-27" value="We don't know how we are investing in relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5355.5" y="-380" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-29" value="We don't have Mutual plans and goals " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#9673a6;fillColor=#e1d5e7;" parent="1" vertex="1">
<mxGeometry x="5556" y="-300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-30" value="We don't have any mutual roadmap for two of us " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5556" y="-380" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-31" value="Our expectations aren't clear " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#d79b00;fillColor=#ffe6cc;" parent="1" vertex="1">
<mxGeometry x="5556" y="-460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--22" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#000000;" parent="1" source="00tfdcvLLPrU-U2BGuaB-32" target="3LwuBaPG_M0YYdpSXuYX-33" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5240" y="2750" />
<mxPoint x="4550" y="2750" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-33" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.583;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#000000;" parent="1" source="00tfdcvLLPrU-U2BGuaB-32" target="3LwuBaPG_M0YYdpSXuYX-21" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-32" value="We rely to much on stereotypes rather than relying on experience and learning " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5190" y="2410" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-33" value="We have different views on our relationships " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5450" y="-540" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-34" value="We aren't ready to openly discuss our problems in&nbsp; relationships. " style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5478" y="-210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="T9ISC0xVuCYEU8GKYNPe-2" value="it's easy to overestimate or understimate if it's not measured" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5278" y="-300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-1" value="It's important to be tolerant to each other to give a kind feedback or reminder" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="3960" y="-290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-2" value="We don't know how to give a feedback in a right way" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=2;" parent="1" vertex="1">
<mxGeometry x="3690" y="-290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-3" value="It's difficult to work on something if you don't get a feedback in a right way" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="3691" y="-370" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#f8cecc;exitX=0.344;exitY=1.026;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="vEPXqQitPNpgmS91bXZF-14" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4766" y="1970" />
<mxPoint x="3720" y="1970" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#f8cecc;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="sOV_pKNVG9P2FTH4Zfgg-2" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4780" y="1980" />
<mxPoint x="3620" y="1980" />
<mxPoint x="3620" y="-170" />
<mxPoint x="3750" y="-170" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;strokeColor=#FF6666;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="3LwuBaPG_M0YYdpSXuYX-21" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4810" y="1880" />
<mxPoint x="5168" y="1880" />
<mxPoint x="5168" y="1650" />
<mxPoint x="5450" y="1650" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="vEPXqQitPNpgmS91bXZF-20" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4785" y="1870" />
<mxPoint x="4930" y="1870" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.898;entryY=1.056;entryDx=0;entryDy=0;fillColor=#f8cecc;entryPerimeter=0;" parent="1" target="Hi7dQYCk58TvH-89NMs--3" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="4770" y="1889" as="sourcePoint" />
<mxPoint x="5020" y="1463" as="targetPoint" />
<Array as="points">
<mxPoint x="4770" y="1876" />
<mxPoint x="4458" y="1876" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.587;entryY=1.043;entryDx=0;entryDy=0;strokeColor=#FF6666;entryPerimeter=0;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="3LwuBaPG_M0YYdpSXuYX-33" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4785" y="1960" />
<mxPoint x="4400" y="1960" />
<mxPoint x="4400" y="2670" />
<mxPoint x="4560" y="2670" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--33" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.383;entryY=0.983;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF6666;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="3LwuBaPG_M0YYdpSXuYX-3" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4740" y="2220" />
<mxPoint x="4836" y="2220" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="vEPXqQitPNpgmS91bXZF-4" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4760" y="1880" />
<mxPoint x="4320" y="1880" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-22" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;strokeColor=#000000;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="Bc-SZ7N8A4xLQ5Tqbq3g-13" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4780" y="1870" />
<mxPoint x="5648" y="1870" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.499;entryY=1.036;entryDx=0;entryDy=0;strokeColor=#000000;entryPerimeter=0;" parent="1" source="sOV_pKNVG9P2FTH4Zfgg-4" target="Bc-SZ7N8A4xLQ5Tqbq3g-12" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="4725" y="1885" as="sourcePoint" />
<mxPoint x="3920" y="405" as="targetPoint" />
<Array as="points">
<mxPoint x="4740" y="1885" />
<mxPoint x="3920" y="1885" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-4" value="We don't learn how to build a family effectively" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;fillColor=#f8cecc;" parent="1" vertex="1">
<mxGeometry x="4725" y="1890" width="120" height="50" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-5" value="We don't have a good system to learn how to build a good family" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4795" y="1973" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-6" value="it's important to have good system to learn how to do anything" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4930" y="1973" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-7" value="We have negative experience in our relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5826" y="640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-8" value="<font style="font-size: 8px">If I'm unhappy in the family I feel bad<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="710" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-9" value="<font style="font-size: 8px">If I'm sick or tired, I can't be effective<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="200" y="670" width="140" height="20" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-10" value="<font style="font-size: 8px">If I'm not effective I don't have time to learn<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="180" y="630" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-11" value="<font style="font-size: 8px">If I'm not learning nothing is changing in my career<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="590" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-12" value="<font style="font-size: 8px">If my career isn't growing I don't earn much money<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="550" width="190" height="20" as="geometry" />
</mxCell>
<mxCell id="sOV_pKNVG9P2FTH4Zfgg-13" value="<font style="font-size: 8px">I can't invest more in me if I don't&nbsp;have money<br></font>" style="text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="170" y="510" width="180" height="20" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-2" value="We aren't investing in our relationships enough" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5288" y="-617" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-3" value="We should know how to invest in relationships to do that right" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5220.5" y="-380" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-4" value="It's easier to insult someone if you aren't respect them" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4090" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-5" value="We don't know what to expect from another person" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5860" y="550" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-6" value="We expect inadequate reaction to our initiative&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5720" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-7" value="We are trying to be passive and sweep everything under the rag" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#6c8ebf;fillColor=#dae8fc;" parent="1" vertex="1">
<mxGeometry x="5688" y="-130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--19" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#000000;" parent="1" source="Zmv7tB-Ae4RG4BNqRWOU-8" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="5300" y="-70" as="targetPoint" />
<Array as="points">
<mxPoint x="5300" y="-70" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-8" value="We are afraid of conflicts" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5200" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-9" value="We are avoiding difficult topics" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5278" y="-130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.676;entryY=1.028;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="Hi7dQYCk58TvH-89NMs--13" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="5120" y="140" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="Zmv7tB-Ae4RG4BNqRWOU-10" target="Zmv7tB-Ae4RG4BNqRWOU-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-10" value="Fights make our relationships worse" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5122" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-11" value="We are insulting each other during fights&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4360" y="194" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-12" value="We don't want our relationships to become worse" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5382" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-13" value="Fights makes us sick and unhappy" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5252" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-14" value="It's easy to start a fight where we're discussing a difficult topics" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5340" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-15" value="We should be ready to discuss difficult topics" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5548" y="-130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-16" value="Our relationships is a difficult topic" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5418" y="-130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-17" value="We need to openly discuss our roles and obligations for mutual understanding" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5338" y="-210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-18" value="We need mutual plans and goals to work as a team" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5618" y="-210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-25" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#f8cecc;dashed=1;" parent="1" source="Zmv7tB-Ae4RG4BNqRWOU-19" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4080" y="20" />
<mxPoint x="4900" y="20" />
<mxPoint x="4900" y="620" />
<mxPoint x="5730" y="620" />
</Array>
<mxPoint x="5730" y="610" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-19" value="We are afraid to be open" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3990" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-20" value="We are afraid to be weak&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3920" y="30" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-21" value="We cause pain to each other&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4130" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-22" value="We are pretending to be strong and don't show our pain" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4060" y="30" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-23" value="We are trying to protect our ego&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="3990" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Zmv7tB-Ae4RG4BNqRWOU-24" value="To understand someone we should be open" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="3854" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#f8cecc;strokeColor=#FF6666;" parent="1" source="vEPXqQitPNpgmS91bXZF-1" target="sOV_pKNVG9P2FTH4Zfgg-7" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="6030" y="-620" />
<mxPoint x="6030" y="750" />
<mxPoint x="5886" y="750" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-1" value="Our relationships don't become better" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4620" y="-650" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-2" value="It's important to invest in something to improve it" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5150" y="-617" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-3" value="Teamwork is important for improving relationships" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5679" y="-616" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-4" value="We don't really know why respect is important" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4290" y="543" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-6" value="We don't have a good family culture" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=3;" parent="1" vertex="1">
<mxGeometry x="4710" y="650" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-7" value="family culture provides an understanding of values and rules" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4850" y="650" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-8" value="It's important to understand what means to respect" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4160" y="543" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-9" value="We don't have an example of a good family vision" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=1;" parent="1" vertex="1">
<mxGeometry x="4530" y="1800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-10" value="It's difficult to create a good family vision without a good example or guidence" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4726" y="1800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-11" value="clear directions, restrictions and values form a core of the family culture" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4785" y="730" width="120" height="64" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-12" value="We don't have a good vision for our family" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4728" y="1720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-13" value="We aren't studying each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3720" y="-130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-35" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;dashed=1;" parent="1" source="vEPXqQitPNpgmS91bXZF-14" target="3LwuBaPG_M0YYdpSXuYX-33" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="3740" y="2660" />
<mxPoint x="4520" y="2660" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-14" value="We don't understand an importance of studying each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=2;" parent="1" vertex="1">
<mxGeometry x="3660" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="vEPXqQitPNpgmS91bXZF-20" value="We don't understand the importance of family vision" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=1;" parent="1" vertex="1">
<mxGeometry x="4870" y="1800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-1" value="We aren't looking for effective system for building families" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4862" y="2060" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-3" value="We don't invest time and money in our relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4790" y="2140" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-5" value="We don't think that relationships building is a priority" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4850" y="2230" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-7" value="It's a common way of thinking that relationships should be built by itself&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5470" y="2410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-8" value="It's easy to believe that relationships will work by itself and there is no need to work on it" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5330" y="2410" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-9" value="We think that we're doing well while everything is OK" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4660" y="2320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-10" value="We aren't measuring our relationships<br>effectiveness" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4722" y="2410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-11" value="We don't have a goal in our relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4643" y="2500" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-12" value="It's important to have a goal in order to be effective in terms of something" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4781" y="2500" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-15" value="It's not a common practice to have a goal for relationships" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4900" y="2590" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-16" value="We're not innovative in building relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4760" y="2590" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="3LwuBaPG_M0YYdpSXuYX-17" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="4801" y="2651" as="targetPoint" />
<Array as="points">
<mxPoint x="4805" y="2670" />
<mxPoint x="4801" y="2670" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-17" value="Innovations require trust and understanding" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4765" y="2680" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-19" value="It's important to know what someone is doing to be trustfull" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5556" y="640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-20" value="It's important to have a concrete position about relationships and share it" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5420" y="640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-30" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.392;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;fillColor=#f8cecc;dashed=1;" parent="1" source="3LwuBaPG_M0YYdpSXuYX-21" target="3LwuBaPG_M0YYdpSXuYX-11" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5130" y="1600" />
<mxPoint x="5130" y="2580" />
<mxPoint x="4690" y="2580" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-21" value="I don't know what do I want from my relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=2;" parent="1" vertex="1">
<mxGeometry x="5420" y="800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-22" value="I don't share what I need with my wife" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5420" y="715" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-6" value="We hope that our relationships will work by itself somehow" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5190" y="2320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-32" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;" parent="1" source="3LwuBaPG_M0YYdpSXuYX-31" target="3LwuBaPG_M0YYdpSXuYX-11" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4673" y="2580" />
<mxPoint x="4673" y="2580" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-31" value="Goals of all family should be included in the mutual goal" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4630" y="2590" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="00tfdcvLLPrU-U2BGuaB-20" value="We are&nbsp; rude to each other" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4220" y="194" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-36" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.121;entryY=1.028;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="3LwuBaPG_M0YYdpSXuYX-33" target="3LwuBaPG_M0YYdpSXuYX-11" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4550" y="2580" />
<mxPoint x="4658" y="2580" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-33" value="I don't know what goals my wife has about relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=1;" parent="1" vertex="1">
<mxGeometry x="4490" y="2590" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-34" value="it's much easier to be tolerant when you know them closer" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="3900" y="-210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#FF6666;" parent="1" source="3LwuBaPG_M0YYdpSXuYX-37" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="5670" y="-540" />
<mxPoint x="6000" y="-540" />
<mxPoint x="6000" y="1000" />
<mxPoint x="5510" y="1000" />
<mxPoint x="5510" y="860" />
</Array>
<mxPoint x="5510" y="860" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-37" value="I'm not working on relationships by myself&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=4;" parent="1" vertex="1">
<mxGeometry x="5610" y="-690" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-1" value="We aren't in touch without measurements" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4580" y="2410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-3" value="There is no need to fix something that aren't broken" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4523" y="2320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-4" value="We don't understand an importance in building our relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=1;" parent="1" vertex="1">
<mxGeometry x="5060" y="2320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-4" value="Not a priority, might work by itself, why to do anything" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5000" y="2230" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-5" value="Investigation and solutions need time and money" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4928" y="2140" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-11" value="We don't have clear directions, restrictions or values" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=1;" parent="1" vertex="1">
<mxGeometry x="4645" y="730" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="Bc-SZ7N8A4xLQ5Tqbq3g-12" target="Zmv7tB-Ae4RG4BNqRWOU-19" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="3920" y="320" />
<mxPoint x="3910" y="320" />
<mxPoint x="3910" y="20" />
<mxPoint x="4050" y="20" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-12" value="We don't understand an importance of open communitation" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3860" y="350" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="Bc-SZ7N8A4xLQ5Tqbq3g-13" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="5750" y="611" as="targetPoint" />
<Array as="points">
<mxPoint x="5690" y="630" />
<mxPoint x="5750" y="630" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Bc-SZ7N8A4xLQ5Tqbq3g-13" value="We don't understand an importance of trust" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5618" y="870" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="3LwuBaPG_M0YYdpSXuYX-18" value="Neither of us know how to build a good relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5700" y="640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.775;entryY=0.989;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="Hi7dQYCk58TvH-89NMs--3" target="00tfdcvLLPrU-U2BGuaB-20" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4410" y="290" />
<mxPoint x="4313" y="290" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--3" value="We don't know how to have a constructive fights" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4350" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=1;entryDx=0;entryDy=0;strokeColor=#000000;" parent="1" source="Hi7dQYCk58TvH-89NMs--6" target="Hi7dQYCk58TvH-89NMs--9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--6" value="We are trying to protect ourselves" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4670" y="355" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="Hi7dQYCk58TvH-89NMs--9" target="00tfdcvLLPrU-U2BGuaB-20" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4700" y="270" />
<mxPoint x="4330" y="270" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--9" value="We have a defensive positions" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#d6b656;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="4640" y="277" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="Hi7dQYCk58TvH-89NMs--10" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="4420" y="10" as="targetPoint" />
<Array as="points">
<mxPoint x="4420" y="60" />
<mxPoint x="4420" y="10" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--10" value="We can't find a constructive solution for our problems" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4285" y="30" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--11" value="We don't have a constructive dialogue" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4285" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#000000;" parent="1" source="Hi7dQYCk58TvH-89NMs--13" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="5290" y="-70" as="targetPoint" />
<Array as="points">
<mxPoint x="5043" y="-60" />
<mxPoint x="5290" y="-60" />
<mxPoint x="5290" y="-70" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--13" value="Our fights are meaningless" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4353" y="-50" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--16" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="4411" y="24" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--21" value="Clear expectations are important for a trust" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="5700" y="-460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--26" value="<font style="font-size: 20px">Goals&nbsp; Vision Culture<br>for the family<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="685" y="1443" width="200" height="40" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--27" value="We are trying to atack" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;fillColor=#f8cecc;" parent="1" vertex="1">
<mxGeometry x="4080" y="194" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--28" value="Run or fight" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;fillColor=#f8cecc;" parent="1" vertex="1">
<mxGeometry x="3930" y="194" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--30" value="We expect inadequate reaction to our initiative&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;fillColor=#d5e8d4;" parent="1" vertex="1">
<mxGeometry x="5720" y="30" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--31" value="We don't have any education related to relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4920" y="2410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--32" value="We don't have an examples in our families" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="5055" y="2410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--34" value="<font style="font-size: 20px">Goals<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="625" y="1558" width="70" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--35" value="What do we <b>want</b> to achieve?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="575" y="1588" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--36" value="<font style="font-size: 20px">Vision<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="625" y="1638" width="70" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--37" value="<b>Who </b>we want to be?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="595" y="1668" width="130" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--38" value="<font style="font-size: 20px">Culture<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="620" y="1788" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--39" value="What <b>environment </b>do we want to live and<br>leave for our children to live? and role in society?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="520" y="1813" width="280" height="30" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--40" value="<font style="font-size: 20px">Goals<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="875" y="1558" width="70" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--41" value="What do I&nbsp;<b>want</b> to achieve?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="830" y="1588" width="160" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--42" value="<font style="font-size: 20px">Vision<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="875" y="1638" width="70" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--43" value="<b>Who</b> I want to be?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="855" y="1668" width="110" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--44" value="<font style="font-size: 20px">Culture<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="870" y="1788" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--45" value="What <b>environment </b>I want to live in?&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="805" y="1818" width="210" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--46" value="We unconciously are trying to use our visions to build the new family" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4870" y="1890" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--47" value="We get a vision from our families" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4590" y="1890" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--50" value="<font style="font-size: 20px">Mission<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="615" y="1711" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--51" value="What our <b>values</b>&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="600" y="1741" width="110" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--52" value="<font style="font-size: 20px">Mission<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="865" y="1711" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--53" value="What my&nbsp;<b>values&nbsp;</b>are? <br>What I value and <br>what should be removed?&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="825" y="1726" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="Hi7dQYCk58TvH-89NMs--54" target="v_mpCDO2NobiZ9vM91h0-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--54" value="We don't have a mission" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=1;" parent="1" vertex="1">
<mxGeometry x="4650" y="1140" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--55" value="Creating a vision it's a long and heavy process of our visions fusion" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4590" y="1720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--56" value="Goals" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#d6b656;strokeWidth=1;fillColor=#fff2cc;" parent="1" vertex="1">
<mxGeometry x="220" y="1798" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--57" value="Vision" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#d79b00;strokeWidth=1;fillColor=#ffe6cc;" parent="1" vertex="1">
<mxGeometry x="220" y="1711" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--58" value="Mission" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;strokeWidth=1;fillColor=#f8cecc;" parent="1" vertex="1">
<mxGeometry x="220" y="1628" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--59" value="Culture" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#6c8ebf;strokeWidth=1;fillColor=#dae8fc;" parent="1" vertex="1">
<mxGeometry x="220" y="1538" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--60" value="Society" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="155" y="1558" width="50" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--61" value="Family" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="155" y="1648" width="50" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--62" value="Personal" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="150" y="1823" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="Hi7dQYCk58TvH-89NMs--63" value="Couple" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="155" y="1731" width="50" height="20" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-1" value="We don't have a good example of family vision" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4460" y="1890" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-2" value="We aren't working on our family vision" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4794" y="1640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-3" value="We need to discuss our differences to be able to work on our vision effectively" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4656" y="1640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-4" value="The process of creating our mutual vision isn't managed by anybody" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4870" y="1720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-5" value="Our family vision is being formed wildly and painfully" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4730" y="1560" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-6" value="We don't have a good family vision" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4785" y="1480" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-7" value="We aren't ready to build our relationships consciously" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4661" y="1310" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ftozorBJPaaU_CmOqwdz-8" value="Without a commitment we can't trust each other" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4925" y="1400" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-1" value="If we talk and decide on our mutual family vision it'll mean a commitment" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4920" y="1480" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-2" value="We don't have a commitment" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4785" y="1400" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-3" value="no goal no conscious movement" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4490" y="1480" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="v_mpCDO2NobiZ9vM91h0-4" target="ftozorBJPaaU_CmOqwdz-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-4" value="We don't understand what vision we should move towards" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4630" y="1480" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-6" value="Our relationship can't move forward" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4580" y="1220" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-7" value="There is a small chance in improving relationships without conscious work" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4523" y="1310" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-8" value="The next step in our relations is to create a mission" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4728" y="1220" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-9" value="We don't know our values and what we should remove or sustain" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=4;" parent="1" vertex="1">
<mxGeometry x="4720" y="810" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-10" value="Mission provides us with values and answers about what to do and what do not" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4785" y="1140" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.466;entryY=1.021;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="v_mpCDO2NobiZ9vM91h0-17" target="vEPXqQitPNpgmS91bXZF-4" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4346" y="623" />
<mxPoint x="4346" y="623" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-17" value="Learning about respect is a part of an education" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4331" y="633" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-24" value="<font style="font-size: 20px">Goals<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1100" y="1558" width="70" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-25" value="What do I&nbsp;<b>want</b> to achieve?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1055" y="1588" width="160" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-26" value="<font style="font-size: 20px">Vision<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1100" y="1638" width="70" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-27" value="<b>Who</b> I want to be?" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1080" y="1668" width="110" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-28" value="<font style="font-size: 20px">Culture<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1095" y="1788" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-29" value="What <b>environment </b>I want to live in?&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1030" y="1818" width="210" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-30" value="<font style="font-size: 20px">Mission<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1090" y="1711" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-31" value="What my&nbsp;<b>values&nbsp;</b>are? <br>What I value and <br>what should be removed?&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1050" y="1726" width="160" height="50" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-32" value="<font style="font-size: 20px">Company<br></font>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;" parent="1" vertex="1">
<mxGeometry x="1080" y="1480" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="v_mpCDO2NobiZ9vM91h0-34" value="I don't know what do I want from my relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;strokeWidth=2;fillColor=#f8cecc;" parent="1" vertex="1">
<mxGeometry x="5372" y="950" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-1" value="We feel tired" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3990" y="853" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-2" value="It's difficult to stay calm when I'm tired" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4120" y="853" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.409;entryY=0.997;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="DHyQ6ZdZvimEhRtN-Kc9-3" target="00tfdcvLLPrU-U2BGuaB-20" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="4120" y="680" />
<mxPoint x="4070" y="680" />
<mxPoint x="4070" y="290" />
<mxPoint x="4269" y="290" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-3" value="We become irritated" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4060" y="780" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-5" value="It's easy to start being rude when we're irritated" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4190" y="780" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-7" value="I don't have enough energy" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="4060" y="930" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=1;entryDx=0;entryDy=0;" parent="1" source="DHyQ6ZdZvimEhRtN-Kc9-8" target="00tfdcvLLPrU-U2BGuaB-20" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="3990" y="280" />
<mxPoint x="4250" y="280" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-8" value="We become angry" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;" parent="1" vertex="1">
<mxGeometry x="3930" y="780" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-10" value="We can't control our emotions" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=3;" parent="1" vertex="1">
<mxGeometry x="4495" y="543" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-11" value="It's easy to snap when it's an emotional dialogue" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="4630" y="543" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-12" value="We aren't effective in building our relationships" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#FF6666;strokeWidth=3;" parent="1" vertex="1">
<mxGeometry x="4661" y="2810" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-13" value="Family" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="1195" y="850" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-14" value="Health" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="830" y="990" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-15" value="Effectiveness" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="830" y="934" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-16" value="Learning" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="1" vertex="1">
<mxGeometry x="830" y="878" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-17" value="Business (Company)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="490" y="933" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-18" value="Money" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="1" vertex="1">
<mxGeometry x="830" y="676" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-19" value="Self-investment" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="830" y="620" width="250" height="40" as="geometry" />
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-21" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="DHyQ6ZdZvimEhRtN-Kc9-14" target="DHyQ6ZdZvimEhRtN-Kc9-13" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1115" y="1010" as="sourcePoint" />
<mxPoint x="1165" y="960" as="targetPoint" />
<Array as="points">
<mxPoint x="1265" y="1010" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="DHyQ6ZdZvimEhRtN-Kc9-22" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;" parent="1" source="DHyQ6ZdZvimEhRtN-Kc9-15" target="DHyQ6ZdZvimEhRtN-Kc9-13" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1090" y="1020" as="sourcePoint" />
<mxPoint x="1330" y="900" as="targetPoint" />
<Array as="points">
<mxPoint x="1235" y="954" />
</Array>
</mxGeometry>