-
Notifications
You must be signed in to change notification settings - Fork 0
/
FuzzyLogic.drawio
1302 lines (1302 loc) · 99.6 KB
/
FuzzyLogic.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="2023-08-08T11:51:59.733Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36" etag="haxkvs6EHdGSu4GH84Dv" version="21.6.6" type="github">
<diagram name="Page-1" id="ywP7yZrH698e5ii8Rh-N">
<mxGraphModel dx="957" dy="502" 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="O12kNY359wAgyYqPcDNP-6" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="1">
<mxGeometry x="1967.5" y="529" width="101" height="101" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-1" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="120" y="540" as="sourcePoint" />
<mxPoint x="120" y="200" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-2" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="100" y="520" as="sourcePoint" />
<mxPoint x="480" y="520" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-3" value="Certainty" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="280" y="540" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-4" value="<div>Anomaly<br></div><div>Hit</div><div>Risk<br></div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="40" y="345" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-5" value="0" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="80" y="490" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-6" value="0" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="100" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-8" value="100" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="50" y="205" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-9" value="100" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="450" y="520" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-10" value="Success" style="rounded=0;whiteSpace=wrap;html=1;strokeWidth=0;" parent="1" vertex="1">
<mxGeometry x="280" y="320" width="200" height="200" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-11" value="Critical Failure" style="rounded=0;whiteSpace=wrap;html=1;rotation=-90;strokeWidth=0;" parent="1" vertex="1">
<mxGeometry x="-20" y="340" width="320" height="40" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-13" value="Critical Failure" style="rounded=0;whiteSpace=wrap;html=1;rotation=0;strokeWidth=0;" parent="1" vertex="1">
<mxGeometry x="120" y="200" width="360" height="40" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-16" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.894;exitY=1.013;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="446.0799999999999" y="321.03999999999996" as="sourcePoint" />
<mxPoint x="480" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-17" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.894;exitY=1.013;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="416" y="321" as="sourcePoint" />
<mxPoint x="450" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-18" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.894;exitY=1.013;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="380" y="320" as="sourcePoint" />
<mxPoint x="414" y="239" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-19" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.894;exitY=1.013;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="345" y="320" as="sourcePoint" />
<mxPoint x="379" y="239" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-20" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.894;exitY=1.013;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="311" y="321" as="sourcePoint" />
<mxPoint x="345" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-26" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.894;exitY=1.013;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="311" y="322" as="sourcePoint" />
<mxPoint x="345" y="241" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-27" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="280" y="320" as="sourcePoint" />
<mxPoint x="315" y="241" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-28" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0;exitY=0;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="520" as="sourcePoint" />
<mxPoint x="279" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-29" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="440" as="sourcePoint" />
<mxPoint x="244" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-30" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="vWf68CewMzJHY7jxAW_s-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="176" y="322" as="sourcePoint" />
<mxPoint x="210" y="241" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-62" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="475" y="320" as="sourcePoint" />
<mxPoint x="440" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-63" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="445" y="320" as="sourcePoint" />
<mxPoint x="410" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-64" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="415" y="320" as="sourcePoint" />
<mxPoint x="380" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-65" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="385" y="320" as="sourcePoint" />
<mxPoint x="350" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-66" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="345" y="320" as="sourcePoint" />
<mxPoint x="310" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-67" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="305" y="320" as="sourcePoint" />
<mxPoint x="270" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-68" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=-0.017;exitY=0.021;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="vWf68CewMzJHY7jxAW_s-10" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="290" y="360" as="sourcePoint" />
<mxPoint x="240" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-70" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="260" y="360" as="sourcePoint" />
<mxPoint x="210" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-71" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="250" y="390" as="sourcePoint" />
<mxPoint x="180" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-73" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.797;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="197.5" y="515" as="sourcePoint" />
<mxPoint x="162.5" y="435" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-74" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="210" y="490" as="sourcePoint" />
<mxPoint x="163" y="380" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-75" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="230" y="450" as="sourcePoint" />
<mxPoint x="160" y="320" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-76" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="240" y="420" as="sourcePoint" />
<mxPoint x="162.5" y="270" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-82" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=0;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480" y="520" as="sourcePoint" />
<mxPoint x="520" y="480" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-83" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=0;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="120" y="200" as="sourcePoint" />
<mxPoint x="160" y="160" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-84" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="160" as="sourcePoint" />
<mxPoint x="520" y="160" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-85" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="520" y="480" as="sourcePoint" />
<mxPoint x="520" y="160" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-86" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=0;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480" y="320" as="sourcePoint" />
<mxPoint x="500" y="300" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-87" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=0;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480" y="240" as="sourcePoint" />
<mxPoint x="500" y="220" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-88" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="500" y="300" as="sourcePoint" />
<mxPoint x="480" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-89" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=1;exitY=1;exitDx=0;exitDy=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480" y="320" as="sourcePoint" />
<mxPoint x="500" y="220" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-90" value="Anomaly Categorisation" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="330" y="120" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-91" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="180" y="180" as="sourcePoint" />
<mxPoint x="500" y="180" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-92" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="500" y="300" as="sourcePoint" />
<mxPoint x="500" y="180" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-93" value="<font style="font-size: 8px;">Hittable</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="540" y="150" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-95" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="180" y="180" as="sourcePoint" />
<mxPoint x="200" y="160" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-96" value="" style="endArrow=none;html=1;rounded=0;entryX=1;entryY=1;entryDx=0;entryDy=0;" parent="1" target="vWf68CewMzJHY7jxAW_s-13" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="240" as="sourcePoint" />
<mxPoint x="210" y="190" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-98" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="520" as="sourcePoint" />
<mxPoint x="160" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-99" value="" style="endArrow=none;html=1;rounded=0;exitX=0;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=1;entryDx=0;entryDy=0;" parent="1" source="vWf68CewMzJHY7jxAW_s-11" target="vWf68CewMzJHY7jxAW_s-11" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="180" y="620" as="sourcePoint" />
<mxPoint x="230" y="570" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-100" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="vWf68CewMzJHY7jxAW_s-9" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="520" as="sourcePoint" />
<mxPoint x="250" y="470" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-101" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="200" y="520" as="sourcePoint" />
<mxPoint x="280" y="320" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-102" value="" style="endArrow=none;html=1;rounded=0;exitX=0;exitY=0;exitDx=0;exitDy=0;" parent="1" source="vWf68CewMzJHY7jxAW_s-10" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="310" y="320" as="sourcePoint" />
<mxPoint x="480" y="320" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-103" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480" y="200" as="sourcePoint" />
<mxPoint x="500" y="180" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-104" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="160" y="200" as="sourcePoint" />
<mxPoint x="180" y="180" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-105" value="<font style="font-size: 8px;">Non-hittable</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="520" y="180" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="vWf68CewMzJHY7jxAW_s-106" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="500" y="500" as="sourcePoint" />
<mxPoint x="500" y="300" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-1" value="Critical Failure States" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="80" y="920" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-2" value="<h1>Disclaimer / Citations</h1><p>All statistics are pulled from European trains in the "post privatization" phase seen as 1995-&gt;</p><p>Key injuries relate to all stakeholders, passengers and passersby whereas minor injuries relate only to passengers</p><p>Assuming ~200 passengers on board at a time. Stated as the average by the ORR</p><p>All analysis done pre-costs</p><p>Statistics/standards pulled from:</p><p>https://www.sciencedirect.com/science/article/pii/S0925753520303180?via%3Dihub<span style="white-space: pre;">	</span> ||&nbsp;<span style="white-space: pre;">	</span><span style="background-color: initial;">https://www.sciencedirect.com/science/article/pii/S0001457502000246 ||&nbsp;<span style="white-space: pre;">	</span></span><span style="background-color: initial;">https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&amp;arnumber=5743430 ||&nbsp;<span style="white-space: pre;">	</span></span><span style="background-color: initial;">https://dataportal.orr.gov.uk/statistics/usage/passenger-rail-usage/ ||&nbsp;<span style="white-space: pre;">	</span></span><span style="background-color: initial;">https://www.sciencedirect.com/science/article/pii/S0001457511002806 ||&nbsp;<span style="white-space: pre;">	</span>https://www.sceiencedirect.com/science/article/pii/S0739885912002077</span></p>" style="text;html=1;strokeColor=none;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;" parent="1" vertex="1">
<mxGeometry x="65" y="570" width="985" height="270" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-3" value="Derailment" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="230" y="920" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-4" value="With 11 incidents and an average of .63 deaths/derailment and 17.3 injuries/derailment as well as the obvious property, environment and rail damage, derailment is to be considered the largest failstate with a failure rate of 2000%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="180" y="970" width="180" height="120" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-5" value="Death" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="430" y="920" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-6" value="The industry standard is to consider a death the baseline for a critical failure and to modify all other failures around the statistic, giving a death a failure rate of 100%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="380" y="970" width="160" height="90" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-7" value="Loss of Limb" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="590" y="925" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-8" value="Major Injury" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="750" y="930" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-9" value="Minor Injury" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="900" y="930" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-10" value="A major injury is classified as one resulting in either hospitalization or minor permanent damage to the individual, concussions, fractures, injuries leading to ~1 month off work, failure rate of 5%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="720" y="970" width="140" height="120" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-11" value="A serious injury is categorized as a "loss of limb" however it involves any serious permanent damage to the individual, permanent loss of sight, a fracture or break of a major bone or a loss of limb, failure rate, 10%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="560" y="960" width="140" height="140" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-12" value="Explanation" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="90" y="990" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-13" value="Justification" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="90" y="1140" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-14" value="Discomfort" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1080" y="930" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-15" value="Minor injuries, defined as a disruption which may cause pain or general discomfort to the passenger is the most likely form of injury to be considered a failure state, minor whiplash, failure state 0.5%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="880" y="970" width="140" height="130" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-16" value="An almost non-failure which leads to what would not be a news story but instead a negative passenger experience, including things such as causing delays in service, failure rate of 0.002%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1040" y="960" width="160" height="140" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-17" value="A derailment involves an average of less than 1 death, however, for safety metrics, a conservative approach is typical, so it should be assumed 1, injuries showcase 17.3 average, however that is either 0-1 injuries or 70+ which skews the statistics somewhat, as this is a failure case scenario, it once again should assume high serious injuries, the injuries within statistics are only serious injuries and non-serious are not accounted for, this alongside the capital loss regarding a broken rolling stock and environmental damage. The number is highly skewed however this again is keeping in the idea of conservatism within estimates." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="175" y="1140" width="190" height="280" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-18" value="As mentioned previously, deaths are a baseline, deaths are the highest single incident and in isolation have a whole failure rate. An incident which causes even an isolated death will be considered a complete failure (100%) Incidents with isolated deaths are rare and will often times have several serious or major injuries at the same time." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="385" y="1140" width="150" height="220" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-19" value="Serious injuries are classified as 1/10th of a death or 10% of a failure rate, this is due to the intensity of the single incident rate, if an incident causes the maximum of a loss of limb, it is still a serious incident and must be deeply considered regarding failure corrections, an incident with a serious injury is likely to have multiple injuries involved and will likely have a 50-150% failure rate." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="560" y="1140" width="140" height="260" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-20" value="With an average train capacity of ~200, an incident causing ~10% serious injuries is considered a critical failure, meaning an incident with 20 serious injuries, giving each serious injuries a failure rate of ~5%. An incident which causes a single Major injury and several Minor injuries is again, a case to change future safety considerations but not to consider the scenario a full failure." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="720" y="1140" width="140" height="260" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-21" value="Discomfort as a safety failure state does not mean a failure over a single railway journey but rather over all journeys within a set amount of time. 369m people use the train on a given quarter, with the largest amount within a single line being 62m, meaning 5m/week, if 1% of passengers on a given week (50,000) experience discomfort explained above, this would be considered a critical failure, so any one discomfort has a failure rate of 0.002%" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1040" y="1140" width="160" height="250" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-22" value="It is difficult to say with much ethical confidence that 50,000 minor inconveniences is the same as a death, however in relation to a safety cause, 50,000 incidents is indicative of some underlying safety issue which would in turn cause potential deaths in the future, the rate of incident is so high to account for this fact." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1040" y="1500" width="160" height="200" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-23" value="A key incident to be explored within the Hazard Resolution is the consequence response of an emergency break, it is likely that an emergency break will cause several Minor Injuries, so to consider Minor Injuries as a failstate, it must be stated that an emergency break is only to be initiated in the event of avoiding a death, leading to an initial position of -100%, provided that the death is avoided. The only scenario in which minor injuries caused by an emergency break outweighs that of not emergency breaking would be if all passengers and staff were injured, an incident failure rate of 0.5%&nbsp;" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="870" y="1140" width="160" height="320" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-24" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="170" y="1720" as="sourcePoint" />
<mxPoint x="170" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-25" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="370" y="1720" as="sourcePoint" />
<mxPoint x="370" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-26" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="550" y="1720" as="sourcePoint" />
<mxPoint x="550" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-27" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="710" y="1720" as="sourcePoint" />
<mxPoint x="710" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-28" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="860" y="1720" as="sourcePoint" />
<mxPoint x="860" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-29" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1030" y="1720" as="sourcePoint" />
<mxPoint x="1030" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-30" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="910" as="sourcePoint" />
<mxPoint x="1210" y="910" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-31" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="958" as="sourcePoint" />
<mxPoint x="1210" y="958" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-32" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="1110" as="sourcePoint" />
<mxPoint x="1210" y="1110" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-33" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="1480" as="sourcePoint" />
<mxPoint x="1210" y="1480" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-37" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1210" y="1720" as="sourcePoint" />
<mxPoint x="1210" y="850" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-38" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="1720" as="sourcePoint" />
<mxPoint x="70" y="850" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-39" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="1720" as="sourcePoint" />
<mxPoint x="1210" y="1720" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-40" value="Critique" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="90" y="1500" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-41" value="With such a small failure rate, minor incidents do not contribute to larger incident scores, it is unlikely that any number of minor injuries would indeed cause an otherwise successful scenario to become a failure, depending on the boundaries for success." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="870" y="1501" width="140" height="189" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-42" value="The rate of failure being 100% is chosen quite arbitrarily, the scenario in which an individual dies with no supporting cause or incident is unheard of and causes the safety case at large to be too analytical, The overweighting to death also will cause any ML approach to be too weighted towards these potential unseen scenarios." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="395" y="1490" width="140" height="220" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-43" value="It is difficult to place monetary value on both a life and the commercial impact of a death/derailment, making the 2000% failure rate quite arbitrary and overall should not be used within the training of any ML applications due to the outright data skew it would cause. However this is still an important metric for the justification of the HRT." style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="190" y="1490" width="160" height="230" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-44" value="Failure Scenario" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1490" y="915" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-45" value="Derailment<br>(∞)" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1310" y="1100" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-46" value="Death<br>(1*100)" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1512.5" y="1100" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-47" value="" style="shape=xor;whiteSpace=wrap;html=1;rotation=-90;" parent="1" vertex="1">
<mxGeometry x="1520" y="990" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-48" value="Several Severe Injuries<br>(20*5)" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1730" y="1100" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-49" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-46" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1530" y="1070" as="sourcePoint" />
<mxPoint x="1550" y="1050" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-50" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1640" y="1080" as="sourcePoint" />
<mxPoint x="1360" y="1080" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-51" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="4lqznjxC2k54S-Ok6p2C-48" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1768" y="1080" as="sourcePoint" />
<mxPoint x="1580" y="1020" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-52" value="" style="endArrow=none;html=1;rounded=0;exitX=0.567;exitY=-0.005;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-45" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1480" y="1100" as="sourcePoint" />
<mxPoint x="1360" y="1080" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-53" value="" style="endArrow=none;html=1;rounded=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-44" target="4lqznjxC2k54S-Ok6p2C-47" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1590" y="1080" as="sourcePoint" />
<mxPoint x="1640" y="1030" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-55" value="Late Detection" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1737.5" y="1430" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-56" value="Categorization Failure" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2010" y="1470" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-57" value="Failure to Binary Risk Classify" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1235" y="1370" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-58" value="Collision" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1512.5" y="1200" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-59" value="Harsh Break" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1690" y="1270" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-60" value="Collision with Danger Object" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1270" y="1270" width="75" height="60" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-63" value="" style="shape=xor;whiteSpace=wrap;html=1;rotation=-90;" parent="1" vertex="1">
<mxGeometry x="1317.5" y="1150" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-64" value="" style="endArrow=none;html=1;rounded=0;entryX=0.25;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="4lqznjxC2k54S-Ok6p2C-63" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1348" y="1240" as="sourcePoint" />
<mxPoint x="1510" y="1190" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-65" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1310" y="1240" as="sourcePoint" />
<mxPoint x="1400" y="1240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-66" value="" style="endArrow=none;html=1;rounded=0;entryX=0.671;entryY=0.006;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1400" y="1240" as="sourcePoint" />
<mxPoint x="1400.325" y="1270.36" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-67" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-60" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1460" y="1240" as="sourcePoint" />
<mxPoint x="1310" y="1240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-69" value="" style="shape=or;whiteSpace=wrap;html=1;rotation=-90;" parent="1" vertex="1">
<mxGeometry x="1737.5" y="1150" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-70" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1840" y="1240" as="sourcePoint" />
<mxPoint x="1720" y="1240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-71" value="" style="endArrow=none;html=1;rounded=0;exitX=0.4;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-59" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1720" y="1260" as="sourcePoint" />
<mxPoint x="1720" y="1240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-72" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1840" y="1240" as="sourcePoint" />
<mxPoint x="1840" y="1270" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-73" value="" style="endArrow=none;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-69" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1620" y="1220" as="sourcePoint" />
<mxPoint x="1768" y="1240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-75" value="Failure to warn passengers" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1790" y="1270" width="95" height="70" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-76" value="Lack of distance to anomaly" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1635" y="1425" width="95" height="70" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-77" value="" style="shape=or;whiteSpace=wrap;html=1;rotation=-90;" parent="1" vertex="1">
<mxGeometry x="1697.5" y="1320" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-78" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1730" y="1410" as="sourcePoint" />
<mxPoint x="1730.4999999999998" y="1390" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-79" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1680" y="1410" as="sourcePoint" />
<mxPoint x="1780" y="1410" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-80" value="" style="endArrow=none;html=1;rounded=0;exitX=0.561;exitY=-0.012;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-55" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1720" y="1450" as="sourcePoint" />
<mxPoint x="1780" y="1410" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-81" value="" style="endArrow=none;html=1;rounded=0;exitX=0.471;exitY=0.02;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-76" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1680" y="1450" as="sourcePoint" />
<mxPoint x="1680" y="1410" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-82" value="" style="shape=xor;whiteSpace=wrap;html=1;rotation=-90;" parent="1" vertex="1">
<mxGeometry x="1745" y="1480" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-83" value="Unfavorable Geography" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1790" y="1570" width="95" height="70" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-84" value="Low Camera Quality" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1680" y="1570" width="95" height="70" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-85" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1720" y="1560" as="sourcePoint" />
<mxPoint x="1840" y="1560" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-86" value="" style="endArrow=none;html=1;rounded=0;exitX=0.223;exitY=0.554;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-82" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1710" y="1540" as="sourcePoint" />
<mxPoint x="1780" y="1560" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-87" value="" style="endArrow=none;html=1;rounded=0;exitX=0.42;exitY=-0.01;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-84" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1750" y="1610" as="sourcePoint" />
<mxPoint x="1720" y="1560" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-88" value="" style="endArrow=none;html=1;rounded=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-83" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1790" y="1610" as="sourcePoint" />
<mxPoint x="1840" y="1560" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-89" value="Fault Tree Analysis" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1245" y="800" width="130" height="30" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-91" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="71" y="851" as="sourcePoint" />
<mxPoint x="1211" y="851" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-93" value="<font face="Times New Roman" style="font-size: 24px;">Top level hazard analysis</font>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="90" y="860" width="700" height="40" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-94" value="Non-understanding of scenario" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1913" y="1100" width="95" height="70" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-95" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="4lqznjxC2k54S-Ok6p2C-94" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1960" y="1080" as="sourcePoint" />
<mxPoint x="1590" y="1280" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-96" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1630" y="1080" as="sourcePoint" />
<mxPoint x="1960" y="1080" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-97" value="Lack of Data" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1220" y="1510" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-98" value="Unclear Physical Values" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1282.5" y="1510" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-99" value="" style="shape=xor;whiteSpace=wrap;html=1;rotation=-90;" parent="1" vertex="1">
<mxGeometry x="1242.5" y="1420" width="60" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-100" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1240" y="1500" as="sourcePoint" />
<mxPoint x="1310" y="1500" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-101" value="" style="endArrow=none;html=1;rounded=0;entryX=0.25;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1310" y="1510" as="sourcePoint" />
<mxPoint x="1310" y="1500" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-102" value="" style="endArrow=none;html=1;rounded=0;entryX=0.25;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1242.5" y="1510" as="sourcePoint" />
<mxPoint x="1242.5" y="1500" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-103" value="" style="endArrow=none;html=1;rounded=0;entryX=0.222;entryY=0.526;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="4lqznjxC2k54S-Ok6p2C-99" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1275" y="1501" as="sourcePoint" />
<mxPoint x="1275" y="1491" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-104" value="Miscalculation of breaking distance" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1317.5" y="1360" width="97.5" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-105" value="" style="endArrow=none;html=1;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1260" y="1350" as="sourcePoint" />
<mxPoint x="1340" y="1350" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-106" value="" style="endArrow=none;html=1;rounded=0;entryX=0.222;entryY=0.526;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1300" y="1350" as="sourcePoint" />
<mxPoint x="1300" y="1330" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-107" value="" style="endArrow=none;html=1;rounded=0;exitX=0.355;exitY=0.019;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="4lqznjxC2k54S-Ok6p2C-57" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1310" y="1460" as="sourcePoint" />
<mxPoint x="1262" y="1350" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-108" value="" style="endArrow=none;html=1;rounded=0;entryX=0.236;entryY=0.107;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="4lqznjxC2k54S-Ok6p2C-104" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1340" y="1350" as="sourcePoint" />
<mxPoint x="1272" y="1360" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-109" value="Low Track Quality" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1350" y="1270" width="97.5" height="80" as="geometry" />
</mxCell>
<mxCell id="4lqznjxC2k54S-Ok6p2C-110" value="(Assume worst case)" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="1900.5" y="1170" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-5" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="syMj157BBdmwMxHzv_Rg-17" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2290" y="825" as="sourcePoint" />
<mxPoint x="2370" y="845" as="targetPoint" />
<Array as="points">
<mxPoint x="2550" y="825" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-6" value="Technical Assurance Points<br>(physical)" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2353" y="755" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-7" value="Time of day" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2210" y="965" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-8" value="Visibility" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2160" y="865" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-9" value="Viewing Distance" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2298" y="965" width="100" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-10" value="Weather" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2120" y="965" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-11" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="syMj157BBdmwMxHzv_Rg-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2380" y="825" as="sourcePoint" />
<mxPoint x="2260" y="915" as="targetPoint" />
<Array as="points">
<mxPoint x="2200" y="825" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-12" value="Camera Quality" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2368" y="865" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-13" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-10" target="syMj157BBdmwMxHzv_Rg-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2200" y="1115" as="sourcePoint" />
<mxPoint x="2250" y="1065" as="targetPoint" />
<Array as="points">
<mxPoint x="2155" y="905" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-14" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-8" target="syMj157BBdmwMxHzv_Rg-7" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2510" y="1005" as="sourcePoint" />
<mxPoint x="2560" y="955" as="targetPoint" />
<Array as="points">
<mxPoint x="2250" y="905" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-15" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-6" target="syMj157BBdmwMxHzv_Rg-12" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2220" y="1125" as="sourcePoint" />
<mxPoint x="2270" y="1075" as="targetPoint" />
<Array as="points">
<mxPoint x="2413" y="825" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-16" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-8" target="syMj157BBdmwMxHzv_Rg-12" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2280" y="935" as="sourcePoint" />
<mxPoint x="2310" y="1045" as="targetPoint" />
<Array as="points">
<mxPoint x="2320" y="885" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-17" value="Railway Characteristics" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2500" y="865" width="100" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-18" value="Collision Detection" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2190" y="1150" width="90" height="50" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-19" value="Reaction Time" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2434" y="965" width="100" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-20" value="Technical Assurance Points <br>(Digital)" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2775" y="755" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-21" value="% accuracy" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2940" y="775" width="100" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-22" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-20" target="syMj157BBdmwMxHzv_Rg-21" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2895" y="1065" as="sourcePoint" />
<mxPoint x="2945" y="1015" as="targetPoint" />
<Array as="points">
<mxPoint x="2945" y="815" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-23" value="Assume minimum zoom, maximum scope" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" parent="1" vertex="1">
<mxGeometry x="2280" y="1005" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-24" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-18" target="syMj157BBdmwMxHzv_Rg-17" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2256" y="1555" as="sourcePoint" />
<mxPoint x="2306" y="1505" as="targetPoint" />
<Array as="points">
<mxPoint x="2550" y="1175" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-25" value="Geography" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2150" y="1075" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-35" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-10" target="syMj157BBdmwMxHzv_Rg-25" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2550" y="1115" as="sourcePoint" />
<mxPoint x="2600" y="1065" as="targetPoint" />
<Array as="points">
<mxPoint x="2155" y="1075" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-36" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=1;entryY=0;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-7" target="syMj157BBdmwMxHzv_Rg-25" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2550" y="1115" as="sourcePoint" />
<mxPoint x="2600" y="1065" as="targetPoint" />
<Array as="points">
<mxPoint x="2250" y="1082" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-46" value="Assume zero for our purposes, close to irrelevant" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" parent="1" vertex="1">
<mxGeometry x="2425" y="1005" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-47" value="Detection Time" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2365" y="1075" width="90" height="50" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-48" value="" style="endArrow=none;html=1;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-9" target="syMj157BBdmwMxHzv_Rg-19" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2470" y="1195" as="sourcePoint" />
<mxPoint x="2520" y="1145" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-49" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-47" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2420" y="1095" as="sourcePoint" />
<mxPoint x="2410" y="985" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-50" value="Binary Risk Classification" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2805" y="1100" width="90" height="50" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-51" value="Semantic Categorisation" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2660" y="820" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-52" value="Size" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2740" y="900" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-53" value="Weight" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2670" y="900" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-54" value="Value" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2600" y="900" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-55" value="Labelling" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2610" y="940" width="190" height="50" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-56" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-53" target="syMj157BBdmwMxHzv_Rg-51" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2600" y="1130" as="sourcePoint" />
<mxPoint x="2650" y="1080" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-57" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-54" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2600" y="1130" as="sourcePoint" />
<mxPoint x="2710" y="880" as="targetPoint" />
<Array as="points">
<mxPoint x="2635" y="880" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-58" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="syMj157BBdmwMxHzv_Rg-52" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2700" y="880" as="sourcePoint" />
<mxPoint x="2650" y="1080" as="targetPoint" />
<Array as="points">
<mxPoint x="2775" y="880" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-59" value="Expected Behaviour" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2810" y="900" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-60" value="Memory" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2960" y="820" width="90" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-61" value="Temporal Alignment" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2890" y="900" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-62" value="Physical Location" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2970" y="900" width="70" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-63" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" target="syMj157BBdmwMxHzv_Rg-59" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2770" y="880" as="sourcePoint" />
<mxPoint x="2670" y="1090" as="targetPoint" />
<Array as="points">
<mxPoint x="2850" y="880" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-64" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2930" y="880" as="sourcePoint" />
<mxPoint x="2850" y="880" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-65" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-61" target="syMj157BBdmwMxHzv_Rg-60" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2620" y="1140" as="sourcePoint" />
<mxPoint x="2670" y="1090" as="targetPoint" />
<Array as="points">
<mxPoint x="2930" y="880" />
<mxPoint x="3005" y="880" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-66" value="Trajectory Estimation" style="ellipse;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2810" y="990" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-67" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-66" target="syMj157BBdmwMxHzv_Rg-59" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2790" y="1140" as="sourcePoint" />
<mxPoint x="2840" y="1090" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-68" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-50" target="syMj157BBdmwMxHzv_Rg-66" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2790" y="1140" as="sourcePoint" />
<mxPoint x="2840" y="1090" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-69" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-62" target="syMj157BBdmwMxHzv_Rg-60" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2790" y="1130" as="sourcePoint" />
<mxPoint x="2840" y="1080" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="syMj157BBdmwMxHzv_Rg-70" value="" style="endArrow=none;html=1;rounded=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.078;exitY=0.62;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="syMj157BBdmwMxHzv_Rg-50" target="syMj157BBdmwMxHzv_Rg-55" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2790" y="1130" as="sourcePoint" />