CamBox_RV1106.PrjPcb 117 KB

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