Camera_Box_RK3562_Lot_500.PrjPcb 146 KB

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