Camera_Box_RK3562.PrjPcb 118 KB

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