-
Notifications
You must be signed in to change notification settings - Fork 0
/
waterbot.fz
1588 lines (1588 loc) · 123 KB
/
waterbot.fz
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
<?xml version="1.0" encoding="UTF-8"?>
<module fritzingVersion="0.9.10b.2022-05-14.CD-1807-0-29c2cede" icon=".png">
<boards>
<board moduleId="TwoLayerRectanglePCBModuleID" title="Rectangular PCB - Resizable" instance="PCB1" width="4.5cm" height="3.3cm"/>
</boards>
<views>
<view name="breadboardView" backgroundColor="#ffffff" gridSize="0.1in" showGrid="1" alignToGrid="0" viewFromBelow="0" colorWiresByLength="0"/>
<view name="schematicView" backgroundColor="#ffffff" gridSize="0.1in" showGrid="1" alignToGrid="1" viewFromBelow="0"/>
<view name="pcbView" backgroundColor="#333333" gridSize="0.1in" showGrid="1" alignToGrid="0" viewFromBelow="0" DRC_Keepout="0.01in" GPG_Keepout="" autorouteViaRingThickness="0.3mm" autorouteTraceWidth="24" autorouteViaHoleSize="0.4mm"/>
</views>
<instances>
<instance moduleIdRef="PHOTON_fix" modelIndex="5851" path="/Users/medmunds/Applications/Fritzing.app/Contents/Resources/fritzing-parts/core/PHOTON_fix.fzp">
<title>Photon</title>
<views>
<breadboardView layer="breadboardbreadboard">
<geometry z="1" x="103.59" y="40.59"/>
<connectors>
<connector connectorId="connector63" layer="breadboardbreadboard">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416767" layer="breadboardWire"/>
<connect connectorId="connector0" modelIndex="85416929" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector62" layer="breadboardbreadboard">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416877" layer="breadboardWire"/>
<connect connectorId="connector0" modelIndex="85416945" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector61" layer="breadboardbreadboard">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416877" layer="breadboardWire"/>
<connect connectorId="connector1" modelIndex="85416947" layer="breadboardWire"/>
<connect connectorId="connector0" modelIndex="85417045" layer="breadboardWire"/>
<connect connectorId="connector1" modelIndex="85417069" layer="breadboardWire"/>
<connect connectorId="connector0" modelIndex="85417075" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector55" layer="breadboardbreadboard">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416690" layer="breadboardWire"/>
<connect connectorId="connector0" modelIndex="85416832" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0">
<geometry z="5.50018" x="14.2449" y="15.1763"/>
<titleGeometry visible="true" x="76.4131" y="46.4051" z="12.5001" xOffset="62.1682" yOffset="31.2288" textColor="#000000" fontSize="5">
<displayKey key=""/>
</titleGeometry>
<connectors>
<connector connectorId="connector63" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416767" layer="copper1trace"/>
<connect connectorId="connector0" modelIndex="85416929" layer="copper0trace"/>
</connects>
</connector>
<connector connectorId="connector62" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416877" layer="copper1trace"/>
<connect connectorId="connector0" modelIndex="85416945" layer="copper0trace"/>
</connects>
</connector>
<connector connectorId="connector61" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416877" layer="copper1trace"/>
<connect connectorId="connector1" modelIndex="85416947" layer="copper0trace"/>
<connect connectorId="connector0" modelIndex="85417045" layer="copper0trace"/>
<connect connectorId="connector0" modelIndex="85417075" layer="copper1trace"/>
</connects>
</connector>
<connector connectorId="connector55" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416690" layer="copper0trace"/>
<connect connectorId="connector0" modelIndex="85416832" layer="copper1trace"/>
</connects>
</connector>
</connectors>
</pcbView>
<schematicView layer="schematic">
<geometry z="2.50027" x="-0.54018" y="-81.045"/>
<titleGeometry visible="false" x="40.9599" y="-43.008" z="6.50014" xOffset="41.5001" yOffset="38.037" textColor="#000000" fontSize="5">
<displayKey key=""/>
<displayKey key="part number"/>
</titleGeometry>
<connectors>
<connector connectorId="connector63" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416767" layer="schematicTrace"/>
<connect connectorId="connector0" modelIndex="85416929" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector62" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416877" layer="schematicTrace"/>
<connect connectorId="connector0" modelIndex="85416945" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector61" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416877" layer="schematicTrace"/>
<connect connectorId="connector1" modelIndex="85416947" layer="schematicTrace"/>
<connect connectorId="connector0" modelIndex="85417045" layer="schematicTrace"/>
<connect connectorId="connector1" modelIndex="85417069" layer="schematicTrace"/>
<connect connectorId="connector0" modelIndex="85417075" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector55" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416690" layer="schematicTrace"/>
<connect connectorId="connector0" modelIndex="85416832" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector51" layer="schematic">
<geometry x="0" y="0"/>
<connects/>
</connector>
</connectors>
</schematicView>
</views>
</instance>
<instance moduleIdRef="HoleModuleID" modelIndex="13943" path=":/resources/parts/core/hole.fzp">
<property name="hole size" value="2.2mm,0.0mm"/>
<title>Hole1</title>
<views>
<breadboardView layer="copper0">
<geometry z="20" x="308.803" y="124.576"/>
</breadboardView>
<pcbView layer="copper0">
<geometry z="5.50027" x="147.105" y="0.305588"/>
</pcbView>
<schematicView layer="copper0">
<geometry z="5.50024" x="77.625" y="-30.375"/>
</schematicView>
</views>
</instance>
<instance moduleIdRef="HoleModuleID" modelIndex="13946" path=":/resources/parts/core/hole.fzp">
<property name="hole size" value="2.2mm,0.0mm"/>
<title>Hole2</title>
<views>
<breadboardView layer="copper0">
<geometry z="20" x="164.803" y="16.5765"/>
</breadboardView>
<pcbView layer="copper0">
<geometry z="5.50028" x="0.853788" y="104.311"/>
</pcbView>
<schematicView layer="copper0">
<geometry z="5.50026" x="-66.375" y="-138.375"/>
</schematicView>
</views>
</instance>
<instance moduleIdRef="TwoLayerRectanglePCBModuleID" modelIndex="5764" path=":/resources/parts/core/rectangle_pcb_two_layers.fzp">
<property name="layers" value="2"/>
<property name="width" value="45"/>
<property name="height" value="33"/>
<title>PCB1</title>
<views>
<pcbView layer="board" locked="true">
<geometry z="1.50024" x="-0.0441303" y="-0.120586"/>
</pcbView>
</views>
</instance>
<instance moduleIdRef="GroundPlaneModuleID" modelIndex="85415281" path=":/resources/parts/core/groundplane.fzp">
<property name="svg" value="<svg xmlns='http://www.w3.org/2000/svg' width='1.69in' height='1.218in' viewBox='0 0 1690 1218' > <g id='groundplane' > <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,0 0,84 1654,84 1654,82 1644,82 1644,80 1640,80 1640,78 1636,78 1636,76 1632,76 1632,74 1630,74 1630,72 1626,72 1626,70 1624,70 1624,68 1622,68 1622,66 1620,66 1620,64 1618,64 1618,60 1616,60 1616,58 1614,58 1614,54 1612,54 1612,50 1610,50 1610,44 1608,44 1608,0 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1668,82 1668,84 1690,84 1690,82 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,84 0,86 1690,86 1690,84 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,84 0,86 1690,86 1690,84 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,86 0,136 1478,136 1478,138 1484,138 1484,140 1488,140 1488,142 1492,142 1492,144 1494,144 1494,146 1498,146 1498,148 1500,148 1500,150 1502,150 1502,152 1504,152 1504,156 1506,156 1506,158 1508,158 1508,162 1510,162 1510,168 1512,168 1512,192 1510,192 1510,198 1508,198 1508,202 1506,202 1506,204 1504,204 1504,208 1502,208 1502,210 1500,210 1500,212 1498,212 1498,214 1496,214 1496,216 1492,216 1492,218 1488,218 1488,220 1484,220 1484,222 1478,222 1478,224 1690,224 1690,86 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,136 0,924 360,924 360,922 352,922 352,920 348,920 348,918 344,918 344,916 342,916 342,914 340,914 340,912 338,912 338,910 336,910 336,908 334,908 334,906 332,906 332,902 330,902 330,900 178,900 178,166 328,166 328,162 330,162 330,158 332,158 332,154 334,154 334,152 336,152 336,150 338,150 338,148 340,148 340,146 342,146 342,144 346,144 346,142 348,142 348,140 352,140 352,138 360,138 360,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 378,136 378,138 384,138 384,140 388,140 388,142 392,142 392,144 394,144 394,146 398,146 398,148 400,148 400,150 402,150 402,152 404,152 404,156 406,156 406,158 408,158 408,162 430,162 430,158 432,158 432,154 434,154 434,152 436,152 436,150 438,150 438,148 440,148 440,146 442,146 442,144 446,144 446,142 448,142 448,140 452,140 452,138 460,138 460,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 478,136 478,138 484,138 484,140 488,140 488,142 492,142 492,144 494,144 494,146 498,146 498,148 500,148 500,150 502,150 502,152 504,152 504,156 506,156 506,158 508,158 508,162 530,162 530,158 532,158 532,154 534,154 534,152 536,152 536,150 538,150 538,148 540,148 540,146 542,146 542,144 546,144 546,142 548,142 548,140 552,140 552,138 560,138 560,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 578,136 578,138 584,138 584,140 588,140 588,142 592,142 592,144 594,144 594,146 598,146 598,148 600,148 600,150 602,150 602,152 604,152 604,156 606,156 606,158 608,158 608,162 630,162 630,158 632,158 632,154 634,154 634,152 636,152 636,150 638,150 638,148 640,148 640,146 642,146 642,144 646,144 646,142 648,142 648,140 652,140 652,138 660,138 660,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 678,136 678,138 684,138 684,140 688,140 688,142 692,142 692,144 694,144 694,146 698,146 698,148 700,148 700,150 702,150 702,152 704,152 704,156 706,156 706,158 708,158 708,162 730,162 730,158 732,158 732,154 734,154 734,152 736,152 736,150 738,150 738,148 740,148 740,146 742,146 742,144 746,144 746,142 748,142 748,140 752,140 752,138 760,138 760,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 778,136 778,138 784,138 784,140 788,140 788,142 792,142 792,144 794,144 794,146 798,146 798,148 800,148 800,150 802,150 802,152 804,152 804,156 806,156 806,158 808,158 808,162 830,162 830,158 832,158 832,154 834,154 834,152 836,152 836,150 838,150 838,148 840,148 840,146 842,146 842,144 846,144 846,142 848,142 848,140 852,140 852,138 860,138 860,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 878,136 878,138 884,138 884,140 888,140 888,142 892,142 892,144 894,144 894,146 898,146 898,148 900,148 900,150 902,150 902,152 904,152 904,156 906,156 906,158 908,158 908,162 930,162 930,158 932,158 932,154 934,154 934,152 936,152 936,150 938,150 938,148 940,148 940,146 942,146 942,144 946,144 946,142 948,142 948,140 952,140 952,138 960,138 960,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 978,136 978,138 984,138 984,140 988,140 988,142 992,142 992,144 994,144 994,146 998,146 998,148 1000,148 1000,150 1002,150 1002,152 1004,152 1004,156 1006,156 1006,158 1008,158 1008,162 1030,162 1030,158 1032,158 1032,154 1034,154 1034,152 1036,152 1036,150 1038,150 1038,148 1040,148 1040,146 1042,146 1042,144 1046,144 1046,142 1048,142 1048,140 1052,140 1052,138 1060,138 1060,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1078,136 1078,138 1084,138 1084,140 1088,140 1088,142 1092,142 1092,144 1094,144 1094,146 1098,146 1098,148 1100,148 1100,150 1102,150 1102,152 1104,152 1104,156 1106,156 1106,158 1108,158 1108,162 1130,162 1130,158 1132,158 1132,154 1134,154 1134,152 1136,152 1136,150 1138,150 1138,148 1140,148 1140,146 1142,146 1142,144 1146,144 1146,142 1148,142 1148,140 1152,140 1152,138 1160,138 1160,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1178,136 1178,138 1184,138 1184,140 1188,140 1188,142 1192,142 1192,144 1194,144 1194,146 1198,146 1198,148 1200,148 1200,150 1202,150 1202,152 1204,152 1204,156 1206,156 1206,158 1208,158 1208,162 1230,162 1230,158 1232,158 1232,154 1234,154 1234,152 1236,152 1236,150 1238,150 1238,148 1240,148 1240,146 1242,146 1242,144 1246,144 1246,142 1248,142 1248,140 1252,140 1252,138 1260,138 1260,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1278,136 1278,138 1284,138 1284,140 1288,140 1288,142 1292,142 1292,144 1294,144 1294,146 1298,146 1298,148 1300,148 1300,150 1302,150 1302,152 1304,152 1304,156 1306,156 1306,158 1308,158 1308,162 1330,162 1330,158 1332,158 1332,154 1334,154 1334,152 1336,152 1336,150 1338,150 1338,148 1340,148 1340,146 1342,146 1342,144 1346,144 1346,142 1348,142 1348,140 1352,140 1352,138 1360,138 1360,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1378,136 1378,138 1384,138 1384,140 1388,140 1388,142 1392,142 1392,144 1394,144 1394,146 1398,146 1398,148 1400,148 1400,150 1402,150 1402,152 1404,152 1404,156 1406,156 1406,158 1408,158 1408,162 1430,162 1430,158 1432,158 1432,154 1434,154 1434,152 1436,152 1436,150 1438,150 1438,148 1440,148 1440,146 1442,146 1442,144 1446,144 1446,142 1448,142 1448,140 1452,140 1452,138 1460,138 1460,136 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1108,198 1108,202 1106,202 1106,204 1104,204 1104,208 1102,208 1102,210 1100,210 1100,212 1098,212 1098,214 1096,214 1096,216 1092,216 1092,224 1160,224 1160,222 1152,222 1152,220 1148,220 1148,218 1144,218 1144,216 1142,216 1142,214 1140,214 1140,212 1138,212 1138,210 1136,210 1136,208 1134,208 1134,206 1132,206 1132,202 1130,202 1130,198 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1208,198 1208,202 1206,202 1206,204 1204,204 1204,208 1202,208 1202,210 1200,210 1200,212 1198,212 1198,214 1196,214 1196,216 1192,216 1192,218 1188,218 1188,220 1184,220 1184,222 1178,222 1178,224 1260,224 1260,222 1252,222 1252,220 1248,220 1248,218 1244,218 1244,216 1242,216 1242,214 1240,214 1240,212 1238,212 1238,210 1236,210 1236,208 1234,208 1234,206 1232,206 1232,202 1230,202 1230,198 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1308,198 1308,202 1306,202 1306,204 1304,204 1304,208 1302,208 1302,210 1300,210 1300,212 1298,212 1298,214 1296,214 1296,216 1292,216 1292,218 1288,218 1288,220 1284,220 1284,222 1278,222 1278,224 1360,224 1360,222 1352,222 1352,220 1348,220 1348,218 1344,218 1344,216 1342,216 1342,214 1340,214 1340,212 1338,212 1338,210 1336,210 1336,208 1334,208 1334,206 1332,206 1332,202 1330,202 1330,198 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1408,198 1408,202 1406,202 1406,204 1404,204 1404,208 1402,208 1402,210 1400,210 1400,212 1398,212 1398,214 1396,214 1396,216 1392,216 1392,218 1388,218 1388,220 1384,220 1384,222 1378,222 1378,224 1460,224 1460,222 1452,222 1452,220 1448,220 1448,218 1444,218 1444,216 1442,216 1442,214 1440,214 1440,212 1438,212 1438,210 1436,210 1436,208 1434,208 1434,206 1432,206 1432,202 1430,202 1430,198 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1092,224 1092,226 1690,226 1690,224 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1092,224 1092,226 1690,226 1690,224 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1092,224 1092,226 1690,226 1690,224 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1092,224 1092,226 1690,226 1690,224 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1092,224 1092,226 1690,226 1690,224 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1092,226 1092,258 1094,258 1094,260 1096,260 1096,262 1098,262 1098,264 1102,264 1102,266 1104,266 1104,268 1106,268 1106,270 1110,270 1110,272 1112,272 1112,274 1114,274 1114,276 1118,276 1118,278 1120,278 1120,280 1124,280 1124,282 1126,282 1126,284 1128,284 1128,286 1132,286 1132,288 1134,288 1134,290 1136,290 1136,292 1140,292 1140,294 1142,294 1142,296 1144,296 1144,298 1148,298 1148,300 1150,300 1150,302 1152,302 1152,304 1156,304 1156,306 1158,306 1158,308 1162,308 1162,310 1164,310 1164,312 1166,312 1166,314 1170,314 1170,316 1172,316 1172,318 1174,318 1174,320 1178,320 1178,322 1180,322 1180,324 1182,324 1182,326 1186,326 1186,328 1188,328 1188,330 1190,330 1190,332 1194,332 1194,334 1196,334 1196,336 1200,336 1200,338 1202,338 1202,340 1204,340 1204,342 1208,342 1208,344 1210,344 1210,346 1212,346 1212,348 1216,348 1216,350 1218,350 1218,352 1220,352 1220,354 1224,354 1224,356 1226,356 1226,358 1230,358 1230,360 1232,360 1232,362 1234,362 1234,364 1238,364 1238,366 1240,366 1240,368 1242,368 1242,370 1246,370 1246,372 1248,372 1248,374 1250,374 1250,376 1254,376 1254,378 1256,378 1256,380 1258,380 1258,382 1262,382 1262,384 1264,384 1264,386 1268,386 1268,388 1270,388 1270,390 1272,390 1272,392 1276,392 1276,394 1278,394 1278,396 1280,396 1280,398 1284,398 1284,400 1286,400 1286,402 1288,402 1288,404 1292,404 1292,406 1294,406 1294,408 1296,408 1296,410 1300,410 1300,412 1302,412 1302,414 1306,414 1306,416 1308,416 1308,418 1310,418 1310,420 1314,420 1314,422 1316,422 1316,424 1318,424 1318,426 1322,426 1322,428 1324,428 1324,430 1326,430 1326,432 1330,432 1330,434 1332,434 1332,436 1334,436 1334,438 1338,438 1338,440 1340,440 1340,442 1344,442 1344,444 1346,444 1346,446 1348,446 1348,448 1352,448 1352,450 1354,450 1354,452 1356,452 1356,454 1360,454 1360,456 1362,456 1362,458 1364,458 1364,460 1368,460 1368,462 1370,462 1370,464 1374,464 1374,466 1376,466 1376,468 1378,468 1378,470 1382,470 1382,472 1384,472 1384,474 1386,474 1386,476 1390,476 1390,478 1392,478 1392,480 1394,480 1394,482 1398,482 1398,484 1400,484 1400,486 1402,486 1402,488 1406,488 1406,490 1408,490 1408,492 1412,492 1412,494 1414,494 1414,496 1416,496 1416,498 1420,498 1420,500 1422,500 1422,502 1424,502 1424,504 1428,504 1428,506 1430,506 1430,508 1432,508 1432,510 1436,510 1436,512 1438,512 1438,514 1440,514 1440,516 1444,516 1444,518 1446,518 1446,520 1450,520 1450,522 1452,522 1452,524 1454,524 1454,526 1458,526 1458,528 1460,528 1460,530 1462,530 1462,532 1466,532 1466,534 1468,534 1468,536 1470,536 1470,538 1474,538 1474,540 1476,540 1476,542 1480,542 1480,544 1482,544 1482,546 1484,546 1484,548 1488,548 1488,550 1490,550 1490,552 1492,552 1492,554 1496,554 1496,556 1498,556 1498,558 1500,558 1500,560 1504,560 1504,562 1506,562 1506,564 1508,564 1508,566 1512,566 1512,568 1514,568 1514,570 1518,570 1518,572 1520,572 1520,574 1522,574 1522,576 1526,576 1526,578 1528,578 1528,580 1530,580 1530,582 1534,582 1534,584 1536,584 1536,586 1538,586 1538,588 1542,588 1542,590 1544,590 1544,592 1546,592 1546,594 1550,594 1550,596 1552,596 1552,598 1556,598 1556,600 1558,600 1558,602 1560,602 1560,604 1564,604 1564,606 1566,606 1566,608 1568,608 1568,612 1570,612 1570,616 1572,616 1572,820 1574,820 1574,1102 1572,1102 1572,1106 1570,1106 1570,1110 1568,1110 1568,1112 1564,1112 1564,1114 1562,1114 1562,1116 1558,1116 1558,1118 1556,1118 1556,1120 1552,1120 1552,1122 1548,1122 1548,1124 1546,1124 1546,1126 1542,1126 1542,1128 1538,1128 1538,1130 1536,1130 1536,1132 1532,1132 1532,1134 1528,1134 1528,1136 1526,1136 1526,1138 1522,1138 1522,1140 1520,1140 1520,1142 1516,1142 1516,1144 1514,1144 1514,1154 1512,1154 1512,1160 1510,1160 1510,1166 1508,1166 1508,1170 1506,1170 1506,1172 1504,1172 1504,1174 1502,1174 1502,1178 1500,1178 1500,1180 1496,1180 1496,1182 1494,1182 1494,1184 1490,1184 1490,1186 1488,1186 1488,1188 1482,1188 1482,1190 1472,1190 1472,1192 1690,1192 1690,226 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 808,898 808,902 806,902 806,904 804,904 804,908 802,908 802,910 800,910 800,912 798,912 798,914 796,914 796,916 792,916 792,918 788,918 788,920 784,920 784,922 778,922 778,924 860,924 860,922 852,922 852,920 848,920 848,918 844,918 844,916 842,916 842,914 840,914 840,912 838,912 838,910 836,910 836,908 834,908 834,906 832,906 832,902 830,902 830,898 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 908,898 908,902 906,902 906,904 904,904 904,908 902,908 902,910 900,910 900,912 898,912 898,914 896,914 896,916 892,916 892,918 888,918 888,920 884,920 884,922 878,922 878,924 960,924 960,922 952,922 952,920 948,920 948,918 944,918 944,916 942,916 942,914 940,914 940,912 938,912 938,910 936,910 936,908 934,908 934,906 932,906 932,902 930,902 930,898 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1008,898 1008,902 1006,902 1006,904 1004,904 1004,908 1002,908 1002,910 1000,910 1000,912 998,912 998,914 996,914 996,916 992,916 992,918 988,918 988,920 984,920 984,922 978,922 978,924 1060,924 1060,922 1052,922 1052,920 1048,920 1048,918 1044,918 1044,916 1042,916 1042,914 1040,914 1040,912 1038,912 1038,910 1036,910 1036,908 1034,908 1034,906 1032,906 1032,902 1030,902 1030,898 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1108,898 1108,902 1106,902 1106,904 1104,904 1104,908 1102,908 1102,910 1100,910 1100,912 1098,912 1098,914 1096,914 1096,916 1092,916 1092,918 1088,918 1088,920 1084,920 1084,922 1078,922 1078,924 1160,924 1160,922 1152,922 1152,920 1148,920 1148,918 1144,918 1144,916 1142,916 1142,914 1140,914 1140,912 1138,912 1138,910 1136,910 1136,908 1134,908 1134,906 1132,906 1132,902 1130,902 1130,898 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1208,898 1208,902 1206,902 1206,904 1204,904 1204,908 1202,908 1202,910 1200,910 1200,912 1198,912 1198,914 1196,914 1196,916 1192,916 1192,918 1188,918 1188,920 1184,920 1184,922 1178,922 1178,924 1248,924 1248,918 1244,918 1244,916 1242,916 1242,914 1240,914 1240,912 1238,912 1238,910 1236,910 1236,908 1234,908 1234,906 1232,906 1232,902 1230,902 1230,898 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 408,900 408,902 406,902 406,904 404,904 404,908 402,908 402,910 400,910 400,912 398,912 398,914 396,914 396,916 392,916 392,918 388,918 388,920 384,920 384,922 378,922 378,924 460,924 460,922 452,922 452,920 448,920 448,918 444,918 444,916 442,916 442,914 440,914 440,912 438,912 438,910 436,910 436,908 434,908 434,906 432,906 432,902 430,902 430,900 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 508,900 508,902 506,902 506,904 504,904 504,908 502,908 502,910 500,910 500,912 498,912 498,914 496,914 496,916 492,916 492,918 488,918 488,920 484,920 484,922 478,922 478,924 560,924 560,922 552,922 552,920 548,920 548,918 544,918 544,916 542,916 542,914 540,914 540,912 538,912 538,910 536,910 536,908 534,908 534,906 532,906 532,902 530,902 530,900 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 608,900 608,902 606,902 606,904 604,904 604,908 602,908 602,910 600,910 600,912 598,912 598,914 596,914 596,916 592,916 592,918 588,918 588,920 584,920 584,922 578,922 578,924 660,924 660,922 652,922 652,920 648,920 648,918 644,918 644,916 642,916 642,914 640,914 640,912 638,912 638,910 636,910 636,908 634,908 634,906 632,906 632,902 630,902 630,900 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 708,900 708,902 706,902 706,904 704,904 704,908 702,908 702,910 700,910 700,912 698,912 698,914 696,914 696,916 692,916 692,918 688,918 688,920 684,920 684,922 678,922 678,924 760,924 760,922 752,922 752,920 748,920 748,918 744,918 744,916 742,916 742,914 740,914 740,912 738,912 738,910 736,910 736,908 734,908 734,906 732,906 732,902 730,902 730,900 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,924 0,926 1248,926 1248,924 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,926 0,1012 334,1012 334,1014 340,1014 340,1016 346,1016 346,1018 350,1018 350,1020 354,1020 354,1022 356,1022 356,1024 376,1024 376,1012 450,1012 450,1010 452,1010 452,1008 456,1008 456,1006 518,1006 518,1004 1036,1004 1036,1002 1156,1002 1156,1000 1160,1000 1160,998 1162,998 1162,996 1166,996 1166,994 1168,994 1168,992 1170,992 1170,990 1174,990 1174,988 1176,988 1176,986 1180,986 1180,984 1182,984 1182,982 1186,982 1186,980 1188,980 1188,978 1192,978 1192,976 1194,976 1194,974 1196,974 1196,972 1200,972 1200,970 1202,970 1202,968 1206,968 1206,966 1208,966 1208,964 1212,964 1212,962 1214,962 1214,960 1216,960 1216,958 1220,958 1220,956 1222,956 1222,954 1226,954 1226,952 1228,952 1228,950 1232,950 1232,948 1234,948 1234,946 1236,946 1236,944 1240,944 1240,942 1242,942 1242,940 1246,940 1246,938 1248,938 1248,926 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,1012 0,1112 318,1112 318,1110 310,1110 310,1108 304,1108 304,1106 300,1106 300,1104 298,1104 298,1102 294,1102 294,1100 292,1100 292,1098 290,1098 290,1096 288,1096 288,1094 286,1094 286,1090 284,1090 284,1088 282,1088 282,1084 280,1084 280,1080 278,1080 278,1074 276,1074 276,1050 278,1050 278,1044 280,1044 280,1040 282,1040 282,1036 284,1036 284,1032 286,1032 286,1030 288,1030 288,1028 290,1028 290,1026 292,1026 292,1024 294,1024 294,1022 298,1022 298,1020 300,1020 300,1018 304,1018 304,1016 310,1016 310,1014 318,1014 318,1012 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1170,1044 1170,1046 1040,1046 1040,1048 522,1048 522,1050 474,1050 474,1112 1244,1112 1244,1110 1242,1110 1242,1106 1240,1106 1240,1102 1232,1102 1232,1100 1226,1100 1226,1098 1220,1098 1220,1096 1216,1096 1216,1094 1214,1094 1214,1092 1212,1092 1212,1090 1208,1090 1208,1088 1206,1088 1206,1086 1204,1086 1204,1082 1202,1082 1202,1080 1200,1080 1200,1076 1198,1076 1198,1074 1196,1074 1196,1068 1194,1068 1194,1060 1192,1060 1192,1044 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 356,1100 356,1102 352,1102 352,1104 350,1104 350,1106 346,1106 346,1108 340,1108 340,1110 332,1110 332,1112 376,1112 376,1100 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,1112 0,1114 1244,1114 1244,1112 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,1112 0,1114 1244,1114 1244,1112 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,1112 0,1114 1244,1114 1244,1112 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,1114 0,1132 42,1132 42,1134 50,1134 50,1136 56,1136 56,1138 60,1138 60,1140 64,1140 64,1142 66,1142 66,1144 70,1144 70,1146 72,1146 72,1148 74,1148 74,1150 76,1150 76,1152 78,1152 78,1156 80,1156 80,1158 82,1158 82,1162 84,1162 84,1166 86,1166 86,1172 88,1172 88,1174 1282,1174 1282,1172 1276,1172 1276,1170 1272,1170 1272,1168 1270,1168 1270,1166 1268,1166 1268,1164 1266,1164 1266,1160 1264,1160 1264,1156 1262,1156 1262,1150 1260,1150 1260,1146 1258,1146 1258,1142 1256,1142 1256,1136 1254,1136 1254,1132 1252,1132 1252,1128 1250,1128 1250,1124 1248,1124 1248,1118 1246,1118 1246,1114 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,1132 0,1136 20,1136 20,1134 30,1134 30,1132 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 1368,1170 1368,1172 1298,1172 1298,1174 1432,1174 1432,1170 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 88,1174 88,1176 1434,1176 1434,1174 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 88,1174 88,1176 1434,1176 1434,1174 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 88,1176 88,1192 1466,1192 1466,1190 1456,1190 1456,1188 1450,1188 1450,1186 1446,1186 1446,1184 1444,1184 1444,1182 1440,1182 1440,1180 1438,1180 1438,1178 1436,1178 1436,1176 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 88,1192 88,1194 1690,1194 1690,1192 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 88,1192 88,1194 1690,1194 1690,1192 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 88,1194 88,1198 86,1198 86,1218 1690,1218 1690,1194 '/> <g id='connector0pad'><circle cx='1573.14' cy='144.188' r='37.5' fill='#f9a435' stroke='none' stroke-width='0' /></g> </g> </svg> "/>
<property name="fillType" value="ground"/>
<title>Copper Fill1</title>
<views>
<breadboardView layer="groundplane">
<geometry z="17" x="3.55587" y="3.47941"/>
</breadboardView>
<pcbView layer="groundplane" bottom="true">
<geometry z="2.5002" x="3.55587" y="3.47941"/>
</pcbView>
<schematicView layer="groundplane">
<geometry z="-0.49979" x="3.55587" y="3.47941"/>
</schematicView>
</views>
</instance>
<instance moduleIdRef="GroundPlaneModuleID" modelIndex="85415286" path=":/resources/parts/core/groundplane.fzp">
<property name="svg" value="<svg xmlns='http://www.w3.org/2000/svg' width='0.04in' height='0.029in' viewBox='0 0 40 29' > <g id='groundplane' > <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,0 40,0 40,29 0,29 '/> </g> </svg> "/>
<property name="fillType" value="ground"/>
<title>Copper Fill6</title>
<views>
<breadboardView layer="groundplane">
<geometry z="17" x="124.786" y="15.3594"/>
</breadboardView>
<pcbView layer="groundplane" bottom="true">
<geometry z="2.50022" x="124.786" y="15.3594"/>
</pcbView>
<schematicView layer="groundplane">
<geometry z="-0.4998" x="124.786" y="15.3594"/>
</schematicView>
</views>
</instance>
<instance moduleIdRef="GroundPlaneModuleID" modelIndex="85415287" path=":/resources/parts/core/groundplane.fzp">
<property name="svg" value="<svg xmlns='http://www.w3.org/2000/svg' width='0.04in' height='0.029in' viewBox='0 0 40 29' > <g id='groundplane' > <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,0 40,0 40,29 0,29 '/> </g> </svg> "/>
<property name="fillType" value="ground"/>
<title>Copper Fill7</title>
<views>
<breadboardView layer="groundplane">
<geometry z="17" x="124.786" y="21.0294"/>
</breadboardView>
<pcbView layer="groundplane" bottom="true">
<geometry z="2.50023" x="124.786" y="21.0294"/>
</pcbView>
<schematicView layer="groundplane">
<geometry z="-0.49981" x="124.786" y="21.0294"/>
</schematicView>
</views>
</instance>
<instance moduleIdRef="GroundPlaneModuleID" modelIndex="85415282" path=":/resources/parts/core/groundplane.fzp">
<property name="svg" value="<svg xmlns='http://www.w3.org/2000/svg' width='0.816in' height='0.67in' viewBox='0 0 816 670' > <g id='groundplane' > <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 94,0 94,4 92,4 92,6 90,6 90,10 88,10 88,12 86,12 86,14 84,14 84,16 82,16 82,18 78,18 78,20 74,20 74,22 70,22 70,24 64,24 64,26 146,26 146,24 138,24 138,22 134,22 134,20 130,20 130,18 128,18 128,16 126,16 126,14 124,14 124,12 122,12 122,10 120,10 120,8 118,8 118,4 116,4 116,0 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 194,0 194,4 192,4 192,6 190,6 190,10 188,10 188,12 186,12 186,14 184,14 184,16 182,16 182,18 178,18 178,20 174,20 174,22 170,22 170,24 164,24 164,26 246,26 246,24 238,24 238,22 234,22 234,20 230,20 230,18 228,18 228,16 226,16 226,14 224,14 224,12 222,12 222,10 220,10 220,8 218,8 218,4 216,4 216,0 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 294,0 294,4 292,4 292,6 290,6 290,10 288,10 288,12 286,12 286,14 284,14 284,16 282,16 282,18 278,18 278,20 274,20 274,22 270,22 270,24 264,24 264,26 334,26 334,20 330,20 330,18 328,18 328,16 326,16 326,14 324,14 324,12 322,12 322,10 320,10 320,8 318,8 318,4 316,4 316,0 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,8 0,26 46,26 46,24 38,24 38,22 34,22 34,20 30,20 30,18 28,18 28,16 26,16 26,14 24,14 24,12 22,12 22,10 20,10 20,8 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,26 0,28 334,28 334,26 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,26 0,28 334,28 334,26 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,26 0,28 334,28 334,26 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,26 0,28 334,28 334,26 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,28 0,638 764,638 764,640 770,640 770,642 774,642 774,644 778,644 778,646 780,646 780,648 784,648 784,650 786,650 786,652 788,652 788,654 790,654 790,658 792,658 792,660 794,660 794,664 796,664 796,670 816,670 816,624 814,624 814,434 810,434 810,432 808,432 808,430 804,430 804,428 802,428 802,426 800,426 800,424 796,424 796,422 794,422 794,420 792,420 792,418 788,418 788,416 786,416 786,414 784,414 784,412 780,412 780,410 778,410 778,408 776,408 776,406 772,406 772,404 770,404 770,402 766,402 766,400 764,400 764,398 762,398 762,396 758,396 758,394 756,394 756,392 754,392 754,390 750,390 750,388 748,388 748,386 746,386 746,384 742,384 742,382 740,382 740,380 736,380 736,378 734,378 734,376 732,376 732,374 728,374 728,372 726,372 726,370 724,370 724,368 720,368 720,366 718,366 718,364 716,364 716,362 712,362 712,360 710,360 710,358 708,358 708,356 704,356 704,354 702,354 702,352 698,352 698,350 696,350 696,348 694,348 694,346 690,346 690,344 688,344 688,342 686,342 686,340 682,340 682,338 680,338 680,336 678,336 678,334 674,334 674,332 672,332 672,330 670,330 670,328 666,328 666,326 664,326 664,324 660,324 660,322 658,322 658,320 656,320 656,318 652,318 652,316 650,316 650,314 648,314 648,312 644,312 644,310 642,310 642,308 640,308 640,306 636,306 636,304 634,304 634,302 630,302 630,300 628,300 628,298 626,298 626,296 622,296 622,294 620,294 620,292 618,292 618,290 614,290 614,288 612,288 612,286 610,286 610,284 606,284 606,282 604,282 604,280 602,280 602,278 598,278 598,276 596,276 596,274 592,274 592,272 590,272 590,270 588,270 588,268 584,268 584,266 582,266 582,264 580,264 580,262 576,262 576,260 574,260 574,258 572,258 572,256 568,256 568,254 566,254 566,252 564,252 564,250 560,250 560,248 558,248 558,246 554,246 554,244 552,244 552,242 550,242 550,240 546,240 546,238 544,238 544,236 542,236 542,234 538,234 538,232 536,232 536,230 534,230 534,228 530,228 530,226 528,226 528,224 524,224 524,222 522,222 522,220 520,220 520,218 516,218 516,216 514,216 514,214 512,214 512,212 508,212 508,210 506,210 506,208 504,208 504,206 500,206 500,204 498,204 498,202 496,202 496,200 492,200 492,198 490,198 490,196 486,196 486,194 484,194 484,192 482,192 482,190 478,190 478,188 476,188 476,186 474,186 474,184 470,184 470,182 468,182 468,180 466,180 466,178 462,178 462,176 460,176 460,174 458,174 458,172 454,172 454,170 452,170 452,168 448,168 448,166 446,166 446,164 444,164 444,162 440,162 440,160 438,160 438,158 436,158 436,156 432,156 432,154 430,154 430,152 428,152 428,150 424,150 424,148 422,148 422,146 420,146 420,144 416,144 416,142 414,142 414,140 410,140 410,138 408,138 408,136 406,136 406,134 402,134 402,132 400,132 400,130 398,130 398,128 394,128 394,126 392,126 392,124 390,124 390,122 386,122 386,120 384,120 384,118 380,118 380,116 378,116 378,114 376,114 376,112 372,112 372,110 370,110 370,108 368,108 368,106 364,106 364,104 362,104 362,102 360,102 360,100 356,100 356,98 354,98 354,96 352,96 352,94 348,94 348,92 346,92 346,90 342,90 342,88 340,88 340,86 338,86 338,82 336,82 336,78 334,78 334,28 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 0,638 0,656 20,656 20,654 22,654 22,652 24,652 24,650 26,650 26,648 28,648 28,646 32,646 32,644 34,644 34,642 38,642 38,640 46,640 46,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 64,638 64,640 70,640 70,642 74,642 74,644 78,644 78,646 80,646 80,648 84,648 84,650 86,650 86,652 88,652 88,654 90,654 90,658 92,658 92,660 94,660 94,664 116,664 116,660 118,660 118,656 120,656 120,654 122,654 122,652 124,652 124,650 126,650 126,648 128,648 128,646 132,646 132,644 134,644 134,642 138,642 138,640 146,640 146,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 164,638 164,640 170,640 170,642 174,642 174,644 178,644 178,646 180,646 180,648 184,648 184,650 186,650 186,652 188,652 188,654 190,654 190,658 192,658 192,660 194,660 194,664 216,664 216,660 218,660 218,656 220,656 220,654 222,654 222,652 224,652 224,650 226,650 226,648 228,648 228,646 232,646 232,644 234,644 234,642 238,642 238,640 246,640 246,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 264,638 264,640 270,640 270,642 274,642 274,644 278,644 278,646 280,646 280,648 284,648 284,650 286,650 286,652 288,652 288,654 290,654 290,658 292,658 292,660 294,660 294,664 316,664 316,660 318,660 318,656 320,656 320,654 322,654 322,652 324,652 324,650 326,650 326,648 328,648 328,646 332,646 332,644 334,644 334,642 338,642 338,640 346,640 346,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 364,638 364,640 370,640 370,642 374,642 374,644 378,644 378,646 380,646 380,648 384,648 384,650 386,650 386,652 388,652 388,654 390,654 390,658 392,658 392,660 394,660 394,664 416,664 416,660 418,660 418,656 420,656 420,654 422,654 422,652 424,652 424,650 426,650 426,648 428,648 428,646 432,646 432,644 434,644 434,642 438,642 438,640 446,640 446,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 464,638 464,640 470,640 470,642 474,642 474,644 478,644 478,646 480,646 480,648 484,648 484,650 486,650 486,652 488,652 488,654 490,654 490,658 492,658 492,660 494,660 494,664 516,664 516,660 518,660 518,656 520,656 520,654 522,654 522,652 524,652 524,650 526,650 526,648 528,648 528,646 532,646 532,644 534,644 534,642 538,642 538,640 546,640 546,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 564,638 564,640 570,640 570,642 574,642 574,644 578,644 578,646 580,646 580,648 584,648 584,650 586,650 586,652 588,652 588,654 590,654 590,658 592,658 592,660 594,660 594,664 616,664 616,660 618,660 618,656 620,656 620,654 622,654 622,652 624,652 624,650 626,650 626,648 628,648 628,646 632,646 632,644 634,644 634,642 638,642 638,640 646,640 646,638 '/> <polygon fill='#f9a435' stroke='none' stroke-width='0' points=' 664,638 664,640 670,640 670,642 674,642 674,644 678,644 678,646 680,646 680,648 684,648 684,650 686,650 686,652 688,652 688,654 690,654 690,658 692,658 692,660 694,660 694,664 716,664 716,660 718,660 718,656 720,656 720,654 722,654 722,652 724,652 724,650 726,650 726,648 728,648 728,646 732,646 732,644 734,644 734,642 738,642 738,640 746,640 746,638 '/> <g id='connector0pad'><circle cx='79.75' cy='107.184' r='37.5' fill='#f9a435' stroke='none' stroke-width='0' /></g> </g> </svg> "/>
<title>Copper Fill2</title>
<views>
<breadboardView layer="groundplane">
<geometry z="17" x="67.8159" y="21.2994"/>
</breadboardView>
<pcbView layer="groundplane" bottom="true">
<geometry z="2.50021" x="67.8159" y="21.2994"/>
</pcbView>
<schematicView layer="groundplane">
<geometry z="-0.49982" x="67.8159" y="21.2994"/>
</schematicView>
</views>
</instance>
<instance moduleIdRef="20A9BBEE34_ST-2leadbutton-horizon" modelIndex="85415966" path="/Users/medmunds/Applications/Fritzing.app/Contents/Resources/fritzing-parts/core/pushbutton_2_horizontal.fzp">
<title>Button</title>
<views>
<breadboardView layer="breadboard">
<geometry z="2" x="196.691" y="166.459"/>
<titleGeometry visible="true" x="199.878" y="177.459" z="5.0007" xOffset="3.18667" yOffset="11" textColor="#000000" fontSize="7">
<displayKey key=""/>
<displayKey key="part number"/>
</titleGeometry>
<connectors>
<connector connectorId="connector0" layer="breadboard">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416766" layer="breadboardWire"/>
<connect connectorId="connector1" modelIndex="85416943" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboard">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416914" layer="breadboardWire"/>
<connect connectorId="connector1" modelIndex="85417075" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0">
<geometry z="5.50005" x="87.358" y="-40.2073"/>
<titleGeometry visible="true" x="122.638" y="-47.2073" z="13.0008" xOffset="35.28" yOffset="-7" textColor="#000000" fontSize="5">
<displayKey key=""/>
</titleGeometry>
<connectors>
<connector connectorId="connector0" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416766" layer="copper1trace"/>
<connect connectorId="connector1" modelIndex="85416943" layer="copper0trace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85417075" layer="copper1trace"/>
</connects>
</connector>
</connectors>
</pcbView>
<schematicView layer="schematic">
<geometry z="2.50001" x="13.8488" y="78.7744">
<transform m11="0" m12="1" m13="0" m21="-1" m22="0" m23="0" m31="22.5694" m32="14.2994" m33="1"/>
</geometry>
<titleGeometry visible="true" x="7.86653" y="84.6014" z="7.00077" xOffset="-5.98222" yOffset="5.827" textColor="#000000" fontSize="5">
<displayKey key=""/>
<displayKey key="part number"/>
</titleGeometry>
<connectors>
<connector connectorId="connector0" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416766" layer="schematicTrace"/>
<connect connectorId="connector1" modelIndex="85416943" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416914" layer="schematicTrace"/>
<connect connectorId="connector1" modelIndex="85417075" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416578" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416608" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416690" path=":/resources/parts/core/wire.fzp">
<title>Wire4118</title>
<views>
<breadboardView layer="breadboardWire">
<geometry z="3" x="107.367" y="27.5543" x1="0" y1="0" x2="34.6804" y2="71.2611" wireFlags="128"/>
<wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector55" modelIndex="5851" layer="breadboardbreadboard"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416971" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0trace" bottom="true">
<geometry z="7.00029" x="107.367" y="27.5543" x1="0" y1="0" x2="34.6804" y2="71.2611" wireFlags="128"/>
<wireExtras mils="11.1111" color="#f28a00" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector55" modelIndex="5851" layer="copper0"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416971" layer="copper0trace"/>
</connects>
</connector>
</connectors>
</pcbView>
<schematicView layer="schematicTrace">
<geometry z="6.00036" x="108" y="27.0001" x1="0" y1="0" x2="35.9475" y2="0.0791366" wireFlags="128"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector55" modelIndex="5851" layer="schematic"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416971" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416697" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416762" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416767" path=":/resources/parts/core/wire.fzp">
<title>Wire4151</title>
<views>
<breadboardView layer="breadboardWire">
<geometry z="3.00002" x="207" y="108" x1="0" y1="0" x2="0.0142225" y2="0.0839563" wireFlags="64"/>
<wireExtras mils="22.2222" color="#cc1414" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector63" modelIndex="5851" layer="breadboardbreadboard"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416766" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper1trace">
<geometry z="10.0004" x="207" y="108" x1="0" y1="0" x2="0.0142225" y2="0.0839563" wireFlags="64"/>
<wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector63" modelIndex="5851" layer="copper0"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416766" layer="copper1trace"/>
</connects>
</connector>
</connectors>
</pcbView>
<schematicView layer="schematicTrace">
<geometry z="6.00031" x="207" y="108" x1="0" y1="0" x2="0.0142225" y2="0.0839563" wireFlags="64"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector63" modelIndex="5851" layer="schematic"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416766" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416766" path=":/resources/parts/core/wire.fzp">
<title>Wire4150</title>
<views>
<breadboardView layer="breadboardWire">
<geometry z="3.00001" x="207.014" y="108.084" x1="0" y1="0" x2="17.8818" y2="62.9057" wireFlags="64"/>
<wireExtras mils="22.2222" color="#cc1414" opacity="1" banded="0">
<bezier>
<cp0 x="0" y="0"/>
<cp1 x="47.5636" y="53.26"/>
</bezier>
</wireExtras>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416767" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85415966" layer="breadboard"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper1trace">
<geometry z="10.0004" x="207.014" y="108.084" x1="0" y1="0" x2="17.8818" y2="62.9057" wireFlags="64"/>
<wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416767" layer="copper1trace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85415966" layer="copper0"/>
</connects>
</connector>
</connectors>
</pcbView>
<schematicView layer="schematicTrace">
<geometry z="6.00031" x="207.014" y="108.084" x1="0" y1="0" x2="17.8818" y2="62.9057" wireFlags="64"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416767" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85415966" layer="schematic"/>
</connects>
</connector>
</connectors>
</schematicView>
</views>
</instance>
<instance moduleIdRef="c0e65b2d0c9003507cf4a3222e995a45" modelIndex="85416215" path="/Users/medmunds/Applications/Fritzing.app/Contents/Resources/fritzing-parts/core/reedSwitch_500mil.fzp">
<title>Meter</title>
<views>
<breadboardView layer="breadboard">
<geometry z="2.00001" x="114.3" y="165.976"/>
<titleGeometry visible="true" x="126.483" y="178.976" z="5.00029" xOffset="12.1832" yOffset="13" textColor="#000000" fontSize="7">
<displayKey key=""/>
<displayKey key="mn"/>
<displayKey key="mpn"/>
<displayKey key="part number"/>
</titleGeometry>
<connectors>
<connector connectorId="connector0" layer="breadboard">
<geometry x="3.77983" y="5.02421"/>
<leg>
<point x="0" y="0"/>
<point x="0.092885" y="-0.352065"/>
<bezier/>
</leg>
<connects>
<connect connectorId="connector1" modelIndex="85416832" layer="breadboardWire"/>
<connect connectorId="connector1" modelIndex="85416971" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboard">
<geometry x="52.9202" y="5.02421"/>
<leg>
<point x="0" y="0"/>
<bezier/>
<point x="3.77983" y="0"/>
<bezier/>
</leg>
<connects>
<connect connectorId="connector1" modelIndex="85417054" layer="breadboardWire"/>
<connect connectorId="connector0" modelIndex="85417069" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0">
<geometry z="5.50013" x="-103.033" y="-31.6909"/>
<titleGeometry visible="true" x="-51.2833" y="-38.6909" z="13.0003" xOffset="51.75" yOffset="-7" textColor="#000000" fontSize="5">
<displayKey key=""/>
</titleGeometry>
<connectors>
<connector connectorId="connector0" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416971" layer="copper0trace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper0">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85417054" layer="copper0trace"/>
</connects>
</connector>
</connectors>
</pcbView>
<schematicView layer="schematic">
<geometry z="2.50002" x="98.8013" y="86.36"/>
<titleGeometry visible="true" x="112.469" y="80.7852" z="7.00029" xOffset="13.6678" yOffset="-5.57478" textColor="#000000" fontSize="5">
<displayKey key=""/>
<displayKey key="mn"/>
<displayKey key="mpn"/>
<displayKey key="part number"/>
</titleGeometry>
<connectors>
<connector connectorId="connector0" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416832" layer="schematicTrace"/>
<connect connectorId="connector1" modelIndex="85416971" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematic">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85417054" layer="schematicTrace"/>
<connect connectorId="connector0" modelIndex="85417069" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416813" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416828" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416832" path=":/resources/parts/core/wire.fzp">
<title>Wire4176</title>
<views>
<breadboardView layer="breadboardWire">
<geometry z="3.00003" x="135" y="108" x1="0" y1="0" x2="-16.8273" y2="62.6481" wireFlags="64"/>
<wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0">
<bezier>
<cp0 x="1.25951" y="34.0349"/>
<cp1 x="-48.486" y="39.0643"/>
</bezier>
</wireExtras>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector55" modelIndex="5851" layer="breadboardbreadboard"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416215" layer="breadboard"/>
</connects>
</connector>
</connectors>
</breadboardView>
<schematicView layer="schematicTrace">
<geometry z="6.00046" x="116.886" y="143.995" x1="0" y1="0" x2="18.1863" y2="-36.3661" wireFlags="64"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector55" modelIndex="5851" layer="schematic"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416215" layer="schematic"/>
</connects>
</connector>
</connectors>
</schematicView>
<pcbView layer="copper1trace">
<geometry z="10.0005" x="116.886" y="143.995" x1="0" y1="0" x2="18.1863" y2="-36.3661" wireFlags="64"/>
<wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector55" modelIndex="5851" layer="copper0"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416215" layer="copper1"/>
</connects>
</connector>
</connectors>
</pcbView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416848" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416867" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416870" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416877" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416877" path=":/resources/parts/core/wire.fzp">
<title>Wire4195</title>
<views>
<breadboardView layer="breadboardWire">
<geometry z="3.00018" x="189" y="108" x1="0" y1="0" x2="9" y2="0" wireFlags="64"/>
<wireExtras mils="22.2222" color="#25cc35" opacity="1" banded="0">
<bezier>
<cp0 x="4.66213" y="20.8617"/>
<cp1 x="9" y="0"/>
</bezier>
</wireExtras>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector61" modelIndex="5851" layer="breadboardbreadboard"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector62" modelIndex="5851" layer="breadboardbreadboard"/>
</connects>
</connector>
</connectors>
</breadboardView>
<schematicView layer="schematicTrace">
<geometry z="6.0005" x="188.6" y="108.4" x1="0" y1="0" x2="9.2" y2="-0.2" wireFlags="64"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector61" modelIndex="5851" layer="schematic"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector62" modelIndex="5851" layer="schematic"/>
</connects>
</connector>
</connectors>
</schematicView>
<pcbView layer="copper1trace">
<geometry z="10.0005" x="188.6" y="108.4" x1="0" y1="0" x2="9.2" y2="-0.2" wireFlags="64"/>
<wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector61" modelIndex="5851" layer="copper0"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector62" modelIndex="5851" layer="copper0"/>
</connects>
</connector>
</connectors>
</pcbView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416896" path=":/resources/parts/core/wire.fzp">
<views/>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416914" path=":/resources/parts/core/wire.fzp">
<title>Wire4212</title>
<views>
<schematicView layer="schematicTrace">
<geometry z="6.00053" x="31.5013" y="99" x1="0" y1="0" x2="22.6572" y2="-0.184577" wireFlags="128"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85415966" layer="schematic"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416987" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
<breadboardView layer="breadboardWire">
<geometry z="3.00004" x="31.5013" y="99" x1="0" y1="0" x2="13.6308" y2="-26.7887" wireFlags="128"/>
<wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85415966" layer="breadboard"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416987" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper1trace">
<geometry z="10.0005" x="31.5013" y="99" x1="0" y1="0" x2="13.6308" y2="-26.7887" wireFlags="128"/>
<wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85415966" layer="copper1"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper1trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416987" layer="copper1trace"/>
</connects>
</connector>
</connectors>
</pcbView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416929" path=":/resources/parts/core/wire.fzp">
<title>Wire4218</title>
<views>
<schematicView layer="schematicTrace">
<geometry z="6.00054" x="-0.99018" y="-54.045" x1="0" y1="0" x2="-17.0626" y2="-0.113453" wireFlags="160"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector63" modelIndex="5851" layer="schematic"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416931" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
<breadboardView layer="breadboardWire">
<geometry z="3.00005" x="-0.99018" y="-54.045" x1="0" y1="0" x2="-9.32587e-15" y2="158.494" wireFlags="160"/>
<wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector63" modelIndex="5851" layer="breadboardbreadboard"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416931" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0trace" bottom="true">
<geometry z="7.00032" x="-0.99018" y="-54.045" x1="0" y1="0" x2="-9.32587e-15" y2="158.494" wireFlags="160"/>
<wireExtras mils="11.1111" color="#f28a00" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector63" modelIndex="5851" layer="copper0"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416931" layer="copper0trace"/>
</connects>
</connector>
</connectors>
</pcbView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416931" path=":/resources/parts/core/wire.fzp">
<title>Wire4219</title>
<views>
<schematicView layer="schematicTrace">
<geometry z="6.00055" x="-18.0528" y="-54.1585" x1="0" y1="0" x2="0.950148" y2="152.499" wireFlags="160"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416929" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416941" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
<breadboardView layer="breadboardWire">
<geometry z="3.00006" x="-0.99018" y="104.449" x1="0" y1="0" x2="-9.88002" y2="0" wireFlags="160"/>
<wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416929" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416941" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0trace" bottom="true">
<geometry z="7.00033" x="-0.99018" y="104.449" x1="0" y1="0" x2="-9.88002" y2="0" wireFlags="160"/>
<wireExtras mils="11.1111" color="#f28a00" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416929" layer="copper0trace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416941" layer="copper0trace"/>
</connects>
</connector>
</connectors>
</pcbView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416941" path=":/resources/parts/core/wire.fzp">
<title>Wire4220</title>
<views>
<schematicView layer="schematicTrace">
<geometry z="6.0006" x="-17.1027" y="98.3403" x1="0" y1="0" x2="17.1027" y2="0.475074" wireFlags="160"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416931" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416943" layer="schematicTrace"/>
</connects>
</connector>
</connectors>
</schematicView>
<breadboardView layer="breadboardWire">
<geometry z="3.00007" x="-10.8702" y="104.449" x1="0" y1="0" x2="18" y2="0" wireFlags="160"/>
<wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416931" layer="breadboardWire"/>
</connects>
</connector>
<connector connectorId="connector1" layer="breadboardWire">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416943" layer="breadboardWire"/>
</connects>
</connector>
</connectors>
</breadboardView>
<pcbView layer="copper0trace" bottom="true">
<geometry z="7.00034" x="-10.8702" y="104.449" x1="0" y1="0" x2="18" y2="0" wireFlags="160"/>
<wireExtras mils="11.1111" color="#f28a00" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416931" layer="copper0trace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="copper0trace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85416943" layer="copper0trace"/>
</connects>
</connector>
</connectors>
</pcbView>
</views>
</instance>
<instance moduleIdRef="WireModuleID" modelIndex="85416943" path=":/resources/parts/core/wire.fzp">
<title>Wire4221</title>
<views>
<schematicView layer="schematicTrace">
<geometry z="6.00061" x="0" y="98.8154" x1="0" y1="0" x2="0" y2="0.184577" wireFlags="160"/>
<wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
<connectors>
<connector connectorId="connector0" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector1" modelIndex="85416941" layer="schematicTrace"/>
</connects>
</connector>
<connector connectorId="connector1" layer="schematicTrace">
<geometry x="0" y="0"/>
<connects>
<connect connectorId="connector0" modelIndex="85415966" layer="schematic"/>
</connects>
</connector>
</connectors>
</schematicView>
<breadboardView layer="breadboardWire">
<geometry z="3.00008" x="7.1298" y="104.449" x1="0" y1="0" x2="-7.1298" y2="-5.44873" wireFlags="160"/>