CamBox_RV1106_lot_1000.PrjPcb 135 KB

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