-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensor module idea
2002 lines (2002 loc) · 160 KB
/
sensor module idea
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="2020-12-29T13:33:48.118Z" agent="5.0 (Macintosh)" etag="-EqYWUQaSaiNWLP_ue17" version="14.0.1" type="github">
<diagram id="FWcFF8IPY0t7bS8IYI0D" name="Page-1">
<mxGraphModel dx="3165" dy="1370" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="583" math="0" shadow="1">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="cNaSOPcbTRFBM9H2W2x9-725" value="" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="-230.5" y="890" width="372" height="330" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-687" value="" style="rounded=0;whiteSpace=wrap;html=1;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="83" y="50" width="1257" height="550" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-1" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="110" y="70" width="290" height="520" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-2" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="170" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-4" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="200" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-5" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="140" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-6" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="170" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-7" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="140" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-8" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="200" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-17" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="290" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-18" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="230" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-19" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="260" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-20" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="230" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-21" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="290" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-22" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="260" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-28" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="320" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-29" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="320" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-35" value="ADS1115" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="230" y="80" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-36" value="ULN2003" style="rounded=1;whiteSpace=wrap;html=1;direction=east;" vertex="1" parent="1">
<mxGeometry x="118" y="292" width="50" height="110" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-59" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="231.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-60" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="221.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-61" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="241.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-63" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="190.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-64" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="180.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-65" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="200.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-66" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="210.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-68" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="350" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-69" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="350" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-72" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="380" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-73" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="380" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-76" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="410" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-77" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="410" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-80" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="440" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-81" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="440" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-84" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="470" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-85" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="470" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-88" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="220" y="500" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-89" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="300" y="500" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-92" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="180" y="530" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-93" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="260" y="530" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-116" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="261.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-117" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="251.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-118" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="160.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-119" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="138" y="170.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-127" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="230" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-128" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="220" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-129" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="240" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-130" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="250" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-131" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="189" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-132" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="179" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-133" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="199" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-134" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="209" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-136" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="260" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-137" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="159" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-138" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="380" y="170" width="10" height="9" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-141" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="170" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-143" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="180" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-144" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="140" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-145" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="150" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-146" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="140" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-147" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="150" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-148" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="170" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-149" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="180" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-150" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="200" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-151" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="210" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-152" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="230" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-153" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="240" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-154" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="200" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-155" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="210" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-156" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="230" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-157" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="240" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-158" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="260" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-159" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="270" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-160" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="260" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-161" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="270" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-162" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="290" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-163" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="300" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-164" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="290" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-165" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="300" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-166" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="320" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-167" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="330" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-168" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="320" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-169" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="330" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-170" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="350" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-171" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="360" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-172" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="350" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-173" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="360" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-174" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="380" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-175" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="390" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-176" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="380" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-177" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="390" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-178" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="410" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-179" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="420" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-180" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="410" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-181" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="420" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-182" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="440" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-183" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="450" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-184" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="470" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-185" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="480" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-186" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="440" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-187" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="450" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-188" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="470" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-189" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="480" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-190" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="240" y="500" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-191" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="240" y="510" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-192" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="320" y="500" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-193" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="320" y="510" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-194" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="280" y="530" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-195" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="280" y="540" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-196" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="200" y="530" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-197" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="200" y="540" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-198" value="<div>GND</div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="256.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-199" value="<div>VCC</div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="246.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-200" value="SDA" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="158.25" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-201" value="<div>SCL</div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="168.25" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-203" value="INP1" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="176.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-204" value="INP2" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="186.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-205" value="INP3" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="196.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-206" value="INP4" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="206.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-207" value="INP5" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="216.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-208" value="INP6" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="226.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-209" value="INP7" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="110" y="236.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-211" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="160" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-212" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="190" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-213" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="190" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-214" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="160" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-215" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="250" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-216" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="220" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-217" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="250" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-218" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="220" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-219" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="280" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-220" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="310" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-221" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="280" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-222" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="310" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-223" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="340" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-224" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="370" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-225" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="370" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-226" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="340" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-227" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="400" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-228" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="400" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-229" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="430" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-230" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="460" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-231" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="430" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-232" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="460" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-233" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="490" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-234" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="490" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-235" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="195" y="550" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-236" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="235" y="520" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-237" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="315" y="520" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-238" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="275" y="550" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-240" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="420" y="70" width="290" height="520" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-241" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="170" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-242" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="200" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-243" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="140" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-244" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="170" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-245" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="140" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-246" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="200" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-247" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="290" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-248" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="230" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-249" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="260" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-250" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="230" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-251" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="290" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-252" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="260" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-253" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="320" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-254" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="320" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-255" value="ADS1115" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="540" y="80" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-256" value="ULN2003" style="rounded=1;whiteSpace=wrap;html=1;direction=east;" vertex="1" parent="1">
<mxGeometry x="428" y="292" width="50" height="110" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-257" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="231.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-258" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="221.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-259" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="241.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-260" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="190.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-261" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="180.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-262" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="200.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-263" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="210.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-264" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="350" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-265" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="350" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-266" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="380" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-267" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="380" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-268" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="410" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-269" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="410" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-270" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="440" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-271" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="440" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-272" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="470" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-273" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="470" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-274" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="530" y="500" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-275" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="610" y="500" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-276" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="490" y="530" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-277" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="570" y="530" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-278" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="261.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-279" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="251.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-280" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="160.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-281" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="448" y="170.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-282" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="230" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-283" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="220" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-284" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="240" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-285" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="250" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-286" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="189" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-287" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="179" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-288" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="199" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-289" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="209" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-291" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="260" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-292" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="159" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-293" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="690" y="170" width="10" height="9" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-294" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="170" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-295" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="180" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-296" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="140" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-297" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="150" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-298" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="140" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-299" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="150" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-300" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="170" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-301" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="180" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-302" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="200" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-303" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="210" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-304" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="230" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-305" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="240" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-306" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="200" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-307" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="210" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-308" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="230" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-309" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="240" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-310" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="260" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-311" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="270" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-312" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="260" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-313" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="270" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-314" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="290" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-315" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="300" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-316" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="290" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-317" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="300" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-318" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="320" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-319" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="330" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-320" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="320" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-321" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="330" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-322" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="350" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-323" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="360" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-324" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="350" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-325" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="360" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-326" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="380" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-327" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="390" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-328" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="380" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-329" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="390" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-330" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="410" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-331" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="420" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-332" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="410" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-333" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="420" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-334" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="440" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-335" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="450" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-336" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="470" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-337" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="480" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-338" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="440" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-339" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="450" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-340" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="470" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-341" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="480" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-342" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="550" y="500" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-343" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="550" y="510" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-344" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="630" y="500" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-345" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="630" y="510" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-346" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="590" y="530" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-347" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="590" y="540" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-348" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="510" y="530" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-349" value="" style="shape=process;whiteSpace=wrap;html=1;backgroundOutline=1;" vertex="1" parent="1">
<mxGeometry x="510" y="540" width="20" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-350" value="<div>GND</div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="256.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-351" value="<div>VCC</div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="246.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-352" value="SDA" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="158.25" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-353" value="<div>SCL</div>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="168.25" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-354" value="INP1" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="176.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-355" value="INP2" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="186.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-356" value="INP3" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="196.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-357" value="INP4" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="206.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-358" value="INP5" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="216.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-359" value="INP6" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="226.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-360" value="INP7" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=8;" vertex="1" parent="1">
<mxGeometry x="420" y="236.75" width="28" height="15" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-361" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="160" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-362" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="190" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-363" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="190" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-364" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="160" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-365" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="250" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-366" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="220" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-367" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="250" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-368" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="220" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-369" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="280" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-370" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="310" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-371" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="280" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-372" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="310" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-373" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="340" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-374" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="370" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-375" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="370" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-376" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="340" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-377" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="400" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-378" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="400" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-379" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="430" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-380" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="460" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-381" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="430" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-382" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="460" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-383" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="490" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-384" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="490" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-385" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="505" y="550" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-386" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="545" y="520" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-387" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="625" y="520" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-388" value="" style="triangle;whiteSpace=wrap;html=1;fontSize=8;direction=south;" vertex="1" parent="1">
<mxGeometry x="585" y="550" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-389" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="720" y="70" width="290" height="520" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-390" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="790" y="170" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-391" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="830" y="200" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-392" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="830" y="140" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-393" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="870" y="170" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-394" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="910" y="140" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-395" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="910" y="200" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-396" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="790" y="290" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-397" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="790" y="230" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-398" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="830" y="260" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-399" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="870" y="230" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-400" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="870" y="290" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-401" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="910" y="260" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-402" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="830" y="320" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-403" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="910" y="320" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-404" value="ADS1115" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="840" y="80" width="80" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-405" value="ULN2003" style="rounded=1;whiteSpace=wrap;html=1;direction=east;" vertex="1" parent="1">
<mxGeometry x="728" y="292" width="50" height="110" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-406" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="231.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-407" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="221.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-408" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="241.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-409" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="190.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-410" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="180.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-411" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="200.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-412" value="" style="ellipse;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="748" y="210.75" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-413" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="790" y="350" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-414" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="870" y="350" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-415" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="830" y="380" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-416" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="910" y="380" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-417" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="790" y="410" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-418" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="870" y="410" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-419" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="830" y="440" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-420" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="910" y="440" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-421" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">
<mxGeometry x="790" y="470" width="60" height="50" as="geometry" />
</mxCell>
<mxCell id="cNaSOPcbTRFBM9H2W2x9-422" value="" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;" vertex="1" parent="1">