-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path兴业矿山数据中心
More file actions
1053 lines (1053 loc) · 95.6 KB
/
兴业矿山数据中心
File metadata and controls
1053 lines (1053 loc) · 95.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" modified="2022-10-11T07:09:03.319Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36" etag="Brnsrnbh_J2LxGe5iXpa" version="20.4.0" type="github" pages="2">
<diagram name="兴业矿山20220901" id="wyhFWKAAumZVUPHM1xn9">
<mxGraphModel dx="1422" dy="1337" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="583" math="0" shadow="0">
<root>
<mxCell id="fog7wRuy-gSBpGJfFjiO-0" />
<mxCell id="fog7wRuy-gSBpGJfFjiO-1" parent="fog7wRuy-gSBpGJfFjiO-0" />
<mxCell id="xl5iBQrQCKz5_zHVwPrR-9" value="" style="ellipse;whiteSpace=wrap;html=1;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1861" y="895.75" width="10" height="18" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-131" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;fillColor=#e1d5e7;strokeColor=#9673a6;shadow=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="645" y="588.5" width="430" height="350" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-95" value="" style="ellipse;whiteSpace=wrap;html=1;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1095" y="476.5" width="10" height="15.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-54" value="" style="rounded=1;whiteSpace=wrap;html=1;shadow=0;sketch=1;fontSize=15;strokeColor=#000000;fillColor=none;rotation=-180;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="475" y="307.75" width="135" height="351.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-53" value="" style="rounded=1;whiteSpace=wrap;html=1;shadow=0;sketch=1;fontSize=15;strokeColor=#000000;fillColor=none;rotation=90;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="802" y="20" width="135" height="351.5" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-3" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1398.5" y="208" width="380" height="350" as="geometry" />
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-3" value="" style="ellipse;whiteSpace=wrap;html=1;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1237.5" y="566" width="20" height="11" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-2" value="<font color="#000000">运维PC端</font>" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.pc;sketch=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="753.5" y="161" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-7" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1532.5" y="222.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-13" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1225.5" y="605" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-14" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1225.5" y="488" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-15" value="汇聚交换机01" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1197.5" y="647" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-18" value="IPS" style="sketch=0;aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1011.5" y="461.5" width="50" height="44" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-24" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;fontColor=#000000;endArrow=none;endFill=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="780" y="483" as="targetPoint" />
<mxPoint x="838.5" y="482.5" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-25" value="<span style="">防火墙(AF)</span>" style="sketch=0;aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="841.5" y="461.5" width="50" height="44" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-29" value="VPN" style="sketch=0;aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="841.5" y="321.5" width="50" height="44" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-30" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="866" y="387" as="sourcePoint" />
<mxPoint x="866.5" y="458" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-36" value="互联网PC端" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation_pc;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="516" y="371.5" width="53" height="59" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-37" value="兴业矿山数据中心网络拓扑图" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=0;fontColor=#007FFF;fontSize=22;fontStyle=1" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1055.5" y="968" width="384" height="40" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-38" value="汇聚交换机02" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1197.5" y="530" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-39" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1533.5" y="299.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-40" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1533.5" y="378.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-41" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1532.5" y="456.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-42" value="HCI-02" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1498.5" y="423.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-43" value="HCI-01" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1497.5" y="498.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-44" value="HCI-03" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1497.5" y="344.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-45" value="HCI-04" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1497.5" y="267.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-46" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1225.5" y="488" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-48" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1665.5" y="403.5" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-49" value="核心交换机01" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1637.5" y="445.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-50" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1665.5" y="286.5" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="fog7wRuy-gSBpGJfFjiO-51" value="核心交换机02" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1637.5" y="328.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-1" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1244.5" y="605" as="sourcePoint" />
<mxPoint x="1244.5" y="530" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-2" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1249.5" y="605" as="sourcePoint" />
<mxPoint x="1249.5" y="530" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-5" value="" style="ellipse;whiteSpace=wrap;html=1;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1677.5" y="366.5" width="20" height="11" as="geometry" />
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-6" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1684.5" y="403.5" as="sourcePoint" />
<mxPoint x="1684.5" y="328.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-7" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1689.5" y="403.5" as="sourcePoint" />
<mxPoint x="1689.5" y="328.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-8" value="" style="endArrow=none;html=1;rounded=0;entryX=0.211;entryY=0.086;entryDx=0;entryDy=0;strokeWidth=2;entryPerimeter=0;exitX=0.211;exitY=0.857;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" source="fog7wRuy-gSBpGJfFjiO-3" target="fog7wRuy-gSBpGJfFjiO-3" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1478.5" y="479.5" as="sourcePoint" />
<mxPoint x="1478.5" y="253.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-9" value="" style="endArrow=none;html=1;rounded=0;entryX=0.571;entryY=0.086;entryDx=0;entryDy=0;strokeWidth=3;entryPerimeter=0;exitX=0.571;exitY=0.857;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" source="fog7wRuy-gSBpGJfFjiO-3" target="fog7wRuy-gSBpGJfFjiO-3" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1615.5" y="480" as="sourcePoint" />
<mxPoint x="1615.5" y="254" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-11" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1338.5" y="367" as="sourcePoint" />
<mxPoint x="1477.5" y="366.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-12" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="254.5" as="sourcePoint" />
<mxPoint x="1526.5" y="254.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-13" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="328.34000000000003" as="sourcePoint" />
<mxPoint x="1526.5" y="328.34000000000003" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-14" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="403.5" as="sourcePoint" />
<mxPoint x="1526.5" y="403.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-15" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="478.91999999999996" as="sourcePoint" />
<mxPoint x="1526.5" y="478.91999999999996" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-16" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="478.91999999999996" as="sourcePoint" />
<mxPoint x="1614.5" y="478.91999999999996" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-17" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="403.5" as="sourcePoint" />
<mxPoint x="1614.5" y="403.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-18" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="328.34" as="sourcePoint" />
<mxPoint x="1614.5" y="328.34" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-19" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="254.92000000000002" as="sourcePoint" />
<mxPoint x="1614.5" y="254.92000000000002" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-20" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1615" y="310.4999999999999" as="sourcePoint" />
<mxPoint x="1662" y="310.4999999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QN6yDBbsrGKsTfY86bAs-21" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1615" y="430.4999999999999" as="sourcePoint" />
<mxPoint x="1662" y="430.4999999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-0" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1339.5" y="788" as="sourcePoint" />
<mxPoint x="1339.5" y="328" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-1" value="超融合集群资源系统" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1617" y="518" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-2" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;fillColor=#d5e8d4;strokeColor=#82b366;shadow=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1400.5" y="588.5" width="380" height="350" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-20" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1338.5" y="748" as="sourcePoint" />
<mxPoint x="1479.5" y="747" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-31" value="虚拟机系统" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1650.5" y="899.5" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-33" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1147.5" y="788.5" as="sourcePoint" />
<mxPoint x="1147.5" y="328" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-34" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;shadow=0;fillColor=none;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="665" y="609.25" width="316.5" height="140" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-43" value="" style="ellipse;whiteSpace=wrap;html=1;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="951.5" y="477" width="10" height="15.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-44" value="" style="endArrow=none;html=1;rounded=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="891.5" y="481.5" as="sourcePoint" />
<mxPoint x="1011.5" y="481.25" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-48" value="" style="endArrow=none;html=1;rounded=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="891.5" y="486.86" as="sourcePoint" />
<mxPoint x="1011.5" y="487.25" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-51" value="<span style="color: rgb(34, 34, 34); font-family: Arial, sans-serif; font-size: 15px; text-align: start; background-color: rgb(255, 255, 255);">Internet</span>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;shadow=0;sketch=1;fontSize=15;strokeColor=#6c8ebf;fillColor=#dae8fc;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="671.5" y="450.5" width="106.5" height="58.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-64" value="" style="endArrow=none;html=1;rounded=0;entryX=0.211;entryY=0.086;entryDx=0;entryDy=0;strokeWidth=2;entryPerimeter=0;exitX=0.211;exitY=0.857;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1481.6799999999998" y="887.85" as="sourcePoint" />
<mxPoint x="1481.6799999999998" y="617.9999999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-65" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="634.4" as="sourcePoint" />
<mxPoint x="1529.5" y="634.4" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-66" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="713.2400000000001" as="sourcePoint" />
<mxPoint x="1529.5" y="713.2400000000001" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-67" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="793.4" as="sourcePoint" />
<mxPoint x="1529.5" y="793.4" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-68" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="866.82" as="sourcePoint" />
<mxPoint x="1529.5" y="866.82" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-69" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1269.5" y="508.5000000000001" as="sourcePoint" />
<mxPoint x="1337.5" y="508" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-70" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" target="fog7wRuy-gSBpGJfFjiO-46" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1147.5" y="509.0000000000002" as="sourcePoint" />
<mxPoint x="1217.5" y="508" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-71" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1147.5" y="627.8000000000002" as="sourcePoint" />
<mxPoint x="1225.5" y="627.8" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-72" value="" style="endArrow=none;html=1;rounded=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1268.5" y="628.2500000000002" as="sourcePoint" />
<mxPoint x="1336.5" y="627.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-74" value="<font color="#000000">开发PC端</font>" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.pc;sketch=0;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="903.5" y="161" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-76" value="互联网移动端" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation_pc;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="516" y="515.5" width="53" height="59" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-77" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="612" y="484.75" as="targetPoint" />
<mxPoint x="679.5" y="485" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-78" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;entryX=1.01;entryY=0.509;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" target="6y4wKg8LjNw8DWzeBbMR-53" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="866.64" y="275.66" as="targetPoint" />
<mxPoint x="866.3" y="320.75" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-82" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1143.5" y="481" as="targetPoint" />
<mxPoint x="1063.5" y="480.5" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-88" value="应用服务器-01" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1533.5" y="609.25" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-89" value="应用服务器-02" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1533.5" y="688" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-90" value="数据库服务器" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1533.5" y="768" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-91" value="GIS服务器" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1533.5" y="844" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-92" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="757.47" y="620.75" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-93" value="汇聚交换机03" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="911.5" y="643.75" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-94" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1143.5" y="488" as="targetPoint" />
<mxPoint x="1063.5" y="487.5" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-106" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="862" y="719.25" as="sourcePoint" />
<mxPoint x="861.5" y="622.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-107" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="865" y="669.5" as="sourcePoint" />
<mxPoint x="911.5" y="670" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-108" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="815" y="634.5" as="sourcePoint" />
<mxPoint x="861.5" y="635" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-109" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="814.29" y="695.75" as="sourcePoint" />
<mxPoint x="860.79" y="696.25" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-114" value="大屏监控中心" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="855" y="719.25" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-116" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1027.0100000000002" y="756.1500000000001" as="sourcePoint" />
<mxPoint x="1146" y="756" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-142" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="757.47" y="679.25" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-143" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;shadow=0;fillColor=none;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="665" y="781" width="316.5" height="140" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-144" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="757.47" y="792.5" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-145" value="汇聚交换机04" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="911.5" y="815.5" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-146" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="862" y="891" as="sourcePoint" />
<mxPoint x="861.5" y="794.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-147" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="865" y="841.25" as="sourcePoint" />
<mxPoint x="911.5" y="841.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-148" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="815" y="806.25" as="sourcePoint" />
<mxPoint x="861.5" y="806.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-149" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="814.29" y="867.5" as="sourcePoint" />
<mxPoint x="860.79" y="868" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-150" value="办公网络" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="863" y="891" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-151" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="757.47" y="851" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-152" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;exitX=0.884;exitY=0.824;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" source="6y4wKg8LjNw8DWzeBbMR-131" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1025.5" y="738" as="sourcePoint" />
<mxPoint x="1025" y="641.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-153" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="957.5" y="664.4800000000001" as="sourcePoint" />
<mxPoint x="1021" y="664" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6y4wKg8LjNw8DWzeBbMR-154" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="961.5" y="836.74" as="sourcePoint" />
<mxPoint x="1025" y="836.26" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-1" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=4;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825.0000000000002" y="835.6500000000001" as="sourcePoint" />
<mxPoint x="1905" y="835" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-4" value="千兆网线链路" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1915" y="821" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-5" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=4;strokeColor=#F5B800;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825" y="871.6500000000001" as="sourcePoint" />
<mxPoint x="1905" y="871" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-6" value="万兆光纤链路" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1915" y="857" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-7" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825.0000000000002" y="901.1500000000001" as="sourcePoint" />
<mxPoint x="1905" y="901" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-8" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" parent="fog7wRuy-gSBpGJfFjiO-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825" y="908.1500000000001" as="sourcePoint" />
<mxPoint x="1905" y="908" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-10" value="链路聚合" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1915" y="888.5" width="69" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-11" value="VLAN10<br>10.18.10.0/24" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;fontColor=#FF0000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1682.5" y="217.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-12" value="VLAN30<br>10.18.30.0/24" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;fontColor=#FF0000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1685" y="597" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-13" value="VLAN20<br>10.18.20.0/24" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;fontColor=#FF0000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="673.5" y="708" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-14" value="VLAN50<br>10.18.50.0/24" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;fontColor=#FF0000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="673.5" y="879.75" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="xl5iBQrQCKz5_zHVwPrR-15" value="VLAN40<br>10.18.40.0/24" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;fontColor=#FF0000;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="875" y="403.5" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="hs2eBiYJJhVGEPJj0DVx-0" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=none;strokeColor=none;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="340" y="321.5" width="120" height="338.5" as="geometry" />
</mxCell>
<mxCell id="hs2eBiYJJhVGEPJj0DVx-1" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=none;strokeColor=none;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="350" y="331.5" width="120" height="338.5" as="geometry" />
</mxCell>
<mxCell id="hs2eBiYJJhVGEPJj0DVx-2" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=none;strokeColor=none;rotation=90;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="800" y="-121" width="120" height="338.5" as="geometry" />
</mxCell>
<mxCell id="hs2eBiYJJhVGEPJj0DVx-3" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=none;strokeColor=none;rotation=90;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="1187.5" y="894" width="120" height="338.5" as="geometry" />
</mxCell>
<mxCell id="hs2eBiYJJhVGEPJj0DVx-4" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=none;strokeColor=none;rotation=-180;" parent="fog7wRuy-gSBpGJfFjiO-1" vertex="1">
<mxGeometry x="2008" y="577" width="120" height="338.5" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="兴业矿山20221011" id="440gtIdqWjuX6npHyEyr">
<mxGraphModel dx="1422" dy="1337" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="583" math="0" shadow="0">
<root>
<mxCell id="aVbEcwlwOPbri4Em2h7N-0" />
<mxCell id="aVbEcwlwOPbri4Em2h7N-1" parent="aVbEcwlwOPbri4Em2h7N-0" />
<mxCell id="aVbEcwlwOPbri4Em2h7N-2" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1861" y="895.75" width="10" height="18" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-3" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;fillColor=#e1d5e7;strokeColor=#9673a6;shadow=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="645" y="588.5" width="430" height="350" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-4" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1095" y="476.5" width="10" height="15.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-5" value="" style="rounded=1;whiteSpace=wrap;html=1;shadow=0;sketch=1;fontSize=15;strokeColor=#000000;fillColor=none;rotation=-180;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="475" y="307.75" width="135" height="351.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-6" value="" style="rounded=1;whiteSpace=wrap;html=1;shadow=0;sketch=1;fontSize=15;strokeColor=#000000;fillColor=none;rotation=90;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="802" y="20" width="135" height="351.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-7" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1398.5" y="208" width="380" height="350" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-8" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1237.5" y="566" width="20" height="11" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-9" value="<font color="#000000">运维PC端</font>" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.pc;sketch=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="753.5" y="161" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-10" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1532.5" y="222.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-11" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1225.5" y="605" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-12" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1225.5" y="488" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-13" value="汇聚交换机01" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1197.5" y="647" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-14" value="IPS" style="sketch=0;aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1011.5" y="461.5" width="50" height="44" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-15" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;fontColor=#000000;endArrow=none;endFill=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="780" y="483" as="targetPoint" />
<mxPoint x="838.5" y="482.5" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-16" value="<span style="">防火墙(AF)</span>" style="sketch=0;aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="841.5" y="461.5" width="50" height="44" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-17" value="VPN" style="sketch=0;aspect=fixed;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#00188D;shape=mxgraph.mscae.enterprise.firewall;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="841.5" y="321.5" width="50" height="44" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-18" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="866" y="387" as="sourcePoint" />
<mxPoint x="866.5" y="458" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-19" value="互联网PC端" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation_pc;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="516" y="371.5" width="53" height="59" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-20" value="兴业矿山数据中心网络拓扑图" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=0;fontColor=#007FFF;fontSize=22;fontStyle=1" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1055.5" y="968" width="384" height="40" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-21" value="汇聚交换机02" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1197.5" y="530" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-22" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1533.5" y="299.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-23" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1533.5" y="378.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-24" value="" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mini_as400;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1532.5" y="456.5" width="30" height="45" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-25" value="HCI-02" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1498.5" y="423.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-26" value="HCI-01" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1497.5" y="498.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-27" value="HCI-03" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1497.5" y="344.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-28" value="HCI-04" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1497.5" y="267.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-29" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1225.5" y="488" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-30" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1665.5" y="403.5" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-31" value="核心交换机01" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1637.5" y="445.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-32" value="" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1665.5" y="286.5" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-33" value="核心交换机02" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1637.5" y="328.5" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-34" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1244.5" y="605" as="sourcePoint" />
<mxPoint x="1244.5" y="530" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-35" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1249.5" y="605" as="sourcePoint" />
<mxPoint x="1249.5" y="530" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-36" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1677.5" y="366.5" width="20" height="11" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-37" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1684.5" y="403.5" as="sourcePoint" />
<mxPoint x="1684.5" y="328.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-38" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1689.5" y="403.5" as="sourcePoint" />
<mxPoint x="1689.5" y="328.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-39" value="" style="endArrow=none;html=1;rounded=0;entryX=0.211;entryY=0.086;entryDx=0;entryDy=0;strokeWidth=2;entryPerimeter=0;exitX=0.211;exitY=0.857;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1" source="aVbEcwlwOPbri4Em2h7N-7" target="aVbEcwlwOPbri4Em2h7N-7">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1478.5" y="479.5" as="sourcePoint" />
<mxPoint x="1478.5" y="253.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-40" value="" style="endArrow=none;html=1;rounded=0;entryX=0.571;entryY=0.086;entryDx=0;entryDy=0;strokeWidth=3;entryPerimeter=0;exitX=0.571;exitY=0.857;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1" source="aVbEcwlwOPbri4Em2h7N-7" target="aVbEcwlwOPbri4Em2h7N-7">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1615.5" y="480" as="sourcePoint" />
<mxPoint x="1615.5" y="254" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-41" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1338.5" y="367" as="sourcePoint" />
<mxPoint x="1477.5" y="366.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-42" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="254.5" as="sourcePoint" />
<mxPoint x="1526.5" y="254.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-43" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="328.34000000000003" as="sourcePoint" />
<mxPoint x="1526.5" y="328.34000000000003" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-44" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="403.5" as="sourcePoint" />
<mxPoint x="1526.5" y="403.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-45" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1479.5" y="478.91999999999996" as="sourcePoint" />
<mxPoint x="1526.5" y="478.91999999999996" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-46" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="478.91999999999996" as="sourcePoint" />
<mxPoint x="1614.5" y="478.91999999999996" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-47" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="403.5" as="sourcePoint" />
<mxPoint x="1614.5" y="403.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-48" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="328.34" as="sourcePoint" />
<mxPoint x="1614.5" y="328.34" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-49" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1567.5" y="254.92000000000002" as="sourcePoint" />
<mxPoint x="1614.5" y="254.92000000000002" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-50" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1615" y="310.4999999999999" as="sourcePoint" />
<mxPoint x="1662" y="310.4999999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-51" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1615" y="430.4999999999999" as="sourcePoint" />
<mxPoint x="1662" y="430.4999999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-52" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1339.5" y="788" as="sourcePoint" />
<mxPoint x="1339.5" y="328" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-53" value="超融合集群资源系统" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1617" y="518" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-54" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;fillColor=#d5e8d4;strokeColor=#82b366;shadow=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1400.5" y="588.5" width="380" height="350" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-55" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1338.5" y="748" as="sourcePoint" />
<mxPoint x="1479.5" y="747" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-56" value="虚拟机系统" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1650.5" y="899.5" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-57" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1147.5" y="788.5" as="sourcePoint" />
<mxPoint x="1147.5" y="328" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-58" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;shadow=0;fillColor=none;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="665" y="609.25" width="316.5" height="140" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-59" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="951.5" y="477" width="10" height="15.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-60" value="" style="endArrow=none;html=1;rounded=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="891.5" y="481.5" as="sourcePoint" />
<mxPoint x="1011.5" y="481.25" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-61" value="" style="endArrow=none;html=1;rounded=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="891.5" y="486.86" as="sourcePoint" />
<mxPoint x="1011.5" y="487.25" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-62" value="<span style="color: rgb(34, 34, 34); font-family: Arial, sans-serif; font-size: 15px; text-align: start; background-color: rgb(255, 255, 255);">Internet</span>" style="ellipse;shape=cloud;whiteSpace=wrap;html=1;shadow=0;sketch=1;fontSize=15;strokeColor=#6c8ebf;fillColor=#dae8fc;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="671.5" y="450.5" width="106.5" height="58.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-63" value="" style="endArrow=none;html=1;rounded=0;entryX=0.211;entryY=0.086;entryDx=0;entryDy=0;strokeWidth=2;entryPerimeter=0;exitX=0.211;exitY=0.857;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1481.6799999999998" y="887.85" as="sourcePoint" />
<mxPoint x="1481.6799999999998" y="617.9999999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-64" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="634.4" as="sourcePoint" />
<mxPoint x="1529.5" y="634.4" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-65" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="713.2400000000001" as="sourcePoint" />
<mxPoint x="1529.5" y="713.2400000000001" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-66" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="793.4" as="sourcePoint" />
<mxPoint x="1529.5" y="793.4" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-67" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1482.5" y="866.82" as="sourcePoint" />
<mxPoint x="1529.5" y="866.82" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-68" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1269.5" y="508.5000000000001" as="sourcePoint" />
<mxPoint x="1337.5" y="508" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-69" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1" target="aVbEcwlwOPbri4Em2h7N-29">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1147.5" y="509.0000000000002" as="sourcePoint" />
<mxPoint x="1217.5" y="508" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-70" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1147.5" y="627.8000000000002" as="sourcePoint" />
<mxPoint x="1225.5" y="627.8" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-71" value="" style="endArrow=none;html=1;rounded=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1268.5" y="628.2500000000002" as="sourcePoint" />
<mxPoint x="1336.5" y="627.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-72" value="<font color="#000000">开发PC端</font>" style="fontColor=#0066CC;verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;fillColor=#CCCCCC;strokeColor=#6881B3;gradientColor=none;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.pc;sketch=0;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="903.5" y="161" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-73" value="互联网移动端" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#505050;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.workstation_pc;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="516" y="515.5" width="53" height="59" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-74" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="612" y="484.75" as="targetPoint" />
<mxPoint x="679.5" y="485" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-75" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;entryX=1.01;entryY=0.509;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1" target="aVbEcwlwOPbri4Em2h7N-6">
<mxGeometry relative="1" as="geometry">
<mxPoint x="866.64" y="275.66" as="targetPoint" />
<mxPoint x="866.3" y="320.75" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-76" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1143.5" y="481" as="targetPoint" />
<mxPoint x="1063.5" y="480.5" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-77" value="网关服务器" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1533.5" y="609.25" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-78" value="媒体服务器" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1533.5" y="688" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-79" value="数据库服务器01" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1533.5" y="768" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-80" value="GIS服务器" style="shape=mxgraph.cisco.computers_and_peripherals.ibm_mainframe;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1533.5" y="849" width="35.71" height="50" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-81" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="757.47" y="620.75" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-82" value="汇聚交换机03" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="911.5" y="643.75" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-83" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontColor=#000000;endArrow=none;endFill=0;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1143.5" y="488" as="targetPoint" />
<mxPoint x="1063.5" y="487.5" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-84" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="862" y="719.25" as="sourcePoint" />
<mxPoint x="861.5" y="622.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-85" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="865" y="669.5" as="sourcePoint" />
<mxPoint x="911.5" y="670" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-86" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="815" y="634.5" as="sourcePoint" />
<mxPoint x="861.5" y="635" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-87" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="814.29" y="695.75" as="sourcePoint" />
<mxPoint x="860.79" y="696.25" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-88" value="大屏监控中心" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="855" y="719.25" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-89" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1027.0100000000002" y="756.1500000000001" as="sourcePoint" />
<mxPoint x="1146" y="756" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-90" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="757.47" y="679.25" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-91" value="" style="rounded=1;whiteSpace=wrap;html=1;sketch=1;shadow=0;fillColor=none;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="665" y="781" width="316.5" height="140" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-92" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="757.47" y="792.5" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-93" value="汇聚交换机04" style="shape=mxgraph.cisco.switches.atm_fast_gigabit_etherswitch;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;fontColor=#000000;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="911.5" y="815.5" width="44" height="42" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-94" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="862" y="891" as="sourcePoint" />
<mxPoint x="861.5" y="794.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-95" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="865" y="841.25" as="sourcePoint" />
<mxPoint x="911.5" y="841.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-96" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="815" y="806.25" as="sourcePoint" />
<mxPoint x="861.5" y="806.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-97" value="" style="endArrow=none;html=1;rounded=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="814.29" y="867.5" as="sourcePoint" />
<mxPoint x="860.79" y="868" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-98" value="办公网络" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;sketch=1;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="863" y="891" width="141" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-99" value="" style="shape=mxgraph.cisco.computers_and_peripherals.macintosh;sketch=0;html=1;pointerEvents=1;dashed=0;fillColor=#036897;strokeColor=#ffffff;strokeWidth=2;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shadow=0;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="757.47" y="851" width="51.82" height="33.5" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-100" value="" style="endArrow=none;html=1;rounded=0;strokeWidth=3;exitX=0.884;exitY=0.824;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1" source="aVbEcwlwOPbri4Em2h7N-3">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1025.5" y="738" as="sourcePoint" />
<mxPoint x="1025" y="641.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-101" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="957.5" y="664.4800000000001" as="sourcePoint" />
<mxPoint x="1021" y="664" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-102" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="961.5" y="836.74" as="sourcePoint" />
<mxPoint x="1025" y="836.26" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-103" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=4;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825.0000000000002" y="835.6500000000001" as="sourcePoint" />
<mxPoint x="1905" y="835" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-104" value="千兆网线链路" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1915" y="821" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-105" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=4;strokeColor=#F5B800;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825" y="871.6500000000001" as="sourcePoint" />
<mxPoint x="1905" y="871" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-106" value="万兆光纤链路" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;shadow=0;sketch=1;fontSize=12;" vertex="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry x="1915" y="857" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="aVbEcwlwOPbri4Em2h7N-107" value="" style="endArrow=none;html=1;rounded=0;exitX=0.907;exitY=0.479;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="aVbEcwlwOPbri4Em2h7N-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1825.0000000000002" y="901.1500000000001" as="sourcePoint" />
<mxPoint x="1905" y="901" as="targetPoint" />
</mxGeometry>