Blame view

fpga/FPGA_projet/FPGA_projet.PrjFpg 41.3 KB
ac06c25b   csaad   ajout du travail ...
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
  [Design]

  Version=1.0

  HierarchyMode=0

  ChannelRoomNamingStyle=0

  ReleasesFolder=

  ReleaseVaultGUID=

  ReleaseVaultName=

  ChannelDesignatorFormatString=$Component_$RoomName

  ChannelRoomLevelSeperator=_

  OpenOutputs=1

  ArchiveProject=0

  TimestampOutput=0

  SeparateFolders=0

  TemplateLocationPath=

  PinSwapBy_Netlabel=1

  PinSwapBy_Pin=1

  AllowPortNetNames=0

  AllowSheetEntryNetNames=1

  AppendSheetNumberToLocalNets=0

  NetlistSinglePinNets=0

  DefaultConfiguration=Default - All Constraints

  UserID=0xFFFFFFFF

  DefaultPcbProtel=1

  DefaultPcbPcad=0

  ReorderDocumentsOnCompile=1

  NameNetsHierarchically=1

  PowerPortNamesTakePriority=0

  PushECOToAnnotationFile=1

  DItemRevisionGUID=

  ReportSuppressedErrorsInMessages=0

  FSMCodingStyle=eFMSDropDownList_OneProcess

  FSMEncodingStyle=eFMSDropDownList_OneHot

  OutputPath=

  LogFolderPath=

  ManagedProjectGUID=

  VHDL87=0

  Verilog95=0

  IncludePaths=

  Defines=

  

  [Preferences]

  PrefsVaultGUID=

  PrefsRevisionGUID=

  

  [Document1]

  DocumentPath=essai1.SchDoc

  AnnotationEnabled=1

  AnnotateStartValue=1

  AnnotationIndexControlEnabled=0

  AnnotateSuffix=

  AnnotateScope=All

  AnnotateOrder=0

  DoLibraryUpdate=1

  DoDatabaseUpdate=1

  ClassGenCCAutoEnabled=1

  ClassGenCCAutoRoomEnabled=1

  ClassGenNCAutoScope=None

  DItemRevisionGUID=

  GenerateClassCluster=0

  DocumentUniqueId=CKQCVEYV

  

  [Document2]

  DocumentPath=..\emission.Vhd

  AnnotationEnabled=1

  AnnotateStartValue=1

  AnnotationIndexControlEnabled=0

  AnnotateSuffix=

  AnnotateScope=All

  AnnotateOrder=-1

  DoLibraryUpdate=1

  DoDatabaseUpdate=1

  ClassGenCCAutoEnabled=1

  ClassGenCCAutoRoomEnabled=1

  ClassGenNCAutoScope=None

  DItemRevisionGUID=

  GenerateClassCluster=0

  DocumentUniqueId=

  

  [Document3]

  DocumentPath=..\reception.Vhd

  AnnotationEnabled=1

  AnnotateStartValue=1

  AnnotationIndexControlEnabled=0

  AnnotateSuffix=

  AnnotateScope=All

  AnnotateOrder=-1

  DoLibraryUpdate=1

  DoDatabaseUpdate=1

  ClassGenCCAutoEnabled=1

  ClassGenCCAutoRoomEnabled=1

  ClassGenNCAutoScope=None

  DItemRevisionGUID=

  GenerateClassCluster=0

  DocumentUniqueId=

  

  [OutputGroup1]

  Name=Netlist Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=CadnetixNetlist

  OutputName1=Cadnetix Netlist

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  OutputType2=CalayNetlist

  OutputName2=Calay Netlist

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  OutputType3=EDIF

  OutputName3=EDIF for PCB

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  OutputType4=EESofNetlist

  OutputName4=EESof Netlist

  OutputDocumentPath4=

  OutputVariantName4=

  OutputDefault4=0

  OutputType5=IntergraphNetlist

  OutputName5=Intergraph Netlist

  OutputDocumentPath5=

  OutputVariantName5=

  OutputDefault5=0

  OutputType6=MentorBoardStationNetlist

  OutputName6=Mentor BoardStation Netlist

  OutputDocumentPath6=

  OutputVariantName6=

  OutputDefault6=0

  OutputType7=MultiWire

  OutputName7=MultiWire

  OutputDocumentPath7=

  OutputVariantName7=

  OutputDefault7=0

  OutputType8=OrCadPCB2Netlist

  OutputName8=Orcad/PCB2 Netlist

  OutputDocumentPath8=

  OutputVariantName8=

  OutputDefault8=0

  OutputType9=PADSNetlist

  OutputName9=PADS ASCII Netlist

  OutputDocumentPath9=

  OutputVariantName9=

  OutputDefault9=0

  OutputType10=Pcad

  OutputName10=Pcad for PCB

  OutputDocumentPath10=

  OutputVariantName10=

  OutputDefault10=0

  OutputType11=PCADNetlist

  OutputName11=PCAD Netlist

  OutputDocumentPath11=

  OutputVariantName11=

  OutputDefault11=0

  OutputType12=PCADnltNetlist

  OutputName12=PCADnlt Netlist

  OutputDocumentPath12=

  OutputVariantName12=

  OutputDefault12=0

  OutputType13=Protel2Netlist

  OutputName13=Protel2 Netlist

  OutputDocumentPath13=

  OutputVariantName13=

  OutputDefault13=0

  OutputType14=ProtelNetlist

  OutputName14=Protel

  OutputDocumentPath14=

  OutputVariantName14=

  OutputDefault14=0

  OutputType15=RacalNetlist

  OutputName15=Racal Netlist

  OutputDocumentPath15=

  OutputVariantName15=

  OutputDefault15=0

  OutputType16=RINFNetlist

  OutputName16=RINF Netlist

  OutputDocumentPath16=

  OutputVariantName16=

  OutputDefault16=0

  OutputType17=SciCardsNetlist

  OutputName17=SciCards Netlist

  OutputDocumentPath17=

  OutputVariantName17=

  OutputDefault17=0

  OutputType18=SIMetrixNetlist

  OutputName18=SIMetrix

  OutputDocumentPath18=

  OutputVariantName18=

  OutputDefault18=0

  OutputType19=SIMPLISNetlist

  OutputName19=SIMPLIS

  OutputDocumentPath19=

  OutputVariantName19=

  OutputDefault19=0

  OutputType20=TangoNetlist

  OutputName20=Tango Netlist

  OutputDocumentPath20=

  OutputVariantName20=

  OutputDefault20=0

  OutputType21=TelesisNetlist

  OutputName21=Telesis Netlist

  OutputDocumentPath21=

  OutputVariantName21=

  OutputDefault21=0

  OutputType22=Verilog

  OutputName22=Verilog File

  OutputDocumentPath22=

  OutputVariantName22=

  OutputDefault22=0

  OutputType23=VHDL

  OutputName23=VHDL File

  OutputDocumentPath23=

  OutputVariantName23=

  OutputDefault23=0

  OutputType24=WireListNetlist

  OutputName24=WireList Netlist

  OutputDocumentPath24=

  OutputVariantName24=

  OutputDefault24=0

  OutputType25=XSpiceNetlist

  OutputName25=XSpice Netlist

  OutputDocumentPath25=

  OutputVariantName25=

  OutputDefault25=0

  

  [OutputGroup2]

  Name=Simulator Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=AdvSimNetlist

  OutputName1=Mixed Sim

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  OutputType2=SIMetrixSimulation

  OutputName2=SIMetrix

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  OutputType3=SIMPLISSimulation

  OutputName3=SIMPLIS

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  

  [OutputGroup3]

  Name=Documentation Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=Assembler Source Print

  OutputName1=Assembler Source Prints

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType2=C Source Print

  OutputName2=C Source Prints

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType3=C/C++ Header Print

  OutputName3=C/C++ Header Prints

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType4=C++ Source Print

  OutputName4=C++ Source Prints

  OutputDocumentPath4=

  OutputVariantName4=

  OutputDefault4=0

  PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType5=Composite

  OutputName5=Composite Drawing

  OutputDocumentPath5=

  OutputVariantName5=

  OutputDefault5=0

  PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType6=FSM Print

  OutputName6=FSM Prints

  OutputDocumentPath6=

  OutputVariantName6=

  OutputDefault6=0

  PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType7=Logic Analyser Print

  OutputName7=Logic Analyser Prints

  OutputDocumentPath7=

  OutputVariantName7=

  OutputDefault7=0

  PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType8=OpenBus Print

  OutputName8=OpenBus Prints

  OutputDocumentPath8=

  OutputVariantName8=

  OutputDefault8=0

  PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType9=PCB 3D Print

  OutputName9=PCB 3D Print

  OutputDocumentPath9=

  OutputVariantName9=[No Variations]

  OutputDefault9=0

  PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType10=PCB 3D Video

  OutputName10=PCB 3D Video

  OutputDocumentPath10=

  OutputVariantName10=[No Variations]

  OutputDefault10=0

  PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType11=PCB Print

  OutputName11=PCB Prints

  OutputDocumentPath11=

  OutputVariantName11=

  OutputDefault11=0

  PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType12=PCBDrawing

  OutputName12=Draftsman

  OutputDocumentPath12=

  OutputVariantName12=

  OutputDefault12=0

  PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType13=PCBLIB Print

  OutputName13=PCBLIB Prints

  OutputDocumentPath13=

  OutputVariantName13=

  OutputDefault13=0

  PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType14=PDF3D

  OutputName14=PDF3D

  OutputDocumentPath14=

  OutputVariantName14=[No Variations]

  OutputDefault14=0

  PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType15=Report Print

  OutputName15=Report Prints

  OutputDocumentPath15=

  OutputVariantName15=

  OutputDefault15=0

  PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType16=Schematic Print

  OutputName16=Schematic Prints

  OutputDocumentPath16=

  OutputVariantName16=

  OutputDefault16=0

  PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType17=SimView Print

  OutputName17=SimView Prints

  OutputDocumentPath17=

  OutputVariantName17=

  OutputDefault17=0

  PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType18=Software Platform Print

  OutputName18=Software Platform Prints

  OutputDocumentPath18=

  OutputVariantName18=

  OutputDefault18=0

  PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType19=VHDL Print

  OutputName19=VHDL Prints

  OutputDocumentPath19=

  OutputVariantName19=

  OutputDefault19=0

  PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType20=Wave Print

  OutputName20=Wave Prints

  OutputDocumentPath20=

  OutputVariantName20=

  OutputDefault20=0

  PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType21=WaveSim Print

  OutputName21=WaveSim Prints

  OutputDocumentPath21=

  OutputVariantName21=

  OutputDefault21=0

  PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  

  [OutputGroup4]

  Name=Assembly Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=Assembly

  OutputName1=Assembly Drawings

  OutputDocumentPath1=

  OutputVariantName1=[No Variations]

  OutputDefault1=0

  PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType2=Pick Place

  OutputName2=Generates pick and place files

  OutputDocumentPath2=

  OutputVariantName2=[No Variations]

  OutputDefault2=0

  OutputType3=Test Points For Assembly

  OutputName3=Test Point Report

  OutputDocumentPath3=

  OutputVariantName3=[No Variations]

  OutputDefault3=0

  

  [OutputGroup5]

  Name=Fabrication Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=Board Stack Report

  OutputName1=Report Board Stack

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType2=CompositeDrill

  OutputName2=Composite Drill Drawing

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType3=Drill

  OutputName3=Drill Drawing/Guides

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType4=Final

  OutputName4=Final Artwork Prints

  OutputDocumentPath4=

  OutputVariantName4=[No Variations]

  OutputDefault4=0

  PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType5=Gerber

  OutputName5=Gerber Files

  OutputDocumentPath5=

  OutputVariantName5=[No Variations]

  OutputDefault5=0

  OutputType6=Gerber X2

  OutputName6=Gerber X2 Files

  OutputDocumentPath6=

  OutputVariantName6=

  OutputDefault6=0

  OutputType7=IPC2581

  OutputName7=IPC-2581 Files

  OutputDocumentPath7=

  OutputVariantName7=

  OutputDefault7=0

  OutputType8=Mask

  OutputName8=Solder/Paste Mask Prints

  OutputDocumentPath8=

  OutputVariantName8=

  OutputDefault8=0

  PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType9=NC Drill

  OutputName9=NC Drill Files

  OutputDocumentPath9=

  OutputVariantName9=

  OutputDefault9=0

  OutputType10=ODB

  OutputName10=ODB++ Files

  OutputDocumentPath10=

  OutputVariantName10=[No Variations]

  OutputDefault10=0

  OutputType11=Plane

  OutputName11=Power-Plane Prints

  OutputDocumentPath11=

  OutputVariantName11=

  OutputDefault11=0

  PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType12=Test Points

  OutputName12=Test Point Report

  OutputDocumentPath12=

  OutputVariantName12=

  OutputDefault12=0

  

  [OutputGroup6]

  Name=Report Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=BOM_PartType

  OutputName1=Bill of Materials

  OutputDocumentPath1=

  OutputVariantName1=[No Variations]

  OutputDefault1=0

  PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType2=ComponentCrossReference

  OutputName2=Component Cross Reference Report

  OutputDocumentPath2=

  OutputVariantName2=[No Variations]

  OutputDefault2=0

  OutputType3=ReportHierarchy

  OutputName3=Report Project Hierarchy

  OutputDocumentPath3=

  OutputVariantName3=[No Variations]

  OutputDefault3=0

  OutputType4=Script

  OutputName4=Script Output

  OutputDocumentPath4=

  OutputVariantName4=[No Variations]

  OutputDefault4=0

  OutputType5=SimpleBOM

  OutputName5=Simple BOM

  OutputDocumentPath5=

  OutputVariantName5=[No Variations]

  OutputDefault5=0

  OutputType6=SinglePinNetReporter

  OutputName6=Report Single Pin Nets

  OutputDocumentPath6=

  OutputVariantName6=[No Variations]

  OutputDefault6=0

  

  [OutputGroup7]

  Name=Other Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=Text Print

  OutputName1=Text Print

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType2=Text Print

  OutputName2=Text Print

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType3=Text Print

  OutputName3=Text Print

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType4=Text Print

  OutputName4=Text Print

  OutputDocumentPath4=

  OutputVariantName4=

  OutputDefault4=0

  PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType5=Text Print

  OutputName5=Text Print

  OutputDocumentPath5=

  OutputVariantName5=

  OutputDefault5=0

  PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType6=Text Print

  OutputName6=Text Print

  OutputDocumentPath6=

  OutputVariantName6=

  OutputDefault6=0

  PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType7=Text Print

  OutputName7=Text Print

  OutputDocumentPath7=

  OutputVariantName7=

  OutputDefault7=0

  PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType8=Text Print

  OutputName8=Text Print

  OutputDocumentPath8=

  OutputVariantName8=

  OutputDefault8=0

  PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType9=Text Print

  OutputName9=Text Print

  OutputDocumentPath9=

  OutputVariantName9=

  OutputDefault9=0

  PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType10=Text Print

  OutputName10=Text Print

  OutputDocumentPath10=

  OutputVariantName10=

  OutputDefault10=0

  PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType11=Text Print

  OutputName11=Text Print

  OutputDocumentPath11=

  OutputVariantName11=

  OutputDefault11=0

  PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType12=Text Print

  OutputName12=Text Print

  OutputDocumentPath12=

  OutputVariantName12=

  OutputDefault12=0

  PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType13=Text Print

  OutputName13=Text Print

  OutputDocumentPath13=

  OutputVariantName13=

  OutputDefault13=0

  PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType14=Text Print

  OutputName14=Text Print

  OutputDocumentPath14=

  OutputVariantName14=

  OutputDefault14=0

  PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType15=Text Print

  OutputName15=Text Print

  OutputDocumentPath15=

  OutputVariantName15=

  OutputDefault15=0

  PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType16=Text Print

  OutputName16=Text Print

  OutputDocumentPath16=

  OutputVariantName16=

  OutputDefault16=0

  PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType17=Text Print

  OutputName17=Text Print

  OutputDocumentPath17=

  OutputVariantName17=

  OutputDefault17=0

  PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType18=Text Print

  OutputName18=Text Print

  OutputDocumentPath18=

  OutputVariantName18=

  OutputDefault18=0

  PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType19=Text Print

  OutputName19=Text Print

  OutputDocumentPath19=

  OutputVariantName19=

  OutputDefault19=0

  PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType20=Text Print

  OutputName20=Text Print

  OutputDocumentPath20=

  OutputVariantName20=

  OutputDefault20=0

  PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType21=Text Print

  OutputName21=Text Print

  OutputDocumentPath21=

  OutputVariantName21=

  OutputDefault21=0

  PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType22=Text Print

  OutputName22=Text Print

  OutputDocumentPath22=

  OutputVariantName22=

  OutputDefault22=0

  PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType23=Text Print

  OutputName23=Text Print

  OutputDocumentPath23=

  OutputVariantName23=

  OutputDefault23=0

  PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType24=Text Print

  OutputName24=Text Print

  OutputDocumentPath24=

  OutputVariantName24=

  OutputDefault24=0

  PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType25=Text Print

  OutputName25=Text Print

  OutputDocumentPath25=

  OutputVariantName25=

  OutputDefault25=0

  PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType26=Text Print

  OutputName26=Text Print

  OutputDocumentPath26=

  OutputVariantName26=

  OutputDefault26=0

  PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType27=Text Print

  OutputName27=Text Print

  OutputDocumentPath27=

  OutputVariantName27=

  OutputDefault27=0

  PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType28=Text Print

  OutputName28=Text Print

  OutputDocumentPath28=

  OutputVariantName28=

  OutputDefault28=0

  PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType29=Text Print

  OutputName29=Text Print

  OutputDocumentPath29=

  OutputVariantName29=

  OutputDefault29=0

  PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  

  [OutputGroup8]

  Name=Validation Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=Component states check

  OutputName1=Vault's components states check

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  OutputType2=Configuration compliance

  OutputName2=Environment configuration compliance check

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  OutputType3=Design Rules Check

  OutputName3=Design Rules Check

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType4=Differences Report

  OutputName4=Differences Report

  OutputDocumentPath4=

  OutputVariantName4=

  OutputDefault4=0

  PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType5=Electrical Rules Check

  OutputName5=Electrical Rules Check

  OutputDocumentPath5=

  OutputVariantName5=

  OutputDefault5=0

  PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9

  OutputType6=Footprint Comparison Report

  OutputName6=Footprint Comparison Report

  OutputDocumentPath6=

  OutputVariantName6=

  OutputDefault6=0

  

  [OutputGroup9]

  Name=Export Outputs

  Description=

  TargetPrinter=Microsoft Print to PDF

  PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1

  OutputType1=AutoCAD dwg/dxf PCB

  OutputName1=AutoCAD dwg/dxf File PCB

  OutputDocumentPath1=

  OutputVariantName1=

  OutputDefault1=0

  OutputType2=AutoCAD dwg/dxf Schematic

  OutputName2=AutoCAD dwg/dxf File Schematic

  OutputDocumentPath2=

  OutputVariantName2=

  OutputDefault2=0

  OutputType3=ExportIDF

  OutputName3=Export IDF

  OutputDocumentPath3=

  OutputVariantName3=

  OutputDefault3=0

  OutputType4=ExportSTEP

  OutputName4=Export STEP

  OutputDocumentPath4=

  OutputVariantName4=[No Variations]

  OutputDefault4=0

  OutputType5=NetList Sch

  OutputName5=NetList Sch

  OutputDocumentPath5=

  OutputVariantName5=

  OutputDefault5=0

  

  [Modification Levels]

  Type1=1

  Type2=1

  Type3=1

  Type4=1

  Type5=1

  Type6=1

  Type7=1

  Type8=1

  Type9=1

  Type10=1

  Type11=1

  Type12=1

  Type13=1

  Type14=1

  Type15=1

  Type16=1

  Type17=1

  Type18=1

  Type19=1

  Type20=1

  Type21=1

  Type22=1

  Type23=1

  Type24=1

  Type25=1

  Type26=1

  Type27=1

  Type28=1

  Type29=1

  Type30=1

  Type31=1

  Type32=1

  Type33=1

  Type34=1

  Type35=1

  Type36=1

  Type37=1

  Type38=1

  Type39=1

  Type40=1

  Type41=1

  Type42=1

  Type43=1

  Type44=1

  Type45=1

  Type46=1

  Type47=1

  Type48=1

  Type49=1

  Type50=1

  Type51=1

  Type52=1

  Type53=1

  Type54=1

  Type55=1

  Type56=1

  Type57=1

  Type58=1

  Type59=1

  Type60=1

  Type61=1

  Type62=1

  Type63=1

  Type64=1

  Type65=1

  Type66=1

  Type67=1

  Type68=1

  Type69=1

  Type70=1

  Type71=1

  Type72=1

  Type73=1

  Type74=1

  Type75=1

  Type76=1

  Type77=1

  Type78=1

  Type79=1

  Type80=1

  

  [Difference Levels]

  Type1=1

  Type2=1

  Type3=1

  Type4=1

  Type5=1

  Type6=1

  Type7=1

  Type8=1

  Type9=1

  Type10=1

  Type11=1

  Type12=1

  Type13=1

  Type14=1

  Type15=1

  Type16=1

  Type17=1

  Type18=1

  Type19=1

  Type20=1

  Type21=1

  Type22=1

  Type23=1

  Type24=1

  Type25=1

  Type26=1

  Type27=1

  Type28=1

  Type29=1

  Type30=1

  Type31=1

  Type32=1

  Type33=1

  Type34=1

  Type35=1

  Type36=1

  Type37=1

  Type38=1

  Type39=1

  Type40=1

  Type41=1

  Type42=1

  Type43=1

  Type44=1

  Type45=1

  

  [Electrical Rules Check]

  Type1=1

  Type2=1

  Type3=3

  Type4=1

  Type5=3

  Type6=3

  Type7=1

  Type8=1

  Type9=1

  Type10=1

  Type11=2

  Type12=2

  Type13=2

  Type14=0

  Type15=0

  Type16=0

  Type17=0

  Type18=0

  Type19=0

  Type20=1

  Type21=1

  Type22=1

  Type23=1

  Type24=1

  Type25=2

  Type26=2

  Type27=2

  Type28=1

  Type29=1

  Type30=1

  Type31=3

  Type32=3

  Type33=3

  Type34=2

  Type35=1

  Type36=2

  Type37=1

  Type38=2

  Type39=2

  Type40=2

  Type41=0

  Type42=2

  Type43=1

  Type44=1

  Type45=2

  Type46=1

  Type47=2

  Type48=2

  Type49=1

  Type50=2

  Type51=1

  Type52=1

  Type53=1

  Type54=1

  Type55=1

  Type56=2

  Type57=1

  Type58=1

  Type59=2

  Type60=0

  Type61=3

  Type62=2

  Type63=3

  Type64=0

  Type65=3

  Type66=3

  Type67=2

  Type68=2

  Type69=2

  Type70=2

  Type71=2

  Type72=2

  Type73=2

  Type74=1

  Type75=2

  Type76=1

  Type77=1

  Type78=1

  Type79=1

  Type80=2

  Type81=3

  Type82=3

  Type83=3

  Type84=3

  Type85=3

  Type86=2

  Type87=2

  Type88=2

  Type89=1

  Type90=1

  Type91=3

  Type92=3

  Type93=3

  Type94=3

  Type95=3

  Type96=3

  Type97=3

  Type98=0

  Type99=1

  Type100=3

  Type101=1

  Type102=2

  Type103=2

  Type104=1

  Type105=2

  Type106=2

  Type107=2

  Type108=2

  Type109=1

  Type110=1

  Type111=1

  

  [ERC Connection Matrix]

  L1=NNNNNNNNNNNWNNNWW

  L2=NNWNNNNWWWNWNWNWN

  L3=NWEENEEEENEWNEEWN

  L4=NNENNNWEENNWNENWN

  L5=NNNNNNNNNNNNNNNNN

  L6=NNENNNNEENNWNENWN

  L7=NNEWNNWEENNWNENWN

  L8=NWEENEENEEENNEENN

  L9=NWEENEEEENEWNEEWW

  L10=NWNNNNNENNEWNNEWN

  L11=NNENNNNEEENWNENWN

  L12=WWWWNWWNWWWNWWWNN

  L13=NNNNNNNNNNNWNNNWW

  L14=NWEENEEEENEWNEEWW

  L15=NNENNNNEEENWNENWW

  L16=WWWWNWWNWWWNWWWNW

  L17=WNNNNNNNWNNNWWWWN

  

  [Annotate]

  SortOrder=3

  SortLocation=0

  MatchParameter1=Comment

  MatchStrictly1=1

  MatchParameter2=Library Reference

  MatchStrictly2=1

  PhysicalNamingFormat=$Component_$RoomName

  GlobalIndexSortOrder=3

  GlobalIndexSortLocation=0

  

  [PrjClassGen]

  CompClassManualEnabled=0

  CompClassManualRoomEnabled=0

  NetClassAutoBusEnabled=1

  NetClassAutoCompEnabled=0

  NetClassAutoNamedHarnessEnabled=0

  NetClassManualEnabled=1

  NetClassSeparateForBusSections=0

  

  [LibraryUpdateOptions]

  SelectedOnly=0

  UpdateVariants=1

  PartTypes=0

  FullReplace=1

  UpdateDesignatorLock=1

  UpdatePartIDLock=1

  PreserveParameterLocations=1

  PreserveParameterVisibility=1

  DoGraphics=1

  DoParameters=1

  DoModels=1

  AddParameters=0

  RemoveParameters=0

  AddModels=1

  RemoveModels=1

  UpdateCurrentModels=1

  

  [DatabaseUpdateOptions]

  SelectedOnly=0

  UpdateVariants=1

  PartTypes=0

  

  [Comparison Options]

  ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0

  ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0

  ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0

  ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0

  ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0

  ComparisonOptions5=Kind=Code Memory|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0

  

  [Generic_VHDLSynthesis]

  SchematicNetlister=0