CamBox_RV1106_lot_1000.PrjPcb 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972
  1. [Design]
  2. Version=1.0
  3. HierarchyMode=0
  4. ChannelRoomNamingStyle=0
  5. ReleasesFolder=
  6. ChannelDesignatorFormatString=$Component_$RoomName
  7. ChannelRoomLevelSeperator=_
  8. OpenOutputs=1
  9. ArchiveProject=0
  10. TimestampOutput=0
  11. SeparateFolders=0
  12. TemplateLocationPath=
  13. PinSwapBy_Netlabel=1
  14. PinSwapBy_Pin=1
  15. AllowPortNetNames=0
  16. AllowSheetEntryNetNames=1
  17. AppendSheetNumberToLocalNets=0
  18. NetlistSinglePinNets=0
  19. DefaultConfiguration=Sources
  20. UserID=0xFFFFFFFF
  21. DefaultPcbProtel=1
  22. DefaultPcbPcad=0
  23. ReorderDocumentsOnCompile=1
  24. NameNetsHierarchically=0
  25. PowerPortNamesTakePriority=0
  26. AutoSheetNumbering=0
  27. AutoCrossReferences=0
  28. NewIndexingOfSheetSymbols=0
  29. PushECOToAnnotationFile=1
  30. DItemRevisionGUID=
  31. ReportSuppressedErrorsInMessages=0
  32. FSMCodingStyle=eFMSDropDownList_OneProcess
  33. FSMEncodingStyle=eFMSDropDownList_OneHot
  34. IsProjectConflictPreventionWarningsEnabled=1
  35. IsVirtualBomDocumentRemoved=0
  36. OutputPath=
  37. LogFolderPath=
  38. ManagedProjectGUID=
  39. IncludeDesignInRelease=0
  40. CrossRefSheetStyle=1
  41. CrossRefLocationStyle=1
  42. CrossRefPorts=3
  43. CrossRefCrossSheets=1
  44. CrossRefSheetEntries=0
  45. CrossRefFollowFromMainSettings=1
  46. [Preferences]
  47. PrefsVaultGUID=
  48. PrefsRevisionGUID=
  49. [Document1]
  50. DocumentPath=Block_Diagram.SchDoc
  51. AnnotationEnabled=1
  52. AnnotateStartValue=1
  53. AnnotationIndexControlEnabled=0
  54. AnnotateSuffix=
  55. AnnotateScope=All
  56. AnnotateOrder=15
  57. DoLibraryUpdate=1
  58. DoDatabaseUpdate=1
  59. ClassGenCCAutoEnabled=1
  60. ClassGenCCAutoRoomEnabled=0
  61. ClassGenNCAutoScope=None
  62. DItemRevisionGUID=
  63. GenerateClassCluster=0
  64. DocumentUniqueId=BCYXRSKT
  65. [Document2]
  66. DocumentPath=POWER.SchDoc
  67. AnnotationEnabled=1
  68. AnnotateStartValue=1
  69. AnnotationIndexControlEnabled=0
  70. AnnotateSuffix=
  71. AnnotateScope=All
  72. AnnotateOrder=0
  73. DoLibraryUpdate=1
  74. DoDatabaseUpdate=1
  75. ClassGenCCAutoEnabled=1
  76. ClassGenCCAutoRoomEnabled=0
  77. ClassGenNCAutoScope=None
  78. DItemRevisionGUID=
  79. GenerateClassCluster=0
  80. DocumentUniqueId=YZVKBUMY
  81. [Document3]
  82. DocumentPath=CORE_RV1106.SchDoc
  83. AnnotationEnabled=1
  84. AnnotateStartValue=1
  85. AnnotationIndexControlEnabled=0
  86. AnnotateSuffix=
  87. AnnotateScope=All
  88. AnnotateOrder=14
  89. DoLibraryUpdate=1
  90. DoDatabaseUpdate=1
  91. ClassGenCCAutoEnabled=1
  92. ClassGenCCAutoRoomEnabled=0
  93. ClassGenNCAutoScope=None
  94. DItemRevisionGUID=
  95. GenerateClassCluster=0
  96. DocumentUniqueId=TYDQGRHT
  97. [Document4]
  98. DocumentPath=AUDIO.SchDoc
  99. AnnotationEnabled=1
  100. AnnotateStartValue=1
  101. AnnotationIndexControlEnabled=0
  102. AnnotateSuffix=
  103. AnnotateScope=All
  104. AnnotateOrder=2
  105. DoLibraryUpdate=1
  106. DoDatabaseUpdate=1
  107. ClassGenCCAutoEnabled=1
  108. ClassGenCCAutoRoomEnabled=0
  109. ClassGenNCAutoScope=None
  110. DItemRevisionGUID=
  111. GenerateClassCluster=0
  112. DocumentUniqueId=FQUWCDSP
  113. [Document5]
  114. DocumentPath=MCU_RX130-140.SchDoc
  115. AnnotationEnabled=1
  116. AnnotateStartValue=1
  117. AnnotationIndexControlEnabled=0
  118. AnnotateSuffix=
  119. AnnotateScope=All
  120. AnnotateOrder=16
  121. DoLibraryUpdate=1
  122. DoDatabaseUpdate=1
  123. ClassGenCCAutoEnabled=1
  124. ClassGenCCAutoRoomEnabled=0
  125. ClassGenNCAutoScope=None
  126. DItemRevisionGUID=
  127. GenerateClassCluster=0
  128. DocumentUniqueId=UGELCSZG
  129. [Document6]
  130. DocumentPath=CAMERA.SchDoc
  131. AnnotationEnabled=1
  132. AnnotateStartValue=1
  133. AnnotationIndexControlEnabled=0
  134. AnnotateSuffix=
  135. AnnotateScope=All
  136. AnnotateOrder=3
  137. DoLibraryUpdate=1
  138. DoDatabaseUpdate=1
  139. ClassGenCCAutoEnabled=1
  140. ClassGenCCAutoRoomEnabled=0
  141. ClassGenNCAutoScope=None
  142. DItemRevisionGUID=
  143. GenerateClassCluster=0
  144. DocumentUniqueId=CPLWNQMC
  145. [Document7]
  146. DocumentPath=UART.SchDoc
  147. AnnotationEnabled=1
  148. AnnotateStartValue=1
  149. AnnotationIndexControlEnabled=0
  150. AnnotateSuffix=
  151. AnnotateScope=All
  152. AnnotateOrder=4
  153. DoLibraryUpdate=1
  154. DoDatabaseUpdate=1
  155. ClassGenCCAutoEnabled=1
  156. ClassGenCCAutoRoomEnabled=0
  157. ClassGenNCAutoScope=None
  158. DItemRevisionGUID=
  159. GenerateClassCluster=0
  160. DocumentUniqueId=IBCFWMTB
  161. [Document8]
  162. DocumentPath=Function.SchDoc
  163. AnnotationEnabled=1
  164. AnnotateStartValue=1
  165. AnnotationIndexControlEnabled=0
  166. AnnotateSuffix=
  167. AnnotateScope=All
  168. AnnotateOrder=5
  169. DoLibraryUpdate=1
  170. DoDatabaseUpdate=1
  171. ClassGenCCAutoEnabled=1
  172. ClassGenCCAutoRoomEnabled=0
  173. ClassGenNCAutoScope=None
  174. DItemRevisionGUID=
  175. GenerateClassCluster=0
  176. DocumentUniqueId=XTFNUDHB
  177. [Document9]
  178. DocumentPath=TF.SchDoc
  179. AnnotationEnabled=1
  180. AnnotateStartValue=1
  181. AnnotationIndexControlEnabled=0
  182. AnnotateSuffix=
  183. AnnotateScope=All
  184. AnnotateOrder=6
  185. DoLibraryUpdate=1
  186. DoDatabaseUpdate=1
  187. ClassGenCCAutoEnabled=1
  188. ClassGenCCAutoRoomEnabled=0
  189. ClassGenNCAutoScope=None
  190. DItemRevisionGUID=
  191. GenerateClassCluster=0
  192. DocumentUniqueId=DYCPCOVH
  193. [Document10]
  194. DocumentPath=4G.SchDoc
  195. AnnotationEnabled=1
  196. AnnotateStartValue=1
  197. AnnotationIndexControlEnabled=0
  198. AnnotateSuffix=
  199. AnnotateScope=All
  200. AnnotateOrder=7
  201. DoLibraryUpdate=1
  202. DoDatabaseUpdate=1
  203. ClassGenCCAutoEnabled=1
  204. ClassGenCCAutoRoomEnabled=0
  205. ClassGenNCAutoScope=None
  206. DItemRevisionGUID=
  207. GenerateClassCluster=0
  208. DocumentUniqueId=HBTPIULA
  209. [Document11]
  210. DocumentPath=GPS.SchDoc
  211. AnnotationEnabled=1
  212. AnnotateStartValue=1
  213. AnnotationIndexControlEnabled=0
  214. AnnotateSuffix=
  215. AnnotateScope=All
  216. AnnotateOrder=8
  217. DoLibraryUpdate=1
  218. DoDatabaseUpdate=1
  219. ClassGenCCAutoEnabled=1
  220. ClassGenCCAutoRoomEnabled=0
  221. ClassGenNCAutoScope=None
  222. DItemRevisionGUID=
  223. GenerateClassCluster=0
  224. DocumentUniqueId=XBHZKGQY
  225. [Document12]
  226. DocumentPath=ETH.SchDoc
  227. AnnotationEnabled=1
  228. AnnotateStartValue=1
  229. AnnotationIndexControlEnabled=0
  230. AnnotateSuffix=
  231. AnnotateScope=All
  232. AnnotateOrder=9
  233. DoLibraryUpdate=1
  234. DoDatabaseUpdate=1
  235. ClassGenCCAutoEnabled=1
  236. ClassGenCCAutoRoomEnabled=0
  237. ClassGenNCAutoScope=None
  238. DItemRevisionGUID=
  239. GenerateClassCluster=0
  240. DocumentUniqueId=PURCMWXV
  241. [Document13]
  242. DocumentPath=INPUT.SchDoc
  243. AnnotationEnabled=1
  244. AnnotateStartValue=1
  245. AnnotationIndexControlEnabled=0
  246. AnnotateSuffix=
  247. AnnotateScope=All
  248. AnnotateOrder=10
  249. DoLibraryUpdate=1
  250. DoDatabaseUpdate=1
  251. ClassGenCCAutoEnabled=1
  252. ClassGenCCAutoRoomEnabled=0
  253. ClassGenNCAutoScope=None
  254. DItemRevisionGUID=
  255. GenerateClassCluster=0
  256. DocumentUniqueId=BCQXQIZB
  257. [Document14]
  258. DocumentPath=OUTPUT.SchDoc
  259. AnnotationEnabled=1
  260. AnnotateStartValue=1
  261. AnnotationIndexControlEnabled=0
  262. AnnotateSuffix=
  263. AnnotateScope=All
  264. AnnotateOrder=11
  265. DoLibraryUpdate=1
  266. DoDatabaseUpdate=1
  267. ClassGenCCAutoEnabled=1
  268. ClassGenCCAutoRoomEnabled=0
  269. ClassGenNCAutoScope=None
  270. DItemRevisionGUID=
  271. GenerateClassCluster=0
  272. DocumentUniqueId=QOXORCSF
  273. [Document15]
  274. DocumentPath=CONN.SchDoc
  275. AnnotationEnabled=1
  276. AnnotateStartValue=1
  277. AnnotationIndexControlEnabled=0
  278. AnnotateSuffix=
  279. AnnotateScope=All
  280. AnnotateOrder=13
  281. DoLibraryUpdate=1
  282. DoDatabaseUpdate=1
  283. ClassGenCCAutoEnabled=1
  284. ClassGenCCAutoRoomEnabled=0
  285. ClassGenNCAutoScope=None
  286. DItemRevisionGUID=
  287. GenerateClassCluster=0
  288. DocumentUniqueId=SAITEOPN
  289. [Document16]
  290. DocumentPath=CamBox_RV11061\CamBox_RV1106.PcbLib
  291. AnnotationEnabled=1
  292. AnnotateStartValue=1
  293. AnnotationIndexControlEnabled=0
  294. AnnotateSuffix=
  295. AnnotateScope=All
  296. AnnotateOrder=-1
  297. DoLibraryUpdate=1
  298. DoDatabaseUpdate=1
  299. ClassGenCCAutoEnabled=1
  300. ClassGenCCAutoRoomEnabled=1
  301. ClassGenNCAutoScope=None
  302. DItemRevisionGUID=
  303. GenerateClassCluster=0
  304. DocumentUniqueId=TCHWHPCA
  305. [Document17]
  306. DocumentPath=CamBox_RV11061\CamBox_RV1106.SCHLIB
  307. AnnotationEnabled=1
  308. AnnotateStartValue=1
  309. AnnotationIndexControlEnabled=0
  310. AnnotateSuffix=
  311. AnnotateScope=All
  312. AnnotateOrder=-1
  313. DoLibraryUpdate=1
  314. DoDatabaseUpdate=1
  315. ClassGenCCAutoEnabled=1
  316. ClassGenCCAutoRoomEnabled=1
  317. ClassGenNCAutoScope=None
  318. DItemRevisionGUID=
  319. GenerateClassCluster=0
  320. DocumentUniqueId=PJEWJJUC
  321. [Document18]
  322. DocumentPath=CamBox_RV1106.IntLib
  323. AnnotationEnabled=1
  324. AnnotateStartValue=1
  325. AnnotationIndexControlEnabled=0
  326. AnnotateSuffix=
  327. AnnotateScope=All
  328. AnnotateOrder=-1
  329. DoLibraryUpdate=1
  330. DoDatabaseUpdate=1
  331. ClassGenCCAutoEnabled=1
  332. ClassGenCCAutoRoomEnabled=1
  333. ClassGenNCAutoScope=None
  334. DItemRevisionGUID=
  335. GenerateClassCluster=0
  336. DocumentUniqueId=
  337. [Document19]
  338. DocumentPath=CamBox_RV1106_lot_1000.PcbDoc
  339. AnnotationEnabled=1
  340. AnnotateStartValue=1
  341. AnnotationIndexControlEnabled=0
  342. AnnotateSuffix=
  343. AnnotateScope=All
  344. AnnotateOrder=-1
  345. DoLibraryUpdate=1
  346. DoDatabaseUpdate=1
  347. ClassGenCCAutoEnabled=1
  348. ClassGenCCAutoRoomEnabled=1
  349. ClassGenNCAutoScope=None
  350. DItemRevisionGUID=
  351. GenerateClassCluster=0
  352. DocumentUniqueId=DNIDONKW
  353. [Document20]
  354. DocumentPath=MECHANICALS.SchDoc
  355. AnnotationEnabled=1
  356. AnnotateStartValue=1
  357. AnnotationIndexControlEnabled=0
  358. AnnotateSuffix=
  359. AnnotateScope=All
  360. AnnotateOrder=17
  361. DoLibraryUpdate=1
  362. DoDatabaseUpdate=1
  363. ClassGenCCAutoEnabled=1
  364. ClassGenCCAutoRoomEnabled=0
  365. ClassGenNCAutoScope=None
  366. DItemRevisionGUID=
  367. GenerateClassCluster=0
  368. DocumentUniqueId=ECTNIVSY
  369. [Document21]
  370. DocumentPath=..\Cambox_V4\Cambox_GX\Output.OutJob
  371. AnnotationEnabled=1
  372. AnnotateStartValue=1
  373. AnnotationIndexControlEnabled=0
  374. AnnotateSuffix=
  375. AnnotateScope=All
  376. AnnotateOrder=-1
  377. DoLibraryUpdate=1
  378. DoDatabaseUpdate=1
  379. ClassGenCCAutoEnabled=1
  380. ClassGenCCAutoRoomEnabled=1
  381. ClassGenNCAutoScope=None
  382. DItemRevisionGUID=
  383. GenerateClassCluster=0
  384. DocumentUniqueId=
  385. [Document22]
  386. DocumentPath=CamBox_RV1106.OutJob
  387. AnnotationEnabled=1
  388. AnnotateStartValue=1
  389. AnnotationIndexControlEnabled=0
  390. AnnotateSuffix=
  391. AnnotateScope=All
  392. AnnotateOrder=-1
  393. DoLibraryUpdate=1
  394. DoDatabaseUpdate=1
  395. ClassGenCCAutoEnabled=1
  396. ClassGenCCAutoRoomEnabled=1
  397. ClassGenNCAutoScope=None
  398. DItemRevisionGUID=
  399. GenerateClassCluster=0
  400. DocumentUniqueId=
  401. [Document23]
  402. DocumentPath=CamBox_RV1106.PCBDwf
  403. AnnotationEnabled=1
  404. AnnotateStartValue=1
  405. AnnotationIndexControlEnabled=0
  406. AnnotateSuffix=
  407. AnnotateScope=All
  408. AnnotateOrder=-1
  409. DoLibraryUpdate=1
  410. DoDatabaseUpdate=1
  411. ClassGenCCAutoEnabled=1
  412. ClassGenCCAutoRoomEnabled=1
  413. ClassGenNCAutoScope=None
  414. DItemRevisionGUID=
  415. GenerateClassCluster=0
  416. DocumentUniqueId=
  417. [ProjectVariant1]
  418. UniqueID=E3D06398-A058-42DC-91D4-E4FCEEED59B6
  419. Description=CameraBox
  420. AllowFabrication=0
  421. ParameterCount=4
  422. VariationCount=23
  423. Variation1=Designator=R28|UniqueId=\PGKVMOGM|Kind=1|AlternatePart=
  424. Variation2=Designator=R32|UniqueId=\EHOLIYFG|Kind=1|AlternatePart=
  425. Variation3=Designator=C109|UniqueId=\HMEZJDJO|Kind=1|AlternatePart=
  426. Variation4=Designator=C114|UniqueId=\RSCQUYGB|Kind=1|AlternatePart=
  427. Variation5=Designator=C187|UniqueId=\WUOFJAQV|Kind=1|AlternatePart=
  428. Variation6=Designator=R117|UniqueId=\YWMIUTDW|Kind=1|AlternatePart=
  429. Variation7=Designator=R118|UniqueId=\OYEEWPHO|Kind=1|AlternatePart=
  430. Variation8=Designator=C163|UniqueId=\FLDWJTMA|Kind=1|AlternatePart=
  431. Variation9=Designator=C164|UniqueId=\RLEMRSVZ|Kind=1|AlternatePart=
  432. Variation10=Designator=R160|UniqueId=\GTVIZXDC|Kind=1|AlternatePart=
  433. Variation11=Designator=R174|UniqueId=\BXITKBOI|Kind=1|AlternatePart=
  434. Variation12=Designator=R176|UniqueId=\ZWGPDMSA|Kind=1|AlternatePart=
  435. Variation13=Designator=R177|UniqueId=\NCLNTMOM|Kind=1|AlternatePart=
  436. Variation14=Designator=R180|UniqueId=\OZQHEAGH|Kind=1|AlternatePart=
  437. Variation15=Designator=R184|UniqueId=\FAABKJMQ|Kind=1|AlternatePart=
  438. Variation16=Designator=R183|UniqueId=\CBERASUA|Kind=1|AlternatePart=
  439. Variation17=Designator=R170|UniqueId=\KPAKVTZV|Kind=1|AlternatePart=
  440. Variation18=Designator=R225|UniqueId=\HTBUCSTY|Kind=1|AlternatePart=
  441. Variation19=Designator=R?|UniqueId=\SYIFLMHS|Kind=1|AlternatePart=
  442. Variation20=Designator=D34|UniqueId=\AJSNUYRF|Kind=1|AlternatePart=
  443. Variation21=Designator=C147|UniqueId=\RGPLURCD|Kind=1|AlternatePart=
  444. Variation22=Designator=R?|UniqueId=\JGFXGPCO|Kind=1|AlternatePart=
  445. Variation23=Designator=R?|UniqueId=\SWISXZIF|Kind=1|AlternatePart=
  446. ParamVariationCount=0
  447. [Parameter2_1]
  448. Name=author
  449. Value=Hainv
  450. [Parameter2_2]
  451. Name=Cus
  452. Value=Aithings
  453. [Parameter2_3]
  454. Name=des
  455. Value=Cambox_2026
  456. [Parameter2_4]
  457. Name=ver
  458. Value=4.0
  459. [GeneratedDocument1]
  460. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\NC Drill\CamBox_RV1106_lot_1000-BoardEdgeRout.TXT
  461. DItemRevisionGUID=
  462. [GeneratedDocument2]
  463. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\NC Drill\CamBox_RV1106_lot_1000-BoardEdgeRout.TXT
  464. DItemRevisionGUID=
  465. [GeneratedDocument3]
  466. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\NC Drill\CamBox_RV1106_lot_1000-RoundHoles-NonPlated.TXT
  467. DItemRevisionGUID=
  468. [GeneratedDocument4]
  469. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\NC Drill\CamBox_RV1106_lot_1000-RoundHoles-NonPlated.TXT
  470. DItemRevisionGUID=
  471. [GeneratedDocument5]
  472. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\NC Drill\CamBox_RV1106_lot_1000-RoundHoles-Plated.TXT
  473. DItemRevisionGUID=
  474. [GeneratedDocument6]
  475. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\NC Drill\CamBox_RV1106_lot_1000-RoundHoles-Plated.TXT
  476. DItemRevisionGUID=
  477. [GeneratedDocument7]
  478. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106_lot_1000-RoundHoles.TXT
  479. DItemRevisionGUID=
  480. [GeneratedDocument8]
  481. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\NC Drill\CamBox_RV1106_lot_1000-SlotHoles-Plated.TXT
  482. DItemRevisionGUID=
  483. [GeneratedDocument9]
  484. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\NC Drill\CamBox_RV1106_lot_1000-SlotHoles-Plated.TXT
  485. DItemRevisionGUID=
  486. [GeneratedDocument10]
  487. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106_lot_1000-SlotHoles.TXT
  488. DItemRevisionGUID=
  489. [GeneratedDocument11]
  490. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106_lot_1000.DRR
  491. DItemRevisionGUID=
  492. [GeneratedDocument12]
  493. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\NC Drill\CamBox_RV1106_lot_1000.DRR
  494. DItemRevisionGUID=
  495. [GeneratedDocument13]
  496. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\NC Drill\CamBox_RV1106_lot_1000.DRR
  497. DItemRevisionGUID=
  498. [GeneratedDocument14]
  499. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.EXTREP
  500. DItemRevisionGUID=
  501. [GeneratedDocument15]
  502. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.EXTREP
  503. DItemRevisionGUID=
  504. [GeneratedDocument16]
  505. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.EXTREP
  506. DItemRevisionGUID=
  507. [GeneratedDocument17]
  508. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.G1
  509. DItemRevisionGUID=
  510. [GeneratedDocument18]
  511. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GBL
  512. DItemRevisionGUID=
  513. [GeneratedDocument19]
  514. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GBL
  515. DItemRevisionGUID=
  516. [GeneratedDocument20]
  517. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GBL
  518. DItemRevisionGUID=
  519. [GeneratedDocument21]
  520. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GBO
  521. DItemRevisionGUID=
  522. [GeneratedDocument22]
  523. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GBO
  524. DItemRevisionGUID=
  525. [GeneratedDocument23]
  526. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GBO
  527. DItemRevisionGUID=
  528. [GeneratedDocument24]
  529. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GBP
  530. DItemRevisionGUID=
  531. [GeneratedDocument25]
  532. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GBP
  533. DItemRevisionGUID=
  534. [GeneratedDocument26]
  535. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GBP
  536. DItemRevisionGUID=
  537. [GeneratedDocument27]
  538. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GBS
  539. DItemRevisionGUID=
  540. [GeneratedDocument28]
  541. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GBS
  542. DItemRevisionGUID=
  543. [GeneratedDocument29]
  544. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GBS
  545. DItemRevisionGUID=
  546. [GeneratedDocument30]
  547. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GD1
  548. DItemRevisionGUID=
  549. [GeneratedDocument31]
  550. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GD1
  551. DItemRevisionGUID=
  552. [GeneratedDocument32]
  553. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GD1
  554. DItemRevisionGUID=
  555. [GeneratedDocument33]
  556. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GG1
  557. DItemRevisionGUID=
  558. [GeneratedDocument34]
  559. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GG1
  560. DItemRevisionGUID=
  561. [GeneratedDocument35]
  562. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GG1
  563. DItemRevisionGUID=
  564. [GeneratedDocument36]
  565. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GKO
  566. DItemRevisionGUID=
  567. [GeneratedDocument37]
  568. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GKO
  569. DItemRevisionGUID=
  570. [GeneratedDocument38]
  571. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GKO
  572. DItemRevisionGUID=
  573. [GeneratedDocument39]
  574. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM
  575. DItemRevisionGUID=
  576. [GeneratedDocument40]
  577. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GM1
  578. DItemRevisionGUID=
  579. [GeneratedDocument41]
  580. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM4
  581. DItemRevisionGUID=
  582. [GeneratedDocument42]
  583. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM5
  584. DItemRevisionGUID=
  585. [GeneratedDocument43]
  586. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM6
  587. DItemRevisionGUID=
  588. [GeneratedDocument44]
  589. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM7
  590. DItemRevisionGUID=
  591. [GeneratedDocument45]
  592. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM8
  593. DItemRevisionGUID=
  594. [GeneratedDocument46]
  595. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM12
  596. DItemRevisionGUID=
  597. [GeneratedDocument47]
  598. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GM13
  599. DItemRevisionGUID=
  600. [GeneratedDocument48]
  601. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM13
  602. DItemRevisionGUID=
  603. [GeneratedDocument49]
  604. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GM14
  605. DItemRevisionGUID=
  606. [GeneratedDocument50]
  607. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM14
  608. DItemRevisionGUID=
  609. [GeneratedDocument51]
  610. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GM15
  611. DItemRevisionGUID=
  612. [GeneratedDocument52]
  613. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GP1
  614. DItemRevisionGUID=
  615. [GeneratedDocument53]
  616. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GPB
  617. DItemRevisionGUID=
  618. [GeneratedDocument54]
  619. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GPB
  620. DItemRevisionGUID=
  621. [GeneratedDocument55]
  622. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GPB
  623. DItemRevisionGUID=
  624. [GeneratedDocument56]
  625. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GPT
  626. DItemRevisionGUID=
  627. [GeneratedDocument57]
  628. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GPT
  629. DItemRevisionGUID=
  630. [GeneratedDocument58]
  631. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GPT
  632. DItemRevisionGUID=
  633. [GeneratedDocument59]
  634. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GTL
  635. DItemRevisionGUID=
  636. [GeneratedDocument60]
  637. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GTL
  638. DItemRevisionGUID=
  639. [GeneratedDocument61]
  640. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GTL
  641. DItemRevisionGUID=
  642. [GeneratedDocument62]
  643. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GTO
  644. DItemRevisionGUID=
  645. [GeneratedDocument63]
  646. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GTO
  647. DItemRevisionGUID=
  648. [GeneratedDocument64]
  649. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GTO
  650. DItemRevisionGUID=
  651. [GeneratedDocument65]
  652. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GTP
  653. DItemRevisionGUID=
  654. [GeneratedDocument66]
  655. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GTP
  656. DItemRevisionGUID=
  657. [GeneratedDocument67]
  658. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GTP
  659. DItemRevisionGUID=
  660. [GeneratedDocument68]
  661. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.GTS
  662. DItemRevisionGUID=
  663. [GeneratedDocument69]
  664. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.GTS
  665. DItemRevisionGUID=
  666. [GeneratedDocument70]
  667. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.GTS
  668. DItemRevisionGUID=
  669. [GeneratedDocument71]
  670. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\NC Drill\CamBox_RV1106_lot_1000.LDP
  671. DItemRevisionGUID=
  672. [GeneratedDocument72]
  673. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\NC Drill\CamBox_RV1106_lot_1000.LDP
  674. DItemRevisionGUID=
  675. [GeneratedDocument73]
  676. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\NC Drill\CamBox_RV1106_lot_1000.LDP
  677. DItemRevisionGUID=
  678. [GeneratedDocument74]
  679. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Gerber\CamBox_RV1106_lot_1000.REP
  680. DItemRevisionGUID=
  681. [GeneratedDocument75]
  682. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.REP
  683. DItemRevisionGUID=
  684. [GeneratedDocument76]
  685. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.REP
  686. DItemRevisionGUID=
  687. [GeneratedDocument77]
  688. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\CamBox_RV1106_lot_1000.RUL
  689. DItemRevisionGUID=
  690. [GeneratedDocument78]
  691. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\CamBox_RV1106_lot_1000.RUL
  692. DItemRevisionGUID=
  693. [GeneratedDocument79]
  694. DocumentPath=Project Outputs for CamBox_RV1106\Bare_PCB\Bare_PCB\Report Board Stack\CamBox_RV1106_lot_1000.xls
  695. DItemRevisionGUID=
  696. [GeneratedDocument80]
  697. DocumentPath=Project Outputs for CamBox_RV1106\Design Rule Check - CamBox_RV1106.html
  698. DItemRevisionGUID=
  699. [GeneratedDocument81]
  700. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Design Rule Check - CamBox_RV1106_lot_1000.html
  701. DItemRevisionGUID=
  702. [GeneratedDocument82]
  703. DocumentPath=Project Outputs for CamBox_RV1106_lot_1000\Gerber\PCB.GM
  704. DItemRevisionGUID=
  705. [GeneratedDocument83]
  706. DocumentPath=..\MODUL_IO - Copy\Project Outputs for MODUL_IO\Gerber\PCB.GM
  707. DItemRevisionGUID=
  708. [Configuration1]
  709. Name=Sources
  710. ParameterCount=0
  711. ConstraintFileCount=0
  712. ReleaseItemId=
  713. Variant=[No Variations]
  714. OutputJobsCount=0
  715. ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2
  716. ConfigurationType=Source
  717. [Generic_SmartPDF]
  718. AutoOpenFile=-1
  719. AutoOpenOutJob=-1
  720. [Generic_SmartPDFSettings]
  721. ProjectMode=-1
  722. ZoomPrecision=50
  723. AddNetsInformation=-1
  724. AddNetPins=-1
  725. AddNetNetLabels=-1
  726. AddNetPorts=-1
  727. ShowComponentParameters=-1
  728. GlobalBookmarks=0
  729. ExportBOM=0
  730. TemplateFilename=Board Stack Report.XLT
  731. TemplateStoreRelative=-1
  732. PCB_PrintColor=1
  733. SCH_PrintColor=0
  734. PrintQuality=-4
  735. SCH_ShowNoErc=-1
  736. SCH_ShowParameter=-1
  737. SCH_ShowProbes=-1
  738. SCH_ShowBlankets=-1
  739. SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle
  740. SCH_ShowNote=-1
  741. SCH_ShowNoteCollapsed=-1
  742. Wir_PrintColor=0
  743. Ldr_PrintColor=0
  744. SCH_ExpandLogicalToPhysical=-1
  745. SCH_VariantName=[No Variations]
  746. SCH_ExpandComponentDesignators=-1
  747. SCH_ExpandNetlabels=-1
  748. SCH_ExpandPorts=-1
  749. SCH_ExpandSheetNumber=-1
  750. SCH_ExpandDocumentNumber=-1
  751. SCH_HasExpandLogicalToPhysicalSheets=-1
  752. SaveSettingsToOutJob=-1
  753. [Generic_EDE]
  754. OutputDir=
  755. [Generic_SimulationProfiles]
  756. ActiveProfile=ALGJRBAG
  757. ProfileId0=ALGJRBAG
  758. ProfileName0=Mixed Sim Configuration
  759. OutputType0=AdvSimNetlist
  760. ConfigParameters0=OP_Analysis=False|TRAN_Analysis=True|DC_Analysis=False|AC_Analysis=False|TF_Analysis=False|PZ_Analysis=False|Noise_Analysis=False|TRAN_FourierAnalysis=False|TempSweep_Analysis=False|ParamSweep_Analysis=False|MonteCarlo_Analysis=False|TF_Enabled=False|TF_Source=|TF_Reference=0|PZ_Enabled=False|PZ_Node1=|PZ_Node2=0|PZ_Node3=|PZ_Node4=0|PZ_AnalType=PZ|PZ_TfType=VOL|AnalysesDataSavedIndex=4|DC_ShowMeasTableChart=False|DC_PrimarySource=|DC_PrimaryStart=|DC_PrimaryStop=|DC_PrimaryStep=|DC_EnableSecondary=False|DC_SecondarySource=|DC_SecondaryStart=|DC_SecondaryStop=|DC_SecondaryStep=|Noise_Enabled=False|Noise_Source=|Noise_Output=|Noise_Reference=0|Noise_Start_UserValue=|Noise_Start=1K|Noise_Stop_UserValue=|Noise_Stop=1G|Noise_TestPoints_UserValue=|Noise_TestPoints=10|Noise_PointsPerSummary=0|Noise_SweepType=DEC|AC_StartFrequency_UserValue=|AC_StartFrequency=1K|AC_StopFrequency_UserValue=|AC_StopFrequency=1G|AC_TestPoints_UserValue=|AC_TestPoints=10|AC_SweepType=DEC|AC_ShowMeasTableChart=False|TRAN_StartTime_UserValue=|TRAN_StartTime=0|TRAN_StopTime_UserValue=|TRAN_StopTime=5u|TRAN_StepTime_UserValue=|TRAN_StepTime=0.1u|TRAN_MaxStepTime_UserValue=|TRAN_MaxStepTime=0.1u|TRAN_AlwaysSetDefaults=False|TRAN_DefaultCycles_UserValue=|TRAN_DefaultCycles=5|TRAN_DefaultPointsPerCycle_UserValue=|TRAN_DefaultPointsPerCycle=25|TRAN_UseInitialConditions=False|TRAN_FourierEnabled=False|TRAN_FourierFundFreq_UserValue=|TRAN_FourierFundFreq=1Meg|TRAN_FourierNumHarmonics_UserValue=|TRAN_FourierNumHarmonics=10|TRAN_ShowMeasTableChart=False|TempSweep_Start_UserValue=|TempSweep_Start=-10|TempSweep_Stop_UserValue=|TempSweep_Stop=60|TempSweep_Step_UserValue=|TempSweep_Step=10|ParamSweep_Parameter1=|ParamSweep_Type1=LIN|ParamSweep_Start1=|ParamSweep_Stop1=|ParamSweep_Step1=|ParamSweep_SweepType1=False|ParamSweep_SecondaryEnabled=False|ParamSweep_Parameter2=|ParamSweep_Type2=LIN|ParamSweep_Start2=|ParamSweep_Stop2=|ParamSweep_Step2=|ParamSweep_SweepType2=False|MonteCarlo_NumberOfRuns=10|MonteCarlo_DistributionType=GAUSS|MonteCarlo_Seed=-1|MonteCarlo_ResistorTolerance=10%|MonteCarlo_ResistorTolerance_UserValue=10%|MonteCarlo_CapacitorTolerance=10%|MonteCarlo_CapacitorTolerance_UserValue=10%|MonteCarlo_InductorTolerance=10%|MonteCarlo_InductorTolerance_UserValue=10%|MonteCarlo_TransistorTolerance=10%|MonteCarlo_TransistorTolerance_UserValue=10%|MonteCarlo_DCSourceTolerance=10%|MonteCarlo_DCSourceTolerance_UserValue=10%|MonteCarlo_DigitalTpTolerance=10%|MonteCarlo_DigitalTpTolerance_UserValue=10%|Sensitivity_Analysis=False|Sensitivity_GroupDeviationsEnabled=False|Sensitivity_GroupResistorEnabled=True|Sensitivity_GroupResistorDeviation_UserValue=|Sensitivity_GroupResistorDeviation=1m|Sensitivity_GroupCapacitorEnabled=False|Sensitivity_GroupCapacitorDeviation_UserValue=|Sensitivity_GroupCapacitorDeviation=1m|Sensitivity_GroupInductorEnabled=False|Sensitivity_GroupInductorDeviation_UserValue=|Sensitivity_GroupInductorDeviation=1m|Sensitivity_GroupTransistorEnabled=False|Sensitivity_GroupTransistorDeviation_UserValue=|Sensitivity_GroupTransistorDeviation=1m|Sensitivity_GroupDcSourceEnabled=False|Sensitivity_GroupDcSourceDeviation_UserValue=|Sensitivity_GroupDcSourceDeviation=1m|Sensitivity_GroupGlobalParameterEnabled=False|Sensitivity_GroupGlobalParameterDeviation_UserValue=|Sensitivity_GroupGlobalParameterDeviation=1m|Sensitivity_CustomDeviationsEnabled=True|OldCfgLoaded=True|SimViewSetup=ShowActiveSignalsProbes|OPTION_Method=Trapezoidal|OPTION_SpiceRefNode_UserValue=|OPTION_SpiceRefNode=GND|OPTION_DVCC_UserValue=|OPTION_DVCC=5|OPTION_DVDD_UserValue=|OPTION_DVDD=15|SheetsToNetlist=0
  761. [OutputGroup1]
  762. Name=Netlist Outputs
  763. Description=
  764. TargetPrinter=Microsoft Print to PDF
  765. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  766. OutputType1=CadnetixNetlist
  767. OutputName1=Cadnetix Netlist
  768. OutputDocumentPath1=
  769. OutputVariantName1=
  770. OutputDefault1=0
  771. OutputType2=CalayNetlist
  772. OutputName2=Calay Netlist
  773. OutputDocumentPath2=
  774. OutputVariantName2=
  775. OutputDefault2=0
  776. OutputType3=EDIF
  777. OutputName3=EDIF for PCB
  778. OutputDocumentPath3=
  779. OutputVariantName3=
  780. OutputDefault3=0
  781. OutputType4=EESofNetlist
  782. OutputName4=EESof Netlist
  783. OutputDocumentPath4=
  784. OutputVariantName4=
  785. OutputDefault4=0
  786. OutputType5=IntergraphNetlist
  787. OutputName5=Intergraph Netlist
  788. OutputDocumentPath5=
  789. OutputVariantName5=
  790. OutputDefault5=0
  791. OutputType6=MentorBoardStationNetlist
  792. OutputName6=Mentor BoardStation Netlist
  793. OutputDocumentPath6=
  794. OutputVariantName6=
  795. OutputDefault6=0
  796. OutputType7=MultiWire
  797. OutputName7=MultiWire
  798. OutputDocumentPath7=
  799. OutputVariantName7=
  800. OutputDefault7=0
  801. OutputType8=OrCadPCB2Netlist
  802. OutputName8=Orcad/PCB2 Netlist
  803. OutputDocumentPath8=
  804. OutputVariantName8=
  805. OutputDefault8=0
  806. OutputType9=PADSNetlist
  807. OutputName9=PADS ASCII Netlist
  808. OutputDocumentPath9=
  809. OutputVariantName9=
  810. OutputDefault9=0
  811. OutputType10=Pcad
  812. OutputName10=Pcad for PCB
  813. OutputDocumentPath10=
  814. OutputVariantName10=
  815. OutputDefault10=0
  816. OutputType11=PCADNetlist
  817. OutputName11=PCAD Netlist
  818. OutputDocumentPath11=
  819. OutputVariantName11=
  820. OutputDefault11=0
  821. OutputType12=PCADnltNetlist
  822. OutputName12=PCADnlt Netlist
  823. OutputDocumentPath12=
  824. OutputVariantName12=
  825. OutputDefault12=0
  826. OutputType13=Protel2Netlist
  827. OutputName13=Protel2 Netlist
  828. OutputDocumentPath13=
  829. OutputVariantName13=
  830. OutputDefault13=0
  831. OutputType14=ProtelNetlist
  832. OutputName14=Protel
  833. OutputDocumentPath14=
  834. OutputVariantName14=
  835. OutputDefault14=0
  836. OutputType15=RacalNetlist
  837. OutputName15=Racal Netlist
  838. OutputDocumentPath15=
  839. OutputVariantName15=
  840. OutputDefault15=0
  841. OutputType16=RINFNetlist
  842. OutputName16=RINF Netlist
  843. OutputDocumentPath16=
  844. OutputVariantName16=
  845. OutputDefault16=0
  846. OutputType17=SciCardsNetlist
  847. OutputName17=SciCards Netlist
  848. OutputDocumentPath17=
  849. OutputVariantName17=
  850. OutputDefault17=0
  851. OutputType18=TangoNetlist
  852. OutputName18=Tango Netlist
  853. OutputDocumentPath18=
  854. OutputVariantName18=
  855. OutputDefault18=0
  856. OutputType19=TelesisNetlist
  857. OutputName19=Telesis Netlist
  858. OutputDocumentPath19=
  859. OutputVariantName19=
  860. OutputDefault19=0
  861. OutputType20=WireListNetlist
  862. OutputName20=WireList Netlist
  863. OutputDocumentPath20=
  864. OutputVariantName20=
  865. OutputDefault20=0
  866. OutputType21=XSpiceNetlist
  867. OutputName21=Mixed Sim Netlist
  868. OutputDocumentPath21=
  869. OutputVariantName21=
  870. OutputDefault21=0
  871. [OutputGroup2]
  872. Name=Simulator Outputs
  873. Description=
  874. TargetPrinter=Microsoft Print to PDF
  875. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  876. OutputType1=AdvSimNetlist
  877. OutputName1=Mixed Sim
  878. OutputDocumentPath1=
  879. OutputVariantName1=
  880. OutputDefault1=0
  881. Configuration1_Name1=OutputConfigurationParameter1
  882. Configuration1_Item1=OP_Analysis=False|TRAN_Analysis=True|DC_Analysis=False|AC_Analysis=False|TF_Analysis=False|PZ_Analysis=False|Noise_Analysis=False|TRAN_FourierAnalysis=False|TempSweep_Analysis=False|ParamSweep_Analysis=False|MonteCarlo_Analysis=False|TF_Enabled=False|TF_Source= |TF_Reference=0|PZ_Enabled=False|PZ_Node1= |PZ_Node2=0|PZ_Node3= |PZ_Node4=0|PZ_AnalType=PZ|PZ_TfType=VOL|AnalysesDataSavedIndex=4|DC_ShowMeasTableChart=False|DC_PrimarySource= |DC_PrimaryStart= |DC_PrimaryStop= |DC_PrimaryStep= |DC_EnableSecondary=False|DC_SecondarySource= |DC_SecondaryStart= |DC_SecondaryStop= |DC_SecondaryStep= |Noise_Enabled=False|Noise_Source= |Noise_Output= |Noise_Reference=0|Noise_Start_UserValue= |Noise_Start=1K|Noise_Stop_UserValue= |Noise_Stop=1G|Noise_TestPoints_UserValue= |Noise_TestPoints=10|Noise_PointsPerSummary=0|Noise_SweepType=DEC|AC_StartFrequency_UserValue= |AC_StartFrequency=1K|AC_StopFrequency_UserValue= |AC_StopFrequency=1G|AC_TestPoints_UserValue= |AC_TestPoints=10|AC_SweepType=DEC|AC_ShowMeasTableChart=False|TRAN_StartTime_UserValue= |TRAN_StartTime=0|TRAN_StopTime_UserValue= |TRAN_StopTime=5u|TRAN_StepTime_UserValue= |TRAN_StepTime=0.1u|TRAN_MaxStepTime_UserValue= |TRAN_MaxStepTime=0.1u|TRAN_AlwaysSetDefaults=False|TRAN_DefaultCycles_UserValue= |TRAN_DefaultCycles=5|TRAN_DefaultPointsPerCycle_UserValue= |TRAN_DefaultPointsPerCycle=25|TRAN_UseInitialConditions=False|TRAN_FourierEnabled=False|TRAN_FourierFundFreq_UserValue= |TRAN_FourierFundFreq=1Meg|TRAN_FourierNumHarmonics_UserValue= |TRAN_FourierNumHarmonics=10|TRAN_ShowMeasTableChart=False|TempSweep_Start_UserValue= |TempSweep_Start=-10|TempSweep_Stop_UserValue= |TempSweep_Stop=60|TempSweep_Step_UserValue= |TempSweep_Step=10|ParamSweep_Parameter1= |ParamSweep_Type1=LIN|ParamSweep_Start1= |ParamSweep_Stop1= |ParamSweep_Step1= |ParamSweep_SweepType1=False|ParamSweep_SecondaryEnabled=False|ParamSweep_Parameter2= |ParamSweep_Type2=LIN|ParamSweep_Start2= |ParamSweep_Stop2= |ParamSweep_Step2= |ParamSweep_SweepType2=False|MonteCarlo_NumberOfRuns=10|MonteCarlo_DistributionType=GAUSS|MonteCarlo_Seed=-1|MonteCarlo_ResistorTolerance=10%|MonteCarlo_ResistorTolerance_UserValue=10%|MonteCarlo_CapacitorTolerance=10%|MonteCarlo_CapacitorTolerance_UserValue=10%|MonteCarlo_InductorTolerance=10%|MonteCarlo_InductorTolerance_UserValue=10%|MonteCarlo_TransistorTolerance=10%|MonteCarlo_TransistorTolerance_UserValue=10%|MonteCarlo_DCSourceTolerance=10%|MonteCarlo_DCSourceTolerance_UserValue=10%|MonteCarlo_DigitalTpTolerance=10%|MonteCarlo_DigitalTpTolerance_UserValue=10%|Sensitivity_Analysis=False|Sensitivity_GroupDeviationsEnabled=False|Sensitivity_GroupResistorEnabled=True|Sensitivity_GroupResistorDeviation_UserValue= |Sensitivity_GroupResistorDeviation=1m|Sensitivity_GroupCapacitorEnabled=False|Sensitivity_GroupCapacitorDeviation_UserValue= |Sensitivity_GroupCapacitorDeviation=1m|Sensitivity_GroupInductorEnabled=False|Sensitivity_GroupInductorDeviation_UserValue= |Sensitivity_GroupInductorDeviation=1m|Sensitivity_GroupTransistorEnabled=False|Sensitivity_GroupTransistorDeviation_UserValue= |Sensitivity_GroupTransistorDeviation=1m|Sensitivity_GroupDcSourceEnabled=False|Sensitivity_GroupDcSourceDeviation_UserValue= |Sensitivity_GroupDcSourceDeviation=1m|Sensitivity_GroupGlobalParameterEnabled=False|Sensitivity_GroupGlobalParameterDeviation_UserValue= |Sensitivity_GroupGlobalParameterDeviation=1m|Sensitivity_CustomDeviationsEnabled=True|OldCfgLoaded=True|SimViewSetup=ShowActiveSignalsProbes|OPTION_Method=Trapezoidal|OPTION_SpiceRefNode_UserValue= |OPTION_SpiceRefNode=GND|OPTION_DVCC_UserValue= |OPTION_DVCC=5|OPTION_DVDD_UserValue= |OPTION_DVDD=15|SheetsToNetlist=0|Record=AdvSimNetlistView|SimulationName=Mixed Sim Configuration|ProfileId=ALGJRBAG
  883. [OutputGroup3]
  884. Name=Documentation Outputs
  885. Description=
  886. TargetPrinter=Microsoft Print to PDF
  887. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0
  888. OutputType1=Composite
  889. OutputName1=Composite Drawing
  890. OutputDocumentPath1=
  891. OutputVariantName1=[No Variations]
  892. OutputDefault1=0
  893. 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=Letter|PaperIndex=1
  894. OutputType2=PCB 3D Print
  895. OutputName2=PCB 3D Print
  896. OutputDocumentPath2=
  897. OutputVariantName2=[No Variations]
  898. OutputDefault2=0
  899. 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=Letter|PaperIndex=1
  900. OutputType3=PCB 3D Video
  901. OutputName3=PCB 3D Video
  902. OutputDocumentPath3=
  903. OutputVariantName3=[No Variations]
  904. OutputDefault3=0
  905. 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=Letter|PaperIndex=1
  906. OutputType4=PCB Print
  907. OutputName4=PCB Prints
  908. OutputDocumentPath4=
  909. OutputVariantName4=[No Variations]
  910. OutputDefault4=0
  911. 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=Letter|PaperIndex=1
  912. OutputType5=PCBDrawing
  913. OutputName5=Draftsman
  914. OutputDocumentPath5=
  915. OutputVariantName5=[No Variations]
  916. OutputDefault5=0
  917. 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=Letter|PaperIndex=1
  918. OutputType6=PCBLIB Print
  919. OutputName6=PCBLIB Prints
  920. OutputDocumentPath6=
  921. OutputVariantName6=[No Variations]
  922. OutputDefault6=0
  923. 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=Letter|PaperIndex=1
  924. OutputType7=PDF3D
  925. OutputName7=PDF3D
  926. OutputDocumentPath7=
  927. OutputVariantName7=[No Variations]
  928. OutputDefault7=0
  929. 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=Letter|PaperIndex=1
  930. OutputType8=PDF3D MBA
  931. OutputName8=PDF3D MBA
  932. OutputDocumentPath8=
  933. OutputVariantName8=
  934. OutputDefault8=0
  935. 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=Letter|PaperIndex=1
  936. OutputType9=Report Print
  937. OutputName9=Report Prints
  938. OutputDocumentPath9=
  939. OutputVariantName9=
  940. OutputDefault9=0
  941. 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=Letter|PaperIndex=1
  942. OutputType10=Schematic Print
  943. OutputName10=Schematic Prints
  944. OutputDocumentPath10=
  945. OutputVariantName10=
  946. OutputDefault10=0
  947. PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.94|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PrintScaleName=PrintFitPageWidth|PaperKind=A4|PaperIndex=9
  948. Configuration10_Name1=OutputConfigurationParameter1
  949. Configuration10_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath=E:\HARDWARE\GitDVD\CAMBOX_RV1106\MCU_RX130-140.SchDoc
  950. OutputType11=SimView Print
  951. OutputName11=SimView Prints
  952. OutputDocumentPath11=
  953. OutputVariantName11=
  954. OutputDefault11=0
  955. 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=Letter|PaperIndex=1
  956. OutputType12=Harness Layout Drawing Print
  957. OutputName12=Harness Layout Drawing Prints
  958. OutputDocumentPath12=
  959. OutputVariantName12=
  960. OutputDefault12=0
  961. 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
  962. OutputType13=Harness Wiring Diagram Print
  963. OutputName13=Harness Wiring Diagram Prints
  964. OutputDocumentPath13=
  965. OutputVariantName13=
  966. OutputDefault13=0
  967. 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
  968. [OutputGroup4]
  969. Name=Assembly Outputs
  970. Description=
  971. TargetPrinter=Microsoft Print to PDF
  972. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  973. OutputType1=Assembly
  974. OutputName1=Assembly Drawings
  975. OutputDocumentPath1=
  976. OutputVariantName1=[No Variations]
  977. OutputDefault1=0
  978. 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=Letter|PaperIndex=1
  979. OutputType2=Pick Place
  980. OutputName2=Generates pick and place files
  981. OutputDocumentPath2=
  982. OutputVariantName2=[No Variations]
  983. OutputDefault2=0
  984. Configuration2_Name1=ForceUpdateSettings
  985. Configuration2_Item1=False
  986. Configuration2_Name2=OutputConfigurationParameter1
  987. Configuration2_Item2=Record=PickPlaceView|Units=Metric|GenerateCSVFormat=True|GenerateTextFormat=False|ShowUnits=False|Separator=.|ExcludeFilterParam=False|IncludeVariations=False|IncludeStandardNoBOM=False|Filter= |FilterActive=False|YFlip=False|DifferentFootprints=False|Column#1=Name:Designator,Fixed:True,Metric:False,Visible:True,Sort:None,Position:0|Column#2=Name:Comment,Fixed:True,Metric:False,Visible:True,Sort:None,Position:1|Column#3=Name:Layer,Fixed:True,Metric:False,Visible:True,Sort:None,Position:2|Column#4=Name:Footprint,Fixed:True,Metric:False,Visible:True,Sort:None,Position:3|Column#5=Name:Footprint Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:4|Column#6=Name:Center-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:5|Column#7=Name:Center-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:6|Column#8=Name:Rotation,Fixed:True,Metric:False,Visible:True,Sort:None,Position:7|Column#9=Name:Description,Fixed:True,Metric:False,Visible:True,Sort:None,Position:8|Column#10=Name:ComponentKind,Fixed:True,Metric:False,Visible:False,Sort:None,Position:9|Column#11=Name:Height,Fixed:True,Metric:True,Visible:False,Sort:None,Position:10|Column#12=Name:Ref-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:11|Column#13=Name:Ref-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:12|Column#14=Name:Pad-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:13|Column#15=Name:Pad-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:14|Column#16=Name:Variation,Fixed:True,Metric:False,Visible:False,Sort:None,Position:15|Column#17=Name:ComponentLink6Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:29,Type:0|Column#18=Name:Continuous Drain Current (ID),Fixed:False,Metric:False,Visible:False,Sort:None,Position:32,Type:0|Column#19=Name:Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:67,Type:0|Column#20=Name:Manufacturer Part Number,Fixed:False,Metric:False,Visible:False,Sort:None,Position:55,Type:0|Column#21=Name:ComponentLink3Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:23,Type:0|Column#22=Name:Kieu_Chan,Fixed:False,Metric:False,Visible:False,Sort:None,Position:46,Type:0|Column#23=Name:Detailed Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:37,Type:0|Column#24=Name:REACH SVHC,Fixed:False,Metric:False,Visible:False,Sort:None,Position:80,Type:0|Column#25=Name:MPN,Fixed:False,Metric:False,Visible:False,Sort:None,Position:63,Type:0|Column#26=Name:Pricing (USD),Fixed:False,Metric:False,Visible:False,Sort:None,Position:75,Type:0|Column#27=Name:Threshold Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:93,Type:0|Column#28=Name:Package Quantity,Fixed:False,Metric:False,Visible:False,Sort:None,Position:68,Type:0|Column#29=Name:Fall Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:42,Type:0|Column#30=Name:Length,Fixed:False,Metric:False,Visible:False,Sort:None,Position:48,Type:0|Column#31=Name:ComponentLink5URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:28,Type:0|Column#32=Name:Max Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:57,Type:0|Column#33=Name:Min Operating Temperature,Fixed:False,Metric:False,Visible:False,Sort:None,Position:60,Type:0|Column#34=Name:PROJECT,Fixed:False,Metric:False,Visible:False,Sort:None,Position:77,Type:0|Column#35=Name:ComponentLink4URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:26,Type:0|Column#36=Name:Category,Fixed:False,Metric:False,Visible:False,Sort:None,Position:16,Type:0|Column#37=Name:Packaging,Fixed:False,Metric:False,Visible:False,Sort:None,Position:69,Type:0|Column#38=Name:Supplier,Fixed:False,Metric:False,Visible:False,Sort:None,Position:85,Type:0|Column#39=Name:Contact Plating,Fixed:False,Metric:False,Visible:False,Sort:None,Position:31,Type:0|Column#40=Name:Mount,Fixed:False,Metric:False,Visible:False,Sort:None,Position:61,Type:0|Column#41=Name:Turn-Off Delay Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:90,Type:0|Column#42=Name:Datasheet,Fixed:False,Metric:False,Visible:False,Sort:None,Position:35,Type:0|Column#43=Name:Number of Pins,Fixed:False,Metric:False,Visible:False,Sort:None,Position:66,Type:0|Column#44=Name:Pricing 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:76,Type:0|Column#45=Name:Drain to Source Breakdown Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:38,Type:0|Column#46=Name:Stock 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:84,Type:0|Column#47=Name:Turn-On Delay Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:91,Type:0|Column#48=Name:Rise Time,Fixed:False,Metric:False,Visible:False,Sort:None,Position:81,Type:0|Column#49=Name:Width,Fixed:False,Metric:False,Visible:False,Sort:None,Position:97,Type:0|Column#50=Name:ComponentLink3URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:24,Type:0|Column#51=Name:Part Num 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:71,Type:0|Column#52=Name:Rds On Max,Fixed:False,Metric:False,Visible:False,Sort:None,Position:79,Type:0|Column#53=Name:Supplier 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:86,Type:0|Column#54=Name:Tolerance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:89,Type:0|Column#55=Name:MFR,Fixed:False,Metric:False,Visible:False,Sort:None,Position:59,Type:0|Column#56=Name:Nominal Vgs,Fixed:False,Metric:False,Visible:False,Sort:None,Position:64,Type:0|Column#57=Name:Drain to Source Resistance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:39,Type:0|Column#58=Name:Drain to Source Voltage (Vdss),Fixed:False,Metric:False,Visible:False,Sort:None,Position:40,Type:0|Column#59=Name:Supplier Part Number 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:87,Type:0|Column#60=Name:ComponentLink2URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:22,Type:0|Column#61=Name:Gate to Source Voltage (Vgs),Fixed:False,Metric:False,Visible:False,Sort:None,Position:43,Type:0|Column#62=Name:MANU 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:50,Type:0|Column#63=Name:Manufacturer,Fixed:False,Metric:False,Visible:False,Sort:None,Position:53,Type:0|Column#64=Name:MANU 2,Fixed:False,Metric:False,Visible:False,Sort:None,Position:51,Type:0|Column#65=Name:Manufacturer 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:54,Type:0|Column#66=Name:RoHS,Fixed:False,Metric:False,Visible:False,Sort:None,Position:82,Type:0|Column#67=Name:Input Capacitance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:45,Type:0|Column#68=Name:Type,Fixed:False,Metric:False,Visible:False,Sort:None,Position:92,Type:0|Column#69=Name:PartNumber,Fixed:False,Metric:False,Visible:False,Sort:None,Position:73,Type:0|Column#70=Name:ComponentLink5Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:27,Type:0|Column#71=Name:ComponentLink4Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:25,Type:0|Column#72=Name:Radiation Hardening,Fixed:False,Metric:False,Visible:False,Sort:None,Position:78,Type:0|Column#73=Name:ComponentLink6URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:30,Type:0|Column#74=Name:ComponentLink2Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:21,Type:0|Column#75=Name:Lead Free,Fixed:False,Metric:False,Visible:False,Sort:None,Position:47,Type:0|Column#76=Name:Current Rating,Fixed:False,Metric:False,Visible:False,Sort:None,Position:34,Type:0|Column#77=Name:Power Dissipation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:74,Type:0|Column#78=Name:Max Power Dissipation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:58,Type:0|Column#79=Name:Temperature Coefficient,Fixed:False,Metric:False,Visible:False,Sort:None,Position:88,Type:0|Column#80=Name:Des,Fixed:False,Metric:False,Visible:False,Sort:None,Position:36,Type:0|Column#81=Name:Unit,Fixed:False,Metric:False,Visible:False,Sort:None,Position:94,Type:0|Column#82=Name:ComponentLink1URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:20,Type:0|Column#83=Name:Solder,Fixed:False,Metric:False,Visible:False,Sort:None,Position:83,Type:0|Column#84=Name:Link sale,Fixed:False,Metric:False,Visible:False,Sort:None,Position:49,Type:0|Column#85=Name:Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:95,Type:0|Column#86=Name:Company ID,Fixed:False,Metric:False,Visible:False,Sort:None,Position:18,Type:0|Column#87=Name:Manufacturer Part Number 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:56,Type:0|Column#88=Name:Creator,Fixed:False,Metric:False,Visible:False,Sort:None,Position:33,Type:0|Column#89=Name:Number of Elements,Fixed:False,Metric:False,Visible:False,Sort:None,Position:65,Type:0|Column#90=Name:Manufacture,Fixed:False,Metric:False,Visible:False,Sort:None,Position:52,Type:0|Column#91=Name:ComponentLink1Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:19,Type:0|Column#92=Name:Mounting type,Fixed:False,Metric:False,Visible:False,Sort:None,Position:62,Type:0|Column#93=Name:Catelogy,Fixed:False,Metric:False,Visible:False,Sort:None,Position:17,Type:0|Column#94=Name:Parameter 1,Fixed:False,Metric:False,Visible:False,Sort:None,Position:70,Type:0|Column#95=Name:Part Num 2,Fixed:False,Metric:False,Visible:False,Sort:None,Position:72,Type:0|Column#96=Name:Element Configuration,Fixed:False,Metric:False,Visible:False,Sort:None,Position:41,Type:0|Column#97=Name:Height,Fixed:False,Metric:False,Visible:False,Sort:None,Position:44,Type:0|Column#98=Name:Voltage Rated,Fixed:False,Metric:False,Visible:False,Sort:None,Position:96,Type:0|DocumentPath=E:\HARDWARE\GitDVD\CAMBOX_RV1106\CamBox_RV1106.PcbDoc
  988. OutputType3=Test Points For Assembly
  989. OutputName3=Test Point Report
  990. OutputDocumentPath3=
  991. OutputVariantName3=[No Variations]
  992. OutputDefault3=0
  993. [OutputGroup5]
  994. Name=Fabrication Outputs
  995. Description=
  996. TargetPrinter=Microsoft Print to PDF
  997. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  998. OutputType1=Board Stack Report
  999. OutputName1=Report Board Stack
  1000. OutputDocumentPath1=
  1001. OutputVariantName1=
  1002. OutputDefault1=0
  1003. 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=Letter|PaperIndex=1
  1004. OutputType2=CompositeDrill
  1005. OutputName2=Composite Drill Drawing
  1006. OutputDocumentPath2=
  1007. OutputVariantName2=[No Variations]
  1008. OutputDefault2=0
  1009. 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=Letter|PaperIndex=1
  1010. OutputType3=Drill
  1011. OutputName3=Drill Drawing/Guides
  1012. OutputDocumentPath3=
  1013. OutputVariantName3=[No Variations]
  1014. OutputDefault3=0
  1015. 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=Letter|PaperIndex=1
  1016. OutputType4=Final
  1017. OutputName4=Final Artwork Prints
  1018. OutputDocumentPath4=
  1019. OutputVariantName4=[No Variations]
  1020. OutputDefault4=0
  1021. 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=Letter|PaperIndex=1
  1022. OutputType5=Gerber
  1023. OutputName5=Gerber Files
  1024. OutputDocumentPath5=
  1025. OutputVariantName5=[No Variations]
  1026. OutputDefault5=0
  1027. OutputType6=Gerber X2
  1028. OutputName6=Gerber X2 Files
  1029. OutputDocumentPath6=
  1030. OutputVariantName6=[No Variations]
  1031. OutputDefault6=0
  1032. OutputType7=IPC2581
  1033. OutputName7=IPC-2581 Files
  1034. OutputDocumentPath7=
  1035. OutputVariantName7=[No Variations]
  1036. OutputDefault7=0
  1037. OutputType8=Mask
  1038. OutputName8=Solder/Paste Mask Prints
  1039. OutputDocumentPath8=
  1040. OutputVariantName8=[No Variations]
  1041. OutputDefault8=0
  1042. 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=Letter|PaperIndex=1
  1043. OutputType9=NC Drill
  1044. OutputName9=NC Drill Files
  1045. OutputDocumentPath9=
  1046. OutputVariantName9=
  1047. OutputDefault9=0
  1048. OutputType10=ODB
  1049. OutputName10=ODB++ Files
  1050. OutputDocumentPath10=
  1051. OutputVariantName10=[No Variations]
  1052. OutputDefault10=0
  1053. OutputType11=Plane
  1054. OutputName11=Power-Plane Prints
  1055. OutputDocumentPath11=
  1056. OutputVariantName11=[No Variations]
  1057. OutputDefault11=0
  1058. 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=Letter|PaperIndex=1
  1059. OutputType12=Test Points
  1060. OutputName12=Test Point Report
  1061. OutputDocumentPath12=
  1062. OutputVariantName12=
  1063. OutputDefault12=0
  1064. [OutputGroup6]
  1065. Name=Report Outputs
  1066. Description=
  1067. TargetPrinter=Microsoft Print to PDF
  1068. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1069. OutputType1=BOM_PartType
  1070. OutputName1=Bill of Materials
  1071. OutputDocumentPath1=
  1072. OutputVariantName1=[No Variations]
  1073. OutputDefault1=0
  1074. 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=Letter|PaperIndex=1
  1075. OutputType2=ComponentCrossReference
  1076. OutputName2=Component Cross Reference Report
  1077. OutputDocumentPath2=
  1078. OutputVariantName2=[No Variations]
  1079. OutputDefault2=0
  1080. OutputType3=ReportHierarchy
  1081. OutputName3=Report Project Hierarchy
  1082. OutputDocumentPath3=
  1083. OutputVariantName3=[No Variations]
  1084. OutputDefault3=0
  1085. OutputType4=Script
  1086. OutputName4=Script Output
  1087. OutputDocumentPath4=
  1088. OutputVariantName4=[No Variations]
  1089. OutputDefault4=0
  1090. OutputType5=SimpleBOM
  1091. OutputName5=Simple BOM
  1092. OutputDocumentPath5=
  1093. OutputVariantName5=[No Variations]
  1094. OutputDefault5=0
  1095. OutputType6=SinglePinNetReporter
  1096. OutputName6=Report Single Pin Nets
  1097. OutputDocumentPath6=
  1098. OutputVariantName6=[No Variations]
  1099. OutputDefault6=0
  1100. OutputType7=Export Comments
  1101. OutputName7=Export Comments
  1102. OutputDocumentPath7=
  1103. OutputVariantName7=[No Variations]
  1104. OutputDefault7=0
  1105. 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=Letter|PaperIndex=1
  1106. OutputType8=BOM_ReportCompare
  1107. OutputName8=BOM Compare
  1108. OutputDocumentPath8=
  1109. OutputVariantName8=[No Variations]
  1110. OutputDefault8=0
  1111. 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
  1112. OutputType9=Project History
  1113. OutputName9=Project History
  1114. OutputDocumentPath9=
  1115. OutputVariantName9=[No Variations]
  1116. OutputDefault9=0
  1117. 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
  1118. [OutputGroup7]
  1119. Name=Other Outputs
  1120. Description=
  1121. TargetPrinter=Microsoft Print to PDF
  1122. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1123. OutputType1=Text Print
  1124. OutputName1=Text Print
  1125. OutputDocumentPath1=
  1126. OutputVariantName1=
  1127. OutputDefault1=0
  1128. 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=Letter|PaperIndex=1
  1129. OutputType2=Text Print
  1130. OutputName2=Text Print
  1131. OutputDocumentPath2=
  1132. OutputVariantName2=
  1133. OutputDefault2=0
  1134. 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
  1135. OutputType3=Text Print
  1136. OutputName3=Text Print
  1137. OutputDocumentPath3=
  1138. OutputVariantName3=
  1139. OutputDefault3=0
  1140. 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
  1141. OutputType4=Text Print
  1142. OutputName4=Text Print
  1143. OutputDocumentPath4=
  1144. OutputVariantName4=
  1145. OutputDefault4=0
  1146. 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
  1147. OutputType5=Text Print
  1148. OutputName5=Text Print
  1149. OutputDocumentPath5=
  1150. OutputVariantName5=
  1151. OutputDefault5=0
  1152. 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
  1153. OutputType6=Text Print
  1154. OutputName6=Text Print
  1155. OutputDocumentPath6=
  1156. OutputVariantName6=
  1157. OutputDefault6=0
  1158. 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
  1159. OutputType7=Text Print
  1160. OutputName7=Text Print
  1161. OutputDocumentPath7=
  1162. OutputVariantName7=
  1163. OutputDefault7=0
  1164. 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
  1165. OutputType8=Text Print
  1166. OutputName8=Text Print
  1167. OutputDocumentPath8=
  1168. OutputVariantName8=
  1169. OutputDefault8=0
  1170. 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
  1171. OutputType9=Text Print
  1172. OutputName9=Text Print
  1173. OutputDocumentPath9=
  1174. OutputVariantName9=
  1175. OutputDefault9=0
  1176. 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
  1177. OutputType10=Text Print
  1178. OutputName10=Text Print
  1179. OutputDocumentPath10=
  1180. OutputVariantName10=
  1181. OutputDefault10=0
  1182. 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
  1183. OutputType11=Text Print
  1184. OutputName11=Text Print
  1185. OutputDocumentPath11=
  1186. OutputVariantName11=
  1187. OutputDefault11=0
  1188. 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
  1189. OutputType12=Text Print
  1190. OutputName12=Text Print
  1191. OutputDocumentPath12=
  1192. OutputVariantName12=
  1193. OutputDefault12=0
  1194. 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
  1195. OutputType13=Text Print
  1196. OutputName13=Text Print
  1197. OutputDocumentPath13=
  1198. OutputVariantName13=
  1199. OutputDefault13=0
  1200. 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
  1201. OutputType14=Text Print
  1202. OutputName14=Text Print
  1203. OutputDocumentPath14=
  1204. OutputVariantName14=
  1205. OutputDefault14=0
  1206. 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
  1207. OutputType15=Text Print
  1208. OutputName15=Text Print
  1209. OutputDocumentPath15=
  1210. OutputVariantName15=
  1211. OutputDefault15=0
  1212. 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
  1213. OutputType16=Text Print
  1214. OutputName16=Text Print
  1215. OutputDocumentPath16=
  1216. OutputVariantName16=
  1217. OutputDefault16=0
  1218. 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
  1219. OutputType17=Text Print
  1220. OutputName17=Text Print
  1221. OutputDocumentPath17=
  1222. OutputVariantName17=
  1223. OutputDefault17=0
  1224. 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
  1225. [OutputGroup8]
  1226. Name=Validation Outputs
  1227. Description=
  1228. TargetPrinter=Microsoft Print to PDF
  1229. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1230. OutputType1=BOM_Violations
  1231. OutputName1=BOM Checks Report
  1232. OutputDocumentPath1=
  1233. OutputVariantName1=
  1234. OutputDefault1=0
  1235. OutputType2=Component states check
  1236. OutputName2=Server's components states check
  1237. OutputDocumentPath2=
  1238. OutputVariantName2=
  1239. OutputDefault2=0
  1240. OutputType3=Configuration compliance
  1241. OutputName3=Environment configuration compliance check
  1242. OutputDocumentPath3=
  1243. OutputVariantName3=
  1244. OutputDefault3=0
  1245. OutputType4=Design Rules Check
  1246. OutputName4=Design Rules Check
  1247. OutputDocumentPath4=
  1248. OutputVariantName4=
  1249. OutputDefault4=0
  1250. 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=Letter|PaperIndex=1
  1251. OutputType5=Differences Report
  1252. OutputName5=Differences Report
  1253. OutputDocumentPath5=
  1254. OutputVariantName5=
  1255. OutputDefault5=0
  1256. 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=Letter|PaperIndex=1
  1257. OutputType6=Electrical Rules Check
  1258. OutputName6=Electrical Rules Check
  1259. OutputDocumentPath6=
  1260. OutputVariantName6=
  1261. OutputDefault6=0
  1262. 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=Letter|PaperIndex=1
  1263. OutputType7=Footprint Comparison Report
  1264. OutputName7=Footprint Comparison Report
  1265. OutputDocumentPath7=
  1266. OutputVariantName7=
  1267. OutputDefault7=0
  1268. [OutputGroup9]
  1269. Name=Export Outputs
  1270. Description=
  1271. TargetPrinter=Microsoft Print to PDF
  1272. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1273. OutputType1=AutoCAD dwg/dxf PCB
  1274. OutputName1=AutoCAD dwg/dxf File PCB
  1275. OutputDocumentPath1=
  1276. OutputVariantName1=
  1277. OutputDefault1=0
  1278. OutputType2=AutoCAD dwg/dxf Schematic
  1279. OutputName2=AutoCAD dwg/dxf File Schematic
  1280. OutputDocumentPath2=
  1281. OutputVariantName2=
  1282. OutputDefault2=0
  1283. OutputType3=ExportIDF
  1284. OutputName3=Export IDF
  1285. OutputDocumentPath3=
  1286. OutputVariantName3=
  1287. OutputDefault3=0
  1288. OutputType4=ExportPARASOLID
  1289. OutputName4=Export PARASOLID
  1290. OutputDocumentPath4=
  1291. OutputVariantName4=[No Variations]
  1292. OutputDefault4=0
  1293. OutputType5=ExportSTEP
  1294. OutputName5=Export STEP
  1295. OutputDocumentPath5=
  1296. OutputVariantName5=[No Variations]
  1297. OutputDefault5=0
  1298. OutputType6=ExportVRML
  1299. OutputName6=Export VRML
  1300. OutputDocumentPath6=
  1301. OutputVariantName6=[No Variations]
  1302. OutputDefault6=0
  1303. OutputType7=MBAExportPARASOLID
  1304. OutputName7=Export PARASOLID
  1305. OutputDocumentPath7=
  1306. OutputVariantName7=
  1307. OutputDefault7=0
  1308. OutputType8=MBAExportSTEP
  1309. OutputName8=Export STEP
  1310. OutputDocumentPath8=
  1311. OutputVariantName8=
  1312. OutputDefault8=0
  1313. OutputType9=Save As/Export PCB
  1314. OutputName9=Save As/Export PCB
  1315. OutputDocumentPath9=
  1316. OutputVariantName9=
  1317. OutputDefault9=0
  1318. OutputType10=Save As/Export Schematic
  1319. OutputName10=Save As/Export Schematic
  1320. OutputDocumentPath10=
  1321. OutputVariantName10=
  1322. OutputDefault10=0
  1323. OutputType11=Specctra Design PCB
  1324. OutputName11=Specctra Design PCB
  1325. OutputDocumentPath11=
  1326. OutputVariantName11=
  1327. OutputDefault11=0
  1328. OutputType12=Web ReviewOutputName
  1329. OutputName12=Web Review Data
  1330. OutputDocumentPath12=
  1331. OutputVariantName12=
  1332. OutputDefault12=0
  1333. OutputType13=Ansoft Neutral
  1334. OutputName13=Ansoft Neutral (AutoPCB)
  1335. OutputDocumentPath13=
  1336. OutputVariantName13=
  1337. OutputDefault13=0
  1338. OutputType14=HyperLynx
  1339. OutputName14=HyperLynx (AutoPCB)
  1340. OutputDocumentPath14=
  1341. OutputVariantName14=
  1342. OutputDefault14=0
  1343. OutputType15=Orcad v7 Capture Design
  1344. OutputName15=Orcad v7 Capture Design (AutoSCH)
  1345. OutputDocumentPath15=
  1346. OutputVariantName15=
  1347. OutputDefault15=0
  1348. OutputType16=P-CAD ASCII
  1349. OutputName16=P-CAD ASCII (AutoPCB)
  1350. OutputDocumentPath16=
  1351. OutputVariantName16=
  1352. OutputDefault16=0
  1353. OutputType17=P-CAD V16 Schematic Design
  1354. OutputName17=P-CAD V16 Schematic Design (AutoSCH)
  1355. OutputDocumentPath17=
  1356. OutputVariantName17=
  1357. OutputDefault17=0
  1358. OutputType18=SiSoft
  1359. OutputName18=SiSoft (AutoPCB)
  1360. OutputDocumentPath18=
  1361. OutputVariantName18=
  1362. OutputDefault18=0
  1363. [OutputGroup10]
  1364. Name=PostProcess Outputs
  1365. Description=
  1366. TargetPrinter=Microsoft Print to PDF
  1367. PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1
  1368. OutputType1=Copy Files
  1369. OutputName1=Copy Files
  1370. OutputDocumentPath1=
  1371. OutputVariantName1=
  1372. OutputDefault1=0
  1373. [Modification Levels]
  1374. Type1=1
  1375. Type2=1
  1376. Type3=1
  1377. Type4=1
  1378. Type5=1
  1379. Type6=1
  1380. Type7=1
  1381. Type8=1
  1382. Type9=1
  1383. Type10=1
  1384. Type11=1
  1385. Type12=1
  1386. Type13=1
  1387. Type14=1
  1388. Type15=1
  1389. Type16=1
  1390. Type17=1
  1391. Type18=1
  1392. Type19=1
  1393. Type20=1
  1394. Type21=1
  1395. Type22=1
  1396. Type23=1
  1397. Type24=1
  1398. Type25=1
  1399. Type26=1
  1400. Type27=1
  1401. Type28=1
  1402. Type29=1
  1403. Type30=1
  1404. Type31=1
  1405. Type32=1
  1406. Type33=1
  1407. Type34=1
  1408. Type35=1
  1409. Type36=1
  1410. Type37=1
  1411. Type38=1
  1412. Type39=1
  1413. Type40=1
  1414. Type41=1
  1415. Type42=1
  1416. Type43=1
  1417. Type44=1
  1418. Type45=1
  1419. Type46=1
  1420. Type47=1
  1421. Type48=1
  1422. Type49=1
  1423. Type50=1
  1424. Type51=1
  1425. Type52=1
  1426. Type53=1
  1427. Type54=1
  1428. Type55=1
  1429. Type56=1
  1430. Type57=1
  1431. Type58=1
  1432. Type59=1
  1433. Type60=1
  1434. Type61=1
  1435. Type62=1
  1436. Type63=1
  1437. Type64=1
  1438. Type65=1
  1439. Type66=1
  1440. Type67=1
  1441. Type68=1
  1442. Type69=1
  1443. Type70=1
  1444. Type71=1
  1445. Type72=1
  1446. Type73=1
  1447. Type74=1
  1448. Type75=1
  1449. Type76=1
  1450. Type77=1
  1451. Type78=1
  1452. Type79=1
  1453. Type80=1
  1454. Type81=1
  1455. Type82=1
  1456. Type83=1
  1457. Type84=1
  1458. Type85=1
  1459. Type86=1
  1460. Type87=1
  1461. Type88=1
  1462. Type89=1
  1463. Type90=1
  1464. Type91=1
  1465. Type92=1
  1466. Type93=1
  1467. Type94=1
  1468. Type95=1
  1469. Type96=1
  1470. Type97=1
  1471. Type98=1
  1472. Type99=1
  1473. Type100=1
  1474. Type101=1
  1475. Type102=1
  1476. Type103=1
  1477. Type104=1
  1478. Type105=1
  1479. Type106=1
  1480. Type107=1
  1481. Type108=1
  1482. Type109=1
  1483. Type110=1
  1484. Type111=1
  1485. Type112=1
  1486. Type113=1
  1487. Type114=1
  1488. Type115=1
  1489. Type116=1
  1490. Type117=1
  1491. Type118=1
  1492. Type119=1
  1493. Type120=1
  1494. [Difference Levels]
  1495. Type1=1
  1496. Type2=1
  1497. Type3=1
  1498. Type4=1
  1499. Type5=1
  1500. Type6=1
  1501. Type7=1
  1502. Type8=1
  1503. Type9=1
  1504. Type10=1
  1505. Type11=1
  1506. Type12=1
  1507. Type13=1
  1508. Type14=1
  1509. Type15=1
  1510. Type16=1
  1511. Type17=1
  1512. Type18=1
  1513. Type19=1
  1514. Type20=1
  1515. Type21=1
  1516. Type22=1
  1517. Type23=1
  1518. Type24=1
  1519. Type25=1
  1520. Type26=1
  1521. Type27=1
  1522. Type28=1
  1523. Type29=1
  1524. Type30=1
  1525. Type31=1
  1526. Type32=1
  1527. Type33=1
  1528. Type34=1
  1529. Type35=1
  1530. Type36=1
  1531. Type37=1
  1532. Type38=1
  1533. Type39=1
  1534. Type40=1
  1535. Type41=1
  1536. Type42=1
  1537. Type43=1
  1538. Type44=1
  1539. Type45=1
  1540. Type46=1
  1541. Type47=1
  1542. Type48=1
  1543. Type49=1
  1544. Type50=1
  1545. Type51=1
  1546. Type52=1
  1547. Type53=1
  1548. Type54=1
  1549. Type55=1
  1550. Type56=1
  1551. Type57=1
  1552. Type58=1
  1553. Type59=1
  1554. Type60=1
  1555. Type61=1
  1556. Type62=1
  1557. Type63=1
  1558. Type64=1
  1559. Type65=1
  1560. Type66=1
  1561. Type67=1
  1562. Type68=1
  1563. [Electrical Rules Check]
  1564. Type1=1
  1565. Type2=1
  1566. Type3=2
  1567. Type4=1
  1568. Type5=2
  1569. Type6=2
  1570. Type7=0
  1571. Type8=1
  1572. Type9=1
  1573. Type10=1
  1574. Type11=2
  1575. Type12=0
  1576. Type13=0
  1577. Type14=1
  1578. Type15=1
  1579. Type16=1
  1580. Type17=1
  1581. Type18=1
  1582. Type19=1
  1583. Type20=0
  1584. Type21=0
  1585. Type22=0
  1586. Type23=0
  1587. Type24=1
  1588. Type25=2
  1589. Type26=0
  1590. Type27=2
  1591. Type28=1
  1592. Type29=1
  1593. Type30=1
  1594. Type31=1
  1595. Type32=2
  1596. Type33=0
  1597. Type34=2
  1598. Type35=1
  1599. Type36=2
  1600. Type37=1
  1601. Type38=2
  1602. Type39=2
  1603. Type40=2
  1604. Type41=0
  1605. Type42=2
  1606. Type43=1
  1607. Type44=0
  1608. Type45=0
  1609. Type46=0
  1610. Type47=0
  1611. Type48=0
  1612. Type49=0
  1613. Type50=2
  1614. Type51=0
  1615. Type52=0
  1616. Type53=1
  1617. Type54=1
  1618. Type55=1
  1619. Type56=2
  1620. Type57=1
  1621. Type58=1
  1622. Type59=2
  1623. Type60=0
  1624. Type61=0
  1625. Type62=0
  1626. Type63=0
  1627. Type64=0
  1628. Type65=2
  1629. Type66=3
  1630. Type67=2
  1631. Type68=2
  1632. Type69=0
  1633. Type70=2
  1634. Type71=2
  1635. Type72=2
  1636. Type73=2
  1637. Type74=1
  1638. Type75=2
  1639. Type76=1
  1640. Type77=1
  1641. Type78=1
  1642. Type79=1
  1643. Type80=2
  1644. Type81=3
  1645. Type82=3
  1646. Type83=3
  1647. Type84=3
  1648. Type85=3
  1649. Type86=2
  1650. Type87=2
  1651. Type88=2
  1652. Type89=1
  1653. Type90=1
  1654. Type91=3
  1655. Type92=3
  1656. Type93=2
  1657. Type94=2
  1658. Type95=2
  1659. Type96=2
  1660. Type97=2
  1661. Type98=0
  1662. Type99=1
  1663. Type100=2
  1664. Type101=0
  1665. Type102=2
  1666. Type103=2
  1667. Type104=1
  1668. Type105=2
  1669. Type106=2
  1670. Type107=2
  1671. Type108=2
  1672. Type109=1
  1673. Type110=1
  1674. Type111=1
  1675. Type112=1
  1676. Type113=1
  1677. Type114=2
  1678. Type115=2
  1679. Type116=2
  1680. Type117=3
  1681. Type118=3
  1682. Type119=3
  1683. AlternateItemFail=3
  1684. Type122=2
  1685. Type123=1
  1686. Type124=1
  1687. Type125=1
  1688. Type126=1
  1689. Type127=1
  1690. [ERC Connection Matrix]
  1691. L1=NNNNNNNNNNNWNNNWW
  1692. L2=NNWNNNNWWWNWNWNWN
  1693. L3=NWEENEEEENEWNEEWN
  1694. L4=NNENNNWEENNWNENWN
  1695. L5=NNNNNNNNNNNNNNNNN
  1696. L6=NNENNNNEENNWNENWN
  1697. L7=NNEWNNWEENNWNENWN
  1698. L8=NWEENEENEEENNEENN
  1699. L9=NWEENEEEENEWNEEWW
  1700. L10=NWNNNNNENNEWNNEWN
  1701. L11=NNENNNNEEENWNENWN
  1702. L12=WWWWNWWNWWWNWWWNN
  1703. L13=NNNNNNNNNNNWNNNWW
  1704. L14=NWEENEEEENEWNEEWW
  1705. L15=NNENNNNEEENWNENWW
  1706. L16=WWWWNWWNWWWNWWWNW
  1707. L17=WNNNNNNNWNNNWWWWN
  1708. [Annotate]
  1709. SortOrder=3
  1710. SortLocation=0
  1711. ReplaceSubparts=0
  1712. MatchParameter1=Comment
  1713. MatchStrictly1=1
  1714. MatchParameter2=Library Reference
  1715. MatchStrictly2=1
  1716. PhysicalNamingFormat=$Component_$RoomName
  1717. GlobalIndexSortOrder=3
  1718. GlobalIndexSortLocation=0
  1719. [PrjClassGen]
  1720. CompClassManualEnabled=0
  1721. CompClassManualRoomEnabled=0
  1722. NetClassAutoBusEnabled=1
  1723. NetClassAutoCompEnabled=0
  1724. NetClassAutoNamedHarnessEnabled=0
  1725. NetClassManualEnabled=1
  1726. NetClassSeparateForBusSections=0
  1727. [LibraryUpdateOptions]
  1728. SelectedOnly=0
  1729. UpdateVariants=1
  1730. UpdateToLatestRevision=1
  1731. PartTypes=0
  1732. ComponentLibIdentifierKind0=Library Name And Type
  1733. ComponentLibraryIdentifier0=CamBox_RV1106.SCHLIB
  1734. ComponentDesignItemID0=AS0BC21-S40BM-7H (RV1106-PCIE)
  1735. ComponentSymbolReference0=AS0BC21-S40BM-7H (RV1106-PCIE)
  1736. ComponentUpdate0=1
  1737. ComponentIsDeviceSheet0=0
  1738. ComponentLibIdentifierKind1=Library Name And Type
  1739. ComponentLibraryIdentifier1=CamBox_RV1106.SCHLIB
  1740. ComponentDesignItemID1=CSD19538Q3A
  1741. ComponentSymbolReference1=CSD19538Q3A
  1742. ComponentUpdate1=1
  1743. ComponentIsDeviceSheet1=0
  1744. ComponentLibIdentifierKind2=Library Name And Type
  1745. ComponentLibraryIdentifier2=CamBox_RV1106.SCHLIB
  1746. ComponentDesignItemID2=ETA3409S2F
  1747. ComponentSymbolReference2=ETA3409S2F
  1748. ComponentUpdate2=1
  1749. ComponentIsDeviceSheet2=0
  1750. ComponentLibIdentifierKind3=Library Name And Type
  1751. ComponentLibraryIdentifier3=CamBox_RV1106.SCHLIB
  1752. ComponentDesignItemID3=ETA6003Q3Q
  1753. ComponentSymbolReference3=ETA6003Q3Q
  1754. ComponentUpdate3=1
  1755. ComponentIsDeviceSheet3=0
  1756. ComponentLibIdentifierKind4=Library Name And Type
  1757. ComponentLibraryIdentifier4=CamBox_RV1106.SCHLIB
  1758. ComponentDesignItemID4=HEATSINK
  1759. ComponentSymbolReference4=HEATSINK
  1760. ComponentUpdate4=1
  1761. ComponentIsDeviceSheet4=0
  1762. ComponentLibIdentifierKind5=Library Name And Type
  1763. ComponentLibraryIdentifier5=CamBox_RV1106.SCHLIB
  1764. ComponentDesignItemID5=NR4030S2R2MT
  1765. ComponentSymbolReference5=NR4030S2R2MT
  1766. ComponentUpdate5=1
  1767. ComponentIsDeviceSheet5=0
  1768. ComponentLibIdentifierKind6=Library Name And Type
  1769. ComponentLibraryIdentifier6=CamBox_RV1106.SCHLIB
  1770. ComponentDesignItemID6=R5F51303ADFM
  1771. ComponentSymbolReference6=R5F51303ADFM
  1772. ComponentUpdate6=1
  1773. ComponentIsDeviceSheet6=0
  1774. ComponentLibIdentifierKind7=Library Name And Type
  1775. ComponentLibraryIdentifier7=CamBox_RV1106.SCHLIB
  1776. ComponentDesignItemID7=RC0402FR-070RL
  1777. ComponentSymbolReference7=RC0402FR-070RL
  1778. ComponentUpdate7=1
  1779. ComponentIsDeviceSheet7=0
  1780. ComponentLibIdentifierKind8=Library Name And Type
  1781. ComponentLibraryIdentifier8=CamBox_RV1106.SCHLIB
  1782. ComponentDesignItemID8=RC0402FR-071KL
  1783. ComponentSymbolReference8=RC0402FR-071KL
  1784. ComponentUpdate8=1
  1785. ComponentIsDeviceSheet8=0
  1786. ComponentLibIdentifierKind9=Library Name And Type
  1787. ComponentLibraryIdentifier9=CamBox_RV1106.SCHLIB
  1788. ComponentDesignItemID9=RC0402FR-072K2L
  1789. ComponentSymbolReference9=RC0402FR-072K2L
  1790. ComponentUpdate9=1
  1791. ComponentIsDeviceSheet9=0
  1792. ComponentLibIdentifierKind10=Library Name And Type
  1793. ComponentLibraryIdentifier10=CamBox_RV1106.SCHLIB
  1794. ComponentDesignItemID10=RC0402FR-07470RL
  1795. ComponentSymbolReference10=RC0402FR-07470RL
  1796. ComponentUpdate10=1
  1797. ComponentIsDeviceSheet10=0
  1798. ComponentLibIdentifierKind11=Library Name And Type
  1799. ComponentLibraryIdentifier11=CamBox_RV1106.SCHLIB
  1800. ComponentDesignItemID11=RC0402FR-074K7L
  1801. ComponentSymbolReference11=RC0402FR-074K7L
  1802. ComponentUpdate11=1
  1803. ComponentIsDeviceSheet11=0
  1804. ComponentLibIdentifierKind12=Library Name And Type
  1805. ComponentLibraryIdentifier12=CamBox_RV1106.SCHLIB
  1806. ComponentDesignItemID12=SPACER
  1807. ComponentSymbolReference12=SPACER
  1808. ComponentUpdate12=1
  1809. ComponentIsDeviceSheet12=0
  1810. ComponentLibIdentifierKind13=Library Name And Type
  1811. ComponentLibraryIdentifier13=CamBox_RV1106.SCHLIB
  1812. ComponentDesignItemID13=XL-1608SYGC-04
  1813. ComponentSymbolReference13=XL-1608SYGC-04
  1814. ComponentUpdate13=1
  1815. ComponentIsDeviceSheet13=0
  1816. ComponentLibIdentifierKind14=Library Name And Type
  1817. ComponentLibraryIdentifier14=Camera_Box_RK3562.IntLib
  1818. ComponentDesignItemID14=2SK3018
  1819. ComponentSymbolReference14=2SK3018
  1820. ComponentUpdate14=1
  1821. ComponentIsDeviceSheet14=0
  1822. ComponentLibIdentifierKind15=Library Name And Type
  1823. ComponentLibraryIdentifier15=Miscellaneous Devices.IntLib
  1824. ComponentDesignItemID15=Cap
  1825. ComponentSymbolReference15=Cap
  1826. ComponentUpdate15=1
  1827. ComponentIsDeviceSheet15=0
  1828. ComponentLibIdentifierKind16=Library Name And Type
  1829. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  1830. ComponentDesignItemID16=0805CG330J500NT
  1831. ComponentSymbolReference16=CAP
  1832. ComponentUpdate16=1
  1833. ComponentIsDeviceSheet16=0
  1834. ComponentLibIdentifierKind17=Library Name And Type
  1835. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  1836. ComponentDesignItemID17=150060YS75000
  1837. ComponentSymbolReference17=LED
  1838. ComponentUpdate17=1
  1839. ComponentIsDeviceSheet17=0
  1840. ComponentLibIdentifierKind18=Library Name And Type
  1841. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  1842. ComponentDesignItemID18=2.D.1.270002002
  1843. ComponentSymbolReference18=XTL-4PIN
  1844. ComponentUpdate18=1
  1845. ComponentIsDeviceSheet18=0
  1846. ComponentLibIdentifierKind19=Library Name And Type
  1847. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  1848. ComponentDesignItemID19=2SK3018
  1849. ComponentSymbolReference19=N-Channel
  1850. ComponentUpdate19=1
  1851. ComponentIsDeviceSheet19=0
  1852. ComponentLibIdentifierKind20=Library Name And Type
  1853. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  1854. ComponentDesignItemID20=A2541WV-4P
  1855. ComponentSymbolReference20=CON-4PIN
  1856. ComponentUpdate20=1
  1857. ComponentIsDeviceSheet20=0
  1858. ComponentLibIdentifierKind21=Library Name And Type
  1859. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  1860. ComponentDesignItemID21=A7677S
  1861. ComponentSymbolReference21=A7677S
  1862. ComponentUpdate21=1
  1863. ComponentIsDeviceSheet21=0
  1864. ComponentLibIdentifierKind22=Library Name And Type
  1865. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  1866. ComponentDesignItemID22=ABS07-32.768KHZ-T
  1867. ComponentSymbolReference22=XTL-2PIN
  1868. ComponentUpdate22=1
  1869. ComponentIsDeviceSheet22=0
  1870. ComponentLibIdentifierKind23=Library Name And Type
  1871. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  1872. ComponentDesignItemID23=AC0402FR-07226KL
  1873. ComponentSymbolReference23=RES
  1874. ComponentUpdate23=1
  1875. ComponentIsDeviceSheet23=0
  1876. ComponentLibIdentifierKind24=Library Name And Type
  1877. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  1878. ComponentDesignItemID24=AC0402FR-07590KL
  1879. ComponentSymbolReference24=RES
  1880. ComponentUpdate24=1
  1881. ComponentIsDeviceSheet24=0
  1882. ComponentLibIdentifierKind25=Library Name And Type
  1883. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  1884. ComponentDesignItemID25=ASDM3401ZA-R
  1885. ComponentSymbolReference25=P-Channel
  1886. ComponentUpdate25=1
  1887. ComponentIsDeviceSheet25=0
  1888. ComponentLibIdentifierKind26=Library Name And Type
  1889. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  1890. ComponentDesignItemID26=B72590D50H160
  1891. ComponentSymbolReference26=B72590D50H160
  1892. ComponentUpdate26=1
  1893. ComponentIsDeviceSheet26=0
  1894. ComponentLibIdentifierKind27=Library Name And Type
  1895. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  1896. ComponentDesignItemID27=C0603X5R105K500NT
  1897. ComponentSymbolReference27=CAP
  1898. ComponentUpdate27=1
  1899. ComponentIsDeviceSheet27=0
  1900. ComponentLibIdentifierKind28=Library Name And Type
  1901. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  1902. ComponentDesignItemID28=C0603X5R475K350NT
  1903. ComponentSymbolReference28=C0603X5R475K350NT
  1904. ComponentUpdate28=1
  1905. ComponentIsDeviceSheet28=0
  1906. ComponentLibIdentifierKind29=Library Name And Type
  1907. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  1908. ComponentDesignItemID29=C0603X5R475K6R3NT
  1909. ComponentSymbolReference29=CAP
  1910. ComponentUpdate29=1
  1911. ComponentIsDeviceSheet29=0
  1912. ComponentLibIdentifierKind30=Library Name And Type
  1913. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  1914. ComponentDesignItemID30=C0603X7R104K500NT
  1915. ComponentSymbolReference30=CAP
  1916. ComponentUpdate30=1
  1917. ComponentIsDeviceSheet30=0
  1918. ComponentLibIdentifierKind31=Library Name And Type
  1919. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  1920. ComponentDesignItemID31=C0805X5R106K160NT
  1921. ComponentSymbolReference31=CAP
  1922. ComponentUpdate31=1
  1923. ComponentIsDeviceSheet31=0
  1924. ComponentLibIdentifierKind32=Library Name And Type
  1925. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  1926. ComponentDesignItemID32=C1206X5R106K500NT
  1927. ComponentSymbolReference32=CAP
  1928. ComponentUpdate32=1
  1929. ComponentIsDeviceSheet32=0
  1930. ComponentLibIdentifierKind33=Library Name And Type
  1931. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  1932. ComponentDesignItemID33=C7802-02
  1933. ComponentSymbolReference33=C7802-02
  1934. ComponentUpdate33=1
  1935. ComponentIsDeviceSheet33=0
  1936. ComponentLibIdentifierKind34=Library Name And Type
  1937. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  1938. ComponentDesignItemID34=CBW100505U600T
  1939. ComponentSymbolReference34=FB
  1940. ComponentUpdate34=1
  1941. ComponentIsDeviceSheet34=0
  1942. ComponentLibIdentifierKind35=Library Name And Type
  1943. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  1944. ComponentDesignItemID35=CC0402FRNPO9BN101
  1945. ComponentSymbolReference35=CAP
  1946. ComponentUpdate35=1
  1947. ComponentIsDeviceSheet35=0
  1948. ComponentLibIdentifierKind36=Library Name And Type
  1949. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  1950. ComponentDesignItemID36=CC0402FRNPO9BN120
  1951. ComponentSymbolReference36=CAP
  1952. ComponentUpdate36=1
  1953. ComponentIsDeviceSheet36=0
  1954. ComponentLibIdentifierKind37=Library Name And Type
  1955. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  1956. ComponentDesignItemID37=CC0402JRNPO9BN220
  1957. ComponentSymbolReference37=CAP
  1958. ComponentUpdate37=1
  1959. ComponentIsDeviceSheet37=0
  1960. ComponentLibIdentifierKind38=Library Name And Type
  1961. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  1962. ComponentDesignItemID38=CC0402KRX7R7BB104
  1963. ComponentSymbolReference38=CAP
  1964. ComponentUpdate38=1
  1965. ComponentIsDeviceSheet38=0
  1966. ComponentLibIdentifierKind39=Library Name And Type
  1967. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  1968. ComponentDesignItemID39=CC0402KRX7R9BB822
  1969. ComponentSymbolReference39=CAP
  1970. ComponentUpdate39=1
  1971. ComponentIsDeviceSheet39=0
  1972. ComponentLibIdentifierKind40=Library Name And Type
  1973. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  1974. ComponentDesignItemID40=CC0603JRNPO9BN750
  1975. ComponentSymbolReference40=CAP
  1976. ComponentUpdate40=1
  1977. ComponentIsDeviceSheet40=0
  1978. ComponentLibIdentifierKind41=Library Name And Type
  1979. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  1980. ComponentDesignItemID41=CC0603KRX7R9BB104
  1981. ComponentSymbolReference41=CAP
  1982. ComponentUpdate41=1
  1983. ComponentIsDeviceSheet41=0
  1984. ComponentLibIdentifierKind42=Library Name And Type
  1985. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  1986. ComponentDesignItemID42=CC0603KRX7R9BB474
  1987. ComponentSymbolReference42=CAP
  1988. ComponentUpdate42=1
  1989. ComponentIsDeviceSheet42=0
  1990. ComponentLibIdentifierKind43=Library Name And Type
  1991. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  1992. ComponentDesignItemID43=CC0603KRX7R9BB561
  1993. ComponentSymbolReference43=CAP
  1994. ComponentUpdate43=1
  1995. ComponentIsDeviceSheet43=0
  1996. ComponentLibIdentifierKind44=Library Name And Type
  1997. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  1998. ComponentDesignItemID44=CC0603KRX7R9BB563
  1999. ComponentSymbolReference44=CAP
  2000. ComponentUpdate44=1
  2001. ComponentIsDeviceSheet44=0
  2002. ComponentLibIdentifierKind45=Library Name And Type
  2003. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  2004. ComponentDesignItemID45=CC1206KKX7R0BB104
  2005. ComponentSymbolReference45=CAP
  2006. ComponentUpdate45=1
  2007. ComponentIsDeviceSheet45=0
  2008. ComponentLibIdentifierKind46=Library Name And Type
  2009. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  2010. ComponentDesignItemID46=CCTC TCC1206X7R225K101HT
  2011. ComponentSymbolReference46=CAP
  2012. ComponentUpdate46=1
  2013. ComponentIsDeviceSheet46=0
  2014. ComponentLibIdentifierKind47=Library Name And Type
  2015. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  2016. ComponentDesignItemID47=CDRCH12D78BNP-220MC
  2017. ComponentSymbolReference47=DRQ125
  2018. ComponentUpdate47=1
  2019. ComponentIsDeviceSheet47=0
  2020. ComponentLibIdentifierKind48=Library Name And Type
  2021. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  2022. ComponentDesignItemID48=CL05C330JB5NNNC
  2023. ComponentSymbolReference48=CAP
  2024. ComponentUpdate48=1
  2025. ComponentIsDeviceSheet48=0
  2026. ComponentLibIdentifierKind49=Library Name And Type
  2027. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  2028. ComponentDesignItemID49=CL10A225KQ8NNNC
  2029. ComponentSymbolReference49=CAP
  2030. ComponentUpdate49=1
  2031. ComponentIsDeviceSheet49=0
  2032. ComponentLibIdentifierKind50=Library Name And Type
  2033. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  2034. ComponentDesignItemID50=CL10A226MQ8NRNE
  2035. ComponentSymbolReference50=CAP
  2036. ComponentUpdate50=1
  2037. ComponentIsDeviceSheet50=0
  2038. ComponentLibIdentifierKind51=Library Name And Type
  2039. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  2040. ComponentDesignItemID51=CMFA 103F3435
  2041. ComponentSymbolReference51=NTC
  2042. ComponentUpdate51=1
  2043. ComponentIsDeviceSheet51=0
  2044. ComponentLibIdentifierKind52=Library Name And Type
  2045. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  2046. ComponentDesignItemID52=CS3225X7R106K500NRL
  2047. ComponentSymbolReference52=CAP
  2048. ComponentUpdate52=1
  2049. ComponentIsDeviceSheet52=0
  2050. ComponentLibIdentifierKind53=Library Name And Type
  2051. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  2052. ComponentDesignItemID53=D-DMR009PM-D002
  2053. ComponentSymbolReference53=D-DMR009PM-D002
  2054. ComponentUpdate53=1
  2055. ComponentIsDeviceSheet53=0
  2056. ComponentLibIdentifierKind54=Library Name And Type
  2057. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  2058. ComponentDesignItemID54=DLM0NSN900HY2D
  2059. ComponentSymbolReference54=Common Mode Filters
  2060. ComponentUpdate54=1
  2061. ComponentIsDeviceSheet54=0
  2062. ComponentLibIdentifierKind55=Library Name And Type
  2063. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  2064. ComponentDesignItemID55=EMK316BBJ476ML-T
  2065. ComponentSymbolReference55=CAP
  2066. ComponentUpdate55=1
  2067. ComponentIsDeviceSheet55=0
  2068. ComponentLibIdentifierKind56=Library Name And Type
  2069. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  2070. ComponentDesignItemID56=EMK325ABJ107MM-T
  2071. ComponentSymbolReference56=CAP
  2072. ComponentUpdate56=1
  2073. ComponentIsDeviceSheet56=0
  2074. ComponentLibIdentifierKind57=Library Name And Type
  2075. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  2076. ComponentDesignItemID57=ESD5Z5V0
  2077. ComponentSymbolReference57=TVS
  2078. ComponentUpdate57=1
  2079. ComponentIsDeviceSheet57=0
  2080. ComponentLibIdentifierKind58=Library Name And Type
  2081. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  2082. ComponentDesignItemID58=FCC0402B681K500AT
  2083. ComponentSymbolReference58=CAP
  2084. ComponentUpdate58=1
  2085. ComponentIsDeviceSheet58=0
  2086. ComponentLibIdentifierKind59=Library Name And Type
  2087. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  2088. ComponentDesignItemID59=FN21N100J500PAG
  2089. ComponentSymbolReference59=CAP
  2090. ComponentUpdate59=1
  2091. ComponentIsDeviceSheet59=0
  2092. ComponentLibIdentifierKind60=Library Name And Type
  2093. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  2094. ComponentDesignItemID60=HNB09A05
  2095. ComponentSymbolReference60=BUZZER
  2096. ComponentUpdate60=1
  2097. ComponentIsDeviceSheet60=0
  2098. ComponentLibIdentifierKind61=Library Name And Type
  2099. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  2100. ComponentDesignItemID61=HR911105A
  2101. ComponentSymbolReference61=HR911105A
  2102. ComponentUpdate61=1
  2103. ComponentIsDeviceSheet61=0
  2104. ComponentLibIdentifierKind62=Library Name And Type
  2105. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  2106. ComponentDesignItemID62=JUMP-2.0-4PIN-FM-TH
  2107. ComponentSymbolReference62=CON-4PIN
  2108. ComponentUpdate62=1
  2109. ComponentIsDeviceSheet62=0
  2110. ComponentLibIdentifierKind63=Library Name And Type
  2111. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  2112. ComponentDesignItemID63=KH-IPEX-K501-29
  2113. ComponentSymbolReference63=KH-IPEX-K501-29
  2114. ComponentUpdate63=1
  2115. ComponentIsDeviceSheet63=0
  2116. ComponentLibIdentifierKind64=Library Name And Type
  2117. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  2118. ComponentDesignItemID64=LBSS139LT1G
  2119. ComponentSymbolReference64=N-Channel
  2120. ComponentUpdate64=1
  2121. ComponentIsDeviceSheet64=0
  2122. ComponentLibIdentifierKind65=Library Name And Type
  2123. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  2124. ComponentDesignItemID65=LK8563T
  2125. ComponentSymbolReference65=LK8563T
  2126. ComponentUpdate65=1
  2127. ComponentIsDeviceSheet65=0
  2128. ComponentLibIdentifierKind66=Library Name And Type
  2129. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  2130. ComponentDesignItemID66=LM3481MMX/NOPB
  2131. ComponentSymbolReference66=LM3481MMX/NOPB
  2132. ComponentUpdate66=1
  2133. ComponentIsDeviceSheet66=0
  2134. ComponentLibIdentifierKind67=Library Name And Type
  2135. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  2136. ComponentDesignItemID67=LM393DR
  2137. ComponentSymbolReference67=LM358
  2138. ComponentUpdate67=1
  2139. ComponentIsDeviceSheet67=0
  2140. ComponentLibIdentifierKind68=Library Name And Type
  2141. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  2142. ComponentDesignItemID68=LM-AZ6118-01F
  2143. ComponentSymbolReference68=TVS
  2144. ComponentUpdate68=1
  2145. ComponentIsDeviceSheet68=0
  2146. ComponentLibIdentifierKind69=Library Name And Type
  2147. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  2148. ComponentDesignItemID69=LMR14050SDDAR
  2149. ComponentSymbolReference69=LMR14050SDDAR
  2150. ComponentUpdate69=1
  2151. ComponentIsDeviceSheet69=0
  2152. ComponentLibIdentifierKind70=Library Name And Type
  2153. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  2154. ComponentDesignItemID70=M6110-01
  2155. ComponentSymbolReference70=M6110-01
  2156. ComponentUpdate70=1
  2157. ComponentIsDeviceSheet70=0
  2158. ComponentLibIdentifierKind71=Library Name And Type
  2159. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  2160. ComponentDesignItemID71=M7
  2161. ComponentSymbolReference71=Diode
  2162. ComponentUpdate71=1
  2163. ComponentIsDeviceSheet71=0
  2164. ComponentLibIdentifierKind72=Library Name And Type
  2165. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  2166. ComponentDesignItemID72=MAX3232CDR
  2167. ComponentSymbolReference72=Max3232
  2168. ComponentUpdate72=1
  2169. ComponentIsDeviceSheet72=0
  2170. ComponentLibIdentifierKind73=Library Name And Type
  2171. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  2172. ComponentDesignItemID73=MMBT3904-TP
  2173. ComponentSymbolReference73=NPN
  2174. ComponentUpdate73=1
  2175. ComponentIsDeviceSheet73=0
  2176. ComponentLibIdentifierKind74=Library Name And Type
  2177. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  2178. ComponentDesignItemID74=MMSZ5231B-7-F
  2179. ComponentSymbolReference74=ZENER
  2180. ComponentUpdate74=1
  2181. ComponentIsDeviceSheet74=0
  2182. ComponentLibIdentifierKind75=Library Name And Type
  2183. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  2184. ComponentDesignItemID75=PDS760-13
  2185. ComponentSymbolReference75=Diode_SCHOTTKY_3_pins
  2186. ComponentUpdate75=1
  2187. ComponentIsDeviceSheet75=0
  2188. ComponentLibIdentifierKind76=Library Name And Type
  2189. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  2190. ComponentDesignItemID76=PE1206DRF7W0R015L
  2191. ComponentSymbolReference76=RES
  2192. ComponentUpdate76=1
  2193. ComponentIsDeviceSheet76=0
  2194. ComponentLibIdentifierKind77=Library Name And Type
  2195. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  2196. ComponentDesignItemID77=PM200V-12-12-H43
  2197. ComponentSymbolReference77=CON-2X6PIN
  2198. ComponentUpdate77=1
  2199. ComponentIsDeviceSheet77=0
  2200. ComponentLibIdentifierKind78=Library Name And Type
  2201. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  2202. ComponentDesignItemID78=PSPMAA0605H-6R8M-ANP
  2203. ComponentSymbolReference78=IND
  2204. ComponentUpdate78=1
  2205. ComponentIsDeviceSheet78=0
  2206. ComponentLibIdentifierKind79=Library Name And Type
  2207. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  2208. ComponentDesignItemID79=PTVS5V0S1UR
  2209. ComponentSymbolReference79=TVS
  2210. ComponentUpdate79=1
  2211. ComponentIsDeviceSheet79=0
  2212. ComponentLibIdentifierKind80=Library Name And Type
  2213. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  2214. ComponentDesignItemID80=RC0402DR-07118KL
  2215. ComponentSymbolReference80=RES
  2216. ComponentUpdate80=1
  2217. ComponentIsDeviceSheet80=0
  2218. ComponentLibIdentifierKind81=Library Name And Type
  2219. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  2220. ComponentDesignItemID81=RC0402FR-070RL
  2221. ComponentSymbolReference81=RES
  2222. ComponentUpdate81=1
  2223. ComponentIsDeviceSheet81=0
  2224. ComponentLibIdentifierKind82=Library Name And Type
  2225. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  2226. ComponentDesignItemID82=RC0402FR-07100KL
  2227. ComponentSymbolReference82=RES
  2228. ComponentUpdate82=1
  2229. ComponentIsDeviceSheet82=0
  2230. ComponentLibIdentifierKind83=Library Name And Type
  2231. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  2232. ComponentDesignItemID83=RC0402FR-07100RL
  2233. ComponentSymbolReference83=RES
  2234. ComponentUpdate83=1
  2235. ComponentIsDeviceSheet83=0
  2236. ComponentLibIdentifierKind84=Library Name And Type
  2237. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  2238. ComponentDesignItemID84=RC0402FR-07105KL
  2239. ComponentSymbolReference84=RES
  2240. ComponentUpdate84=1
  2241. ComponentIsDeviceSheet84=0
  2242. ComponentLibIdentifierKind85=Library Name And Type
  2243. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  2244. ComponentDesignItemID85=RC0402FR-0710KL
  2245. ComponentSymbolReference85=RES
  2246. ComponentUpdate85=1
  2247. ComponentIsDeviceSheet85=0
  2248. ComponentLibIdentifierKind86=Library Name And Type
  2249. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  2250. ComponentDesignItemID86=RC0402FR-0710RL
  2251. ComponentSymbolReference86=RES
  2252. ComponentUpdate86=1
  2253. ComponentIsDeviceSheet86=0
  2254. ComponentLibIdentifierKind87=Library Name And Type
  2255. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  2256. ComponentDesignItemID87=RC0402FR-0712KL
  2257. ComponentSymbolReference87=RES
  2258. ComponentUpdate87=1
  2259. ComponentIsDeviceSheet87=0
  2260. ComponentLibIdentifierKind88=Library Name And Type
  2261. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  2262. ComponentDesignItemID88=RC0402FR-0715KL
  2263. ComponentSymbolReference88=RES
  2264. ComponentUpdate88=1
  2265. ComponentIsDeviceSheet88=0
  2266. ComponentLibIdentifierKind89=Library Name And Type
  2267. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  2268. ComponentDesignItemID89=RC0402FR-071K2L
  2269. ComponentSymbolReference89=RES
  2270. ComponentUpdate89=1
  2271. ComponentIsDeviceSheet89=0
  2272. ComponentLibIdentifierKind90=Library Name And Type
  2273. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  2274. ComponentDesignItemID90=RC0402FR-071K91L
  2275. ComponentSymbolReference90=RES
  2276. ComponentUpdate90=1
  2277. ComponentIsDeviceSheet90=0
  2278. ComponentLibIdentifierKind91=Library Name And Type
  2279. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  2280. ComponentDesignItemID91=RC0402FR-071KL
  2281. ComponentSymbolReference91=RES
  2282. ComponentUpdate91=1
  2283. ComponentIsDeviceSheet91=0
  2284. ComponentLibIdentifierKind92=Library Name And Type
  2285. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  2286. ComponentDesignItemID92=RC0402FR-071ML
  2287. ComponentSymbolReference92=RES
  2288. ComponentUpdate92=1
  2289. ComponentIsDeviceSheet92=0
  2290. ComponentLibIdentifierKind93=Library Name And Type
  2291. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  2292. ComponentDesignItemID93=RC0402FR-0721K5L
  2293. ComponentSymbolReference93=RES
  2294. ComponentUpdate93=1
  2295. ComponentIsDeviceSheet93=0
  2296. ComponentLibIdentifierKind94=Library Name And Type
  2297. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  2298. ComponentDesignItemID94=RC0402FR-07220RL
  2299. ComponentSymbolReference94=RES
  2300. ComponentUpdate94=1
  2301. ComponentIsDeviceSheet94=0
  2302. ComponentLibIdentifierKind95=Library Name And Type
  2303. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  2304. ComponentDesignItemID95=RC0402FR-0722RL
  2305. ComponentSymbolReference95=RES
  2306. ComponentUpdate95=1
  2307. ComponentIsDeviceSheet95=0
  2308. ComponentLibIdentifierKind96=Library Name And Type
  2309. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  2310. ComponentDesignItemID96=RC0402FR-072K2L
  2311. ComponentSymbolReference96=RES
  2312. ComponentUpdate96=1
  2313. ComponentIsDeviceSheet96=0
  2314. ComponentLibIdentifierKind97=Library Name And Type
  2315. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  2316. ComponentDesignItemID97=RC0402FR-0734KL
  2317. ComponentSymbolReference97=RES
  2318. ComponentUpdate97=1
  2319. ComponentIsDeviceSheet97=0
  2320. ComponentLibIdentifierKind98=Library Name And Type
  2321. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  2322. ComponentDesignItemID98=RC0402FR-07357KL
  2323. ComponentSymbolReference98=RES
  2324. ComponentUpdate98=1
  2325. ComponentIsDeviceSheet98=0
  2326. ComponentLibIdentifierKind99=Library Name And Type
  2327. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  2328. ComponentDesignItemID99=RC0402FR-073K3L
  2329. ComponentSymbolReference99=RES
  2330. ComponentUpdate99=1
  2331. ComponentIsDeviceSheet99=0
  2332. ComponentLibIdentifierKind100=Library Name And Type
  2333. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  2334. ComponentDesignItemID100=RC0402FR-0745K3L
  2335. ComponentSymbolReference100=RES
  2336. ComponentUpdate100=1
  2337. ComponentIsDeviceSheet100=0
  2338. ComponentLibIdentifierKind101=Library Name And Type
  2339. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  2340. ComponentDesignItemID101=RC0402FR-0747KL
  2341. ComponentSymbolReference101=RES
  2342. ComponentUpdate101=1
  2343. ComponentIsDeviceSheet101=0
  2344. ComponentLibIdentifierKind102=Library Name And Type
  2345. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  2346. ComponentDesignItemID102=RC0402FR-07499KL
  2347. ComponentSymbolReference102=RES
  2348. ComponentUpdate102=1
  2349. ComponentIsDeviceSheet102=0
  2350. ComponentLibIdentifierKind103=Library Name And Type
  2351. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  2352. ComponentDesignItemID103=RC0402FR-074K7L
  2353. ComponentSymbolReference103=RES
  2354. ComponentUpdate103=1
  2355. ComponentIsDeviceSheet103=0
  2356. ComponentLibIdentifierKind104=Library Name And Type
  2357. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  2358. ComponentDesignItemID104=RC0402FR-074R02L
  2359. ComponentSymbolReference104=RES
  2360. ComponentUpdate104=1
  2361. ComponentIsDeviceSheet104=0
  2362. ComponentLibIdentifierKind105=Library Name And Type
  2363. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  2364. ComponentDesignItemID105=RC0402FR-0751K1L
  2365. ComponentSymbolReference105=RES
  2366. ComponentUpdate105=1
  2367. ComponentIsDeviceSheet105=0
  2368. ComponentLibIdentifierKind106=Library Name And Type
  2369. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  2370. ComponentDesignItemID106=RC0402FR-075K6L
  2371. ComponentSymbolReference106=RES
  2372. ComponentUpdate106=1
  2373. ComponentIsDeviceSheet106=0
  2374. ComponentLibIdentifierKind107=Library Name And Type
  2375. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  2376. ComponentDesignItemID107=RC0402FR-0768KL
  2377. ComponentSymbolReference107=RES
  2378. ComponentUpdate107=1
  2379. ComponentIsDeviceSheet107=0
  2380. ComponentLibIdentifierKind108=Library Name And Type
  2381. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  2382. ComponentDesignItemID108=RC0402FR-0775RL
  2383. ComponentSymbolReference108=RES
  2384. ComponentUpdate108=1
  2385. ComponentIsDeviceSheet108=0
  2386. ComponentLibIdentifierKind109=Library Name And Type
  2387. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  2388. ComponentDesignItemID109=RC0402FR-0784K5L
  2389. ComponentSymbolReference109=RES
  2390. ComponentUpdate109=1
  2391. ComponentIsDeviceSheet109=0
  2392. ComponentLibIdentifierKind110=Library Name And Type
  2393. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  2394. ComponentDesignItemID110=RC0603FR-0710KL
  2395. ComponentSymbolReference110=RES
  2396. ComponentUpdate110=1
  2397. ComponentIsDeviceSheet110=0
  2398. ComponentLibIdentifierKind111=Library Name And Type
  2399. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  2400. ComponentDesignItemID111=RI0603L000JT
  2401. ComponentSymbolReference111=RES
  2402. ComponentUpdate111=1
  2403. ComponentIsDeviceSheet111=0
  2404. ComponentLibIdentifierKind112=Library Name And Type
  2405. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  2406. ComponentDesignItemID112=RI0603L1002FT
  2407. ComponentSymbolReference112=RES
  2408. ComponentUpdate112=1
  2409. ComponentIsDeviceSheet112=0
  2410. ComponentLibIdentifierKind113=Library Name And Type
  2411. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  2412. ComponentDesignItemID113=RI0603L1R00FT
  2413. ComponentSymbolReference113=RES
  2414. ComponentUpdate113=1
  2415. ComponentIsDeviceSheet113=0
  2416. ComponentLibIdentifierKind114=Library Name And Type
  2417. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  2418. ComponentDesignItemID114=RI1206L000JT
  2419. ComponentSymbolReference114=RES
  2420. ComponentUpdate114=1
  2421. ComponentIsDeviceSheet114=0
  2422. ComponentLibIdentifierKind115=Library Name And Type
  2423. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  2424. ComponentDesignItemID115=RT1H101M0810
  2425. ComponentSymbolReference115=CAPP
  2426. ComponentUpdate115=1
  2427. ComponentIsDeviceSheet115=0
  2428. ComponentLibIdentifierKind116=Library Name And Type
  2429. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  2430. ComponentDesignItemID116=RVT1C471M0810
  2431. ComponentSymbolReference116=CAPP
  2432. ComponentUpdate116=1
  2433. ComponentIsDeviceSheet116=0
  2434. ComponentLibIdentifierKind117=Library Name And Type
  2435. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  2436. ComponentDesignItemID117=RVT2A100M0605
  2437. ComponentSymbolReference117=CAPP
  2438. ComponentUpdate117=1
  2439. ComponentIsDeviceSheet117=0
  2440. ComponentLibIdentifierKind118=Library Name And Type
  2441. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  2442. ComponentDesignItemID118=S10M
  2443. ComponentSymbolReference118=Diode
  2444. ComponentUpdate118=1
  2445. ComponentIsDeviceSheet118=0
  2446. ComponentLibIdentifierKind119=Library Name And Type
  2447. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  2448. ComponentDesignItemID119=SI2333CDS
  2449. ComponentSymbolReference119=P-Channel
  2450. ComponentUpdate119=1
  2451. ComponentIsDeviceSheet119=0
  2452. ComponentLibIdentifierKind120=Library Name And Type
  2453. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  2454. ComponentDesignItemID120=SIM65M-C
  2455. ComponentSymbolReference120=SIM65M-C
  2456. ComponentUpdate120=1
  2457. ComponentIsDeviceSheet120=0
  2458. ComponentLibIdentifierKind121=Library Name And Type
  2459. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  2460. ComponentDesignItemID121=SMF05CT1G-P
  2461. ComponentSymbolReference121=SMF05CT1G-P
  2462. ComponentUpdate121=1
  2463. ComponentIsDeviceSheet121=0
  2464. ComponentLibIdentifierKind122=Library Name And Type
  2465. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  2466. ComponentDesignItemID122=SMF36A
  2467. ComponentSymbolReference122=TVS
  2468. ComponentUpdate122=1
  2469. ComponentIsDeviceSheet122=0
  2470. ComponentLibIdentifierKind123=Library Name And Type
  2471. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  2472. ComponentDesignItemID123=SR05-04A
  2473. ComponentSymbolReference123=SR05-04A
  2474. ComponentUpdate123=1
  2475. ComponentIsDeviceSheet123=0
  2476. ComponentLibIdentifierKind124=Library Name And Type
  2477. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  2478. ComponentDesignItemID124=SS34A
  2479. ComponentSymbolReference124=SCHOTTKY
  2480. ComponentUpdate124=1
  2481. ComponentIsDeviceSheet124=0
  2482. ComponentLibIdentifierKind125=Library Name And Type
  2483. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  2484. ComponentDesignItemID125=SS36F
  2485. ComponentSymbolReference125=SCHOTTKY
  2486. ComponentUpdate125=1
  2487. ComponentIsDeviceSheet125=0
  2488. ComponentLibIdentifierKind126=Library Name And Type
  2489. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  2490. ComponentDesignItemID126=TLV75801PDBVR
  2491. ComponentSymbolReference126=SGM2028-ADJYN5G/TR
  2492. ComponentUpdate126=1
  2493. ComponentIsDeviceSheet126=0
  2494. ComponentLibIdentifierKind127=Library Name And Type
  2495. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  2496. ComponentDesignItemID127=TP
  2497. ComponentSymbolReference127=TP
  2498. ComponentUpdate127=1
  2499. ComponentIsDeviceSheet127=0
  2500. ComponentLibIdentifierKind128=Library Name And Type
  2501. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  2502. ComponentDesignItemID128=TS-1090S-AR02026
  2503. ComponentSymbolReference128=SW-4PIN
  2504. ComponentUpdate128=1
  2505. ComponentIsDeviceSheet128=0
  2506. ComponentLibIdentifierKind129=Library Name And Type
  2507. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  2508. ComponentDesignItemID129=UPZ2012E102-1R5TF
  2509. ComponentSymbolReference129=FB
  2510. ComponentUpdate129=1
  2511. ComponentIsDeviceSheet129=0
  2512. ComponentLibIdentifierKind130=Library Name And Type
  2513. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  2514. ComponentDesignItemID130=VHF100505HQ47NJT
  2515. ComponentSymbolReference130=IND
  2516. ComponentUpdate130=1
  2517. ComponentIsDeviceSheet130=0
  2518. ComponentLibIdentifierKind131=Library Name And Type
  2519. ComponentLibraryIdentifier131=MKP_lib.DbLib/Components
  2520. ComponentDesignItemID131=VHF100505HQ68NJT
  2521. ComponentSymbolReference131=IND
  2522. ComponentUpdate131=1
  2523. ComponentIsDeviceSheet131=0
  2524. ComponentLibIdentifierKind132=Library Name And Type
  2525. ComponentLibraryIdentifier132=MKP_lib.DbLib/Components
  2526. ComponentDesignItemID132=WE05DGCF-B
  2527. ComponentSymbolReference132=TVS-ESD
  2528. ComponentUpdate132=1
  2529. ComponentIsDeviceSheet132=0
  2530. ComponentLibIdentifierKind133=Library Name And Type
  2531. ComponentLibraryIdentifier133=MKP_lib.DbLib/Components
  2532. ComponentDesignItemID133=XL-1608SURC-06
  2533. ComponentSymbolReference133=LED
  2534. ComponentUpdate133=1
  2535. ComponentIsDeviceSheet133=0
  2536. ComponentLibIdentifierKind134=Library Name And Type
  2537. ComponentLibraryIdentifier134=MKP_lib.DbLib/Components
  2538. ComponentDesignItemID134=XL-1608SYGC-04
  2539. ComponentSymbolReference134=LED
  2540. ComponentUpdate134=1
  2541. ComponentIsDeviceSheet134=0
  2542. ComponentLibIdentifierKind135=Library Name And Type
  2543. ComponentLibraryIdentifier135=MKP_lib.DbLib/Components
  2544. ComponentDesignItemID135=XL-DZ304SURD/3
  2545. ComponentSymbolReference135=LED3
  2546. ComponentUpdate135=1
  2547. ComponentIsDeviceSheet135=0
  2548. ComponentLibIdentifierKind136=Library Name And Type
  2549. ComponentLibraryIdentifier136=MKP_lib.DbLib/Components
  2550. ComponentDesignItemID136=XS9922B
  2551. ComponentSymbolReference136=XS9922B
  2552. ComponentUpdate136=1
  2553. ComponentIsDeviceSheet136=0
  2554. ComponentLibIdentifierKind137=Library Name And Type
  2555. ComponentLibraryIdentifier137=MKP_lib.DbLib/Components
  2556. ComponentDesignItemID137=YAGEO RC0402FR-072R2L
  2557. ComponentSymbolReference137=RES
  2558. ComponentUpdate137=1
  2559. ComponentIsDeviceSheet137=0
  2560. ComponentLibIdentifierKind138=Library Name And Type
  2561. ComponentLibraryIdentifier138=MKP_lib.DbLib/Components
  2562. ComponentDesignItemID138=YI160808U100-5R0T
  2563. ComponentSymbolReference138=FB
  2564. ComponentUpdate138=1
  2565. ComponentIsDeviceSheet138=0
  2566. ComponentLibIdentifierKind139=Library Name And Type
  2567. ComponentLibraryIdentifier139=MKP_lib.DbLib/Components
  2568. ComponentDesignItemID139=ZD0650-2R2M
  2569. ComponentSymbolReference139=IND
  2570. ComponentUpdate139=1
  2571. ComponentIsDeviceSheet139=0
  2572. ComponentLibIdentifierKind140=Library Name And Type
  2573. ComponentLibraryIdentifier140=MKP_lib.DbLib
  2574. ComponentDesignItemID140=XH-2A
  2575. ComponentSymbolReference140=CON-2PIN
  2576. ComponentUpdate140=1
  2577. ComponentIsDeviceSheet140=0
  2578. ComponentLibIdentifierKind141=Library Name And Type
  2579. ComponentLibraryIdentifier141=MKP_lib.DbLib
  2580. ComponentDesignItemID141=XH-2AW
  2581. ComponentSymbolReference141=CON-2PIN
  2582. ComponentUpdate141=1
  2583. ComponentIsDeviceSheet141=0
  2584. FullReplace=1
  2585. UpdateDesignatorLock=1
  2586. UpdatePartIDLock=1
  2587. PreserveParameterLocations=1
  2588. PreserveParameterVisibility=1
  2589. DoGraphics=1
  2590. DoParameters=1
  2591. DoModels=1
  2592. AddParameters=0
  2593. RemoveParameters=0
  2594. AddModels=1
  2595. RemoveModels=1
  2596. UpdateCurrentModels=1
  2597. ParameterName0=Category
  2598. ParameterUpdate0=1
  2599. ParameterName1=Catelogy
  2600. ParameterUpdate1=1
  2601. ParameterName2=Comment
  2602. ParameterUpdate2=1
  2603. ParameterName3=Company ID
  2604. ParameterUpdate3=1
  2605. ParameterName4=Component Kind
  2606. ParameterUpdate4=1
  2607. ParameterName5=ComponentLink1Description
  2608. ParameterUpdate5=1
  2609. ParameterName6=ComponentLink1URL
  2610. ParameterUpdate6=1
  2611. ParameterName7=ComponentLink2Description
  2612. ParameterUpdate7=1
  2613. ParameterName8=ComponentLink2URL
  2614. ParameterUpdate8=1
  2615. ParameterName9=ComponentLink3Description
  2616. ParameterUpdate9=1
  2617. ParameterName10=ComponentLink3URL
  2618. ParameterUpdate10=1
  2619. ParameterName11=ComponentLink4Description
  2620. ParameterUpdate11=1
  2621. ParameterName12=ComponentLink4URL
  2622. ParameterUpdate12=1
  2623. ParameterName13=ComponentLink5Description
  2624. ParameterUpdate13=1
  2625. ParameterName14=ComponentLink5URL
  2626. ParameterUpdate14=1
  2627. ParameterName15=ComponentLink6Description
  2628. ParameterUpdate15=1
  2629. ParameterName16=ComponentLink6URL
  2630. ParameterUpdate16=1
  2631. ParameterName17=Contact Plating
  2632. ParameterUpdate17=1
  2633. ParameterName18=Continuous Drain Current (ID)
  2634. ParameterUpdate18=1
  2635. ParameterName19=Creator
  2636. ParameterUpdate19=1
  2637. ParameterName20=Current Rating
  2638. ParameterUpdate20=1
  2639. ParameterName21=Datasheet
  2640. ParameterUpdate21=1
  2641. ParameterName22=Des
  2642. ParameterUpdate22=1
  2643. ParameterName23=Description
  2644. ParameterUpdate23=1
  2645. ParameterName24=Detailed Value
  2646. ParameterUpdate24=1
  2647. ParameterName25=Drain to Source Breakdown Voltage
  2648. ParameterUpdate25=1
  2649. ParameterName26=Drain to Source Resistance
  2650. ParameterUpdate26=1
  2651. ParameterName27=Drain to Source Voltage (Vdss)
  2652. ParameterUpdate27=1
  2653. ParameterName28=Element Configuration
  2654. ParameterUpdate28=1
  2655. ParameterName29=Fall Time
  2656. ParameterUpdate29=1
  2657. ParameterName30=Gate to Source Voltage (Vgs)
  2658. ParameterUpdate30=1
  2659. ParameterName31=Height
  2660. ParameterUpdate31=1
  2661. ParameterName32=Input Capacitance
  2662. ParameterUpdate32=1
  2663. ParameterName33=Kieu_Chan
  2664. ParameterUpdate33=1
  2665. ParameterName34=Lead Free
  2666. ParameterUpdate34=1
  2667. ParameterName35=Length
  2668. ParameterUpdate35=1
  2669. ParameterName36=Library Reference
  2670. ParameterUpdate36=1
  2671. ParameterName37=Link sale
  2672. ParameterUpdate37=1
  2673. ParameterName38=MANU 1
  2674. ParameterUpdate38=1
  2675. ParameterName39=MANU 2
  2676. ParameterUpdate39=1
  2677. ParameterName40=Manufacture
  2678. ParameterUpdate40=1
  2679. ParameterName41=Manufacturer
  2680. ParameterUpdate41=1
  2681. ParameterName42=Manufacturer 1
  2682. ParameterUpdate42=1
  2683. ParameterName43=Manufacturer Part Number
  2684. ParameterUpdate43=1
  2685. ParameterName44=Manufacturer Part Number 1
  2686. ParameterUpdate44=1
  2687. ParameterName45=Max Operating Temperature
  2688. ParameterUpdate45=1
  2689. ParameterName46=Max Power Dissipation
  2690. ParameterUpdate46=1
  2691. ParameterName47=MFR
  2692. ParameterUpdate47=1
  2693. ParameterName48=Min Operating Temperature
  2694. ParameterUpdate48=1
  2695. ParameterName49=Mount
  2696. ParameterUpdate49=1
  2697. ParameterName50=Mounting type
  2698. ParameterUpdate50=1
  2699. ParameterName51=MPN
  2700. ParameterUpdate51=1
  2701. ParameterName52=Nominal Vgs
  2702. ParameterUpdate52=1
  2703. ParameterName53=Number of Elements
  2704. ParameterUpdate53=1
  2705. ParameterName54=Number of Pins
  2706. ParameterUpdate54=1
  2707. ParameterName55=Operating Temperature
  2708. ParameterUpdate55=1
  2709. ParameterName56=Package Quantity
  2710. ParameterUpdate56=1
  2711. ParameterName57=Packaging
  2712. ParameterUpdate57=1
  2713. ParameterName58=Parameter 1
  2714. ParameterUpdate58=1
  2715. ParameterName59=Part Num 1
  2716. ParameterUpdate59=1
  2717. ParameterName60=Part Num 2
  2718. ParameterUpdate60=1
  2719. ParameterName61=Partnumber
  2720. ParameterUpdate61=1
  2721. ParameterName62=Power Dissipation
  2722. ParameterUpdate62=1
  2723. ParameterName63=Pricing (USD)
  2724. ParameterUpdate63=1
  2725. ParameterName64=Pricing 1
  2726. ParameterUpdate64=1
  2727. ParameterName65=PROJECT
  2728. ParameterUpdate65=1
  2729. ParameterName66=Radiation Hardening
  2730. ParameterUpdate66=1
  2731. ParameterName67=Rds On Max
  2732. ParameterUpdate67=1
  2733. ParameterName68=REACH SVHC
  2734. ParameterUpdate68=1
  2735. ParameterName69=Rise Time
  2736. ParameterUpdate69=1
  2737. ParameterName70=RoHS
  2738. ParameterUpdate70=1
  2739. ParameterName71=Solder
  2740. ParameterUpdate71=1
  2741. ParameterName72=Stock 1
  2742. ParameterUpdate72=1
  2743. ParameterName73=Supplier
  2744. ParameterUpdate73=1
  2745. ParameterName74=Supplier 1
  2746. ParameterUpdate74=1
  2747. ParameterName75=Supplier Part Number 1
  2748. ParameterUpdate75=1
  2749. ParameterName76=System
  2750. ParameterUpdate76=1
  2751. ParameterName77=Temperature Coefficient
  2752. ParameterUpdate77=1
  2753. ParameterName78=Tolerance
  2754. ParameterUpdate78=1
  2755. ParameterName79=Turn-Off Delay Time
  2756. ParameterUpdate79=1
  2757. ParameterName80=Turn-On Delay Time
  2758. ParameterUpdate80=1
  2759. ParameterName81=Type
  2760. ParameterUpdate81=1
  2761. ParameterName82=Threshold Voltage
  2762. ParameterUpdate82=1
  2763. ParameterName83=Unit
  2764. ParameterUpdate83=1
  2765. ParameterName84=Value
  2766. ParameterUpdate84=1
  2767. ParameterName85=Voltage Rated
  2768. ParameterUpdate85=1
  2769. ParameterName86=Width
  2770. ParameterUpdate86=1
  2771. ModelTypeGroup0=PCBLIB
  2772. ModelTypeUpdate0=1
  2773. ModelType0=PCBLIB
  2774. ModelName0=0603
  2775. ModelUpdate0=1
  2776. ModelType1=PCBLIB
  2777. ModelName1=0603-GREEN
  2778. ModelUpdate1=1
  2779. ModelType2=PCBLIB
  2780. ModelName2=0603-RED
  2781. ModelUpdate2=1
  2782. ModelType3=PCBLIB
  2783. ModelName3=0603-YELLOW
  2784. ModelUpdate3=1
  2785. ModelType4=PCBLIB
  2786. ModelName4=0805
  2787. ModelUpdate4=1
  2788. ModelType5=PCBLIB
  2789. ModelName5=10-MSOP
  2790. ModelUpdate5=1
  2791. ModelType6=PCBLIB
  2792. ModelName6=2-SMD
  2793. ModelUpdate6=1
  2794. ModelType7=PCBLIB
  2795. ModelName7=2x6P, 2mm, TH, MALE
  2796. ModelUpdate7=1
  2797. ModelType8=PCBLIB
  2798. ModelName8=8-POWERIC
  2799. ModelUpdate8=1
  2800. ModelType9=PCBLIB
  2801. ModelName9=8-TSON_FIXED
  2802. ModelUpdate9=1
  2803. ModelType10=PCBLIB
  2804. ModelName10=A7677
  2805. ModelUpdate10=1
  2806. ModelType11=PCBLIB
  2807. ModelName11=AS0BC21S40BM7H
  2808. ModelUpdate11=1
  2809. ModelType12=PCBLIB
  2810. ModelName12=BZ-9x5.5
  2811. ModelUpdate12=1
  2812. ModelType13=PCBLIB
  2813. ModelName13=C0402
  2814. ModelUpdate13=1
  2815. ModelType14=PCBLIB
  2816. ModelName14=C0603X5R475K350NT
  2817. ModelUpdate14=1
  2818. ModelType15=PCBLIB
  2819. ModelName15=C1206
  2820. ModelUpdate15=1
  2821. ModelType16=PCBLIB
  2822. ModelName16=CAPC_0603_N
  2823. ModelUpdate16=1
  2824. ModelType17=PCBLIB
  2825. ModelName17=CAPC_0805_N
  2826. ModelUpdate17=1
  2827. ModelType18=PCBLIB
  2828. ModelName18=CAPC_1206_N
  2829. ModelUpdate18=1
  2830. ModelType19=PCBLIB
  2831. ModelName19=CAPC_1210_N
  2832. ModelUpdate19=1
  2833. ModelType20=PCBLIB
  2834. ModelName20=D0402
  2835. ModelUpdate20=1
  2836. ModelType21=PCBLIB
  2837. ModelName21=DFN1006-2L
  2838. ModelUpdate21=1
  2839. ModelType22=PCBLIB
  2840. ModelName22=DFN1006P2X
  2841. ModelUpdate22=1
  2842. ModelType23=PCBLIB
  2843. ModelName23=DIO-SMA
  2844. ModelUpdate23=1
  2845. ModelType24=PCBLIB
  2846. ModelName24=DIO-SMAF
  2847. ModelUpdate24=1
  2848. ModelType25=PCBLIB
  2849. ModelName25=DIP-6-2.54mm
  2850. ModelUpdate25=1
  2851. ModelType26=PCBLIB
  2852. ModelName26=D-Sub-9P-Male
  2853. ModelUpdate26=1
  2854. ModelType27=PCBLIB
  2855. ModelName27=ETA6003Q3Q-QFN16G-0.5-3X3MM
  2856. ModelUpdate27=1
  2857. ModelType28=PCBLIB
  2858. ModelName28=FERRITE_0402
  2859. ModelUpdate28=1
  2860. ModelType29=PCBLIB
  2861. ModelName29=HEADER_4PIN_2.54
  2862. ModelUpdate29=1
  2863. ModelType30=PCBLIB
  2864. ModelName30=HEATSINK
  2865. ModelUpdate30=1
  2866. ModelType31=PCBLIB
  2867. ModelName31=IND-12.2x12.2
  2868. ModelUpdate31=1
  2869. ModelType32=PCBLIB
  2870. ModelName32=IND-3x3
  2871. ModelUpdate32=1
  2872. ModelType33=PCBLIB
  2873. ModelName33=IND-4x4
  2874. ModelUpdate33=1
  2875. ModelType34=PCBLIB
  2876. ModelName34=IND-7X6.6
  2877. ModelUpdate34=1
  2878. ModelType35=PCBLIB
  2879. ModelName35=IPEX
  2880. ModelUpdate35=1
  2881. ModelType36=PCBLIB
  2882. ModelName36=JUMP_4PIN_2.0
  2883. ModelUpdate36=1
  2884. ModelType37=PCBLIB
  2885. ModelName37=JUMP-2.0-4PIN-FM-TH
  2886. ModelUpdate37=1
  2887. ModelType38=PCBLIB
  2888. ModelName38=L0402
  2889. ModelUpdate38=1
  2890. ModelType39=PCBLIB
  2891. ModelName39=M2_M_KEY_CONNECT_P
  2892. ModelUpdate39=1
  2893. ModelType40=PCBLIB
  2894. ModelName40=MUP-C7802-02
  2895. ModelUpdate40=1
  2896. ModelType41=PCBLIB
  2897. ModelName41=MUP-M6110-01
  2898. ModelUpdate41=1
  2899. ModelType42=PCBLIB
  2900. ModelName42=Power-DI-5
  2901. ModelUpdate42=1
  2902. ModelType43=PCBLIB
  2903. ModelName43=QFN-88(10x10mm)
  2904. ModelUpdate43=1
  2905. ModelType44=PCBLIB
  2906. ModelName44=QFP50P1200X1200X170-64N
  2907. ModelUpdate44=1
  2908. ModelType45=PCBLIB
  2909. ModelName45=Quectel L76
  2910. ModelUpdate45=1
  2911. ModelType46=PCBLIB
  2912. ModelName46=R0402
  2913. ModelUpdate46=1
  2914. ModelType47=PCBLIB
  2915. ModelName47=RESC_0603_N
  2916. ModelUpdate47=1
  2917. ModelType48=PCBLIB
  2918. ModelName48=RESC_1206_N
  2919. ModelUpdate48=1
  2920. ModelType49=PCBLIB
  2921. ModelName49=RJ45
  2922. ModelUpdate49=1
  2923. ModelType50=PCBLIB
  2924. ModelName50=RJ45-HR911105A
  2925. ModelUpdate50=1
  2926. ModelType51=PCBLIB
  2927. ModelName51=SIM65M-C
  2928. ModelUpdate51=1
  2929. ModelType52=PCBLIB
  2930. ModelName52=SMC(DO-214AB)
  2931. ModelUpdate52=1
  2932. ModelType53=PCBLIB
  2933. ModelName53=SMD,D6.3xL5.4mm
  2934. ModelUpdate53=1
  2935. ModelType54=PCBLIB
  2936. ModelName54=SMD2016-4P
  2937. ModelUpdate54=1
  2938. ModelType55=PCBLIB
  2939. ModelName55=SMD-4P,0.8x0.6mm
  2940. ModelUpdate55=1
  2941. ModelType56=PCBLIB
  2942. ModelName56=SMD-ALU-D8xL10.2mm
  2943. ModelUpdate56=1
  2944. ModelType57=PCBLIB
  2945. ModelName57=SMF05C
  2946. ModelUpdate57=1
  2947. ModelType58=PCBLIB
  2948. ModelName58=SOD123
  2949. ModelUpdate58=1
  2950. ModelType59=PCBLIB
  2951. ModelName59=SOD-123FL
  2952. ModelUpdate59=1
  2953. ModelType60=PCBLIB
  2954. ModelName60=SOD-523
  2955. ModelUpdate60=1
  2956. ModelType61=PCBLIB
  2957. ModelName61=SOIC127P600X175-16N
  2958. ModelUpdate61=1
  2959. ModelType62=PCBLIB
  2960. ModelName62=SOIC-16
  2961. ModelUpdate62=1
  2962. ModelType63=PCBLIB
  2963. ModelName63=SOIC-8
  2964. ModelUpdate63=1
  2965. ModelType64=PCBLIB
  2966. ModelName64=SOT-23-132
  2967. ModelUpdate64=1
  2968. ModelType65=PCBLIB
  2969. ModelName65=SOT-23-3
  2970. ModelUpdate65=1
  2971. ModelType66=PCBLIB
  2972. ModelName66=SOT-23-5
  2973. ModelUpdate66=1
  2974. ModelType67=PCBLIB
  2975. ModelName67=SOT-363-6
  2976. ModelUpdate67=1
  2977. ModelType68=PCBLIB
  2978. ModelName68=SW4-SMD
  2979. ModelUpdate68=1
  2980. ModelType69=PCBLIB
  2981. ModelName69=TP-SMD
  2982. ModelUpdate69=1
  2983. ModelType70=PCBLIB
  2984. ModelName70=TSOT-23-6
  2985. ModelUpdate70=1
  2986. ModelType71=PCBLIB
  2987. ModelName71=TH-0.8-0.5-M1.4
  2988. ModelUpdate71=1
  2989. ModelType72=PCBLIB
  2990. ModelName72=VSONP-8(3.1x3.1)
  2991. ModelUpdate72=1
  2992. ModelType73=PCBLIB
  2993. ModelName73=XH2.54-2P-2.54
  2994. ModelUpdate73=1
  2995. ModelType74=PCBLIB
  2996. ModelName74=XH2.54-2P-R
  2997. ModelUpdate74=1
  2998. ModelTypeGroup1=SI
  2999. ModelTypeUpdate1=1
  3000. ModelType75=SI
  3001. ModelName75=Cap
  3002. ModelUpdate75=1
  3003. ModelTypeGroup2=SIM
  3004. ModelTypeUpdate2=1
  3005. ModelType76=SIM
  3006. ModelName76=CAP
  3007. ModelUpdate76=1
  3008. ModelType77=SIM
  3009. ModelName77=CSD16323Q3
  3010. ModelUpdate77=1
  3011. [DatabaseUpdateOptions]
  3012. SelectedOnly=0
  3013. UpdateVariants=1
  3014. UpdateToLatestRevision=1
  3015. PartTypes=0
  3016. ComponentLibIdentifierKind0=Library Name And Type
  3017. ComponentLibraryIdentifier0=MKP_lib.DbLib/Components
  3018. ComponentDesignItemID0=0805CG330J500NT
  3019. ComponentSymbolReference0=CAP
  3020. ComponentUpdate0=1
  3021. ComponentIsDeviceSheet0=0
  3022. ComponentLibIdentifierKind1=Library Name And Type
  3023. ComponentLibraryIdentifier1=MKP_lib.DbLib/Components
  3024. ComponentDesignItemID1=150060YS75000
  3025. ComponentSymbolReference1=LED
  3026. ComponentUpdate1=1
  3027. ComponentIsDeviceSheet1=0
  3028. ComponentLibIdentifierKind2=Library Name And Type
  3029. ComponentLibraryIdentifier2=MKP_lib.DbLib/Components
  3030. ComponentDesignItemID2=2.54-2*8P
  3031. ComponentSymbolReference2=CON-8X2PIN
  3032. ComponentUpdate2=1
  3033. ComponentIsDeviceSheet2=0
  3034. ComponentLibIdentifierKind3=Library Name And Type
  3035. ComponentLibraryIdentifier3=MKP_lib.DbLib/Components
  3036. ComponentDesignItemID3=3.0-2*2A
  3037. ComponentSymbolReference3=CON-2X2PIN
  3038. ComponentUpdate3=1
  3039. ComponentIsDeviceSheet3=0
  3040. ComponentLibIdentifierKind4=Library Name And Type
  3041. ComponentLibraryIdentifier4=MKP_lib.DbLib/Components
  3042. ComponentDesignItemID4=3N27000G33YC
  3043. ComponentSymbolReference4=OSCILLATOR
  3044. ComponentUpdate4=1
  3045. ComponentIsDeviceSheet4=0
  3046. ComponentLibIdentifierKind5=Library Name And Type
  3047. ComponentLibraryIdentifier5=MKP_lib.DbLib/Components
  3048. ComponentDesignItemID5=A2541WV-4P
  3049. ComponentSymbolReference5=CON-4PIN
  3050. ComponentUpdate5=1
  3051. ComponentIsDeviceSheet5=0
  3052. ComponentLibIdentifierKind6=Library Name And Type
  3053. ComponentLibraryIdentifier6=MKP_lib.DbLib/Components
  3054. ComponentDesignItemID6=ABS07-32.768KHZ-T
  3055. ComponentSymbolReference6=XTL-2PIN
  3056. ComponentUpdate6=1
  3057. ComponentIsDeviceSheet6=0
  3058. ComponentLibIdentifierKind7=Library Name And Type
  3059. ComponentLibraryIdentifier7=MKP_lib.DbLib/Components
  3060. ComponentDesignItemID7=AC0402FR-07590KL
  3061. ComponentSymbolReference7=RES
  3062. ComponentUpdate7=1
  3063. ComponentIsDeviceSheet7=0
  3064. ComponentLibIdentifierKind8=Library Name And Type
  3065. ComponentLibraryIdentifier8=MKP_lib.DbLib/Components
  3066. ComponentDesignItemID8=AFC07-S20FCC-00
  3067. ComponentSymbolReference8=FFC-20P
  3068. ComponentUpdate8=1
  3069. ComponentIsDeviceSheet8=0
  3070. ComponentLibIdentifierKind9=Library Name And Type
  3071. ComponentLibraryIdentifier9=MKP_lib.DbLib/Components
  3072. ComponentDesignItemID9=APCI0146-P001A
  3073. ComponentSymbolReference9=APCI0146-P001A
  3074. ComponentUpdate9=1
  3075. ComponentIsDeviceSheet9=0
  3076. ComponentLibIdentifierKind10=Library Name And Type
  3077. ComponentLibraryIdentifier10=MKP_lib.DbLib/Components
  3078. ComponentDesignItemID10=APX823-26W5G-7
  3079. ComponentSymbolReference10=APX823-26W5G-7
  3080. ComponentUpdate10=1
  3081. ComponentIsDeviceSheet10=0
  3082. ComponentLibIdentifierKind11=Library Name And Type
  3083. ComponentLibraryIdentifier11=MKP_lib.DbLib/Components
  3084. ComponentDesignItemID11=AZ6118-01F
  3085. ComponentSymbolReference11=TVS
  3086. ComponentUpdate11=1
  3087. ComponentIsDeviceSheet11=0
  3088. ComponentLibIdentifierKind12=Library Name And Type
  3089. ComponentLibraryIdentifier12=MKP_lib.DbLib/Components
  3090. ComponentDesignItemID12=B72590D50H160
  3091. ComponentSymbolReference12=B72590D50H160
  3092. ComponentUpdate12=1
  3093. ComponentIsDeviceSheet12=0
  3094. ComponentLibIdentifierKind13=Library Name And Type
  3095. ComponentLibraryIdentifier13=MKP_lib.DbLib/Components
  3096. ComponentDesignItemID13=BLM18KG221SN1D
  3097. ComponentSymbolReference13=FB
  3098. ComponentUpdate13=1
  3099. ComponentIsDeviceSheet13=0
  3100. ComponentLibIdentifierKind14=Library Name And Type
  3101. ComponentLibraryIdentifier14=MKP_lib.DbLib/Components
  3102. ComponentDesignItemID14=BLM31KN121SN1L
  3103. ComponentSymbolReference14=FB
  3104. ComponentUpdate14=1
  3105. ComponentIsDeviceSheet14=0
  3106. ComponentLibIdentifierKind15=Library Name And Type
  3107. ComponentLibraryIdentifier15=MKP_lib.DbLib/Components
  3108. ComponentDesignItemID15=C0603X5R105K500NT
  3109. ComponentSymbolReference15=CAP
  3110. ComponentUpdate15=1
  3111. ComponentIsDeviceSheet15=0
  3112. ComponentLibIdentifierKind16=Library Name And Type
  3113. ComponentLibraryIdentifier16=MKP_lib.DbLib/Components
  3114. ComponentDesignItemID16=C0603X5R475K350NT
  3115. ComponentSymbolReference16=C0603X5R475K350NT
  3116. ComponentUpdate16=1
  3117. ComponentIsDeviceSheet16=0
  3118. ComponentLibIdentifierKind17=Library Name And Type
  3119. ComponentLibraryIdentifier17=MKP_lib.DbLib/Components
  3120. ComponentDesignItemID17=C0805X5R106K160NT
  3121. ComponentSymbolReference17=CAP
  3122. ComponentUpdate17=1
  3123. ComponentIsDeviceSheet17=0
  3124. ComponentLibIdentifierKind18=Library Name And Type
  3125. ComponentLibraryIdentifier18=MKP_lib.DbLib/Components
  3126. ComponentDesignItemID18=CC0402FRNPO9BN101
  3127. ComponentSymbolReference18=CAP
  3128. ComponentUpdate18=1
  3129. ComponentIsDeviceSheet18=0
  3130. ComponentLibIdentifierKind19=Library Name And Type
  3131. ComponentLibraryIdentifier19=MKP_lib.DbLib/Components
  3132. ComponentDesignItemID19=CC0402FRNPO9BN120
  3133. ComponentSymbolReference19=CAP
  3134. ComponentUpdate19=1
  3135. ComponentIsDeviceSheet19=0
  3136. ComponentLibIdentifierKind20=Library Name And Type
  3137. ComponentLibraryIdentifier20=MKP_lib.DbLib/Components
  3138. ComponentDesignItemID20=CC0402KRX7R7BB104
  3139. ComponentSymbolReference20=CAP
  3140. ComponentUpdate20=1
  3141. ComponentIsDeviceSheet20=0
  3142. ComponentLibIdentifierKind21=Library Name And Type
  3143. ComponentLibraryIdentifier21=MKP_lib.DbLib/Components
  3144. ComponentDesignItemID21=CC0402KRX7R9BB103
  3145. ComponentSymbolReference21=CAP
  3146. ComponentUpdate21=1
  3147. ComponentIsDeviceSheet21=0
  3148. ComponentLibIdentifierKind22=Library Name And Type
  3149. ComponentLibraryIdentifier22=MKP_lib.DbLib/Components
  3150. ComponentDesignItemID22=CC0402KRX7R9BB104
  3151. ComponentSymbolReference22=CAP
  3152. ComponentUpdate22=1
  3153. ComponentIsDeviceSheet22=0
  3154. ComponentLibIdentifierKind23=Library Name And Type
  3155. ComponentLibraryIdentifier23=MKP_lib.DbLib/Components
  3156. ComponentDesignItemID23=CC0603JRNPO9BN750
  3157. ComponentSymbolReference23=CAP
  3158. ComponentUpdate23=1
  3159. ComponentIsDeviceSheet23=0
  3160. ComponentLibIdentifierKind24=Library Name And Type
  3161. ComponentLibraryIdentifier24=MKP_lib.DbLib/Components
  3162. ComponentDesignItemID24=CC0603KRX7R9BB104
  3163. ComponentSymbolReference24=CAP
  3164. ComponentUpdate24=1
  3165. ComponentIsDeviceSheet24=0
  3166. ComponentLibIdentifierKind25=Library Name And Type
  3167. ComponentLibraryIdentifier25=MKP_lib.DbLib/Components
  3168. ComponentDesignItemID25=CC0603KRX7R9BB474
  3169. ComponentSymbolReference25=CAP
  3170. ComponentUpdate25=1
  3171. ComponentIsDeviceSheet25=0
  3172. ComponentLibIdentifierKind26=Library Name And Type
  3173. ComponentLibraryIdentifier26=MKP_lib.DbLib/Components
  3174. ComponentDesignItemID26=CC0603KRX7R9BB561
  3175. ComponentSymbolReference26=CAP
  3176. ComponentUpdate26=1
  3177. ComponentIsDeviceSheet26=0
  3178. ComponentLibIdentifierKind27=Library Name And Type
  3179. ComponentLibraryIdentifier27=MKP_lib.DbLib/Components
  3180. ComponentDesignItemID27=CC0603KRX7R9BB563
  3181. ComponentSymbolReference27=CAP
  3182. ComponentUpdate27=1
  3183. ComponentIsDeviceSheet27=0
  3184. ComponentLibIdentifierKind28=Library Name And Type
  3185. ComponentLibraryIdentifier28=MKP_lib.DbLib/Components
  3186. ComponentDesignItemID28=CC1206KKX7R0BB104
  3187. ComponentSymbolReference28=CAP
  3188. ComponentUpdate28=1
  3189. ComponentIsDeviceSheet28=0
  3190. ComponentLibIdentifierKind29=Library Name And Type
  3191. ComponentLibraryIdentifier29=MKP_lib.DbLib/Components
  3192. ComponentDesignItemID29=CCTC TCC1206X7R225K101HT
  3193. ComponentSymbolReference29=CAP
  3194. ComponentUpdate29=1
  3195. ComponentIsDeviceSheet29=0
  3196. ComponentLibIdentifierKind30=Library Name And Type
  3197. ComponentLibraryIdentifier30=MKP_lib.DbLib/Components
  3198. ComponentDesignItemID30=CL05A105KO5NNNC
  3199. ComponentSymbolReference30=CAP
  3200. ComponentUpdate30=1
  3201. ComponentIsDeviceSheet30=0
  3202. ComponentLibIdentifierKind31=Library Name And Type
  3203. ComponentLibraryIdentifier31=MKP_lib.DbLib/Components
  3204. ComponentDesignItemID31=CL05C330JB5NNNC
  3205. ComponentSymbolReference31=CAP
  3206. ComponentUpdate31=1
  3207. ComponentIsDeviceSheet31=0
  3208. ComponentLibIdentifierKind32=Library Name And Type
  3209. ComponentLibraryIdentifier32=MKP_lib.DbLib/Components
  3210. ComponentDesignItemID32=CL10A226MO7JZNC
  3211. ComponentSymbolReference32=CL10A226MO7JZNC
  3212. ComponentUpdate32=1
  3213. ComponentIsDeviceSheet32=0
  3214. ComponentLibIdentifierKind33=Library Name And Type
  3215. ComponentLibraryIdentifier33=MKP_lib.DbLib/Components
  3216. ComponentDesignItemID33=CL10A226MQ8NRNE
  3217. ComponentSymbolReference33=CAP
  3218. ComponentUpdate33=1
  3219. ComponentIsDeviceSheet33=0
  3220. ComponentLibIdentifierKind34=Library Name And Type
  3221. ComponentLibraryIdentifier34=MKP_lib.DbLib/Components
  3222. ComponentDesignItemID34=CL10A476MQ8QRNC
  3223. ComponentSymbolReference34=CAP
  3224. ComponentUpdate34=1
  3225. ComponentIsDeviceSheet34=0
  3226. ComponentLibIdentifierKind35=Library Name And Type
  3227. ComponentLibraryIdentifier35=MKP_lib.DbLib/Components
  3228. ComponentDesignItemID35=D-DMR009PM-D002
  3229. ComponentSymbolReference35=D-DMR009PM-D002
  3230. ComponentUpdate35=1
  3231. ComponentIsDeviceSheet35=0
  3232. ComponentLibIdentifierKind36=Library Name And Type
  3233. ComponentLibraryIdentifier36=MKP_lib.DbLib/Components
  3234. ComponentDesignItemID36=DLM0NSN900HY2D
  3235. ComponentSymbolReference36=Common Mode Filters
  3236. ComponentUpdate36=1
  3237. ComponentIsDeviceSheet36=0
  3238. ComponentLibIdentifierKind37=Library Name And Type
  3239. ComponentLibraryIdentifier37=MKP_lib.DbLib/Components
  3240. ComponentDesignItemID37=DRQ125-220-R
  3241. ComponentSymbolReference37=DRQ125
  3242. ComponentUpdate37=1
  3243. ComponentIsDeviceSheet37=0
  3244. ComponentLibIdentifierKind38=Library Name And Type
  3245. ComponentLibraryIdentifier38=MKP_lib.DbLib/Components
  3246. ComponentDesignItemID38=EC25EUGA-512-SGNS
  3247. ComponentSymbolReference38=EC25EUGA-512-SGNS
  3248. ComponentUpdate38=1
  3249. ComponentIsDeviceSheet38=0
  3250. ComponentLibIdentifierKind39=Library Name And Type
  3251. ComponentLibraryIdentifier39=MKP_lib.DbLib/Components
  3252. ComponentDesignItemID39=EL3H7(B)(TA)-VG
  3253. ComponentSymbolReference39=PS2801
  3254. ComponentUpdate39=1
  3255. ComponentIsDeviceSheet39=0
  3256. ComponentLibIdentifierKind40=Library Name And Type
  3257. ComponentLibraryIdentifier40=MKP_lib.DbLib/Components
  3258. ComponentDesignItemID40=EMK316BBJ476ML-T
  3259. ComponentSymbolReference40=CAP
  3260. ComponentUpdate40=1
  3261. ComponentIsDeviceSheet40=0
  3262. ComponentLibIdentifierKind41=Library Name And Type
  3263. ComponentLibraryIdentifier41=MKP_lib.DbLib/Components
  3264. ComponentDesignItemID41=ESD5Z5V0
  3265. ComponentSymbolReference41=TVS
  3266. ComponentUpdate41=1
  3267. ComponentIsDeviceSheet41=0
  3268. ComponentLibIdentifierKind42=Library Name And Type
  3269. ComponentLibraryIdentifier42=MKP_lib.DbLib/Components
  3270. ComponentDesignItemID42=EWK1HM101F11OT
  3271. ComponentSymbolReference42=CAPP
  3272. ComponentUpdate42=1
  3273. ComponentIsDeviceSheet42=0
  3274. ComponentLibIdentifierKind43=Library Name And Type
  3275. ComponentLibraryIdentifier43=MKP_lib.DbLib/Components
  3276. ComponentDesignItemID43=FN21N100J500PAG
  3277. ComponentSymbolReference43=CAP
  3278. ComponentUpdate43=1
  3279. ComponentIsDeviceSheet43=0
  3280. ComponentLibIdentifierKind44=Library Name And Type
  3281. ComponentLibraryIdentifier44=MKP_lib.DbLib/Components
  3282. ComponentDesignItemID44=GT-F0502SR20-24SMT01
  3283. ComponentSymbolReference44=CON-24PIN
  3284. ComponentUpdate44=1
  3285. ComponentIsDeviceSheet44=0
  3286. ComponentLibIdentifierKind45=Library Name And Type
  3287. ComponentLibraryIdentifier45=MKP_lib.DbLib/Components
  3288. ComponentDesignItemID45=HNB09A05
  3289. ComponentSymbolReference45=BUZZER
  3290. ComponentUpdate45=1
  3291. ComponentIsDeviceSheet45=0
  3292. ComponentLibIdentifierKind46=Library Name And Type
  3293. ComponentLibraryIdentifier46=MKP_lib.DbLib/Components
  3294. ComponentDesignItemID46=HT66F0021
  3295. ComponentSymbolReference46=HT66F0021
  3296. ComponentUpdate46=1
  3297. ComponentIsDeviceSheet46=0
  3298. ComponentLibIdentifierKind47=Library Name And Type
  3299. ComponentLibraryIdentifier47=MKP_lib.DbLib/Components
  3300. ComponentDesignItemID47=KH-IPEX-K501-29
  3301. ComponentSymbolReference47=KH-IPEX-K501-29
  3302. ComponentUpdate47=1
  3303. ComponentIsDeviceSheet47=0
  3304. ComponentLibIdentifierKind48=Library Name And Type
  3305. ComponentLibraryIdentifier48=MKP_lib.DbLib/Components
  3306. ComponentDesignItemID48=LBAT54CLT1G
  3307. ComponentSymbolReference48=DIODE-3
  3308. ComponentUpdate48=1
  3309. ComponentIsDeviceSheet48=0
  3310. ComponentLibIdentifierKind49=Library Name And Type
  3311. ComponentLibraryIdentifier49=MKP_lib.DbLib/Components
  3312. ComponentDesignItemID49=LBSS139LT1G
  3313. ComponentSymbolReference49=N-Channel
  3314. ComponentUpdate49=1
  3315. ComponentIsDeviceSheet49=0
  3316. ComponentLibIdentifierKind50=Library Name And Type
  3317. ComponentLibraryIdentifier50=MKP_lib.DbLib/Components
  3318. ComponentDesignItemID50=LK8563T
  3319. ComponentSymbolReference50=LK8563T
  3320. ComponentUpdate50=1
  3321. ComponentIsDeviceSheet50=0
  3322. ComponentLibIdentifierKind51=Library Name And Type
  3323. ComponentLibraryIdentifier51=MKP_lib.DbLib/Components
  3324. ComponentDesignItemID51=LM3481MMX/NOPB
  3325. ComponentSymbolReference51=LM3481MMX/NOPB
  3326. ComponentUpdate51=1
  3327. ComponentIsDeviceSheet51=0
  3328. ComponentLibIdentifierKind52=Library Name And Type
  3329. ComponentLibraryIdentifier52=MKP_lib.DbLib/Components
  3330. ComponentDesignItemID52=LM393DR
  3331. ComponentSymbolReference52=LM358
  3332. ComponentUpdate52=1
  3333. ComponentIsDeviceSheet52=0
  3334. ComponentLibIdentifierKind53=Library Name And Type
  3335. ComponentLibraryIdentifier53=MKP_lib.DbLib/Components
  3336. ComponentDesignItemID53=LM-SE05NRE14GA
  3337. ComponentSymbolReference53=LM-SE05NRE14GA
  3338. ComponentUpdate53=1
  3339. ComponentIsDeviceSheet53=0
  3340. ComponentLibIdentifierKind54=Library Name And Type
  3341. ComponentLibraryIdentifier54=MKP_lib.DbLib/Components
  3342. ComponentDesignItemID54=LQG15HS56NJ02D
  3343. ComponentSymbolReference54=IND
  3344. ComponentUpdate54=1
  3345. ComponentIsDeviceSheet54=0
  3346. ComponentLibIdentifierKind55=Library Name And Type
  3347. ComponentLibraryIdentifier55=MKP_lib.DbLib/Components
  3348. ComponentDesignItemID55=LQM2HPN2R2MGHL
  3349. ComponentSymbolReference55=IND
  3350. ComponentUpdate55=1
  3351. ComponentIsDeviceSheet55=0
  3352. ComponentLibIdentifierKind56=Library Name And Type
  3353. ComponentLibraryIdentifier56=MKP_lib.DbLib/Components
  3354. ComponentDesignItemID56=M7
  3355. ComponentSymbolReference56=Diode
  3356. ComponentUpdate56=1
  3357. ComponentIsDeviceSheet56=0
  3358. ComponentLibIdentifierKind57=Library Name And Type
  3359. ComponentLibraryIdentifier57=MKP_lib.DbLib/Components
  3360. ComponentDesignItemID57=MAI4020S-2R2MT
  3361. ComponentSymbolReference57=IND
  3362. ComponentUpdate57=1
  3363. ComponentIsDeviceSheet57=0
  3364. ComponentLibIdentifierKind58=Library Name And Type
  3365. ComponentLibraryIdentifier58=MKP_lib.DbLib/Components
  3366. ComponentDesignItemID58=MAX3232CDR
  3367. ComponentSymbolReference58=Max3232
  3368. ComponentUpdate58=1
  3369. ComponentIsDeviceSheet58=0
  3370. ComponentLibIdentifierKind59=Library Name And Type
  3371. ComponentLibraryIdentifier59=MKP_lib.DbLib/Components
  3372. ComponentDesignItemID59=MF-NSMF110-2
  3373. ComponentSymbolReference59=Fuse
  3374. ComponentUpdate59=1
  3375. ComponentIsDeviceSheet59=0
  3376. ComponentLibIdentifierKind60=Library Name And Type
  3377. ComponentLibraryIdentifier60=MKP_lib.DbLib/Components
  3378. ComponentDesignItemID60=MMBT3904-TP
  3379. ComponentSymbolReference60=NPN
  3380. ComponentUpdate60=1
  3381. ComponentIsDeviceSheet60=0
  3382. ComponentLibIdentifierKind61=Library Name And Type
  3383. ComponentLibraryIdentifier61=MKP_lib.DbLib/Components
  3384. ComponentDesignItemID61=MMBTA05LT1G
  3385. ComponentSymbolReference61=NPN
  3386. ComponentUpdate61=1
  3387. ComponentIsDeviceSheet61=0
  3388. ComponentLibIdentifierKind62=Library Name And Type
  3389. ComponentLibraryIdentifier62=MKP_lib.DbLib/Components
  3390. ComponentDesignItemID62=MR01A-01211
  3391. ComponentSymbolReference62=MicroSDCard
  3392. ComponentUpdate62=1
  3393. ComponentIsDeviceSheet62=0
  3394. ComponentLibIdentifierKind63=Library Name And Type
  3395. ComponentLibraryIdentifier63=MKP_lib.DbLib/Components
  3396. ComponentDesignItemID63=N4
  3397. ComponentSymbolReference63=N4
  3398. ComponentUpdate63=1
  3399. ComponentIsDeviceSheet63=0
  3400. ComponentLibIdentifierKind64=Library Name And Type
  3401. ComponentLibraryIdentifier64=MKP_lib.DbLib/Components
  3402. ComponentDesignItemID64=NDP2435KC
  3403. ComponentSymbolReference64=NDP2435KC
  3404. ComponentUpdate64=1
  3405. ComponentIsDeviceSheet64=0
  3406. ComponentLibIdentifierKind65=Library Name And Type
  3407. ComponentLibraryIdentifier65=MKP_lib.DbLib/Components
  3408. ComponentDesignItemID65=PA4341.103ANLT
  3409. ComponentSymbolReference65=IND
  3410. ComponentUpdate65=1
  3411. ComponentIsDeviceSheet65=0
  3412. ComponentLibIdentifierKind66=Library Name And Type
  3413. ComponentLibraryIdentifier66=MKP_lib.DbLib/Components
  3414. ComponentDesignItemID66=PE1206DRF7W0R015L
  3415. ComponentSymbolReference66=RES
  3416. ComponentUpdate66=1
  3417. ComponentIsDeviceSheet66=0
  3418. ComponentLibIdentifierKind67=Library Name And Type
  3419. ComponentLibraryIdentifier67=MKP_lib.DbLib/Components
  3420. ComponentDesignItemID67=PTVS5V0S1UR,115
  3421. ComponentSymbolReference67=TVS
  3422. ComponentUpdate67=1
  3423. ComponentIsDeviceSheet67=0
  3424. ComponentLibIdentifierKind68=Library Name And Type
  3425. ComponentLibraryIdentifier68=MKP_lib.DbLib/Components
  3426. ComponentDesignItemID68=PZ254R-12-4P
  3427. ComponentSymbolReference68=CON-2X2PIN
  3428. ComponentUpdate68=1
  3429. ComponentIsDeviceSheet68=0
  3430. ComponentLibIdentifierKind69=Library Name And Type
  3431. ComponentLibraryIdentifier69=MKP_lib.DbLib/Components
  3432. ComponentDesignItemID69=RC0402FR-070RL
  3433. ComponentSymbolReference69=RES
  3434. ComponentUpdate69=1
  3435. ComponentIsDeviceSheet69=0
  3436. ComponentLibIdentifierKind70=Library Name And Type
  3437. ComponentLibraryIdentifier70=MKP_lib.DbLib/Components
  3438. ComponentDesignItemID70=RC0402FR-07100KL
  3439. ComponentSymbolReference70=RES
  3440. ComponentUpdate70=1
  3441. ComponentIsDeviceSheet70=0
  3442. ComponentLibIdentifierKind71=Library Name And Type
  3443. ComponentLibraryIdentifier71=MKP_lib.DbLib/Components
  3444. ComponentDesignItemID71=RC0402FR-07100RL
  3445. ComponentSymbolReference71=RES
  3446. ComponentUpdate71=1
  3447. ComponentIsDeviceSheet71=0
  3448. ComponentLibIdentifierKind72=Library Name And Type
  3449. ComponentLibraryIdentifier72=MKP_lib.DbLib/Components
  3450. ComponentDesignItemID72=RC0402FR-07105KL
  3451. ComponentSymbolReference72=RES
  3452. ComponentUpdate72=1
  3453. ComponentIsDeviceSheet72=0
  3454. ComponentLibIdentifierKind73=Library Name And Type
  3455. ComponentLibraryIdentifier73=MKP_lib.DbLib/Components
  3456. ComponentDesignItemID73=RC0402FR-0710KL
  3457. ComponentSymbolReference73=RES
  3458. ComponentUpdate73=1
  3459. ComponentIsDeviceSheet73=0
  3460. ComponentLibIdentifierKind74=Library Name And Type
  3461. ComponentLibraryIdentifier74=MKP_lib.DbLib/Components
  3462. ComponentDesignItemID74=RC0402FR-0710RL
  3463. ComponentSymbolReference74=RES
  3464. ComponentUpdate74=1
  3465. ComponentIsDeviceSheet74=0
  3466. ComponentLibIdentifierKind75=Library Name And Type
  3467. ComponentLibraryIdentifier75=MKP_lib.DbLib/Components
  3468. ComponentDesignItemID75=RC0402FR-0715KL
  3469. ComponentSymbolReference75=RES
  3470. ComponentUpdate75=1
  3471. ComponentIsDeviceSheet75=0
  3472. ComponentLibIdentifierKind76=Library Name And Type
  3473. ComponentLibraryIdentifier76=MKP_lib.DbLib/Components
  3474. ComponentDesignItemID76=RC0402FR-071K91L
  3475. ComponentSymbolReference76=RES
  3476. ComponentUpdate76=1
  3477. ComponentIsDeviceSheet76=0
  3478. ComponentLibIdentifierKind77=Library Name And Type
  3479. ComponentLibraryIdentifier77=MKP_lib.DbLib/Components
  3480. ComponentDesignItemID77=RC0402FR-071KL
  3481. ComponentSymbolReference77=RES
  3482. ComponentUpdate77=1
  3483. ComponentIsDeviceSheet77=0
  3484. ComponentLibIdentifierKind78=Library Name And Type
  3485. ComponentLibraryIdentifier78=MKP_lib.DbLib/Components
  3486. ComponentDesignItemID78=RC0402FR-0720KL
  3487. ComponentSymbolReference78=RES
  3488. ComponentUpdate78=1
  3489. ComponentIsDeviceSheet78=0
  3490. ComponentLibIdentifierKind79=Library Name And Type
  3491. ComponentLibraryIdentifier79=MKP_lib.DbLib/Components
  3492. ComponentDesignItemID79=RC0402FR-0721K5L
  3493. ComponentSymbolReference79=RES
  3494. ComponentUpdate79=1
  3495. ComponentIsDeviceSheet79=0
  3496. ComponentLibIdentifierKind80=Library Name And Type
  3497. ComponentLibraryIdentifier80=MKP_lib.DbLib/Components
  3498. ComponentDesignItemID80=RC0402FR-0722RL
  3499. ComponentSymbolReference80=RES
  3500. ComponentUpdate80=1
  3501. ComponentIsDeviceSheet80=0
  3502. ComponentLibIdentifierKind81=Library Name And Type
  3503. ComponentLibraryIdentifier81=MKP_lib.DbLib/Components
  3504. ComponentDesignItemID81=RC0402FR-0724K9L
  3505. ComponentSymbolReference81=RES
  3506. ComponentUpdate81=1
  3507. ComponentIsDeviceSheet81=0
  3508. ComponentLibIdentifierKind82=Library Name And Type
  3509. ComponentLibraryIdentifier82=MKP_lib.DbLib/Components
  3510. ComponentDesignItemID82=RC0402FR-072K2L
  3511. ComponentSymbolReference82=RES
  3512. ComponentUpdate82=1
  3513. ComponentIsDeviceSheet82=0
  3514. ComponentLibIdentifierKind83=Library Name And Type
  3515. ComponentLibraryIdentifier83=MKP_lib.DbLib/Components
  3516. ComponentDesignItemID83=RC0402FR-072K49L
  3517. ComponentSymbolReference83=RES
  3518. ComponentUpdate83=1
  3519. ComponentIsDeviceSheet83=0
  3520. ComponentLibIdentifierKind84=Library Name And Type
  3521. ComponentLibraryIdentifier84=MKP_lib.DbLib/Components
  3522. ComponentDesignItemID84=RC0402FR-0734KL
  3523. ComponentSymbolReference84=RES
  3524. ComponentUpdate84=1
  3525. ComponentIsDeviceSheet84=0
  3526. ComponentLibIdentifierKind85=Library Name And Type
  3527. ComponentLibraryIdentifier85=MKP_lib.DbLib/Components
  3528. ComponentDesignItemID85=RC0402FR-0739K2L
  3529. ComponentSymbolReference85=RES
  3530. ComponentUpdate85=1
  3531. ComponentIsDeviceSheet85=0
  3532. ComponentLibIdentifierKind86=Library Name And Type
  3533. ComponentLibraryIdentifier86=MKP_lib.DbLib/Components
  3534. ComponentDesignItemID86=RC0402FR-073K3L
  3535. ComponentSymbolReference86=RES
  3536. ComponentUpdate86=1
  3537. ComponentIsDeviceSheet86=0
  3538. ComponentLibIdentifierKind87=Library Name And Type
  3539. ComponentLibraryIdentifier87=MKP_lib.DbLib/Components
  3540. ComponentDesignItemID87=RC0402FR-07470RL
  3541. ComponentSymbolReference87=RES
  3542. ComponentUpdate87=1
  3543. ComponentIsDeviceSheet87=0
  3544. ComponentLibIdentifierKind88=Library Name And Type
  3545. ComponentLibraryIdentifier88=MKP_lib.DbLib/Components
  3546. ComponentDesignItemID88=RC0402FR-0747KL
  3547. ComponentSymbolReference88=RES
  3548. ComponentUpdate88=1
  3549. ComponentIsDeviceSheet88=0
  3550. ComponentLibIdentifierKind89=Library Name And Type
  3551. ComponentLibraryIdentifier89=MKP_lib.DbLib/Components
  3552. ComponentDesignItemID89=RC0402FR-074K7L
  3553. ComponentSymbolReference89=RES
  3554. ComponentUpdate89=1
  3555. ComponentIsDeviceSheet89=0
  3556. ComponentLibIdentifierKind90=Library Name And Type
  3557. ComponentLibraryIdentifier90=MKP_lib.DbLib/Components
  3558. ComponentDesignItemID90=RC0402FR-0757K6P
  3559. ComponentSymbolReference90=RES
  3560. ComponentUpdate90=1
  3561. ComponentIsDeviceSheet90=0
  3562. ComponentLibIdentifierKind91=Library Name And Type
  3563. ComponentLibraryIdentifier91=MKP_lib.DbLib/Components
  3564. ComponentDesignItemID91=RC0402FR-075K6L
  3565. ComponentSymbolReference91=RES
  3566. ComponentUpdate91=1
  3567. ComponentIsDeviceSheet91=0
  3568. ComponentLibIdentifierKind92=Library Name And Type
  3569. ComponentLibraryIdentifier92=MKP_lib.DbLib/Components
  3570. ComponentDesignItemID92=RC0402FR-0768KL
  3571. ComponentSymbolReference92=RES
  3572. ComponentUpdate92=1
  3573. ComponentIsDeviceSheet92=0
  3574. ComponentLibIdentifierKind93=Library Name And Type
  3575. ComponentLibraryIdentifier93=MKP_lib.DbLib/Components
  3576. ComponentDesignItemID93=RC0402FR-0769K8L
  3577. ComponentSymbolReference93=RES
  3578. ComponentUpdate93=1
  3579. ComponentIsDeviceSheet93=0
  3580. ComponentLibIdentifierKind94=Library Name And Type
  3581. ComponentLibraryIdentifier94=MKP_lib.DbLib/Components
  3582. ComponentDesignItemID94=RC0402FR-076K8L
  3583. ComponentSymbolReference94=RES
  3584. ComponentUpdate94=1
  3585. ComponentIsDeviceSheet94=0
  3586. ComponentLibIdentifierKind95=Library Name And Type
  3587. ComponentLibraryIdentifier95=MKP_lib.DbLib/Components
  3588. ComponentDesignItemID95=RC0402FR-0775RL
  3589. ComponentSymbolReference95=RES
  3590. ComponentUpdate95=1
  3591. ComponentIsDeviceSheet95=0
  3592. ComponentLibIdentifierKind96=Library Name And Type
  3593. ComponentLibraryIdentifier96=MKP_lib.DbLib/Components
  3594. ComponentDesignItemID96=RC0402FR-0784K5L
  3595. ComponentSymbolReference96=RES
  3596. ComponentUpdate96=1
  3597. ComponentIsDeviceSheet96=0
  3598. ComponentLibIdentifierKind97=Library Name And Type
  3599. ComponentLibraryIdentifier97=MKP_lib.DbLib/Components
  3600. ComponentDesignItemID97=RI0603L000JT
  3601. ComponentSymbolReference97=RES
  3602. ComponentUpdate97=1
  3603. ComponentIsDeviceSheet97=0
  3604. ComponentLibIdentifierKind98=Library Name And Type
  3605. ComponentLibraryIdentifier98=MKP_lib.DbLib/Components
  3606. ComponentDesignItemID98=RI0603L1R00FT
  3607. ComponentSymbolReference98=RES
  3608. ComponentUpdate98=1
  3609. ComponentIsDeviceSheet98=0
  3610. ComponentLibIdentifierKind99=Library Name And Type
  3611. ComponentLibraryIdentifier99=MKP_lib.DbLib/Components
  3612. ComponentDesignItemID99=RI1206L000JT
  3613. ComponentSymbolReference99=RES
  3614. ComponentUpdate99=1
  3615. ComponentIsDeviceSheet99=0
  3616. ComponentLibIdentifierKind100=Library Name And Type
  3617. ComponentLibraryIdentifier100=MKP_lib.DbLib/Components
  3618. ComponentDesignItemID100=RS1G126XC5
  3619. ComponentSymbolReference100=RS1G126XC5
  3620. ComponentUpdate100=1
  3621. ComponentIsDeviceSheet100=0
  3622. ComponentLibIdentifierKind101=Library Name And Type
  3623. ComponentLibraryIdentifier101=MKP_lib.DbLib/Components
  3624. ComponentDesignItemID101=RT1H101M0810
  3625. ComponentSymbolReference101=CAPP
  3626. ComponentUpdate101=1
  3627. ComponentIsDeviceSheet101=0
  3628. ComponentLibIdentifierKind102=Library Name And Type
  3629. ComponentLibraryIdentifier102=MKP_lib.DbLib/Components
  3630. ComponentDesignItemID102=RT7-174AAM1A
  3631. ComponentSymbolReference102=RT7-174AAM1A
  3632. ComponentUpdate102=1
  3633. ComponentIsDeviceSheet102=0
  3634. ComponentLibIdentifierKind103=Library Name And Type
  3635. ComponentLibraryIdentifier103=MKP_lib.DbLib/Components
  3636. ComponentDesignItemID103=RVT1A331M0607
  3637. ComponentSymbolReference103=CAPP
  3638. ComponentUpdate103=1
  3639. ComponentIsDeviceSheet103=0
  3640. ComponentLibIdentifierKind104=Library Name And Type
  3641. ComponentLibraryIdentifier104=MKP_lib.DbLib/Components
  3642. ComponentDesignItemID104=RVT2A100M0605
  3643. ComponentSymbolReference104=CAPP
  3644. ComponentUpdate104=1
  3645. ComponentIsDeviceSheet104=0
  3646. ComponentLibIdentifierKind105=Library Name And Type
  3647. ComponentLibraryIdentifier105=MKP_lib.DbLib/Components
  3648. ComponentDesignItemID105=RY3408
  3649. ComponentSymbolReference105=RY3408
  3650. ComponentUpdate105=1
  3651. ComponentIsDeviceSheet105=0
  3652. ComponentLibIdentifierKind106=Library Name And Type
  3653. ComponentLibraryIdentifier106=MKP_lib.DbLib/Components
  3654. ComponentDesignItemID106=S10M
  3655. ComponentSymbolReference106=Diode
  3656. ComponentUpdate106=1
  3657. ComponentIsDeviceSheet106=0
  3658. ComponentLibIdentifierKind107=Library Name And Type
  3659. ComponentLibraryIdentifier107=MKP_lib.DbLib/Components
  3660. ComponentDesignItemID107=SGM2028-ADJYN5G/TR
  3661. ComponentSymbolReference107=SGM2028-ADJYN5G/TR
  3662. ComponentUpdate107=1
  3663. ComponentIsDeviceSheet107=0
  3664. ComponentLibIdentifierKind108=Library Name And Type
  3665. ComponentLibraryIdentifier108=MKP_lib.DbLib/Components
  3666. ComponentDesignItemID108=SI2333CDS
  3667. ComponentSymbolReference108=P-Channel
  3668. ComponentUpdate108=1
  3669. ComponentIsDeviceSheet108=0
  3670. ComponentLibIdentifierKind109=Library Name And Type
  3671. ComponentLibraryIdentifier109=MKP_lib.DbLib/Components
  3672. ComponentDesignItemID109=SIM8066-6-1-14-01-A
  3673. ComponentSymbolReference109=SIM8066-6-1-14-01-A
  3674. ComponentUpdate109=1
  3675. ComponentIsDeviceSheet109=0
  3676. ComponentLibIdentifierKind110=Library Name And Type
  3677. ComponentLibraryIdentifier110=MKP_lib.DbLib/Components
  3678. ComponentDesignItemID110=SMF05CT1G-P
  3679. ComponentSymbolReference110=SMF05CT1G-P
  3680. ComponentUpdate110=1
  3681. ComponentIsDeviceSheet110=0
  3682. ComponentLibIdentifierKind111=Library Name And Type
  3683. ComponentLibraryIdentifier111=MKP_lib.DbLib/Components
  3684. ComponentDesignItemID111=SMF54A
  3685. ComponentSymbolReference111=TVS
  3686. ComponentUpdate111=1
  3687. ComponentIsDeviceSheet111=0
  3688. ComponentLibIdentifierKind112=Library Name And Type
  3689. ComponentLibraryIdentifier112=MKP_lib.DbLib/Components
  3690. ComponentDesignItemID112=SR05-04A
  3691. ComponentSymbolReference112=SR05-04A
  3692. ComponentUpdate112=1
  3693. ComponentIsDeviceSheet112=0
  3694. ComponentLibIdentifierKind113=Library Name And Type
  3695. ComponentLibraryIdentifier113=MKP_lib.DbLib/Components
  3696. ComponentDesignItemID113=SRP6540-2R2M
  3697. ComponentSymbolReference113=IND
  3698. ComponentUpdate113=1
  3699. ComponentIsDeviceSheet113=0
  3700. ComponentLibIdentifierKind114=Library Name And Type
  3701. ComponentLibraryIdentifier114=MKP_lib.DbLib/Components
  3702. ComponentDesignItemID114=SS34A
  3703. ComponentSymbolReference114=SCHOTTKY
  3704. ComponentUpdate114=1
  3705. ComponentIsDeviceSheet114=0
  3706. ComponentLibIdentifierKind115=Library Name And Type
  3707. ComponentLibraryIdentifier115=MKP_lib.DbLib/Components
  3708. ComponentDesignItemID115=SS56F
  3709. ComponentSymbolReference115=SCHOTTKY
  3710. ComponentUpdate115=1
  3711. ComponentIsDeviceSheet115=0
  3712. ComponentLibIdentifierKind116=Library Name And Type
  3713. ComponentLibraryIdentifier116=MKP_lib.DbLib/Components
  3714. ComponentDesignItemID116=SX20Y025000B91T002
  3715. ComponentSymbolReference116=Q22FA12800078
  3716. ComponentUpdate116=1
  3717. ComponentIsDeviceSheet116=0
  3718. ComponentLibIdentifierKind117=Library Name And Type
  3719. ComponentLibraryIdentifier117=MKP_lib.DbLib/Components
  3720. ComponentDesignItemID117=TAJB476K010RNJ
  3721. ComponentSymbolReference117=CAPP
  3722. ComponentUpdate117=1
  3723. ComponentIsDeviceSheet117=0
  3724. ComponentLibIdentifierKind118=Library Name And Type
  3725. ComponentLibraryIdentifier118=MKP_lib.DbLib/Components
  3726. ComponentDesignItemID118=TannhietSOM
  3727. ComponentSymbolReference118=Tannhiet
  3728. ComponentUpdate118=1
  3729. ComponentIsDeviceSheet118=0
  3730. ComponentLibIdentifierKind119=Library Name And Type
  3731. ComponentLibraryIdentifier119=MKP_lib.DbLib/Components
  3732. ComponentDesignItemID119=TP
  3733. ComponentSymbolReference119=TP
  3734. ComponentUpdate119=1
  3735. ComponentIsDeviceSheet119=0
  3736. ComponentLibIdentifierKind120=Library Name And Type
  3737. ComponentLibraryIdentifier120=MKP_lib.DbLib/Components
  3738. ComponentDesignItemID120=TS-1090S-AR02026
  3739. ComponentSymbolReference120=SW-4PIN
  3740. ComponentUpdate120=1
  3741. ComponentIsDeviceSheet120=0
  3742. ComponentLibIdentifierKind121=Library Name And Type
  3743. ComponentLibraryIdentifier121=MKP_lib.DbLib/Components
  3744. ComponentDesignItemID121=UMK212B7104KG-T
  3745. ComponentSymbolReference121=CAP
  3746. ComponentUpdate121=1
  3747. ComponentIsDeviceSheet121=0
  3748. ComponentLibIdentifierKind122=Library Name And Type
  3749. ComponentLibraryIdentifier122=MKP_lib.DbLib/Components
  3750. ComponentDesignItemID122=UPZ2012E102-1R5TF
  3751. ComponentSymbolReference122=FB
  3752. ComponentUpdate122=1
  3753. ComponentIsDeviceSheet122=0
  3754. ComponentLibIdentifierKind123=Library Name And Type
  3755. ComponentLibraryIdentifier123=MKP_lib.DbLib/Components
  3756. ComponentDesignItemID123=VH3.96-3A
  3757. ComponentSymbolReference123=CON-3PIN
  3758. ComponentUpdate123=1
  3759. ComponentIsDeviceSheet123=0
  3760. ComponentLibIdentifierKind124=Library Name And Type
  3761. ComponentLibraryIdentifier124=MKP_lib.DbLib/Components
  3762. ComponentDesignItemID124=XL-1608SURC-06
  3763. ComponentSymbolReference124=LED
  3764. ComponentUpdate124=1
  3765. ComponentIsDeviceSheet124=0
  3766. ComponentLibIdentifierKind125=Library Name And Type
  3767. ComponentLibraryIdentifier125=MKP_lib.DbLib/Components
  3768. ComponentDesignItemID125=XL-1608SYGC-04
  3769. ComponentSymbolReference125=LED
  3770. ComponentUpdate125=1
  3771. ComponentIsDeviceSheet125=0
  3772. ComponentLibIdentifierKind126=Library Name And Type
  3773. ComponentLibraryIdentifier126=MKP_lib.DbLib/Components
  3774. ComponentDesignItemID126=XL-DZ304SURD/3
  3775. ComponentSymbolReference126=LED3
  3776. ComponentUpdate126=1
  3777. ComponentIsDeviceSheet126=0
  3778. ComponentLibIdentifierKind127=Library Name And Type
  3779. ComponentLibraryIdentifier127=MKP_lib.DbLib/Components
  3780. ComponentDesignItemID127=YI201209U601-2R5T
  3781. ComponentSymbolReference127=FB
  3782. ComponentUpdate127=1
  3783. ComponentIsDeviceSheet127=0
  3784. ComponentLibIdentifierKind128=Library Name And Type
  3785. ComponentLibraryIdentifier128=MKP_lib.DbLib/Components
  3786. ComponentDesignItemID128=YJL2305A
  3787. ComponentSymbolReference128=P-Channel
  3788. ComponentUpdate128=1
  3789. ComponentIsDeviceSheet128=0
  3790. ComponentLibIdentifierKind129=Library Name And Type
  3791. ComponentLibraryIdentifier129=MKP_lib.DbLib/Components
  3792. ComponentDesignItemID129=YT8531SH-CA
  3793. ComponentSymbolReference129=YT8531SH-CA
  3794. ComponentUpdate129=1
  3795. ComponentIsDeviceSheet129=0
  3796. ComponentLibIdentifierKind130=Library Name And Type
  3797. ComponentLibraryIdentifier130=MKP_lib.DbLib/Components
  3798. ComponentDesignItemID130=ZX-PZ2.54-2-3PZZ
  3799. ComponentSymbolReference130=CON-3x2PIN
  3800. ComponentUpdate130=1
  3801. ComponentIsDeviceSheet130=0
  3802. ComponentLibIdentifierKind131=Library Name And Type
  3803. ComponentLibraryIdentifier131=MKP_lib.DbLib
  3804. ComponentDesignItemID131=CSD19538Q3A
  3805. ComponentSymbolReference131=Mosfet N-Chanel
  3806. ComponentUpdate131=1
  3807. ComponentIsDeviceSheet131=0
  3808. ComponentLibIdentifierKind132=Library Name And Type
  3809. ComponentLibraryIdentifier132=MKP_lib.DbLib
  3810. ComponentDesignItemID132=JUMP-2.54-2PIN-M-TH
  3811. ComponentSymbolReference132=CON-2PIN
  3812. ComponentUpdate132=1
  3813. ComponentIsDeviceSheet132=0
  3814. ComponentLibIdentifierKind133=Library Name And Type
  3815. ComponentLibraryIdentifier133=MKP_lib.DbLib
  3816. ComponentDesignItemID133=PH-2A
  3817. ComponentSymbolReference133=CON-2PIN
  3818. ComponentUpdate133=1
  3819. ComponentIsDeviceSheet133=0
  3820. ComponentLibIdentifierKind134=Library Name And Type
  3821. ComponentLibraryIdentifier134=MYC_LR3568.SchLib
  3822. ComponentDesignItemID134=MYC-LR3568X
  3823. ComponentSymbolReference134=MYC-LR3568X
  3824. ComponentUpdate134=1
  3825. ComponentIsDeviceSheet134=0
  3826. [Comparison Options]
  3827. ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3828. ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3829. ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3830. ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3831. ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0
  3832. ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0
  3833. [SmartPDF]
  3834. PageOptions=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=Letter|PaperIndex=1