project.pbxproj 271 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 51;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 5F5E1E902536C944007EAC23 /* LMPlayVideoCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E8F2536C944007EAC23 /* LMPlayVideoCtr.swift */; };
  10. 5F5E1E922536C95C007EAC23 /* LMPlayVideoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E912536C95C007EAC23 /* LMPlayVideoView.swift */; };
  11. 5F5E1E942536C97F007EAC23 /* LMPlayVideoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E932536C97F007EAC23 /* LMPlayVideoModel.swift */; };
  12. 5F5E1E962536C99D007EAC23 /* LMPlayVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E952536C99D007EAC23 /* LMPlayVideoManager.swift */; };
  13. 5F5E1E982536CDA9007EAC23 /* LMPlayVideoService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E972536CDA9007EAC23 /* LMPlayVideoService.swift */; };
  14. 5F5E1E9A2536CEE6007EAC23 /* LMPlayVideoApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E992536CEE6007EAC23 /* LMPlayVideoApi.swift */; };
  15. 5F5E1E9C2536CFB6007EAC23 /* LMPlayVideoRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E1E9B2536CFB6007EAC23 /* LMPlayVideoRequest.swift */; };
  16. 5F63A8292539BCF200DD9DD6 /* CodeScan.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 5F63A8212539BCF200DD9DD6 /* CodeScan.bundle */; };
  17. 5F63A82A2539BCF200DD9DD6 /* LBXScanNetAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8222539BCF200DD9DD6 /* LBXScanNetAnimation.swift */; };
  18. 5F63A82B2539BCF200DD9DD6 /* LBXScanView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8232539BCF200DD9DD6 /* LBXScanView.swift */; };
  19. 5F63A82C2539BCF200DD9DD6 /* LBXScanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8242539BCF200DD9DD6 /* LBXScanViewController.swift */; };
  20. 5F63A82D2539BCF200DD9DD6 /* LBXScanLineAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8252539BCF200DD9DD6 /* LBXScanLineAnimation.swift */; };
  21. 5F63A82E2539BCF200DD9DD6 /* LBXScanViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8262539BCF200DD9DD6 /* LBXScanViewStyle.swift */; };
  22. 5F63A82F2539BCF200DD9DD6 /* LBXPermissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8272539BCF200DD9DD6 /* LBXPermissions.swift */; };
  23. 5F63A8302539BCF200DD9DD6 /* LBXScanWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F63A8282539BCF200DD9DD6 /* LBXScanWrapper.swift */; };
  24. 5F6802AD253C845E0002577C /* LMRepairCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802AC253C845E0002577C /* LMRepairCtr.swift */; };
  25. 5F6802AF253C84710002577C /* LMRepairManagerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802AE253C84710002577C /* LMRepairManagerView.swift */; };
  26. 5F6802B2253C84B50002577C /* LMRepairModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802B1253C84B50002577C /* LMRepairModel.swift */; };
  27. 5F6802B4253C84D30002577C /* LMRepairManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6802B3253C84D30002577C /* LMRepairManager.swift */; };
  28. 5F6A10D72537E33C007A20DC /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10D62537E33C007A20DC /* CoreAudio.framework */; };
  29. 5F6A10D92537E348007A20DC /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10D82537E348007A20DC /* MediaPlayer.framework */; };
  30. 5F6A10DB2537E353007A20DC /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10DA2537E353007A20DC /* AudioToolbox.framework */; };
  31. 5F6A10DC2537E362007A20DC /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92362537047500003727 /* VideoToolbox.framework */; };
  32. 5F6A10DE2537E371007A20DC /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10DD2537E371007A20DC /* OpenGLES.framework */; };
  33. 5F6A10E02537E38C007A20DC /* MediaAccessibility.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10DF2537E38C007A20DC /* MediaAccessibility.framework */; };
  34. 5F6A10E22537E39B007A20DC /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10E12537E39B007A20DC /* CoreVideo.framework */; };
  35. 5F6A10E32537E3A4007A20DC /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED922E2537041E00003727 /* AVFoundation.framework */; };
  36. 5F6A10E42537E3B3007A20DC /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92382537048700003727 /* CoreMedia.framework */; };
  37. 5F6A10E52537E3CB007A20DC /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED922C253703F600003727 /* libz.tbd */; };
  38. 5F6A10E72537E715007A20DC /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10E62537E715007A20DC /* libc++.tbd */; };
  39. 5F6A11462537FDE0007A20DC /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A10ED2537FDE0007A20DC /* libcrypto.a */; };
  40. 5F6A11472537FDE0007A20DC /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A11452537FDE0007A20DC /* libssl.a */; };
  41. 5F6A11492537FEA8007A20DC /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92302537042E00003727 /* libiconv.tbd */; };
  42. 5F6A114A2537FEB9007A20DC /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92322537044E00003727 /* SystemConfiguration.framework */; };
  43. 5F6A114B2537FECA007A20DC /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED92342537045B00003727 /* MobileCoreServices.framework */; };
  44. 5F6A114C2537FEEC007A20DC /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED923A2537049600003727 /* GLKit.framework */; };
  45. 5F6A114D2537FF04007A20DC /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FED923C253704A300003727 /* OpenAL.framework */; };
  46. 5F6A115225382E13007A20DC /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A115125382DF8007A20DC /* libsqlite3.0.tbd */; };
  47. 5F6A115425382E58007A20DC /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A115325382E58007A20DC /* CoreTelephony.framework */; };
  48. 5F6A115625382E7F007A20DC /* libiconv.2.4.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A115525382E76007A20DC /* libiconv.2.4.0.tbd */; };
  49. 5F6A115725382E95007A20DC /* libbz2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F6A11482537FE83007A20DC /* libbz2.tbd */; };
  50. 83025EEB25E7C40000356051 /* LMAlarmDispathVctr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83025EED25E7C40000356051 /* LMAlarmDispathVctr.xib */; };
  51. 8304615425295F9600B6B291 /* LMNewStrategyGroupCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8304615325295F9600B6B291 /* LMNewStrategyGroupCell.swift */; };
  52. 830461562529CBCE00B6B291 /* LMNewStrategyGroupService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 830461552529CBCE00B6B291 /* LMNewStrategyGroupService.swift */; };
  53. 83068D2F2588B13400170DDE /* LMMonitorDetailRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83068D2E2588B13400170DDE /* LMMonitorDetailRequest.swift */; };
  54. 83068D342588B14400170DDE /* LMMonitorDetailApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83068D332588B14400170DDE /* LMMonitorDetailApi.swift */; };
  55. 83068D392588B14D00170DDE /* LMMonitorDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83068D382588B14D00170DDE /* LMMonitorDetailModel.swift */; };
  56. 831555AE2589F38200999EA7 /* LMAirQualityDatailServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831555AD2589F38200999EA7 /* LMAirQualityDatailServer.swift */; };
  57. 831F1A04258A17310078DB14 /* LMAlertDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A03258A17310078DB14 /* LMAlertDetailManager.swift */; };
  58. 831F1A0C258A174D0078DB14 /* LMAlertDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A0B258A174D0078DB14 /* LMAlertDetailView.swift */; };
  59. 831F1A11258A175D0078DB14 /* LMAlertDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A10258A175D0078DB14 /* LMAlertDetailCtr.swift */; };
  60. 831F1A16258A17810078DB14 /* LMLEDDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A15258A17810078DB14 /* LMLEDDetailManager.swift */; };
  61. 831F1A1B258A179B0078DB14 /* LMEDDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A1A258A179B0078DB14 /* LMEDDetailView.swift */; };
  62. 831F1A20258A17AB0078DB14 /* LMEDDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A1F258A17AB0078DB14 /* LMEDDetailCtr.swift */; };
  63. 831F1A25258A17C90078DB14 /* LMWifiDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A24258A17C90078DB14 /* LMWifiDetailManager.swift */; };
  64. 831F1A2A258A17E10078DB14 /* LMWifiDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A29258A17E10078DB14 /* LMWifiDetailView.swift */; };
  65. 831F1A2F258A17F30078DB14 /* LMWifiDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A2E258A17F30078DB14 /* LMWifiDetailCtr.swift */; };
  66. 831F1A34258A181A0078DB14 /* LMChargeDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A33258A181A0078DB14 /* LMChargeDetailManager.swift */; };
  67. 831F1A39258A18270078DB14 /* LMChargeDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A38258A18270078DB14 /* LMChargeDetailView.swift */; };
  68. 831F1A3E258A18390078DB14 /* LMChargeDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831F1A3D258A18390078DB14 /* LMChargeDetailCtr.swift */; };
  69. 8329FEEC25B80F460001D20A /* libEZOpenSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8329FEEB25B80F450001D20A /* libEZOpenSDK.a */; };
  70. 8334ED5525122B9900E0766A /* LMLampDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8334ED5425122B9900E0766A /* LMLampDetailCell.swift */; };
  71. 833559CE2510C6D8000F1EF2 /* LMLoopVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559CD2510C6D8000F1EF2 /* LMLoopVCtr.swift */; };
  72. 833559D02510C705000F1EF2 /* LMGroupVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559CF2510C705000F1EF2 /* LMGroupVCtr.swift */; };
  73. 833559D22510C725000F1EF2 /* LMStrategyVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559D12510C725000F1EF2 /* LMStrategyVCtr.swift */; };
  74. 833559D42510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833559D32510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift */; };
  75. 8341650E25831A23006FAB0D /* LMLightPoleListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341650D25831A23006FAB0D /* LMLightPoleListView.swift */; };
  76. 8341651325832220006FAB0D /* LMLightPoleSever.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341651225832220006FAB0D /* LMLightPoleSever.swift */; };
  77. 8341651825834175006FAB0D /* LMLightPoleListRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341651725834175006FAB0D /* LMLightPoleListRequest.swift */; };
  78. 8341651D25834195006FAB0D /* LMLightPoleListApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341651C25834195006FAB0D /* LMLightPoleListApi.swift */; };
  79. 8341652525835899006FAB0D /* LMLightPoleListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341652425835899006FAB0D /* LMLightPoleListCell.swift */; };
  80. 8341652F25837CFC006FAB0D /* LMLightPoleDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8341652E25837CFC006FAB0D /* LMLightPoleDetailCtr.swift */; };
  81. 8349179E25308D0D006B44BD /* LMLightPoleCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8349179D25308D0D006B44BD /* LMLightPoleCtr.swift */; };
  82. 834917A025308D1F006B44BD /* LMLightPoleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8349179F25308D1F006B44BD /* LMLightPoleView.swift */; };
  83. 834917A225308D49006B44BD /* LMLightPoleModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834917A125308D49006B44BD /* LMLightPoleModel.swift */; };
  84. 834917A425308D5D006B44BD /* LMLightPoleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834917A325308D5D006B44BD /* LMLightPoleManager.swift */; };
  85. 834B89842514B65300E2108E /* LMLampDetailContentCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89832514B65300E2108E /* LMLampDetailContentCtr.swift */; };
  86. 834B89862514B66E00E2108E /* LMLampDetailContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89852514B66E00E2108E /* LMLampDetailContentView.swift */; };
  87. 834B89882514B69700E2108E /* LMLampDetailContentModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89872514B69700E2108E /* LMLampDetailContentModel.swift */; };
  88. 834B898A2514B93C00E2108E /* LMLampDetailContentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B89892514B93C00E2108E /* LMLampDetailContentManager.swift */; };
  89. 834B898C2514BBD400E2108E /* LMLampDetaiContentApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B898B2514BBD400E2108E /* LMLampDetaiContentApi.swift */; };
  90. 834B898E2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B898D2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift */; };
  91. 834B89902514D63E00E2108E /* LMLampDetailContentService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834B898F2514D63E00E2108E /* LMLampDetailContentService.swift */; };
  92. 834E295D251C370900BC3482 /* LMMainLoopService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E295C251C370900BC3482 /* LMMainLoopService.swift */; };
  93. 834E295F251C37BA00BC3482 /* LMMainLoopApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E295E251C37BA00BC3482 /* LMMainLoopApi.swift */; };
  94. 834E2961251C37CF00BC3482 /* LMMainLoopModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2960251C37CF00BC3482 /* LMMainLoopModel.swift */; };
  95. 834E2963251C37E400BC3482 /* LMMainLoopRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2962251C37E400BC3482 /* LMMainLoopRequest.swift */; };
  96. 834E2965251C459100BC3482 /* LMMainLoopCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2964251C459100BC3482 /* LMMainLoopCell.swift */; };
  97. 834E296C251CBD8E00BC3482 /* LMNewLoopCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E296B251CBD8E00BC3482 /* LMNewLoopCtr.swift */; };
  98. 834E296E251CBDA500BC3482 /* LMNewLoopTwoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E296D251CBDA500BC3482 /* LMNewLoopTwoView.swift */; };
  99. 834E2970251CBDBC00BC3482 /* LMNewLoopModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E296F251CBDBC00BC3482 /* LMNewLoopModel.swift */; };
  100. 834E2972251CBDCA00BC3482 /* LMNewLoopApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2971251CBDCA00BC3482 /* LMNewLoopApi.swift */; };
  101. 834E2974251CBDE100BC3482 /* LMNewLoopRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2973251CBDE100BC3482 /* LMNewLoopRequest.swift */; };
  102. 834E2976251CBDFD00BC3482 /* LMNewLoopManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E2975251CBDFD00BC3482 /* LMNewLoopManager.swift */; };
  103. 834E45642511E85D00ED6B71 /* LMLampManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45632511E85D00ED6B71 /* LMLampManager.swift */; };
  104. 834E45662511E88300ED6B71 /* LMLampDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45652511E88300ED6B71 /* LMLampDetailView.swift */; };
  105. 834E45682511F4E300ED6B71 /* LMLampServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45672511F4E300ED6B71 /* LMLampServer.swift */; };
  106. 834E456A2511F69A00ED6B71 /* LMLampDetailHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E45692511F69A00ED6B71 /* LMLampDetailHttpRequest.swift */; };
  107. 834E456E2511F6C600ED6B71 /* LMLampDetailApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E456D2511F6C600ED6B71 /* LMLampDetailApi.swift */; };
  108. 834E4570251201FB00ED6B71 /* LMLampDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834E456F251201FB00ED6B71 /* LMLampDetailModel.swift */; };
  109. 834F9D832523726000BFFE58 /* LMGroupSettingService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 834F9D822523725F00BFFE58 /* LMGroupSettingService.swift */; };
  110. 8350348925287A6A00BF947A /* LMNewStrategyGroupCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348825287A6A00BF947A /* LMNewStrategyGroupCtr.swift */; };
  111. 8350348B25287A8800BF947A /* LMNewStrategyGroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348A25287A8800BF947A /* LMNewStrategyGroupView.swift */; };
  112. 8350348D25287AA500BF947A /* LMNewStrategyGroupModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348C25287AA500BF947A /* LMNewStrategyGroupModel.swift */; };
  113. 8350348F25287AC000BF947A /* LMNewStrategyGroupApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350348E25287AC000BF947A /* LMNewStrategyGroupApi.swift */; };
  114. 8350349125287AE800BF947A /* LMNewStrategyGroupRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350349025287AE800BF947A /* LMNewStrategyGroupRequest.swift */; };
  115. 8350349325287B0800BF947A /* LMNewStrategyGroupManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8350349225287B0800BF947A /* LMNewStrategyGroupManager.swift */; };
  116. 83559F372522339300B166C4 /* LMDetailContentCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F362522339300B166C4 /* LMDetailContentCtr.swift */; };
  117. 83559F39252233B800B166C4 /* LMDetailContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F38252233B800B166C4 /* LMDetailContentView.swift */; };
  118. 83559F3B252233D100B166C4 /* LMDetailContentModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F3A252233D100B166C4 /* LMDetailContentModel.swift */; };
  119. 83559F3D252233E400B166C4 /* LMDetailContentApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F3C252233E400B166C4 /* LMDetailContentApi.swift */; };
  120. 83559F3F2522340000B166C4 /* LMDetailContentHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F3E2522340000B166C4 /* LMDetailContentHttpRequest.swift */; };
  121. 83559F412522341400B166C4 /* LMDetailContentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F402522341400B166C4 /* LMDetailContentManager.swift */; };
  122. 83559F432522342B00B166C4 /* LMDetailContentService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F422522342B00B166C4 /* LMDetailContentService.swift */; };
  123. 83559F452522490500B166C4 /* LMDetailContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83559F442522490500B166C4 /* LMDetailContentCell.swift */; };
  124. 8356659C25242B1100425C38 /* LMStrategyOperationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356659B25242B1100425C38 /* LMStrategyOperationCell.swift */; };
  125. 8356659E2524580500425C38 /* LMStrategyOperationDetailCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356659D2524580500425C38 /* LMStrategyOperationDetailCell.swift */; };
  126. 835665A02524883000425C38 /* LMHistoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356659F2524883000425C38 /* LMHistoryView.swift */; };
  127. 835665A22524884400425C38 /* LMHistoryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A12524884400425C38 /* LMHistoryModel.swift */; };
  128. 835665A42524885500425C38 /* LMHistoryApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A32524885500425C38 /* LMHistoryApi.swift */; };
  129. 835665A62524886C00425C38 /* LMHistoryHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A52524886C00425C38 /* LMHistoryHttpRequest.swift */; };
  130. 835665A82524888200425C38 /* LMHistoryManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A72524888200425C38 /* LMHistoryManager.swift */; };
  131. 835665AA25248FDE00425C38 /* LMHistoryService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665A925248FDE00425C38 /* LMHistoryService.swift */; };
  132. 835665AC25249BF400425C38 /* LMHistoryCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 835665AB25249BF400425C38 /* LMHistoryCell.swift */; };
  133. 8356E1B5253FCC400024561F /* LMRepairService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356E1B4253FCC400024561F /* LMRepairService.swift */; };
  134. 8356E1B7253FCD200024561F /* LMRepairApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356E1B6253FCD200024561F /* LMRepairApi.swift */; };
  135. 8356E1B9253FCE7B0024561F /* LMRepairRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8356E1B8253FCE7B0024561F /* LMRepairRequest.swift */; };
  136. 83577A2A2519DC89002A83A0 /* LMMainLoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83577A292519DC89002A83A0 /* LMMainLoopView.swift */; };
  137. 83577A2C2519DECC002A83A0 /* LMMainLoopManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83577A2B2519DECC002A83A0 /* LMMainLoopManager.swift */; };
  138. 8359C04A253424500027518B /* LMMeteorologicalCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C049253424500027518B /* LMMeteorologicalCell.swift */; };
  139. 8359C04C253427920027518B /* LMMeteorologicalApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C04B253427920027518B /* LMMeteorologicalApi.swift */; };
  140. 8359C04E253427A70027518B /* LMMeteorologicalRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C04D253427A70027518B /* LMMeteorologicalRequest.swift */; };
  141. 8359C050253429500027518B /* LMMeteorologicalService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C04F253429500027518B /* LMMeteorologicalService.swift */; };
  142. 8359C05225343C1B0027518B /* LMLightApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C05125343C1B0027518B /* LMLightApi.swift */; };
  143. 8359C05425343C400027518B /* LMLightRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C05325343C400027518B /* LMLightRequest.swift */; };
  144. 8359C056253440110027518B /* LMLightService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C055253440110027518B /* LMLightService.swift */; };
  145. 8359C0582534456B0027518B /* LMLightViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8359C0572534456B0027518B /* LMLightViewCell.swift */; };
  146. 835F1B9125E89DD0006A7CA1 /* LMDimmingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 835F1B9325E89DD0006A7CA1 /* LMDimmingView.xib */; };
  147. 8360226F2533434A00416047 /* LMLightManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360226E2533434A00416047 /* LMLightManager.swift */; };
  148. 83602271253345CE00416047 /* LMLightModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83602270253345CE00416047 /* LMLightModel.swift */; };
  149. 83602273253345E000416047 /* LMLightView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83602272253345E000416047 /* LMLightView.swift */; };
  150. 83602275253345F500416047 /* LMLightCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83602274253345F500416047 /* LMLightCtr.swift */; };
  151. 836022772533461900416047 /* LMMeteorologicalManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022762533461900416047 /* LMMeteorologicalManager.swift */; };
  152. 836022792533462700416047 /* LMMeteorologicalModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022782533462700416047 /* LMMeteorologicalModel.swift */; };
  153. 8360227B2533463500416047 /* LMMeteorologicalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360227A2533463500416047 /* LMMeteorologicalView.swift */; };
  154. 8360227D2533464700416047 /* LMMeteorologicalCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360227C2533464700416047 /* LMMeteorologicalCtr.swift */; };
  155. 8360227F2533465C00416047 /* LMMonitorManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360227E2533465C00416047 /* LMMonitorManager.swift */; };
  156. 836022812533467400416047 /* LMMonitorModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022802533467400416047 /* LMMonitorModel.swift */; };
  157. 836022832533470D00416047 /* LMMonitorPoleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022822533470D00416047 /* LMMonitorPoleView.swift */; };
  158. 836022852533471C00416047 /* LMMonitorCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836022842533471C00416047 /* LMMonitorCtr.swift */; };
  159. 8360228725335F2000416047 /* LMMonitorPoleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8360228625335F2000416047 /* LMMonitorPoleCell.swift */; };
  160. 83674E9425E60435000B4B3C /* LMRoadFilterView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83674E9625E60435000B4B3C /* LMRoadFilterView.xib */; };
  161. 836AAF1825E4B4D00068B7C6 /* LMLoopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 836AAF1A25E4B4D00068B7C6 /* LMLoopView.xib */; };
  162. 836AAF1F25E4B53A0068B7C6 /* LMGroupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 836AAF2125E4B53A0068B7C6 /* LMGroupView.xib */; };
  163. 836D81BA25B98FA4001718E0 /* IJKMediaFramework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836D81B925B98FA3001718E0 /* IJKMediaFramework.framework */; };
  164. 836E8AE5258B6BB200883233 /* LMConnectDeviceCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836E8AE4258B6BB200883233 /* LMConnectDeviceCell.swift */; };
  165. 83711D92258C8422006387CE /* LMHistoryAlertCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83711D91258C8422006387CE /* LMHistoryAlertCell.swift */; };
  166. 83711D97258C89B8006387CE /* LMNowAlertCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83711D96258C89B8006387CE /* LMNowAlertCell.swift */; };
  167. 83725CB225EA1E47000222EB /* LMAlarmInfoVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83725CB425EA1E47000222EB /* LMAlarmInfoVCtr.xib */; };
  168. 8378142D2584C60A00FD3EC3 /* LMLightPoleDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378142C2584C60A00FD3EC3 /* LMLightPoleDetailView.swift */; };
  169. 837814322584C63B00FD3EC3 /* LMLightPoleDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814312584C63B00FD3EC3 /* LMLightPoleDetailManager.swift */; };
  170. 8378143C2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378143B2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift */; };
  171. 837814412584F24700FD3EC3 /* LMCloudBoxDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814402584F24700FD3EC3 /* LMCloudBoxDetailView.swift */; };
  172. 837814462584F26500FD3EC3 /* LMCloudBoxManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814452584F26500FD3EC3 /* LMCloudBoxManager.swift */; };
  173. 8378145F2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378145E2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift */; };
  174. 837814642584F40F00FD3EC3 /* LMAirQualityDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814632584F40F00FD3EC3 /* LMAirQualityDetailView.swift */; };
  175. 837814692584F42600FD3EC3 /* LMAirQualityDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814682584F42600FD3EC3 /* LMAirQualityDetailManager.swift */; };
  176. 8378146E2584F43E00FD3EC3 /* LMRadioDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378146D2584F43E00FD3EC3 /* LMRadioDetailCtr.swift */; };
  177. 837814732584F44C00FD3EC3 /* LMRadioDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814722584F44C00FD3EC3 /* LMRadioDetailView.swift */; };
  178. 837814782584F45F00FD3EC3 /* LMRadioDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814772584F45F00FD3EC3 /* LMRadioDetailManager.swift */; };
  179. 8378147D2584F47400FD3EC3 /* LMMonitorDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378147C2584F47400FD3EC3 /* LMMonitorDetailCtr.swift */; };
  180. 837814822584F48300FD3EC3 /* LMMonitorDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814812584F48300FD3EC3 /* LMMonitorDetailView.swift */; };
  181. 837814872584F49700FD3EC3 /* LMMonitorDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814862584F49700FD3EC3 /* LMMonitorDetailManager.swift */; };
  182. 8378148C2584F4C500FD3EC3 /* LMLightDetailCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378148B2584F4C500FD3EC3 /* LMLightDetailCtr.swift */; };
  183. 837814912584F4D400FD3EC3 /* LMLightDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814902584F4D400FD3EC3 /* LMLightDetailView.swift */; };
  184. 837814962584F4E600FD3EC3 /* LMLightDetailManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 837814952584F4E600FD3EC3 /* LMLightDetailManager.swift */; };
  185. 8380F1FC25874A0E001A1C94 /* LMLightDetailSever.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F1FB25874A0E001A1C94 /* LMLightDetailSever.swift */; };
  186. 8380F20125874A47001A1C94 /* LMLightDetailRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F20025874A47001A1C94 /* LMLightDetailRequest.swift */; };
  187. 8380F20625874A51001A1C94 /* LMLightDetailApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F20525874A51001A1C94 /* LMLightDetailApi.swift */; };
  188. 8380F20B25874A5C001A1C94 /* LMLightDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8380F20A25874A5C001A1C94 /* LMLightDetailModel.swift */; };
  189. 83ABC212251D9B5700D53141 /* LMNewLoopService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABC211251D9B5700D53141 /* LMNewLoopService.swift */; };
  190. 83ABDA7D25863F2000FDC0C7 /* LMCloudBoxServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA7C25863F2000FDC0C7 /* LMCloudBoxServer.swift */; };
  191. 83ABDA822586427F00FDC0C7 /* LMCloudBoxRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA812586427F00FDC0C7 /* LMCloudBoxRequest.swift */; };
  192. 83ABDA872586429500FDC0C7 /* LMCloudBoxModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA862586429500FDC0C7 /* LMCloudBoxModel.swift */; };
  193. 83ABDA8C258642A200FDC0C7 /* LMCloudBoxApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83ABDA8B258642A200FDC0C7 /* LMCloudBoxApi.swift */; };
  194. 83B73185251DBE2600953DFF /* LMNewLoopTwoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73184251DBE2600953DFF /* LMNewLoopTwoCell.swift */; };
  195. 83B73187251DEF1A00953DFF /* LMNewLoopTwoCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73186251DEF1A00953DFF /* LMNewLoopTwoCtr.swift */; };
  196. 83B7318D251DEF8A00953DFF /* LMNewLoopTwoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B7318C251DEF8A00953DFF /* LMNewLoopTwoManager.swift */; };
  197. 83B7318F251DF16A00953DFF /* LMNewLoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B7318E251DF16A00953DFF /* LMNewLoopView.swift */; };
  198. 83B73191251DF36800953DFF /* LMNewLoopInputContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73190251DF36800953DFF /* LMNewLoopInputContentCell.swift */; };
  199. 83B73193251DF38100953DFF /* LMNewLoopChoseContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B73192251DF38100953DFF /* LMNewLoopChoseContentCell.swift */; };
  200. 83C7534325934E3B0072318F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83C7534225934E3B0072318F /* CoreGraphics.framework */; };
  201. 83C7534525934EA50072318F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83C7534425934EA50072318F /* QuartzCore.framework */; };
  202. 83CCBDBB239758230096AA9F /* LMLampBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDBA239758230096AA9F /* LMLampBaseView.swift */; };
  203. 83CCBDBD23975F9E0096AA9F /* LMSelectorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDBC23975F9E0096AA9F /* LMSelectorView.swift */; };
  204. 83CCBDBF23978F810096AA9F /* LMLampApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDBE23978F800096AA9F /* LMLampApi.swift */; };
  205. 83CCBDC123978F940096AA9F /* LMLampModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC023978F940096AA9F /* LMLampModel.swift */; };
  206. 83CCBDC323978FA60096AA9F /* LMLampHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC223978FA60096AA9F /* LMLampHttpRequest.swift */; };
  207. 83CCBDC52397A4800096AA9F /* LMLampBaseService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC42397A4800096AA9F /* LMLampBaseService.swift */; };
  208. 83CCBDC82397B3DE0096AA9F /* LMSelectorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDC62397B3DE0096AA9F /* LMSelectorCell.swift */; };
  209. 83CCBDC92397B3DE0096AA9F /* LMSelectorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83CCBDC72397B3DE0096AA9F /* LMSelectorCell.xib */; };
  210. 83CCBDCB2397C27E0096AA9F /* LMLightTimeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDCA2397C27E0096AA9F /* LMLightTimeView.swift */; };
  211. 83CCBDCD2397C2940096AA9F /* LMLoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDCC2397C2940096AA9F /* LMLoopView.swift */; };
  212. 83CCBDCF2397C31D0096AA9F /* LMGroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDCE2397C31D0096AA9F /* LMGroupView.swift */; };
  213. 83CCBDD12397C3450096AA9F /* LMPowerSavingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCBDD02397C3450096AA9F /* LMPowerSavingView.swift */; };
  214. 83CCBDD52397D4900096AA9F /* LMPowerSavingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83CCBDD42397D4900096AA9F /* LMPowerSavingView.xib */; };
  215. 83CCD2C02518477100AD14FD /* LMNewLampCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2BF2518477100AD14FD /* LMNewLampCtr.swift */; };
  216. 83CCD2C22518478400AD14FD /* LMNewLampView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C12518478400AD14FD /* LMNewLampView.swift */; };
  217. 83CCD2C42518479C00AD14FD /* LMNewLampModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C32518479C00AD14FD /* LMNewLampModel.swift */; };
  218. 83CCD2C6251847AD00AD14FD /* LMNewLampManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C5251847AD00AD14FD /* LMNewLampManager.swift */; };
  219. 83CCD2C82518500000AD14FD /* LMInputContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C72518500000AD14FD /* LMInputContentCell.swift */; };
  220. 83CCD2CA2518501900AD14FD /* LMChoseContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2C92518501900AD14FD /* LMChoseContentCell.swift */; };
  221. 83CCD2CC2518503A00AD14FD /* LMInputAndChoseContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2CB2518503A00AD14FD /* LMInputAndChoseContentCell.swift */; };
  222. 83CCD2CE2518A48100AD14FD /* LMNewLampService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2CD2518A48100AD14FD /* LMNewLampService.swift */; };
  223. 83CCD2D02518B27B00AD14FD /* LMNewLampApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2CF2518B27B00AD14FD /* LMNewLampApi.swift */; };
  224. 83CCD2D22518B29700AD14FD /* LMNewLampRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CCD2D12518B29700AD14FD /* LMNewLampRequest.swift */; };
  225. 83D9FAAB2522E18D009956A8 /* LMGroupSettingCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAAA2522E18D009956A8 /* LMGroupSettingCtr.swift */; };
  226. 83D9FAAD2522E1A1009956A8 /* LMGroupSettingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAAC2522E1A1009956A8 /* LMGroupSettingView.swift */; };
  227. 83D9FAAF2522E1BC009956A8 /* LMGroupSettingModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAAE2522E1BC009956A8 /* LMGroupSettingModel.swift */; };
  228. 83D9FAB12522E1D4009956A8 /* LMGroupSettingApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB02522E1D4009956A8 /* LMGroupSettingApi.swift */; };
  229. 83D9FAB32522E1EC009956A8 /* LMGroupSettingRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB22522E1EC009956A8 /* LMGroupSettingRequest.swift */; };
  230. 83D9FAB52522E200009956A8 /* LMGroupSettingManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB42522E200009956A8 /* LMGroupSettingManager.swift */; };
  231. 83D9FAB725230680009956A8 /* LMManualOperationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB625230680009956A8 /* LMManualOperationView.swift */; };
  232. 83D9FAB9252306A9009956A8 /* LMStrategyOperationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FAB8252306A9009956A8 /* LMStrategyOperationView.swift */; };
  233. 83D9FABB252306BF009956A8 /* LMAutoOperationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9FABA252306BF009956A8 /* LMAutoOperationView.swift */; };
  234. 83DD400025E3450E00A5808E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83DD400225E3450E00A5808E /* InfoPlist.strings */; };
  235. 83DD400F25E3463D00A5808E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83DD401125E3463D00A5808E /* Localizable.strings */; };
  236. 83DD408925E3817E00A5808E /* LMLoginVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83DD408B25E3817E00A5808E /* LMLoginVCtr.xib */; };
  237. 83DD409325E38A3700A5808E /* LMAlarmNumberView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83DD409525E38A3700A5808E /* LMAlarmNumberView.xib */; };
  238. 83E23E5F2521BA6400678616 /* LMGroupManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E5E2521BA6400678616 /* LMGroupManager.swift */; };
  239. 83E23E612521BA7300678616 /* LMGroupService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E602521BA7300678616 /* LMGroupService.swift */; };
  240. 83E23E632521BA8100678616 /* LMGroupModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E622521BA8100678616 /* LMGroupModel.swift */; };
  241. 83E23E652521BA8C00678616 /* LMGroupApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E642521BA8C00678616 /* LMGroupApi.swift */; };
  242. 83E23E672521BAA500678616 /* LMGroupHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E662521BAA500678616 /* LMGroupHttpRequest.swift */; };
  243. 83E23E6B2521BB5400678616 /* LMMainGroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E6A2521BB5400678616 /* LMMainGroupView.swift */; };
  244. 83E23E6D2521D81200678616 /* LMTGroupItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E23E6C2521D81200678616 /* LMTGroupItemCell.swift */; };
  245. 83E4081C2387726800255664 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4081B2387726800255664 /* AppDelegate.swift */; };
  246. 83E4081E2387726800255664 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4081D2387726800255664 /* SceneDelegate.swift */; };
  247. 83E408202387726800255664 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4081F2387726800255664 /* ViewController.swift */; };
  248. 83E408232387726800255664 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 83E408212387726800255664 /* Main.storyboard */; };
  249. 83E408252387726C00255664 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 83E408242387726C00255664 /* Assets.xcassets */; };
  250. 83E408282387726C00255664 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 83E408262387726C00255664 /* LaunchScreen.storyboard */; };
  251. 83E408332387726D00255664 /* LampMindTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408322387726D00255664 /* LampMindTests.swift */; };
  252. 83E4083E2387726D00255664 /* LampMindUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4083D2387726D00255664 /* LampMindUITests.swift */; };
  253. 83E408852387782F00255664 /* UIBarButtonItem+item.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408562387782F00255664 /* UIBarButtonItem+item.swift */; };
  254. 83E408862387782F00255664 /* MKMapView+ZoomLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408572387782F00255664 /* MKMapView+ZoomLevel.swift */; };
  255. 83E408872387782F00255664 /* UIView+Gradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408582387782F00255664 /* UIView+Gradient.swift */; };
  256. 83E408882387782F00255664 /* UIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408592387782F00255664 /* UIView+Extension.swift */; };
  257. 83E408892387782F00255664 /* UIButton+Gradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085A2387782F00255664 /* UIButton+Gradient.swift */; };
  258. 83E4088A2387782F00255664 /* LMView+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085B2387782F00255664 /* LMView+UIViewController.swift */; };
  259. 83E4088B2387782F00255664 /* UIImagView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085C2387782F00255664 /* UIImagView+Kingfisher.swift */; };
  260. 83E4088C2387782F00255664 /* UIView+Configure.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085D2387782F00255664 /* UIView+Configure.swift */; };
  261. 83E4088D2387782F00255664 /* UIVIew+Positioning.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085E2387782F00255664 /* UIVIew+Positioning.swift */; };
  262. 83E4088E2387782F00255664 /* ProjectConstant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4085F2387782F00255664 /* ProjectConstant.swift */; };
  263. 83E4088F2387782F00255664 /* ProviderSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408612387782F00255664 /* ProviderSupport.swift */; };
  264. 83E408902387782F00255664 /* LMCornerLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408642387782F00255664 /* LMCornerLabel.swift */; };
  265. 83E408912387782F00255664 /* LMViewModelProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408662387782F00255664 /* LMViewModelProtocolDelegate.swift */; };
  266. 83E408932387782F00255664 /* LMViewProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408682387782F00255664 /* LMViewProtocolDelegate.swift */; };
  267. 83E408942387782F00255664 /* LMViewManagerProtocolDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408692387782F00255664 /* LMViewManagerProtocolDelegate.swift */; };
  268. 83E408952387782F00255664 /* AppShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086A2387782F00255664 /* AppShare.swift */; };
  269. 83E408962387782F00255664 /* THScrollChooseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086C2387782F00255664 /* THScrollChooseView.m */; };
  270. 83E408972387782F00255664 /* CXDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086D2387782F00255664 /* CXDatePickerView.m */; };
  271. 83E408982387782F00255664 /* DGKVOTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4086F2387782F00255664 /* DGKVOTool.swift */; };
  272. 83E408992387782F00255664 /* SegmentStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408732387782F00255664 /* SegmentStyle.swift */; };
  273. 83E4089A2387782F00255664 /* ScrollSegmentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408742387782F00255664 /* ScrollSegmentView.swift */; };
  274. 83E4089B2387782F00255664 /* HDEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408762387782F00255664 /* HDEmptyView.swift */; };
  275. 83E4089C2387782F00255664 /* HDRunTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408772387782F00255664 /* HDRunTime.swift */; };
  276. 83E4089D2387782F00255664 /* UIView+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408782387782F00255664 /* UIView+Position.swift */; };
  277. 83E4089E2387782F00255664 /* UIScrollView+Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E408792387782F00255664 /* UIScrollView+Empty.swift */; };
  278. 83E4089F2387782F00255664 /* HDEmptyBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4087A2387782F00255664 /* HDEmptyBaseView.swift */; };
  279. 83E408A02387782F00255664 /* NSDate+CXCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4087C2387782F00255664 /* NSDate+CXCategory.m */; };
  280. 83E408A12387782F00255664 /* KKWRefreshHeaderAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E4087D2387782F00255664 /* KKWRefreshHeaderAnimator.swift */; };
  281. 83E4096A2387790A00255664 /* LMLoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409612387790900255664 /* LMLoginModel.swift */; };
  282. 83E4096B2387790A00255664 /* LMLoginHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409622387790900255664 /* LMLoginHttpRequest.swift */; };
  283. 83E4096C2387790A00255664 /* LMLoginApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409632387790900255664 /* LMLoginApi.swift */; };
  284. 83E4096D2387790A00255664 /* LMLoginManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409652387790900255664 /* LMLoginManager.swift */; };
  285. 83E4096E2387790A00255664 /* LMLoginVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E409672387790900255664 /* LMLoginVCtr.swift */; };
  286. 83EAA59C23950E43008763FB /* RootNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA59723950E42008763FB /* RootNavigationController.swift */; };
  287. 83EAA59D23950E43008763FB /* MainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA59923950E42008763FB /* MainViewController.swift */; };
  288. 83EAA59E23950E43008763FB /* LMNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA59B23950E43008763FB /* LMNavigationController.swift */; };
  289. 83EAA5FD23950EDD008763FB /* LMGISVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5A223950EDB008763FB /* LMGISVCtr.xib */; };
  290. 83EAA5FE23950EDD008763FB /* LMGISVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A323950EDB008763FB /* LMGISVCtr.swift */; };
  291. 83EAA5FF23950EDD008763FB /* LMGISManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A523950EDB008763FB /* LMGISManager.swift */; };
  292. 83EAA60023950EDD008763FB /* LMGISMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A623950EDB008763FB /* LMGISMapManager.swift */; };
  293. 83EAA60123950EDD008763FB /* LMGISModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A823950EDB008763FB /* LMGISModel.swift */; };
  294. 83EAA60223950EDD008763FB /* LMGisHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5A923950EDB008763FB /* LMGisHttpRequest.swift */; };
  295. 83EAA60323950EDD008763FB /* LMGISApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AA23950EDB008763FB /* LMGISApi.swift */; };
  296. 83EAA60423950EDD008763FB /* LMPoleCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5AC23950EDB008763FB /* LMPoleCalloutView.xib */; };
  297. 83EAA60523950EDD008763FB /* LMGisHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AD23950EDB008763FB /* LMGisHeaderView.swift */; };
  298. 83EAA60623950EDD008763FB /* LMLampWithAlarmCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AE23950EDB008763FB /* LMLampWithAlarmCalloutView.swift */; };
  299. 83EAA60723950EDD008763FB /* LMPoleCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5AF23950EDB008763FB /* LMPoleCalloutView.swift */; };
  300. 83EAA60823950EDD008763FB /* LMLampCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5B023950EDB008763FB /* LMLampCalloutView.xib */; };
  301. 83EAA60923950EDD008763FB /* LMLampCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B123950EDB008763FB /* LMLampCalloutView.swift */; };
  302. 83EAA60A23950EDD008763FB /* LMAnnotationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B223950EDB008763FB /* LMAnnotationView.swift */; };
  303. 83EAA60B23950EDD008763FB /* LMMapView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B323950EDB008763FB /* LMMapView.swift */; };
  304. 83EAA60C23950EDD008763FB /* LMLampNoAlarmCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5B423950EDB008763FB /* LMLampNoAlarmCalloutView.xib */; };
  305. 83EAA60D23950EDD008763FB /* LMLampWithAlarmCalloutView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA5B523950EDB008763FB /* LMLampWithAlarmCalloutView.xib */; };
  306. 83EAA60E23950EDD008763FB /* LMLampNoAlarmCalloutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA5B623950EDB008763FB /* LMLampNoAlarmCalloutView.swift */; };
  307. 83EAA65923950F22008763FB /* LMRoadFilterVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64223950F22008763FB /* LMRoadFilterVCtr.swift */; };
  308. 83EAA65A23950F22008763FB /* LMRoadFilterVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA64323950F22008763FB /* LMRoadFilterVCtr.xib */; };
  309. 83EAA65B23950F22008763FB /* LMRoadFilterManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64523950F22008763FB /* LMRoadFilterManager.swift */; };
  310. 83EAA65C23950F22008763FB /* LMRoadFilterCacheManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64623950F22008763FB /* LMRoadFilterCacheManager.swift */; };
  311. 83EAA65E23950F22008763FB /* LMRoadFilterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64923950F22008763FB /* LMRoadFilterView.swift */; };
  312. 83EAA65F23950F22008763FB /* LMDimmingVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA64C23950F22008763FB /* LMDimmingVCtr.xib */; };
  313. 83EAA66023950F22008763FB /* LMDimmingVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64D23950F22008763FB /* LMDimmingVCtr.swift */; };
  314. 83EAA66123950F22008763FB /* LMDimmingManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA64F23950F22008763FB /* LMDimmingManager.swift */; };
  315. 83EAA66223950F22008763FB /* LMWebSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65123950F22008763FB /* LMWebSocket.swift */; };
  316. 83EAA66323950F22008763FB /* LMSliderViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65323950F22008763FB /* LMSliderViewStyle.swift */; };
  317. 83EAA66423950F22008763FB /* LMSliderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65523950F22008763FB /* LMSliderView.swift */; };
  318. 83EAA66523950F22008763FB /* LMSliderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA65623950F22008763FB /* LMSliderView.xib */; };
  319. 83EAA66723950F22008763FB /* LMDimmingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA65823950F22008763FB /* LMDimmingView.swift */; };
  320. 83EAA6892395142B008763FB /* LMAlarmInfoManger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6742395142B008763FB /* LMAlarmInfoManger.swift */; };
  321. 83EAA68A2395142B008763FB /* LMAlarmVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6752395142B008763FB /* LMAlarmVCtr.xib */; };
  322. 83EAA68B2395142B008763FB /* LMAlarmDispathVctr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6762395142B008763FB /* LMAlarmDispathVctr.swift */; };
  323. 83EAA68C2395142B008763FB /* LMAlarmInfoVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6772395142B008763FB /* LMAlarmInfoVCtr.swift */; };
  324. 83EAA68D2395142B008763FB /* LMAlarmManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA67A2395142B008763FB /* LMAlarmManager.swift */; };
  325. 83EAA68E2395142B008763FB /* LMAlarmCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA67C2395142B008763FB /* LMAlarmCell.xib */; };
  326. 83EAA68F2395142B008763FB /* LMEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA67D2395142B008763FB /* LMEmptyView.xib */; };
  327. 83EAA6902395142B008763FB /* LMAlarmView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA67E2395142B008763FB /* LMAlarmView.swift */; };
  328. 83EAA6912395142B008763FB /* LMAlarmCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA67F2395142B008763FB /* LMAlarmCell.swift */; };
  329. 83EAA6922395142B008763FB /* LMEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6802395142B008763FB /* LMEmptyView.swift */; };
  330. 83EAA6932395142B008763FB /* LMAlarmVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6812395142B008763FB /* LMAlarmVCtr.swift */; };
  331. 83EAA6942395142B008763FB /* LMNetWorkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6822395142B008763FB /* LMNetWorkManager.swift */; };
  332. 83EAA6952395142B008763FB /* LMAlarmApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6832395142B008763FB /* LMAlarmApi.swift */; };
  333. 83EAA6972395142B008763FB /* LMAlarmModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6852395142B008763FB /* LMAlarmModel.swift */; };
  334. 83EAA6982395142B008763FB /* LMAlarmHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6862395142B008763FB /* LMAlarmHttpRequest.swift */; };
  335. 83EAA69A2395142B008763FB /* LMAlarmDispatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6882395142B008763FB /* LMAlarmDispatchManager.swift */; };
  336. 83EAA6B5239516AA008763FB /* LMDeviceVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6A2239516AA008763FB /* LMDeviceVCtr.xib */; };
  337. 83EAA6B6239516AA008763FB /* LMDeviceVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A3239516AA008763FB /* LMDeviceVCtr.swift */; };
  338. 83EAA6B7239516AA008763FB /* LMDeviceViewManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A5239516AA008763FB /* LMDeviceViewManager.swift */; };
  339. 83EAA6B8239516AA008763FB /* LMDeviceApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A7239516AA008763FB /* LMDeviceApi.swift */; };
  340. 83EAA6B9239516AA008763FB /* LMDeviceModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A8239516AA008763FB /* LMDeviceModel.swift */; };
  341. 83EAA6BA239516AA008763FB /* LMChartsModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6A9239516AA008763FB /* LMChartsModel.swift */; };
  342. 83EAA6BB239516AA008763FB /* LMDeviceHttpRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AA239516AA008763FB /* LMDeviceHttpRequest.swift */; };
  343. 83EAA6BC239516AA008763FB /* LMAlarmNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AC239516AA008763FB /* LMAlarmNumberView.swift */; };
  344. 83EAA6BD239516AA008763FB /* LMElectricQuantityView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AD239516AA008763FB /* LMElectricQuantityView.swift */; };
  345. 83EAA6BE239516AA008763FB /* LMDeviceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AE239516AA008763FB /* LMDeviceView.swift */; };
  346. 83EAA6BF239516AA008763FB /* BalloonMarker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6AF239516AA008763FB /* BalloonMarker.swift */; };
  347. 83EAA6C0239516AA008763FB /* LMElectriQuantiyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6B0239516AA008763FB /* LMElectriQuantiyCell.xib */; };
  348. 83EAA6C1239516AA008763FB /* LMMonitorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B1239516AA008763FB /* LMMonitorView.swift */; };
  349. 83EAA6C2239516AA008763FB /* LMElectriQuantiyCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B2239516AA008763FB /* LMElectriQuantiyCell.swift */; };
  350. 83EAA6C3239516AA008763FB /* LMLightNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B3239516AA008763FB /* LMLightNumberView.swift */; };
  351. 83EAA6C4239516AA008763FB /* LMChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6B4239516AA008763FB /* LMChartView.swift */; };
  352. 83EAA6C723954149008763FB /* LMLightNumberView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6C623954149008763FB /* LMLightNumberView.xib */; };
  353. 83EAA6CC239645B2008763FB /* LMMonitorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA6CA239645B1008763FB /* LMMonitorCell.swift */; };
  354. 83EAA6CD239645B2008763FB /* LMMonitorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA6CB239645B1008763FB /* LMMonitorCell.xib */; };
  355. 83EAA71F23966966008763FB /* UICollectionView+SideRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71323966966008763FB /* UICollectionView+SideRefresh.m */; };
  356. 83EAA72023966966008763FB /* SideRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71423966966008763FB /* SideRefreshHeader.m */; };
  357. 83EAA72123966966008763FB /* SideRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71523966966008763FB /* SideRefreshFooter.m */; };
  358. 83EAA72223966966008763FB /* SideRefreshEmptyFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71723966966008763FB /* SideRefreshEmptyFooter.m */; };
  359. 83EAA72323966966008763FB /* SideRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71823966966008763FB /* SideRefresh.m */; };
  360. 83EAA72423966966008763FB /* UICollectionView+SideExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA71923966966008763FB /* UICollectionView+SideExtension.m */; };
  361. 83EAA72723968F9B008763FB /* LMLampVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA72623968F9A008763FB /* LMLampVCtr.swift */; };
  362. 83EAA730239749FD008763FB /* LMLampBaseVCtr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA72E239749FD008763FB /* LMLampBaseVCtr.swift */; };
  363. 83EAA731239749FD008763FB /* LMLampBaseVCtr.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83EAA72F239749FD008763FB /* LMLampBaseVCtr.xib */; };
  364. 83EAA73723974AA1008763FB /* LMLampBaseManger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAA73623974AA1008763FB /* LMLampBaseManger.swift */; };
  365. FE42013DC374EEAC481BD190 /* Pods_LampMind.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 764030A0DF97F6C6E68A9282 /* Pods_LampMind.framework */; };
  366. /* End PBXBuildFile section */
  367. /* Begin PBXContainerItemProxy section */
  368. 83E4082F2387726C00255664 /* PBXContainerItemProxy */ = {
  369. isa = PBXContainerItemProxy;
  370. containerPortal = 83E408102387726800255664 /* Project object */;
  371. proxyType = 1;
  372. remoteGlobalIDString = 83E408172387726800255664;
  373. remoteInfo = LampMind;
  374. };
  375. 83E4083A2387726D00255664 /* PBXContainerItemProxy */ = {
  376. isa = PBXContainerItemProxy;
  377. containerPortal = 83E408102387726800255664 /* Project object */;
  378. proxyType = 1;
  379. remoteGlobalIDString = 83E408172387726800255664;
  380. remoteInfo = LampMind;
  381. };
  382. /* End PBXContainerItemProxy section */
  383. /* Begin PBXFileReference section */
  384. 5F5E1E8F2536C944007EAC23 /* LMPlayVideoCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoCtr.swift; sourceTree = "<group>"; };
  385. 5F5E1E912536C95C007EAC23 /* LMPlayVideoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoView.swift; sourceTree = "<group>"; };
  386. 5F5E1E932536C97F007EAC23 /* LMPlayVideoModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoModel.swift; sourceTree = "<group>"; };
  387. 5F5E1E952536C99D007EAC23 /* LMPlayVideoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoManager.swift; sourceTree = "<group>"; };
  388. 5F5E1E972536CDA9007EAC23 /* LMPlayVideoService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoService.swift; sourceTree = "<group>"; };
  389. 5F5E1E992536CEE6007EAC23 /* LMPlayVideoApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoApi.swift; sourceTree = "<group>"; };
  390. 5F5E1E9B2536CFB6007EAC23 /* LMPlayVideoRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPlayVideoRequest.swift; sourceTree = "<group>"; };
  391. 5F5E1E9E2536E2B1007EAC23 /* libEZUIKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libEZUIKit.a; path = ../LampMind/LampMind/Global/Vender/EZUIKit/libEZUIKit.a; sourceTree = "<group>"; };
  392. 5F63A8212539BCF200DD9DD6 /* CodeScan.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CodeScan.bundle; sourceTree = "<group>"; };
  393. 5F63A8222539BCF200DD9DD6 /* LBXScanNetAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanNetAnimation.swift; sourceTree = "<group>"; };
  394. 5F63A8232539BCF200DD9DD6 /* LBXScanView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanView.swift; sourceTree = "<group>"; };
  395. 5F63A8242539BCF200DD9DD6 /* LBXScanViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewController.swift; sourceTree = "<group>"; };
  396. 5F63A8252539BCF200DD9DD6 /* LBXScanLineAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanLineAnimation.swift; sourceTree = "<group>"; };
  397. 5F63A8262539BCF200DD9DD6 /* LBXScanViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewStyle.swift; sourceTree = "<group>"; };
  398. 5F63A8272539BCF200DD9DD6 /* LBXPermissions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXPermissions.swift; sourceTree = "<group>"; };
  399. 5F63A8282539BCF200DD9DD6 /* LBXScanWrapper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanWrapper.swift; sourceTree = "<group>"; };
  400. 5F6802AC253C845E0002577C /* LMRepairCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairCtr.swift; sourceTree = "<group>"; };
  401. 5F6802AE253C84710002577C /* LMRepairManagerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairManagerView.swift; sourceTree = "<group>"; };
  402. 5F6802B1253C84B50002577C /* LMRepairModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairModel.swift; sourceTree = "<group>"; };
  403. 5F6802B3253C84D30002577C /* LMRepairManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairManager.swift; sourceTree = "<group>"; };
  404. 5F6A10D62537E33C007A20DC /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
  405. 5F6A10D82537E348007A20DC /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
  406. 5F6A10DA2537E353007A20DC /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  407. 5F6A10DD2537E371007A20DC /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  408. 5F6A10DF2537E38C007A20DC /* MediaAccessibility.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaAccessibility.framework; path = System/Library/Frameworks/MediaAccessibility.framework; sourceTree = SDKROOT; };
  409. 5F6A10E12537E39B007A20DC /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
  410. 5F6A10E62537E715007A20DC /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  411. 5F6A10ED2537FDE0007A20DC /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
  412. 5F6A10EF2537FDE0007A20DC /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
  413. 5F6A10F02537FDE0007A20DC /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
  414. 5F6A10F12537FDE0007A20DC /* md2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md2.h; sourceTree = "<group>"; };
  415. 5F6A10F22537FDE0007A20DC /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
  416. 5F6A10F32537FDE0007A20DC /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
  417. 5F6A10F42537FDE0007A20DC /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
  418. 5F6A10F52537FDE0007A20DC /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
  419. 5F6A10F62537FDE0007A20DC /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
  420. 5F6A10F72537FDE0007A20DC /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
  421. 5F6A10F82537FDE0007A20DC /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
  422. 5F6A10F92537FDE0007A20DC /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
  423. 5F6A10FA2537FDE0007A20DC /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
  424. 5F6A10FB2537FDE0007A20DC /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
  425. 5F6A10FC2537FDE0007A20DC /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
  426. 5F6A10FD2537FDE0007A20DC /* opensslconf_ios_x86_64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_x86_64.h; sourceTree = "<group>"; };
  427. 5F6A10FE2537FDE0007A20DC /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
  428. 5F6A10FF2537FDE0007A20DC /* kssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kssl.h; sourceTree = "<group>"; };
  429. 5F6A11002537FDE0007A20DC /* opensslconf_tvos_x86_64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_tvos_x86_64.h; sourceTree = "<group>"; };
  430. 5F6A11012537FDE0007A20DC /* opensslconf_ios_armv7s.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_armv7s.h; sourceTree = "<group>"; };
  431. 5F6A11022537FDE0007A20DC /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
  432. 5F6A11032537FDE0007A20DC /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
  433. 5F6A11042537FDE0007A20DC /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
  434. 5F6A11052537FDE0007A20DC /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
  435. 5F6A11062537FDE0007A20DC /* opensslconf_ios_i386.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_i386.h; sourceTree = "<group>"; };
  436. 5F6A11072537FDE0007A20DC /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
  437. 5F6A11082537FDE0007A20DC /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
  438. 5F6A11092537FDE0007A20DC /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
  439. 5F6A110A2537FDE0007A20DC /* ui_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_compat.h; sourceTree = "<group>"; };
  440. 5F6A110B2537FDE0007A20DC /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
  441. 5F6A110C2537FDE0007A20DC /* ssl23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl23.h; sourceTree = "<group>"; };
  442. 5F6A110D2537FDE0007A20DC /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
  443. 5F6A110E2537FDE0007A20DC /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
  444. 5F6A110F2537FDE0007A20DC /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
  445. 5F6A11102537FDE0007A20DC /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
  446. 5F6A11112537FDE0007A20DC /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
  447. 5F6A11122537FDE0007A20DC /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
  448. 5F6A11132537FDE0007A20DC /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
  449. 5F6A11142537FDE0007A20DC /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
  450. 5F6A11152537FDE0007A20DC /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
  451. 5F6A11162537FDE0007A20DC /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
  452. 5F6A11172537FDE0007A20DC /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
  453. 5F6A11182537FDE0007A20DC /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
  454. 5F6A11192537FDE0007A20DC /* tmdiff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tmdiff.h; sourceTree = "<group>"; };
  455. 5F6A111A2537FDE0007A20DC /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
  456. 5F6A111B2537FDE0007A20DC /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
  457. 5F6A111C2537FDE0007A20DC /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
  458. 5F6A111D2537FDE0007A20DC /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
  459. 5F6A111E2537FDE0007A20DC /* opensslconf_ios_arm64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_arm64.h; sourceTree = "<group>"; };
  460. 5F6A111F2537FDE0007A20DC /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
  461. 5F6A11202537FDE0007A20DC /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
  462. 5F6A11212537FDE0007A20DC /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
  463. 5F6A11222537FDE0007A20DC /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
  464. 5F6A11232537FDE0007A20DC /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
  465. 5F6A11242537FDE0007A20DC /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
  466. 5F6A11252537FDE0007A20DC /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
  467. 5F6A11262537FDE0007A20DC /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
  468. 5F6A11272537FDE0007A20DC /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
  469. 5F6A11282537FDE0007A20DC /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
  470. 5F6A11292537FDE0007A20DC /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
  471. 5F6A112A2537FDE0007A20DC /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
  472. 5F6A112B2537FDE0007A20DC /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
  473. 5F6A112C2537FDE0007A20DC /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
  474. 5F6A112D2537FDE0007A20DC /* opensslconf_ios_armv7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_ios_armv7.h; sourceTree = "<group>"; };
  475. 5F6A112E2537FDE0007A20DC /* opensslconf_tvos_arm64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf_tvos_arm64.h; sourceTree = "<group>"; };
  476. 5F6A112F2537FDE0007A20DC /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
  477. 5F6A11302537FDE0007A20DC /* pqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = "<group>"; };
  478. 5F6A11312537FDE0007A20DC /* dso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dso.h; sourceTree = "<group>"; };
  479. 5F6A11322537FDE0007A20DC /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
  480. 5F6A11332537FDE0007A20DC /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
  481. 5F6A11342537FDE0007A20DC /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
  482. 5F6A11352537FDE0007A20DC /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
  483. 5F6A11362537FDE0007A20DC /* krb5_asn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = krb5_asn.h; sourceTree = "<group>"; };
  484. 5F6A11372537FDE0007A20DC /* des_old.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des_old.h; sourceTree = "<group>"; };
  485. 5F6A11382537FDE0007A20DC /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
  486. 5F6A11392537FDE0007A20DC /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
  487. 5F6A113A2537FDE0007A20DC /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
  488. 5F6A113B2537FDE0007A20DC /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
  489. 5F6A113C2537FDE0007A20DC /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
  490. 5F6A113D2537FDE0007A20DC /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
  491. 5F6A113E2537FDE0007A20DC /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
  492. 5F6A113F2537FDE0007A20DC /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
  493. 5F6A11402537FDE0007A20DC /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
  494. 5F6A11412537FDE0007A20DC /* store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = store.h; sourceTree = "<group>"; };
  495. 5F6A11422537FDE0007A20DC /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
  496. 5F6A11432537FDE0007A20DC /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
  497. 5F6A11442537FDE0007A20DC /* pq_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pq_compat.h; sourceTree = "<group>"; };
  498. 5F6A11452537FDE0007A20DC /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
  499. 5F6A11482537FE83007A20DC /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
  500. 5F6A115125382DF8007A20DC /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  501. 5F6A115325382E58007A20DC /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  502. 5F6A115525382E76007A20DC /* libiconv.2.4.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.2.4.0.tbd; path = usr/lib/libiconv.2.4.0.tbd; sourceTree = SDKROOT; };
  503. 5FED922C253703F600003727 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  504. 5FED922E2537041E00003727 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  505. 5FED92302537042E00003727 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  506. 5FED92322537044E00003727 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  507. 5FED92342537045B00003727 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  508. 5FED92362537047500003727 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
  509. 5FED92382537048700003727 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
  510. 5FED923A2537049600003727 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  511. 5FED923C253704A300003727 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
  512. 6A62B2657BB335FF65D53B0C /* Pods-LampMind.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LampMind.debug.xcconfig"; path = "Target Support Files/Pods-LampMind/Pods-LampMind.debug.xcconfig"; sourceTree = "<group>"; };
  513. 764030A0DF97F6C6E68A9282 /* Pods_LampMind.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LampMind.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  514. 83025EEC25E7C40000356051 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMAlarmDispathVctr.xib; sourceTree = "<group>"; };
  515. 83025EEF25E7C40900356051 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMAlarmDispathVctr.strings; sourceTree = "<group>"; };
  516. 83025EF125E7C40F00356051 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMAlarmDispathVctr.strings"; sourceTree = "<group>"; };
  517. 8304615325295F9600B6B291 /* LMNewStrategyGroupCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupCell.swift; sourceTree = "<group>"; };
  518. 830461552529CBCE00B6B291 /* LMNewStrategyGroupService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupService.swift; sourceTree = "<group>"; };
  519. 83068D2E2588B13400170DDE /* LMMonitorDetailRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailRequest.swift; sourceTree = "<group>"; };
  520. 83068D332588B14400170DDE /* LMMonitorDetailApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailApi.swift; sourceTree = "<group>"; };
  521. 83068D382588B14D00170DDE /* LMMonitorDetailModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailModel.swift; sourceTree = "<group>"; };
  522. 831555AD2589F38200999EA7 /* LMAirQualityDatailServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDatailServer.swift; sourceTree = "<group>"; };
  523. 831F1A03258A17310078DB14 /* LMAlertDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAlertDetailManager.swift; sourceTree = "<group>"; };
  524. 831F1A0B258A174D0078DB14 /* LMAlertDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAlertDetailView.swift; sourceTree = "<group>"; };
  525. 831F1A10258A175D0078DB14 /* LMAlertDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAlertDetailCtr.swift; sourceTree = "<group>"; };
  526. 831F1A15258A17810078DB14 /* LMLEDDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLEDDetailManager.swift; sourceTree = "<group>"; };
  527. 831F1A1A258A179B0078DB14 /* LMEDDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMEDDetailView.swift; sourceTree = "<group>"; };
  528. 831F1A1F258A17AB0078DB14 /* LMEDDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMEDDetailCtr.swift; sourceTree = "<group>"; };
  529. 831F1A24258A17C90078DB14 /* LMWifiDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMWifiDetailManager.swift; sourceTree = "<group>"; };
  530. 831F1A29258A17E10078DB14 /* LMWifiDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMWifiDetailView.swift; sourceTree = "<group>"; };
  531. 831F1A2E258A17F30078DB14 /* LMWifiDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMWifiDetailCtr.swift; sourceTree = "<group>"; };
  532. 831F1A33258A181A0078DB14 /* LMChargeDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChargeDetailManager.swift; sourceTree = "<group>"; };
  533. 831F1A38258A18270078DB14 /* LMChargeDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChargeDetailView.swift; sourceTree = "<group>"; };
  534. 831F1A3D258A18390078DB14 /* LMChargeDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChargeDetailCtr.swift; sourceTree = "<group>"; };
  535. 8329FEC725B80F450001D20A /* EZConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZConstants.h; sourceTree = "<group>"; };
  536. 8329FEC825B80F450001D20A /* EZHCNetDeviceSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHCNetDeviceSDK.h; sourceTree = "<group>"; };
  537. 8329FEC925B80F450001D20A /* EZStreamPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStreamPlayer.h; sourceTree = "<group>"; };
  538. 8329FECA25B80F450001D20A /* EZOpenSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZOpenSDK.h; sourceTree = "<group>"; };
  539. 8329FECB25B80F450001D20A /* EZPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlayer.h; sourceTree = "<group>"; };
  540. 8329FECC25B80F450001D20A /* EZGlobalSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZGlobalSDK.h; sourceTree = "<group>"; };
  541. 8329FECE25B80F450001D20A /* EZDeviceVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceVersion.h; sourceTree = "<group>"; };
  542. 8329FECF25B80F450001D20A /* EZUserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZUserInfo.h; sourceTree = "<group>"; };
  543. 8329FED025B80F450001D20A /* EZDeviceUpgradeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceUpgradeStatus.h; sourceTree = "<group>"; };
  544. 8329FED125B80F450001D20A /* EZAccessToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAccessToken.h; sourceTree = "<group>"; };
  545. 8329FED225B80F450001D20A /* EZPlayerExParamInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlayerExParamInfo.h; sourceTree = "<group>"; };
  546. 8329FED325B80F450001D20A /* EzvizWatchServerInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EzvizWatchServerInfo.h; sourceTree = "<group>"; };
  547. 8329FED425B80F450001D20A /* EZDeviceRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRecordDownloadTask.h; sourceTree = "<group>"; };
  548. 8329FED525B80F450001D20A /* EzvizRecordFileInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EzvizRecordFileInfo.h; sourceTree = "<group>"; };
  549. 8329FED625B80F450001D20A /* EZDeviceRecordFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRecordFile.h; sourceTree = "<group>"; };
  550. 8329FED725B80F450001D20A /* EZLeaveMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLeaveMessage.h; sourceTree = "<group>"; };
  551. 8329FED825B80F450001D20A /* EZHiddnsDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHiddnsDeviceInfo.h; sourceTree = "<group>"; };
  552. 8329FED925B80F450001D20A /* EZDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceInfo.h; sourceTree = "<group>"; };
  553. 8329FEDA25B80F450001D20A /* EZRecordDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordDownloader.h; sourceTree = "<group>"; };
  554. 8329FEDB25B80F450001D20A /* EZRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordDownloadTask.h; sourceTree = "<group>"; };
  555. 8329FEDC25B80F450001D20A /* EZVideoTransformer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTransformer.h; sourceTree = "<group>"; };
  556. 8329FEDD25B80F450001D20A /* EZTokenKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZTokenKit.h; sourceTree = "<group>"; };
  557. 8329FEDE25B80F450001D20A /* EZDetectorInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDetectorInfo.h; sourceTree = "<group>"; };
  558. 8329FEDF25B80F450001D20A /* EZHCNetDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHCNetDeviceInfo.h; sourceTree = "<group>"; };
  559. 8329FEE025B80F450001D20A /* EZCameraInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCameraInfo.h; sourceTree = "<group>"; };
  560. 8329FEE125B80F450001D20A /* EZCloudRecordFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCloudRecordFile.h; sourceTree = "<group>"; };
  561. 8329FEE225B80F450001D20A /* EZCloudRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCloudRecordDownloadTask.h; sourceTree = "<group>"; };
  562. 8329FEE325B80F450001D20A /* EZAreaInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAreaInfo.h; sourceTree = "<group>"; };
  563. 8329FEE425B80F450001D20A /* EZProbeDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZProbeDeviceInfo.h; sourceTree = "<group>"; };
  564. 8329FEE525B80F450001D20A /* EZVideoTalkSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkSDK.h; sourceTree = "<group>"; };
  565. 8329FEE625B80F450001D20A /* EZVideoQualityInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoQualityInfo.h; sourceTree = "<group>"; };
  566. 8329FEE725B80F450001D20A /* EZAlarmInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAlarmInfo.h; sourceTree = "<group>"; };
  567. 8329FEE825B80F450001D20A /* EZVideoTalkParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkParam.h; sourceTree = "<group>"; };
  568. 8329FEE925B80F450001D20A /* EZSADPDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZSADPDeviceInfo.h; sourceTree = "<group>"; };
  569. 8329FEEA25B80F450001D20A /* EZStorageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStorageInfo.h; sourceTree = "<group>"; };
  570. 8329FEEB25B80F450001D20A /* libEZOpenSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libEZOpenSDK.a; sourceTree = "<group>"; };
  571. 8334ED5425122B9900E0766A /* LMLampDetailCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailCell.swift; sourceTree = "<group>"; };
  572. 833559CD2510C6D8000F1EF2 /* LMLoopVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLoopVCtr.swift; sourceTree = "<group>"; };
  573. 833559CF2510C705000F1EF2 /* LMGroupVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupVCtr.swift; sourceTree = "<group>"; };
  574. 833559D12510C725000F1EF2 /* LMStrategyVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyVCtr.swift; sourceTree = "<group>"; };
  575. 833559D32510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoricalReportVCtr.swift; sourceTree = "<group>"; };
  576. 8341650D25831A23006FAB0D /* LMLightPoleListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListView.swift; sourceTree = "<group>"; };
  577. 8341651225832220006FAB0D /* LMLightPoleSever.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleSever.swift; sourceTree = "<group>"; };
  578. 8341651725834175006FAB0D /* LMLightPoleListRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListRequest.swift; sourceTree = "<group>"; };
  579. 8341651C25834195006FAB0D /* LMLightPoleListApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListApi.swift; sourceTree = "<group>"; };
  580. 8341652425835899006FAB0D /* LMLightPoleListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleListCell.swift; sourceTree = "<group>"; };
  581. 8341652E25837CFC006FAB0D /* LMLightPoleDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleDetailCtr.swift; sourceTree = "<group>"; };
  582. 8348482D24692D4A00F71465 /* LampMind交接文档.pages */ = {isa = PBXFileReference; lastKnownFileType = file; path = "LampMind交接文档.pages"; sourceTree = "<group>"; };
  583. 8349179D25308D0D006B44BD /* LMLightPoleCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleCtr.swift; sourceTree = "<group>"; };
  584. 8349179F25308D1F006B44BD /* LMLightPoleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleView.swift; sourceTree = "<group>"; };
  585. 834917A125308D49006B44BD /* LMLightPoleModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleModel.swift; sourceTree = "<group>"; };
  586. 834917A325308D5D006B44BD /* LMLightPoleManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleManager.swift; sourceTree = "<group>"; };
  587. 834B89832514B65300E2108E /* LMLampDetailContentCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentCtr.swift; sourceTree = "<group>"; };
  588. 834B89852514B66E00E2108E /* LMLampDetailContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentView.swift; sourceTree = "<group>"; };
  589. 834B89872514B69700E2108E /* LMLampDetailContentModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentModel.swift; sourceTree = "<group>"; };
  590. 834B89892514B93C00E2108E /* LMLampDetailContentManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentManager.swift; sourceTree = "<group>"; };
  591. 834B898B2514BBD400E2108E /* LMLampDetaiContentApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetaiContentApi.swift; sourceTree = "<group>"; };
  592. 834B898D2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetainlContentHttpRequest.swift; sourceTree = "<group>"; };
  593. 834B898F2514D63E00E2108E /* LMLampDetailContentService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailContentService.swift; sourceTree = "<group>"; };
  594. 834E295C251C370900BC3482 /* LMMainLoopService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopService.swift; sourceTree = "<group>"; };
  595. 834E295E251C37BA00BC3482 /* LMMainLoopApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopApi.swift; sourceTree = "<group>"; };
  596. 834E2960251C37CF00BC3482 /* LMMainLoopModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopModel.swift; sourceTree = "<group>"; };
  597. 834E2962251C37E400BC3482 /* LMMainLoopRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopRequest.swift; sourceTree = "<group>"; };
  598. 834E2964251C459100BC3482 /* LMMainLoopCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopCell.swift; sourceTree = "<group>"; };
  599. 834E296B251CBD8E00BC3482 /* LMNewLoopCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopCtr.swift; sourceTree = "<group>"; };
  600. 834E296D251CBDA500BC3482 /* LMNewLoopTwoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoView.swift; sourceTree = "<group>"; };
  601. 834E296F251CBDBC00BC3482 /* LMNewLoopModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopModel.swift; sourceTree = "<group>"; };
  602. 834E2971251CBDCA00BC3482 /* LMNewLoopApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopApi.swift; sourceTree = "<group>"; };
  603. 834E2973251CBDE100BC3482 /* LMNewLoopRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopRequest.swift; sourceTree = "<group>"; };
  604. 834E2975251CBDFD00BC3482 /* LMNewLoopManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopManager.swift; sourceTree = "<group>"; };
  605. 834E45632511E85D00ED6B71 /* LMLampManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampManager.swift; sourceTree = "<group>"; };
  606. 834E45652511E88300ED6B71 /* LMLampDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailView.swift; sourceTree = "<group>"; };
  607. 834E45672511F4E300ED6B71 /* LMLampServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampServer.swift; sourceTree = "<group>"; };
  608. 834E45692511F69A00ED6B71 /* LMLampDetailHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailHttpRequest.swift; sourceTree = "<group>"; };
  609. 834E456D2511F6C600ED6B71 /* LMLampDetailApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailApi.swift; sourceTree = "<group>"; };
  610. 834E456F251201FB00ED6B71 /* LMLampDetailModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampDetailModel.swift; sourceTree = "<group>"; };
  611. 834F9D822523725F00BFFE58 /* LMGroupSettingService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingService.swift; sourceTree = "<group>"; };
  612. 8350348825287A6A00BF947A /* LMNewStrategyGroupCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupCtr.swift; sourceTree = "<group>"; };
  613. 8350348A25287A8800BF947A /* LMNewStrategyGroupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupView.swift; sourceTree = "<group>"; };
  614. 8350348C25287AA500BF947A /* LMNewStrategyGroupModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupModel.swift; sourceTree = "<group>"; };
  615. 8350348E25287AC000BF947A /* LMNewStrategyGroupApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupApi.swift; sourceTree = "<group>"; };
  616. 8350349025287AE800BF947A /* LMNewStrategyGroupRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupRequest.swift; sourceTree = "<group>"; };
  617. 8350349225287B0800BF947A /* LMNewStrategyGroupManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewStrategyGroupManager.swift; sourceTree = "<group>"; };
  618. 83559F362522339300B166C4 /* LMDetailContentCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentCtr.swift; sourceTree = "<group>"; };
  619. 83559F38252233B800B166C4 /* LMDetailContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentView.swift; sourceTree = "<group>"; };
  620. 83559F3A252233D100B166C4 /* LMDetailContentModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentModel.swift; sourceTree = "<group>"; };
  621. 83559F3C252233E400B166C4 /* LMDetailContentApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentApi.swift; sourceTree = "<group>"; };
  622. 83559F3E2522340000B166C4 /* LMDetailContentHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentHttpRequest.swift; sourceTree = "<group>"; };
  623. 83559F402522341400B166C4 /* LMDetailContentManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentManager.swift; sourceTree = "<group>"; };
  624. 83559F422522342B00B166C4 /* LMDetailContentService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentService.swift; sourceTree = "<group>"; };
  625. 83559F442522490500B166C4 /* LMDetailContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMDetailContentCell.swift; sourceTree = "<group>"; };
  626. 8356659B25242B1100425C38 /* LMStrategyOperationCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyOperationCell.swift; sourceTree = "<group>"; };
  627. 8356659D2524580500425C38 /* LMStrategyOperationDetailCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyOperationDetailCell.swift; sourceTree = "<group>"; };
  628. 8356659F2524883000425C38 /* LMHistoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryView.swift; sourceTree = "<group>"; };
  629. 835665A12524884400425C38 /* LMHistoryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryModel.swift; sourceTree = "<group>"; };
  630. 835665A32524885500425C38 /* LMHistoryApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryApi.swift; sourceTree = "<group>"; };
  631. 835665A52524886C00425C38 /* LMHistoryHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryHttpRequest.swift; sourceTree = "<group>"; };
  632. 835665A72524888200425C38 /* LMHistoryManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryManager.swift; sourceTree = "<group>"; };
  633. 835665A925248FDE00425C38 /* LMHistoryService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryService.swift; sourceTree = "<group>"; };
  634. 835665AB25249BF400425C38 /* LMHistoryCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryCell.swift; sourceTree = "<group>"; };
  635. 8356E1B4253FCC400024561F /* LMRepairService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairService.swift; sourceTree = "<group>"; };
  636. 8356E1B6253FCD200024561F /* LMRepairApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairApi.swift; sourceTree = "<group>"; };
  637. 8356E1B8253FCE7B0024561F /* LMRepairRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRepairRequest.swift; sourceTree = "<group>"; };
  638. 83577A292519DC89002A83A0 /* LMMainLoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopView.swift; sourceTree = "<group>"; };
  639. 83577A2B2519DECC002A83A0 /* LMMainLoopManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainLoopManager.swift; sourceTree = "<group>"; };
  640. 8359C049253424500027518B /* LMMeteorologicalCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalCell.swift; sourceTree = "<group>"; };
  641. 8359C04B253427920027518B /* LMMeteorologicalApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalApi.swift; sourceTree = "<group>"; };
  642. 8359C04D253427A70027518B /* LMMeteorologicalRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalRequest.swift; sourceTree = "<group>"; };
  643. 8359C04F253429500027518B /* LMMeteorologicalService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalService.swift; sourceTree = "<group>"; };
  644. 8359C05125343C1B0027518B /* LMLightApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightApi.swift; sourceTree = "<group>"; };
  645. 8359C05325343C400027518B /* LMLightRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightRequest.swift; sourceTree = "<group>"; };
  646. 8359C055253440110027518B /* LMLightService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightService.swift; sourceTree = "<group>"; };
  647. 8359C0572534456B0027518B /* LMLightViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightViewCell.swift; sourceTree = "<group>"; };
  648. 835F1B9225E89DD0006A7CA1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMDimmingView.xib; sourceTree = "<group>"; };
  649. 835F1B9825E89DD8006A7CA1 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMDimmingView.strings; sourceTree = "<group>"; };
  650. 835F1B9A25E89DDE006A7CA1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMDimmingView.strings"; sourceTree = "<group>"; };
  651. 8360226E2533434A00416047 /* LMLightManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightManager.swift; sourceTree = "<group>"; };
  652. 83602270253345CE00416047 /* LMLightModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightModel.swift; sourceTree = "<group>"; };
  653. 83602272253345E000416047 /* LMLightView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightView.swift; sourceTree = "<group>"; };
  654. 83602274253345F500416047 /* LMLightCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightCtr.swift; sourceTree = "<group>"; };
  655. 836022762533461900416047 /* LMMeteorologicalManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalManager.swift; sourceTree = "<group>"; };
  656. 836022782533462700416047 /* LMMeteorologicalModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalModel.swift; sourceTree = "<group>"; };
  657. 8360227A2533463500416047 /* LMMeteorologicalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalView.swift; sourceTree = "<group>"; };
  658. 8360227C2533464700416047 /* LMMeteorologicalCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMeteorologicalCtr.swift; sourceTree = "<group>"; };
  659. 8360227E2533465C00416047 /* LMMonitorManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorManager.swift; sourceTree = "<group>"; };
  660. 836022802533467400416047 /* LMMonitorModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorModel.swift; sourceTree = "<group>"; };
  661. 836022822533470D00416047 /* LMMonitorPoleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorPoleView.swift; sourceTree = "<group>"; };
  662. 836022842533471C00416047 /* LMMonitorCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorCtr.swift; sourceTree = "<group>"; };
  663. 8360228625335F2000416047 /* LMMonitorPoleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorPoleCell.swift; sourceTree = "<group>"; };
  664. 83674E9525E60435000B4B3C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMRoadFilterView.xib; sourceTree = "<group>"; };
  665. 83674E9B25E60442000B4B3C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMRoadFilterView.strings; sourceTree = "<group>"; };
  666. 83674E9D25E60446000B4B3C /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMRoadFilterView.strings"; sourceTree = "<group>"; };
  667. 836AAF1925E4B4D00068B7C6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMLoopView.xib; sourceTree = "<group>"; };
  668. 836AAF1C25E4B4D90068B7C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMLoopView.strings; sourceTree = "<group>"; };
  669. 836AAF1E25E4B4E00068B7C6 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMLoopView.strings"; sourceTree = "<group>"; };
  670. 836AAF2025E4B53A0068B7C6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMGroupView.xib; sourceTree = "<group>"; };
  671. 836AAF2625E4CE760068B7C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMGroupView.strings; sourceTree = "<group>"; };
  672. 836AAF2825E4CE7C0068B7C6 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMGroupView.strings"; sourceTree = "<group>"; };
  673. 836D81B925B98FA3001718E0 /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = IJKMediaFramework.framework; sourceTree = "<group>"; };
  674. 836E8AE4258B6BB200883233 /* LMConnectDeviceCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMConnectDeviceCell.swift; sourceTree = "<group>"; };
  675. 836FC31925E0BE170071051F /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
  676. 836FC31D25E0BE1B0071051F /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  677. 83711D91258C8422006387CE /* LMHistoryAlertCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMHistoryAlertCell.swift; sourceTree = "<group>"; };
  678. 83711D96258C89B8006387CE /* LMNowAlertCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNowAlertCell.swift; sourceTree = "<group>"; };
  679. 83725CB325EA1E47000222EB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMAlarmInfoVCtr.xib; sourceTree = "<group>"; };
  680. 83725CB925EA1E52000222EB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMAlarmInfoVCtr.strings; sourceTree = "<group>"; };
  681. 83725CBB25EA1F0B000222EB /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMAlarmInfoVCtr.strings"; sourceTree = "<group>"; };
  682. 8378142C2584C60A00FD3EC3 /* LMLightPoleDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleDetailView.swift; sourceTree = "<group>"; };
  683. 837814312584C63B00FD3EC3 /* LMLightPoleDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightPoleDetailManager.swift; sourceTree = "<group>"; };
  684. 8378143B2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxDetailCtr.swift; sourceTree = "<group>"; };
  685. 837814402584F24700FD3EC3 /* LMCloudBoxDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxDetailView.swift; sourceTree = "<group>"; };
  686. 837814452584F26500FD3EC3 /* LMCloudBoxManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxManager.swift; sourceTree = "<group>"; };
  687. 8378145E2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDetailCtr.swift; sourceTree = "<group>"; };
  688. 837814632584F40F00FD3EC3 /* LMAirQualityDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDetailView.swift; sourceTree = "<group>"; };
  689. 837814682584F42600FD3EC3 /* LMAirQualityDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAirQualityDetailManager.swift; sourceTree = "<group>"; };
  690. 8378146D2584F43E00FD3EC3 /* LMRadioDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRadioDetailCtr.swift; sourceTree = "<group>"; };
  691. 837814722584F44C00FD3EC3 /* LMRadioDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRadioDetailView.swift; sourceTree = "<group>"; };
  692. 837814772584F45F00FD3EC3 /* LMRadioDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMRadioDetailManager.swift; sourceTree = "<group>"; };
  693. 8378147C2584F47400FD3EC3 /* LMMonitorDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailCtr.swift; sourceTree = "<group>"; };
  694. 837814812584F48300FD3EC3 /* LMMonitorDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailView.swift; sourceTree = "<group>"; };
  695. 837814862584F49700FD3EC3 /* LMMonitorDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorDetailManager.swift; sourceTree = "<group>"; };
  696. 8378148B2584F4C500FD3EC3 /* LMLightDetailCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailCtr.swift; sourceTree = "<group>"; };
  697. 837814902584F4D400FD3EC3 /* LMLightDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailView.swift; sourceTree = "<group>"; };
  698. 837814952584F4E600FD3EC3 /* LMLightDetailManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailManager.swift; sourceTree = "<group>"; };
  699. 8380F1FB25874A0E001A1C94 /* LMLightDetailSever.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailSever.swift; sourceTree = "<group>"; };
  700. 8380F20025874A47001A1C94 /* LMLightDetailRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailRequest.swift; sourceTree = "<group>"; };
  701. 8380F20525874A51001A1C94 /* LMLightDetailApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailApi.swift; sourceTree = "<group>"; };
  702. 8380F20A25874A5C001A1C94 /* LMLightDetailModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightDetailModel.swift; sourceTree = "<group>"; };
  703. 83ABC211251D9B5700D53141 /* LMNewLoopService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopService.swift; sourceTree = "<group>"; };
  704. 83ABDA7C25863F2000FDC0C7 /* LMCloudBoxServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxServer.swift; sourceTree = "<group>"; };
  705. 83ABDA812586427F00FDC0C7 /* LMCloudBoxRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxRequest.swift; sourceTree = "<group>"; };
  706. 83ABDA862586429500FDC0C7 /* LMCloudBoxModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxModel.swift; sourceTree = "<group>"; };
  707. 83ABDA8B258642A200FDC0C7 /* LMCloudBoxApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMCloudBoxApi.swift; sourceTree = "<group>"; };
  708. 83B73184251DBE2600953DFF /* LMNewLoopTwoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoCell.swift; sourceTree = "<group>"; };
  709. 83B73186251DEF1A00953DFF /* LMNewLoopTwoCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoCtr.swift; sourceTree = "<group>"; };
  710. 83B7318C251DEF8A00953DFF /* LMNewLoopTwoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopTwoManager.swift; sourceTree = "<group>"; };
  711. 83B7318E251DF16A00953DFF /* LMNewLoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopView.swift; sourceTree = "<group>"; };
  712. 83B73190251DF36800953DFF /* LMNewLoopInputContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopInputContentCell.swift; sourceTree = "<group>"; };
  713. 83B73192251DF38100953DFF /* LMNewLoopChoseContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLoopChoseContentCell.swift; sourceTree = "<group>"; };
  714. 83C7534225934E3B0072318F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  715. 83C7534425934EA50072318F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  716. 83CCBDBA239758230096AA9F /* LMLampBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseView.swift; sourceTree = "<group>"; };
  717. 83CCBDBC23975F9E0096AA9F /* LMSelectorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMSelectorView.swift; sourceTree = "<group>"; };
  718. 83CCBDBE23978F800096AA9F /* LMLampApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampApi.swift; sourceTree = "<group>"; };
  719. 83CCBDC023978F940096AA9F /* LMLampModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampModel.swift; sourceTree = "<group>"; };
  720. 83CCBDC223978FA60096AA9F /* LMLampHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampHttpRequest.swift; sourceTree = "<group>"; };
  721. 83CCBDC42397A4800096AA9F /* LMLampBaseService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseService.swift; sourceTree = "<group>"; };
  722. 83CCBDC62397B3DE0096AA9F /* LMSelectorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMSelectorCell.swift; sourceTree = "<group>"; };
  723. 83CCBDC72397B3DE0096AA9F /* LMSelectorCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMSelectorCell.xib; sourceTree = "<group>"; };
  724. 83CCBDCA2397C27E0096AA9F /* LMLightTimeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLightTimeView.swift; sourceTree = "<group>"; };
  725. 83CCBDCC2397C2940096AA9F /* LMLoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLoopView.swift; sourceTree = "<group>"; };
  726. 83CCBDCE2397C31D0096AA9F /* LMGroupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupView.swift; sourceTree = "<group>"; };
  727. 83CCBDD02397C3450096AA9F /* LMPowerSavingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMPowerSavingView.swift; sourceTree = "<group>"; };
  728. 83CCBDD42397D4900096AA9F /* LMPowerSavingView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMPowerSavingView.xib; sourceTree = "<group>"; };
  729. 83CCD2BF2518477100AD14FD /* LMNewLampCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampCtr.swift; sourceTree = "<group>"; };
  730. 83CCD2C12518478400AD14FD /* LMNewLampView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampView.swift; sourceTree = "<group>"; };
  731. 83CCD2C32518479C00AD14FD /* LMNewLampModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampModel.swift; sourceTree = "<group>"; };
  732. 83CCD2C5251847AD00AD14FD /* LMNewLampManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampManager.swift; sourceTree = "<group>"; };
  733. 83CCD2C72518500000AD14FD /* LMInputContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMInputContentCell.swift; sourceTree = "<group>"; };
  734. 83CCD2C92518501900AD14FD /* LMChoseContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMChoseContentCell.swift; sourceTree = "<group>"; };
  735. 83CCD2CB2518503A00AD14FD /* LMInputAndChoseContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMInputAndChoseContentCell.swift; sourceTree = "<group>"; };
  736. 83CCD2CD2518A48100AD14FD /* LMNewLampService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampService.swift; sourceTree = "<group>"; };
  737. 83CCD2CF2518B27B00AD14FD /* LMNewLampApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampApi.swift; sourceTree = "<group>"; };
  738. 83CCD2D12518B29700AD14FD /* LMNewLampRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMNewLampRequest.swift; sourceTree = "<group>"; };
  739. 83D9FAAA2522E18D009956A8 /* LMGroupSettingCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingCtr.swift; sourceTree = "<group>"; };
  740. 83D9FAAC2522E1A1009956A8 /* LMGroupSettingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingView.swift; sourceTree = "<group>"; };
  741. 83D9FAAE2522E1BC009956A8 /* LMGroupSettingModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingModel.swift; sourceTree = "<group>"; };
  742. 83D9FAB02522E1D4009956A8 /* LMGroupSettingApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingApi.swift; sourceTree = "<group>"; };
  743. 83D9FAB22522E1EC009956A8 /* LMGroupSettingRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingRequest.swift; sourceTree = "<group>"; };
  744. 83D9FAB42522E200009956A8 /* LMGroupSettingManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupSettingManager.swift; sourceTree = "<group>"; };
  745. 83D9FAB625230680009956A8 /* LMManualOperationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMManualOperationView.swift; sourceTree = "<group>"; };
  746. 83D9FAB8252306A9009956A8 /* LMStrategyOperationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMStrategyOperationView.swift; sourceTree = "<group>"; };
  747. 83D9FABA252306BF009956A8 /* LMAutoOperationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMAutoOperationView.swift; sourceTree = "<group>"; };
  748. 83DD400125E3450E00A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  749. 83DD400625E3451700A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  750. 83DD401025E3463D00A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  751. 83DD401525E3464600A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  752. 83DD408A25E3817E00A5808E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMLoginVCtr.xib; sourceTree = "<group>"; };
  753. 83DD408D25E3818400A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMLoginVCtr.strings; sourceTree = "<group>"; };
  754. 83DD408F25E3819700A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMLoginVCtr.strings"; sourceTree = "<group>"; };
  755. 83DD409425E38A3700A5808E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LMAlarmNumberView.xib; sourceTree = "<group>"; };
  756. 83DD409725E38A4000A5808E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LMAlarmNumberView.strings; sourceTree = "<group>"; };
  757. 83DD409925E38A4B00A5808E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LMAlarmNumberView.strings"; sourceTree = "<group>"; };
  758. 83E23E5E2521BA6400678616 /* LMGroupManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupManager.swift; sourceTree = "<group>"; };
  759. 83E23E602521BA7300678616 /* LMGroupService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupService.swift; sourceTree = "<group>"; };
  760. 83E23E622521BA8100678616 /* LMGroupModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupModel.swift; sourceTree = "<group>"; };
  761. 83E23E642521BA8C00678616 /* LMGroupApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupApi.swift; sourceTree = "<group>"; };
  762. 83E23E662521BAA500678616 /* LMGroupHttpRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMGroupHttpRequest.swift; sourceTree = "<group>"; };
  763. 83E23E6A2521BB5400678616 /* LMMainGroupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMainGroupView.swift; sourceTree = "<group>"; };
  764. 83E23E6C2521D81200678616 /* LMTGroupItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMTGroupItemCell.swift; sourceTree = "<group>"; };
  765. 83E408182387726800255664 /* LampMind.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LampMind.app; sourceTree = BUILT_PRODUCTS_DIR; };
  766. 83E4081B2387726800255664 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  767. 83E4081D2387726800255664 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
  768. 83E4081F2387726800255664 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
  769. 83E408222387726800255664 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  770. 83E408242387726C00255664 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  771. 83E408272387726C00255664 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  772. 83E408292387726C00255664 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  773. 83E4082E2387726C00255664 /* LampMindTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LampMindTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  774. 83E408322387726D00255664 /* LampMindTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LampMindTests.swift; sourceTree = "<group>"; };
  775. 83E408342387726D00255664 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  776. 83E408392387726D00255664 /* LampMindUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LampMindUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  777. 83E4083D2387726D00255664 /* LampMindUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LampMindUITests.swift; sourceTree = "<group>"; };
  778. 83E4083F2387726D00255664 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  779. 83E4084B2387759A00255664 /* LampMind-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LampMind-Bridging-Header.h"; sourceTree = "<group>"; };
  780. 83E408562387782F00255664 /* UIBarButtonItem+item.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIBarButtonItem+item.swift"; sourceTree = "<group>"; };
  781. 83E408572387782F00255664 /* MKMapView+ZoomLevel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MKMapView+ZoomLevel.swift"; sourceTree = "<group>"; };
  782. 83E408582387782F00255664 /* UIView+Gradient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Gradient.swift"; sourceTree = "<group>"; };
  783. 83E408592387782F00255664 /* UIView+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Extension.swift"; sourceTree = "<group>"; };
  784. 83E4085A2387782F00255664 /* UIButton+Gradient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIButton+Gradient.swift"; sourceTree = "<group>"; };
  785. 83E4085B2387782F00255664 /* LMView+UIViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "LMView+UIViewController.swift"; sourceTree = "<group>"; };
  786. 83E4085C2387782F00255664 /* UIImagView+Kingfisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImagView+Kingfisher.swift"; sourceTree = "<group>"; };
  787. 83E4085D2387782F00255664 /* UIView+Configure.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Configure.swift"; sourceTree = "<group>"; };
  788. 83E4085E2387782F00255664 /* UIVIew+Positioning.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIVIew+Positioning.swift"; sourceTree = "<group>"; };
  789. 83E4085F2387782F00255664 /* ProjectConstant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProjectConstant.swift; sourceTree = "<group>"; };
  790. 83E408612387782F00255664 /* ProviderSupport.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProviderSupport.swift; sourceTree = "<group>"; };
  791. 83E408642387782F00255664 /* LMCornerLabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMCornerLabel.swift; sourceTree = "<group>"; };
  792. 83E408662387782F00255664 /* LMViewModelProtocolDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMViewModelProtocolDelegate.swift; sourceTree = "<group>"; };
  793. 83E408682387782F00255664 /* LMViewProtocolDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMViewProtocolDelegate.swift; sourceTree = "<group>"; };
  794. 83E408692387782F00255664 /* LMViewManagerProtocolDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMViewManagerProtocolDelegate.swift; sourceTree = "<group>"; };
  795. 83E4086A2387782F00255664 /* AppShare.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShare.swift; sourceTree = "<group>"; };
  796. 83E4086C2387782F00255664 /* THScrollChooseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = THScrollChooseView.m; sourceTree = "<group>"; };
  797. 83E4086D2387782F00255664 /* CXDatePickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CXDatePickerView.m; sourceTree = "<group>"; };
  798. 83E4086F2387782F00255664 /* DGKVOTool.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DGKVOTool.swift; sourceTree = "<group>"; };
  799. 83E408702387782F00255664 /* NSDate+CXCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+CXCategory.h"; sourceTree = "<group>"; };
  800. 83E408712387782F00255664 /* THScrollChooseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = THScrollChooseView.h; sourceTree = "<group>"; };
  801. 83E408732387782F00255664 /* SegmentStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SegmentStyle.swift; sourceTree = "<group>"; };
  802. 83E408742387782F00255664 /* ScrollSegmentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScrollSegmentView.swift; sourceTree = "<group>"; };
  803. 83E408762387782F00255664 /* HDEmptyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HDEmptyView.swift; sourceTree = "<group>"; };
  804. 83E408772387782F00255664 /* HDRunTime.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HDRunTime.swift; sourceTree = "<group>"; };
  805. 83E408782387782F00255664 /* UIView+Position.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Position.swift"; sourceTree = "<group>"; };
  806. 83E408792387782F00255664 /* UIScrollView+Empty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIScrollView+Empty.swift"; sourceTree = "<group>"; };
  807. 83E4087A2387782F00255664 /* HDEmptyBaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HDEmptyBaseView.swift; sourceTree = "<group>"; };
  808. 83E4087B2387782F00255664 /* CXDatePickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CXDatePickerView.h; sourceTree = "<group>"; };
  809. 83E4087C2387782F00255664 /* NSDate+CXCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+CXCategory.m"; sourceTree = "<group>"; };
  810. 83E4087D2387782F00255664 /* KKWRefreshHeaderAnimator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KKWRefreshHeaderAnimator.swift; sourceTree = "<group>"; };
  811. 83E408842387782F00255664 /* PickerViewParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PickerViewParameter.h; sourceTree = "<group>"; };
  812. 83E409612387790900255664 /* LMLoginModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginModel.swift; sourceTree = "<group>"; };
  813. 83E409622387790900255664 /* LMLoginHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginHttpRequest.swift; sourceTree = "<group>"; };
  814. 83E409632387790900255664 /* LMLoginApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginApi.swift; sourceTree = "<group>"; };
  815. 83E409652387790900255664 /* LMLoginManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginManager.swift; sourceTree = "<group>"; };
  816. 83E409672387790900255664 /* LMLoginVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLoginVCtr.swift; sourceTree = "<group>"; };
  817. 83EAA59723950E42008763FB /* RootNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RootNavigationController.swift; sourceTree = "<group>"; };
  818. 83EAA59923950E42008763FB /* MainViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainViewController.swift; sourceTree = "<group>"; };
  819. 83EAA59B23950E43008763FB /* LMNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMNavigationController.swift; sourceTree = "<group>"; };
  820. 83EAA5A223950EDB008763FB /* LMGISVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMGISVCtr.xib; sourceTree = "<group>"; };
  821. 83EAA5A323950EDB008763FB /* LMGISVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISVCtr.swift; sourceTree = "<group>"; };
  822. 83EAA5A523950EDB008763FB /* LMGISManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISManager.swift; sourceTree = "<group>"; };
  823. 83EAA5A623950EDB008763FB /* LMGISMapManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISMapManager.swift; sourceTree = "<group>"; };
  824. 83EAA5A823950EDB008763FB /* LMGISModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISModel.swift; sourceTree = "<group>"; };
  825. 83EAA5A923950EDB008763FB /* LMGisHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGisHttpRequest.swift; sourceTree = "<group>"; };
  826. 83EAA5AA23950EDB008763FB /* LMGISApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGISApi.swift; sourceTree = "<group>"; };
  827. 83EAA5AC23950EDB008763FB /* LMPoleCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMPoleCalloutView.xib; sourceTree = "<group>"; };
  828. 83EAA5AD23950EDB008763FB /* LMGisHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMGisHeaderView.swift; sourceTree = "<group>"; };
  829. 83EAA5AE23950EDB008763FB /* LMLampWithAlarmCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLampWithAlarmCalloutView.swift; sourceTree = "<group>"; };
  830. 83EAA5AF23950EDB008763FB /* LMPoleCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMPoleCalloutView.swift; sourceTree = "<group>"; };
  831. 83EAA5B023950EDB008763FB /* LMLampCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMLampCalloutView.xib; sourceTree = "<group>"; };
  832. 83EAA5B123950EDB008763FB /* LMLampCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLampCalloutView.swift; sourceTree = "<group>"; };
  833. 83EAA5B223950EDB008763FB /* LMAnnotationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAnnotationView.swift; sourceTree = "<group>"; };
  834. 83EAA5B323950EDB008763FB /* LMMapView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMMapView.swift; sourceTree = "<group>"; };
  835. 83EAA5B423950EDB008763FB /* LMLampNoAlarmCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMLampNoAlarmCalloutView.xib; sourceTree = "<group>"; };
  836. 83EAA5B523950EDB008763FB /* LMLampWithAlarmCalloutView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMLampWithAlarmCalloutView.xib; sourceTree = "<group>"; };
  837. 83EAA5B623950EDB008763FB /* LMLampNoAlarmCalloutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLampNoAlarmCalloutView.swift; sourceTree = "<group>"; };
  838. 83EAA64223950F22008763FB /* LMRoadFilterVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterVCtr.swift; sourceTree = "<group>"; };
  839. 83EAA64323950F22008763FB /* LMRoadFilterVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMRoadFilterVCtr.xib; sourceTree = "<group>"; };
  840. 83EAA64523950F22008763FB /* LMRoadFilterManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterManager.swift; sourceTree = "<group>"; };
  841. 83EAA64623950F22008763FB /* LMRoadFilterCacheManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterCacheManager.swift; sourceTree = "<group>"; };
  842. 83EAA64923950F22008763FB /* LMRoadFilterView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMRoadFilterView.swift; sourceTree = "<group>"; };
  843. 83EAA64C23950F22008763FB /* LMDimmingVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMDimmingVCtr.xib; sourceTree = "<group>"; };
  844. 83EAA64D23950F22008763FB /* LMDimmingVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDimmingVCtr.swift; sourceTree = "<group>"; };
  845. 83EAA64F23950F22008763FB /* LMDimmingManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDimmingManager.swift; sourceTree = "<group>"; };
  846. 83EAA65123950F22008763FB /* LMWebSocket.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMWebSocket.swift; sourceTree = "<group>"; };
  847. 83EAA65323950F22008763FB /* LMSliderViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMSliderViewStyle.swift; sourceTree = "<group>"; };
  848. 83EAA65523950F22008763FB /* LMSliderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMSliderView.swift; sourceTree = "<group>"; };
  849. 83EAA65623950F22008763FB /* LMSliderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMSliderView.xib; sourceTree = "<group>"; };
  850. 83EAA65823950F22008763FB /* LMDimmingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDimmingView.swift; sourceTree = "<group>"; };
  851. 83EAA6742395142B008763FB /* LMAlarmInfoManger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmInfoManger.swift; sourceTree = "<group>"; };
  852. 83EAA6752395142B008763FB /* LMAlarmVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMAlarmVCtr.xib; sourceTree = "<group>"; };
  853. 83EAA6762395142B008763FB /* LMAlarmDispathVctr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmDispathVctr.swift; sourceTree = "<group>"; };
  854. 83EAA6772395142B008763FB /* LMAlarmInfoVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmInfoVCtr.swift; sourceTree = "<group>"; };
  855. 83EAA67A2395142B008763FB /* LMAlarmManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmManager.swift; sourceTree = "<group>"; };
  856. 83EAA67C2395142B008763FB /* LMAlarmCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMAlarmCell.xib; sourceTree = "<group>"; };
  857. 83EAA67D2395142B008763FB /* LMEmptyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMEmptyView.xib; sourceTree = "<group>"; };
  858. 83EAA67E2395142B008763FB /* LMAlarmView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmView.swift; sourceTree = "<group>"; };
  859. 83EAA67F2395142B008763FB /* LMAlarmCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmCell.swift; sourceTree = "<group>"; };
  860. 83EAA6802395142B008763FB /* LMEmptyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMEmptyView.swift; sourceTree = "<group>"; };
  861. 83EAA6812395142B008763FB /* LMAlarmVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmVCtr.swift; sourceTree = "<group>"; };
  862. 83EAA6822395142B008763FB /* LMNetWorkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMNetWorkManager.swift; sourceTree = "<group>"; };
  863. 83EAA6832395142B008763FB /* LMAlarmApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmApi.swift; sourceTree = "<group>"; };
  864. 83EAA6852395142B008763FB /* LMAlarmModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmModel.swift; sourceTree = "<group>"; };
  865. 83EAA6862395142B008763FB /* LMAlarmHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmHttpRequest.swift; sourceTree = "<group>"; };
  866. 83EAA6882395142B008763FB /* LMAlarmDispatchManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmDispatchManager.swift; sourceTree = "<group>"; };
  867. 83EAA6A2239516AA008763FB /* LMDeviceVCtr.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMDeviceVCtr.xib; sourceTree = "<group>"; };
  868. 83EAA6A3239516AA008763FB /* LMDeviceVCtr.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceVCtr.swift; sourceTree = "<group>"; };
  869. 83EAA6A5239516AA008763FB /* LMDeviceViewManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceViewManager.swift; sourceTree = "<group>"; };
  870. 83EAA6A7239516AA008763FB /* LMDeviceApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceApi.swift; sourceTree = "<group>"; };
  871. 83EAA6A8239516AA008763FB /* LMDeviceModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceModel.swift; sourceTree = "<group>"; };
  872. 83EAA6A9239516AA008763FB /* LMChartsModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMChartsModel.swift; sourceTree = "<group>"; };
  873. 83EAA6AA239516AA008763FB /* LMDeviceHttpRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceHttpRequest.swift; sourceTree = "<group>"; };
  874. 83EAA6AC239516AA008763FB /* LMAlarmNumberView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMAlarmNumberView.swift; sourceTree = "<group>"; };
  875. 83EAA6AD239516AA008763FB /* LMElectricQuantityView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMElectricQuantityView.swift; sourceTree = "<group>"; };
  876. 83EAA6AE239516AA008763FB /* LMDeviceView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMDeviceView.swift; sourceTree = "<group>"; };
  877. 83EAA6AF239516AA008763FB /* BalloonMarker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BalloonMarker.swift; sourceTree = "<group>"; };
  878. 83EAA6B0239516AA008763FB /* LMElectriQuantiyCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMElectriQuantiyCell.xib; sourceTree = "<group>"; };
  879. 83EAA6B1239516AA008763FB /* LMMonitorView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMMonitorView.swift; sourceTree = "<group>"; };
  880. 83EAA6B2239516AA008763FB /* LMElectriQuantiyCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMElectriQuantiyCell.swift; sourceTree = "<group>"; };
  881. 83EAA6B3239516AA008763FB /* LMLightNumberView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMLightNumberView.swift; sourceTree = "<group>"; };
  882. 83EAA6B4239516AA008763FB /* LMChartView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LMChartView.swift; sourceTree = "<group>"; };
  883. 83EAA6C623954149008763FB /* LMLightNumberView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMLightNumberView.xib; sourceTree = "<group>"; };
  884. 83EAA6CA239645B1008763FB /* LMMonitorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMMonitorCell.swift; sourceTree = "<group>"; };
  885. 83EAA6CB239645B1008763FB /* LMMonitorCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMMonitorCell.xib; sourceTree = "<group>"; };
  886. 83EAA71323966966008763FB /* UICollectionView+SideRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+SideRefresh.m"; sourceTree = "<group>"; };
  887. 83EAA71423966966008763FB /* SideRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefreshHeader.m; sourceTree = "<group>"; };
  888. 83EAA71523966966008763FB /* SideRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefreshFooter.m; sourceTree = "<group>"; };
  889. 83EAA71623966966008763FB /* UICollectionView+SideExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+SideExtension.h"; sourceTree = "<group>"; };
  890. 83EAA71723966966008763FB /* SideRefreshEmptyFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefreshEmptyFooter.m; sourceTree = "<group>"; };
  891. 83EAA71823966966008763FB /* SideRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SideRefresh.m; sourceTree = "<group>"; };
  892. 83EAA71923966966008763FB /* UICollectionView+SideExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+SideExtension.m"; sourceTree = "<group>"; };
  893. 83EAA71A23966966008763FB /* SideRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefreshFooter.h; sourceTree = "<group>"; };
  894. 83EAA71B23966966008763FB /* SideRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefreshHeader.h; sourceTree = "<group>"; };
  895. 83EAA71C23966966008763FB /* UICollectionView+SideRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+SideRefresh.h"; sourceTree = "<group>"; };
  896. 83EAA71D23966966008763FB /* SideRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefresh.h; sourceTree = "<group>"; };
  897. 83EAA71E23966966008763FB /* SideRefreshEmptyFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SideRefreshEmptyFooter.h; sourceTree = "<group>"; };
  898. 83EAA72623968F9A008763FB /* LMLampVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampVCtr.swift; sourceTree = "<group>"; };
  899. 83EAA72E239749FD008763FB /* LMLampBaseVCtr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseVCtr.swift; sourceTree = "<group>"; };
  900. 83EAA72F239749FD008763FB /* LMLampBaseVCtr.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LMLampBaseVCtr.xib; sourceTree = "<group>"; };
  901. 83EAA73623974AA1008763FB /* LMLampBaseManger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LMLampBaseManger.swift; sourceTree = "<group>"; };
  902. B6A851A2A19952A236929375 /* Pods-LampMind.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LampMind.release.xcconfig"; path = "Target Support Files/Pods-LampMind/Pods-LampMind.release.xcconfig"; sourceTree = "<group>"; };
  903. /* End PBXFileReference section */
  904. /* Begin PBXFrameworksBuildPhase section */
  905. 83E408152387726800255664 /* Frameworks */ = {
  906. isa = PBXFrameworksBuildPhase;
  907. buildActionMask = 2147483647;
  908. files = (
  909. 5F6A115625382E7F007A20DC /* libiconv.2.4.0.tbd in Frameworks */,
  910. 5F6A10E72537E715007A20DC /* libc++.tbd in Frameworks */,
  911. 5F6A10E02537E38C007A20DC /* MediaAccessibility.framework in Frameworks */,
  912. 5F6A11472537FDE0007A20DC /* libssl.a in Frameworks */,
  913. 5F6A10E52537E3CB007A20DC /* libz.tbd in Frameworks */,
  914. 5F6A10E42537E3B3007A20DC /* CoreMedia.framework in Frameworks */,
  915. 5F6A10DE2537E371007A20DC /* OpenGLES.framework in Frameworks */,
  916. 5F6A114D2537FF04007A20DC /* OpenAL.framework in Frameworks */,
  917. 5F6A114A2537FEB9007A20DC /* SystemConfiguration.framework in Frameworks */,
  918. 5F6A10E32537E3A4007A20DC /* AVFoundation.framework in Frameworks */,
  919. 5F6A10D72537E33C007A20DC /* CoreAudio.framework in Frameworks */,
  920. 5F6A10DC2537E362007A20DC /* VideoToolbox.framework in Frameworks */,
  921. 5F6A114C2537FEEC007A20DC /* GLKit.framework in Frameworks */,
  922. 8329FEEC25B80F460001D20A /* libEZOpenSDK.a in Frameworks */,
  923. 83C7534525934EA50072318F /* QuartzCore.framework in Frameworks */,
  924. 836D81BA25B98FA4001718E0 /* IJKMediaFramework.framework in Frameworks */,
  925. 5F6A11492537FEA8007A20DC /* libiconv.tbd in Frameworks */,
  926. 5F6A10E22537E39B007A20DC /* CoreVideo.framework in Frameworks */,
  927. 5F6A10DB2537E353007A20DC /* AudioToolbox.framework in Frameworks */,
  928. 5F6A115725382E95007A20DC /* libbz2.tbd in Frameworks */,
  929. 5F6A11462537FDE0007A20DC /* libcrypto.a in Frameworks */,
  930. 5F6A115425382E58007A20DC /* CoreTelephony.framework in Frameworks */,
  931. 5F6A114B2537FECA007A20DC /* MobileCoreServices.framework in Frameworks */,
  932. 5F6A10D92537E348007A20DC /* MediaPlayer.framework in Frameworks */,
  933. 5F6A115225382E13007A20DC /* libsqlite3.0.tbd in Frameworks */,
  934. 83C7534325934E3B0072318F /* CoreGraphics.framework in Frameworks */,
  935. FE42013DC374EEAC481BD190 /* Pods_LampMind.framework in Frameworks */,
  936. );
  937. runOnlyForDeploymentPostprocessing = 0;
  938. };
  939. 83E4082B2387726C00255664 /* Frameworks */ = {
  940. isa = PBXFrameworksBuildPhase;
  941. buildActionMask = 2147483647;
  942. files = (
  943. );
  944. runOnlyForDeploymentPostprocessing = 0;
  945. };
  946. 83E408362387726D00255664 /* Frameworks */ = {
  947. isa = PBXFrameworksBuildPhase;
  948. buildActionMask = 2147483647;
  949. files = (
  950. );
  951. runOnlyForDeploymentPostprocessing = 0;
  952. };
  953. /* End PBXFrameworksBuildPhase section */
  954. /* Begin PBXGroup section */
  955. 5F5E1E8A2536AF54007EAC23 /* PlayVideo */ = {
  956. isa = PBXGroup;
  957. children = (
  958. 5F5E1E8E2536AF9B007EAC23 /* Manager */,
  959. 5F5E1E8D2536AF8C007EAC23 /* Model */,
  960. 5F5E1E8C2536AF85007EAC23 /* View */,
  961. 5F5E1E8B2536AF7B007EAC23 /* Controller */,
  962. );
  963. path = PlayVideo;
  964. sourceTree = "<group>";
  965. };
  966. 5F5E1E8B2536AF7B007EAC23 /* Controller */ = {
  967. isa = PBXGroup;
  968. children = (
  969. 5F5E1E8F2536C944007EAC23 /* LMPlayVideoCtr.swift */,
  970. );
  971. path = Controller;
  972. sourceTree = "<group>";
  973. };
  974. 5F5E1E8C2536AF85007EAC23 /* View */ = {
  975. isa = PBXGroup;
  976. children = (
  977. 5F5E1E912536C95C007EAC23 /* LMPlayVideoView.swift */,
  978. );
  979. path = View;
  980. sourceTree = "<group>";
  981. };
  982. 5F5E1E8D2536AF8C007EAC23 /* Model */ = {
  983. isa = PBXGroup;
  984. children = (
  985. 5F5E1E932536C97F007EAC23 /* LMPlayVideoModel.swift */,
  986. 5F5E1E992536CEE6007EAC23 /* LMPlayVideoApi.swift */,
  987. 5F5E1E9B2536CFB6007EAC23 /* LMPlayVideoRequest.swift */,
  988. );
  989. path = Model;
  990. sourceTree = "<group>";
  991. };
  992. 5F5E1E8E2536AF9B007EAC23 /* Manager */ = {
  993. isa = PBXGroup;
  994. children = (
  995. 5F5E1E952536C99D007EAC23 /* LMPlayVideoManager.swift */,
  996. 5F5E1E972536CDA9007EAC23 /* LMPlayVideoService.swift */,
  997. );
  998. path = Manager;
  999. sourceTree = "<group>";
  1000. };
  1001. 5F63A8202539BCF200DD9DD6 /* SwiftScan */ = {
  1002. isa = PBXGroup;
  1003. children = (
  1004. 5F63A8212539BCF200DD9DD6 /* CodeScan.bundle */,
  1005. 5F63A8222539BCF200DD9DD6 /* LBXScanNetAnimation.swift */,
  1006. 5F63A8232539BCF200DD9DD6 /* LBXScanView.swift */,
  1007. 5F63A8242539BCF200DD9DD6 /* LBXScanViewController.swift */,
  1008. 5F63A8252539BCF200DD9DD6 /* LBXScanLineAnimation.swift */,
  1009. 5F63A8262539BCF200DD9DD6 /* LBXScanViewStyle.swift */,
  1010. 5F63A8272539BCF200DD9DD6 /* LBXPermissions.swift */,
  1011. 5F63A8282539BCF200DD9DD6 /* LBXScanWrapper.swift */,
  1012. );
  1013. path = SwiftScan;
  1014. sourceTree = "<group>";
  1015. };
  1016. 5F6802A7253C833F0002577C /* RepairManager */ = {
  1017. isa = PBXGroup;
  1018. children = (
  1019. 5F6802AB253C84290002577C /* Manager */,
  1020. 5F6802AA253C84170002577C /* Model */,
  1021. 5F6802A9253C840B0002577C /* View */,
  1022. 5F6802A8253C83FC0002577C /* Controller */,
  1023. );
  1024. path = RepairManager;
  1025. sourceTree = "<group>";
  1026. };
  1027. 5F6802A8253C83FC0002577C /* Controller */ = {
  1028. isa = PBXGroup;
  1029. children = (
  1030. 5F6802AC253C845E0002577C /* LMRepairCtr.swift */,
  1031. );
  1032. path = Controller;
  1033. sourceTree = "<group>";
  1034. };
  1035. 5F6802A9253C840B0002577C /* View */ = {
  1036. isa = PBXGroup;
  1037. children = (
  1038. 5F6802AE253C84710002577C /* LMRepairManagerView.swift */,
  1039. );
  1040. path = View;
  1041. sourceTree = "<group>";
  1042. };
  1043. 5F6802AA253C84170002577C /* Model */ = {
  1044. isa = PBXGroup;
  1045. children = (
  1046. 5F6802B1253C84B50002577C /* LMRepairModel.swift */,
  1047. 8356E1B6253FCD200024561F /* LMRepairApi.swift */,
  1048. 8356E1B8253FCE7B0024561F /* LMRepairRequest.swift */,
  1049. );
  1050. path = Model;
  1051. sourceTree = "<group>";
  1052. };
  1053. 5F6802AB253C84290002577C /* Manager */ = {
  1054. isa = PBXGroup;
  1055. children = (
  1056. 5F6802B3253C84D30002577C /* LMRepairManager.swift */,
  1057. 8356E1B4253FCC400024561F /* LMRepairService.swift */,
  1058. );
  1059. path = Manager;
  1060. sourceTree = "<group>";
  1061. };
  1062. 5F6A10EC2537FDE0007A20DC /* Openssl */ = {
  1063. isa = PBXGroup;
  1064. children = (
  1065. 5F6A10ED2537FDE0007A20DC /* libcrypto.a */,
  1066. 5F6A10EE2537FDE0007A20DC /* include */,
  1067. 5F6A11452537FDE0007A20DC /* libssl.a */,
  1068. );
  1069. path = Openssl;
  1070. sourceTree = "<group>";
  1071. };
  1072. 5F6A10EE2537FDE0007A20DC /* include */ = {
  1073. isa = PBXGroup;
  1074. children = (
  1075. 5F6A10EF2537FDE0007A20DC /* pem2.h */,
  1076. 5F6A10F02537FDE0007A20DC /* pem.h */,
  1077. 5F6A10F12537FDE0007A20DC /* md2.h */,
  1078. 5F6A10F22537FDE0007A20DC /* ssl3.h */,
  1079. 5F6A10F32537FDE0007A20DC /* ossl_typ.h */,
  1080. 5F6A10F42537FDE0007A20DC /* dtls1.h */,
  1081. 5F6A10F52537FDE0007A20DC /* err.h */,
  1082. 5F6A10F62537FDE0007A20DC /* bn.h */,
  1083. 5F6A10F72537FDE0007A20DC /* blowfish.h */,
  1084. 5F6A10F82537FDE0007A20DC /* cms.h */,
  1085. 5F6A10F92537FDE0007A20DC /* engine.h */,
  1086. 5F6A10FA2537FDE0007A20DC /* conf_api.h */,
  1087. 5F6A10FB2537FDE0007A20DC /* x509.h */,
  1088. 5F6A10FC2537FDE0007A20DC /* asn1_mac.h */,
  1089. 5F6A10FD2537FDE0007A20DC /* opensslconf_ios_x86_64.h */,
  1090. 5F6A10FE2537FDE0007A20DC /* ui.h */,
  1091. 5F6A10FF2537FDE0007A20DC /* kssl.h */,
  1092. 5F6A11002537FDE0007A20DC /* opensslconf_tvos_x86_64.h */,
  1093. 5F6A11012537FDE0007A20DC /* opensslconf_ios_armv7s.h */,
  1094. 5F6A11022537FDE0007A20DC /* sha.h */,
  1095. 5F6A11032537FDE0007A20DC /* symhacks.h */,
  1096. 5F6A11042537FDE0007A20DC /* asn1.h */,
  1097. 5F6A11052537FDE0007A20DC /* opensslconf.h */,
  1098. 5F6A11062537FDE0007A20DC /* opensslconf_ios_i386.h */,
  1099. 5F6A11072537FDE0007A20DC /* bio.h */,
  1100. 5F6A11082537FDE0007A20DC /* rc2.h */,
  1101. 5F6A11092537FDE0007A20DC /* dh.h */,
  1102. 5F6A110A2537FDE0007A20DC /* ui_compat.h */,
  1103. 5F6A110B2537FDE0007A20DC /* x509v3.h */,
  1104. 5F6A110C2537FDE0007A20DC /* ssl23.h */,
  1105. 5F6A110D2537FDE0007A20DC /* conf.h */,
  1106. 5F6A110E2537FDE0007A20DC /* md5.h */,
  1107. 5F6A110F2537FDE0007A20DC /* x509_vfy.h */,
  1108. 5F6A11102537FDE0007A20DC /* txt_db.h */,
  1109. 5F6A11112537FDE0007A20DC /* safestack.h */,
  1110. 5F6A11122537FDE0007A20DC /* ecdsa.h */,
  1111. 5F6A11132537FDE0007A20DC /* objects.h */,
  1112. 5F6A11142537FDE0007A20DC /* pkcs12.h */,
  1113. 5F6A11152537FDE0007A20DC /* crypto.h */,
  1114. 5F6A11162537FDE0007A20DC /* opensslv.h */,
  1115. 5F6A11172537FDE0007A20DC /* pkcs7.h */,
  1116. 5F6A11182537FDE0007A20DC /* obj_mac.h */,
  1117. 5F6A11192537FDE0007A20DC /* tmdiff.h */,
  1118. 5F6A111A2537FDE0007A20DC /* buffer.h */,
  1119. 5F6A111B2537FDE0007A20DC /* ssl.h */,
  1120. 5F6A111C2537FDE0007A20DC /* srp.h */,
  1121. 5F6A111D2537FDE0007A20DC /* camellia.h */,
  1122. 5F6A111E2537FDE0007A20DC /* opensslconf_ios_arm64.h */,
  1123. 5F6A111F2537FDE0007A20DC /* evp.h */,
  1124. 5F6A11202537FDE0007A20DC /* e_os2.h */,
  1125. 5F6A11212537FDE0007A20DC /* md4.h */,
  1126. 5F6A11222537FDE0007A20DC /* hmac.h */,
  1127. 5F6A11232537FDE0007A20DC /* aes.h */,
  1128. 5F6A11242537FDE0007A20DC /* comp.h */,
  1129. 5F6A11252537FDE0007A20DC /* cast.h */,
  1130. 5F6A11262537FDE0007A20DC /* rc4.h */,
  1131. 5F6A11272537FDE0007A20DC /* stack.h */,
  1132. 5F6A11282537FDE0007A20DC /* des.h */,
  1133. 5F6A11292537FDE0007A20DC /* ocsp.h */,
  1134. 5F6A112A2537FDE0007A20DC /* ec.h */,
  1135. 5F6A112B2537FDE0007A20DC /* ecdh.h */,
  1136. 5F6A112C2537FDE0007A20DC /* rand.h */,
  1137. 5F6A112D2537FDE0007A20DC /* opensslconf_ios_armv7.h */,
  1138. 5F6A112E2537FDE0007A20DC /* opensslconf_tvos_arm64.h */,
  1139. 5F6A112F2537FDE0007A20DC /* ts.h */,
  1140. 5F6A11302537FDE0007A20DC /* pqueue.h */,
  1141. 5F6A11312537FDE0007A20DC /* dso.h */,
  1142. 5F6A11322537FDE0007A20DC /* seed.h */,
  1143. 5F6A11332537FDE0007A20DC /* modes.h */,
  1144. 5F6A11342537FDE0007A20DC /* ssl2.h */,
  1145. 5F6A11352537FDE0007A20DC /* rsa.h */,
  1146. 5F6A11362537FDE0007A20DC /* krb5_asn.h */,
  1147. 5F6A11372537FDE0007A20DC /* des_old.h */,
  1148. 5F6A11382537FDE0007A20DC /* ripemd.h */,
  1149. 5F6A11392537FDE0007A20DC /* whrlpool.h */,
  1150. 5F6A113A2537FDE0007A20DC /* tls1.h */,
  1151. 5F6A113B2537FDE0007A20DC /* mdc2.h */,
  1152. 5F6A113C2537FDE0007A20DC /* dsa.h */,
  1153. 5F6A113D2537FDE0007A20DC /* srtp.h */,
  1154. 5F6A113E2537FDE0007A20DC /* asn1t.h */,
  1155. 5F6A113F2537FDE0007A20DC /* cmac.h */,
  1156. 5F6A11402537FDE0007A20DC /* ebcdic.h */,
  1157. 5F6A11412537FDE0007A20DC /* store.h */,
  1158. 5F6A11422537FDE0007A20DC /* idea.h */,
  1159. 5F6A11432537FDE0007A20DC /* lhash.h */,
  1160. 5F6A11442537FDE0007A20DC /* pq_compat.h */,
  1161. );
  1162. path = include;
  1163. sourceTree = "<group>";
  1164. };
  1165. 7154D0FDA87A9D40FF675349 /* Pods */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. 6A62B2657BB335FF65D53B0C /* Pods-LampMind.debug.xcconfig */,
  1169. B6A851A2A19952A236929375 /* Pods-LampMind.release.xcconfig */,
  1170. );
  1171. path = Pods;
  1172. sourceTree = "<group>";
  1173. };
  1174. 831F19EF258A15CC0078DB14 /* ChargeDetail */ = {
  1175. isa = PBXGroup;
  1176. children = (
  1177. 831F19F3258A164C0078DB14 /* Manager */,
  1178. 831F19F2258A16440078DB14 /* View */,
  1179. 831F19F1258A16340078DB14 /* Model */,
  1180. 831F19F0258A162B0078DB14 /* Controller */,
  1181. );
  1182. path = ChargeDetail;
  1183. sourceTree = "<group>";
  1184. };
  1185. 831F19F0258A162B0078DB14 /* Controller */ = {
  1186. isa = PBXGroup;
  1187. children = (
  1188. 831F1A3D258A18390078DB14 /* LMChargeDetailCtr.swift */,
  1189. );
  1190. path = Controller;
  1191. sourceTree = "<group>";
  1192. };
  1193. 831F19F1258A16340078DB14 /* Model */ = {
  1194. isa = PBXGroup;
  1195. children = (
  1196. );
  1197. path = Model;
  1198. sourceTree = "<group>";
  1199. };
  1200. 831F19F2258A16440078DB14 /* View */ = {
  1201. isa = PBXGroup;
  1202. children = (
  1203. 831F1A38258A18270078DB14 /* LMChargeDetailView.swift */,
  1204. );
  1205. path = View;
  1206. sourceTree = "<group>";
  1207. };
  1208. 831F19F3258A164C0078DB14 /* Manager */ = {
  1209. isa = PBXGroup;
  1210. children = (
  1211. 831F1A33258A181A0078DB14 /* LMChargeDetailManager.swift */,
  1212. );
  1213. path = Manager;
  1214. sourceTree = "<group>";
  1215. };
  1216. 831F19F4258A165A0078DB14 /* WifiDetail */ = {
  1217. isa = PBXGroup;
  1218. children = (
  1219. 831F19F8258A16880078DB14 /* Manager */,
  1220. 831F19F7258A16820078DB14 /* View */,
  1221. 831F19F6258A16780078DB14 /* Model */,
  1222. 831F19F5258A166E0078DB14 /* Controller */,
  1223. );
  1224. path = WifiDetail;
  1225. sourceTree = "<group>";
  1226. };
  1227. 831F19F5258A166E0078DB14 /* Controller */ = {
  1228. isa = PBXGroup;
  1229. children = (
  1230. 831F1A2E258A17F30078DB14 /* LMWifiDetailCtr.swift */,
  1231. );
  1232. path = Controller;
  1233. sourceTree = "<group>";
  1234. };
  1235. 831F19F6258A16780078DB14 /* Model */ = {
  1236. isa = PBXGroup;
  1237. children = (
  1238. );
  1239. path = Model;
  1240. sourceTree = "<group>";
  1241. };
  1242. 831F19F7258A16820078DB14 /* View */ = {
  1243. isa = PBXGroup;
  1244. children = (
  1245. 831F1A29258A17E10078DB14 /* LMWifiDetailView.swift */,
  1246. 836E8AE4258B6BB200883233 /* LMConnectDeviceCell.swift */,
  1247. );
  1248. path = View;
  1249. sourceTree = "<group>";
  1250. };
  1251. 831F19F8258A16880078DB14 /* Manager */ = {
  1252. isa = PBXGroup;
  1253. children = (
  1254. 831F1A24258A17C90078DB14 /* LMWifiDetailManager.swift */,
  1255. );
  1256. path = Manager;
  1257. sourceTree = "<group>";
  1258. };
  1259. 831F19F9258A16A10078DB14 /* LEDDetail */ = {
  1260. isa = PBXGroup;
  1261. children = (
  1262. 831F19FD258A16C90078DB14 /* Manager */,
  1263. 831F19FC258A16C20078DB14 /* View */,
  1264. 831F19FB258A16BA0078DB14 /* Controller */,
  1265. 831F19FA258A16B30078DB14 /* Model */,
  1266. );
  1267. path = LEDDetail;
  1268. sourceTree = "<group>";
  1269. };
  1270. 831F19FA258A16B30078DB14 /* Model */ = {
  1271. isa = PBXGroup;
  1272. children = (
  1273. );
  1274. path = Model;
  1275. sourceTree = "<group>";
  1276. };
  1277. 831F19FB258A16BA0078DB14 /* Controller */ = {
  1278. isa = PBXGroup;
  1279. children = (
  1280. 831F1A1F258A17AB0078DB14 /* LMEDDetailCtr.swift */,
  1281. );
  1282. path = Controller;
  1283. sourceTree = "<group>";
  1284. };
  1285. 831F19FC258A16C20078DB14 /* View */ = {
  1286. isa = PBXGroup;
  1287. children = (
  1288. 831F1A1A258A179B0078DB14 /* LMEDDetailView.swift */,
  1289. );
  1290. path = View;
  1291. sourceTree = "<group>";
  1292. };
  1293. 831F19FD258A16C90078DB14 /* Manager */ = {
  1294. isa = PBXGroup;
  1295. children = (
  1296. 831F1A15258A17810078DB14 /* LMLEDDetailManager.swift */,
  1297. );
  1298. path = Manager;
  1299. sourceTree = "<group>";
  1300. };
  1301. 831F19FE258A16D70078DB14 /* AlertDetail */ = {
  1302. isa = PBXGroup;
  1303. children = (
  1304. 831F1A02258A16FF0078DB14 /* Manager */,
  1305. 831F1A01258A16F50078DB14 /* View */,
  1306. 831F1A00258A16EE0078DB14 /* Controller */,
  1307. 831F19FF258A16E60078DB14 /* Model */,
  1308. );
  1309. path = AlertDetail;
  1310. sourceTree = "<group>";
  1311. };
  1312. 831F19FF258A16E60078DB14 /* Model */ = {
  1313. isa = PBXGroup;
  1314. children = (
  1315. );
  1316. path = Model;
  1317. sourceTree = "<group>";
  1318. };
  1319. 831F1A00258A16EE0078DB14 /* Controller */ = {
  1320. isa = PBXGroup;
  1321. children = (
  1322. 831F1A10258A175D0078DB14 /* LMAlertDetailCtr.swift */,
  1323. );
  1324. path = Controller;
  1325. sourceTree = "<group>";
  1326. };
  1327. 831F1A01258A16F50078DB14 /* View */ = {
  1328. isa = PBXGroup;
  1329. children = (
  1330. 831F1A0B258A174D0078DB14 /* LMAlertDetailView.swift */,
  1331. 83711D96258C89B8006387CE /* LMNowAlertCell.swift */,
  1332. 83711D91258C8422006387CE /* LMHistoryAlertCell.swift */,
  1333. );
  1334. path = View;
  1335. sourceTree = "<group>";
  1336. };
  1337. 831F1A02258A16FF0078DB14 /* Manager */ = {
  1338. isa = PBXGroup;
  1339. children = (
  1340. 831F1A03258A17310078DB14 /* LMAlertDetailManager.swift */,
  1341. );
  1342. path = Manager;
  1343. sourceTree = "<group>";
  1344. };
  1345. 8329FEC525B80F450001D20A /* OpenSDK */ = {
  1346. isa = PBXGroup;
  1347. children = (
  1348. 8329FEC625B80F450001D20A /* include */,
  1349. 8329FEEB25B80F450001D20A /* libEZOpenSDK.a */,
  1350. );
  1351. path = OpenSDK;
  1352. sourceTree = "<group>";
  1353. };
  1354. 8329FEC625B80F450001D20A /* include */ = {
  1355. isa = PBXGroup;
  1356. children = (
  1357. 8329FEC725B80F450001D20A /* EZConstants.h */,
  1358. 8329FEC825B80F450001D20A /* EZHCNetDeviceSDK.h */,
  1359. 8329FEC925B80F450001D20A /* EZStreamPlayer.h */,
  1360. 8329FECA25B80F450001D20A /* EZOpenSDK.h */,
  1361. 8329FECB25B80F450001D20A /* EZPlayer.h */,
  1362. 8329FECC25B80F450001D20A /* EZGlobalSDK.h */,
  1363. 8329FECD25B80F450001D20A /* modules */,
  1364. );
  1365. path = include;
  1366. sourceTree = "<group>";
  1367. };
  1368. 8329FECD25B80F450001D20A /* modules */ = {
  1369. isa = PBXGroup;
  1370. children = (
  1371. 8329FECE25B80F450001D20A /* EZDeviceVersion.h */,
  1372. 8329FECF25B80F450001D20A /* EZUserInfo.h */,
  1373. 8329FED025B80F450001D20A /* EZDeviceUpgradeStatus.h */,
  1374. 8329FED125B80F450001D20A /* EZAccessToken.h */,
  1375. 8329FED225B80F450001D20A /* EZPlayerExParamInfo.h */,
  1376. 8329FED325B80F450001D20A /* EzvizWatchServerInfo.h */,
  1377. 8329FED425B80F450001D20A /* EZDeviceRecordDownloadTask.h */,
  1378. 8329FED525B80F450001D20A /* EzvizRecordFileInfo.h */,
  1379. 8329FED625B80F450001D20A /* EZDeviceRecordFile.h */,
  1380. 8329FED725B80F450001D20A /* EZLeaveMessage.h */,
  1381. 8329FED825B80F450001D20A /* EZHiddnsDeviceInfo.h */,
  1382. 8329FED925B80F450001D20A /* EZDeviceInfo.h */,
  1383. 8329FEDA25B80F450001D20A /* EZRecordDownloader.h */,
  1384. 8329FEDB25B80F450001D20A /* EZRecordDownloadTask.h */,
  1385. 8329FEDC25B80F450001D20A /* EZVideoTransformer.h */,
  1386. 8329FEDD25B80F450001D20A /* EZTokenKit.h */,
  1387. 8329FEDE25B80F450001D20A /* EZDetectorInfo.h */,
  1388. 8329FEDF25B80F450001D20A /* EZHCNetDeviceInfo.h */,
  1389. 8329FEE025B80F450001D20A /* EZCameraInfo.h */,
  1390. 8329FEE125B80F450001D20A /* EZCloudRecordFile.h */,
  1391. 8329FEE225B80F450001D20A /* EZCloudRecordDownloadTask.h */,
  1392. 8329FEE325B80F450001D20A /* EZAreaInfo.h */,
  1393. 8329FEE425B80F450001D20A /* EZProbeDeviceInfo.h */,
  1394. 8329FEE525B80F450001D20A /* EZVideoTalkSDK.h */,
  1395. 8329FEE625B80F450001D20A /* EZVideoQualityInfo.h */,
  1396. 8329FEE725B80F450001D20A /* EZAlarmInfo.h */,
  1397. 8329FEE825B80F450001D20A /* EZVideoTalkParam.h */,
  1398. 8329FEE925B80F450001D20A /* EZSADPDeviceInfo.h */,
  1399. 8329FEEA25B80F450001D20A /* EZStorageInfo.h */,
  1400. );
  1401. path = modules;
  1402. sourceTree = "<group>";
  1403. };
  1404. 833559B92510C4EC000F1EF2 /* Controller */ = {
  1405. isa = PBXGroup;
  1406. children = (
  1407. 83EAA72623968F9A008763FB /* LMLampVCtr.swift */,
  1408. );
  1409. path = Controller;
  1410. sourceTree = "<group>";
  1411. };
  1412. 833559BA2510C4F7000F1EF2 /* View */ = {
  1413. isa = PBXGroup;
  1414. children = (
  1415. 834E45652511E88300ED6B71 /* LMLampDetailView.swift */,
  1416. 8334ED5425122B9900E0766A /* LMLampDetailCell.swift */,
  1417. );
  1418. path = View;
  1419. sourceTree = "<group>";
  1420. };
  1421. 833559BB2510C4FF000F1EF2 /* Model */ = {
  1422. isa = PBXGroup;
  1423. children = (
  1424. 834E45692511F69A00ED6B71 /* LMLampDetailHttpRequest.swift */,
  1425. 834E456F251201FB00ED6B71 /* LMLampDetailModel.swift */,
  1426. 834E456D2511F6C600ED6B71 /* LMLampDetailApi.swift */,
  1427. );
  1428. path = Model;
  1429. sourceTree = "<group>";
  1430. };
  1431. 833559BC2510C507000F1EF2 /* Manager */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. 834E45632511E85D00ED6B71 /* LMLampManager.swift */,
  1435. 834E45672511F4E300ED6B71 /* LMLampServer.swift */,
  1436. );
  1437. path = Manager;
  1438. sourceTree = "<group>";
  1439. };
  1440. 833559BD2510C5AB000F1EF2 /* Controller */ = {
  1441. isa = PBXGroup;
  1442. children = (
  1443. 833559CD2510C6D8000F1EF2 /* LMLoopVCtr.swift */,
  1444. );
  1445. path = Controller;
  1446. sourceTree = "<group>";
  1447. };
  1448. 833559BE2510C5B5000F1EF2 /* View */ = {
  1449. isa = PBXGroup;
  1450. children = (
  1451. 83577A292519DC89002A83A0 /* LMMainLoopView.swift */,
  1452. 834E2964251C459100BC3482 /* LMMainLoopCell.swift */,
  1453. );
  1454. path = View;
  1455. sourceTree = "<group>";
  1456. };
  1457. 833559BF2510C5C0000F1EF2 /* Model */ = {
  1458. isa = PBXGroup;
  1459. children = (
  1460. 834E295E251C37BA00BC3482 /* LMMainLoopApi.swift */,
  1461. 834E2960251C37CF00BC3482 /* LMMainLoopModel.swift */,
  1462. 834E2962251C37E400BC3482 /* LMMainLoopRequest.swift */,
  1463. );
  1464. path = Model;
  1465. sourceTree = "<group>";
  1466. };
  1467. 833559C02510C5C8000F1EF2 /* Manager */ = {
  1468. isa = PBXGroup;
  1469. children = (
  1470. 83577A2B2519DECC002A83A0 /* LMMainLoopManager.swift */,
  1471. 834E295C251C370900BC3482 /* LMMainLoopService.swift */,
  1472. );
  1473. path = Manager;
  1474. sourceTree = "<group>";
  1475. };
  1476. 833559C12510C5D3000F1EF2 /* Controller */ = {
  1477. isa = PBXGroup;
  1478. children = (
  1479. 833559CF2510C705000F1EF2 /* LMGroupVCtr.swift */,
  1480. );
  1481. path = Controller;
  1482. sourceTree = "<group>";
  1483. };
  1484. 833559C22510C5DD000F1EF2 /* View */ = {
  1485. isa = PBXGroup;
  1486. children = (
  1487. 83E23E6A2521BB5400678616 /* LMMainGroupView.swift */,
  1488. 83E23E6C2521D81200678616 /* LMTGroupItemCell.swift */,
  1489. );
  1490. path = View;
  1491. sourceTree = "<group>";
  1492. };
  1493. 833559C32510C5EA000F1EF2 /* Model */ = {
  1494. isa = PBXGroup;
  1495. children = (
  1496. 83E23E622521BA8100678616 /* LMGroupModel.swift */,
  1497. 83E23E642521BA8C00678616 /* LMGroupApi.swift */,
  1498. 83E23E662521BAA500678616 /* LMGroupHttpRequest.swift */,
  1499. );
  1500. path = Model;
  1501. sourceTree = "<group>";
  1502. };
  1503. 833559C42510C5F1000F1EF2 /* Manager */ = {
  1504. isa = PBXGroup;
  1505. children = (
  1506. 83E23E5E2521BA6400678616 /* LMGroupManager.swift */,
  1507. 83E23E602521BA7300678616 /* LMGroupService.swift */,
  1508. );
  1509. path = Manager;
  1510. sourceTree = "<group>";
  1511. };
  1512. 833559C52510C657000F1EF2 /* Controller */ = {
  1513. isa = PBXGroup;
  1514. children = (
  1515. 833559D12510C725000F1EF2 /* LMStrategyVCtr.swift */,
  1516. );
  1517. path = Controller;
  1518. sourceTree = "<group>";
  1519. };
  1520. 833559C62510C663000F1EF2 /* View */ = {
  1521. isa = PBXGroup;
  1522. children = (
  1523. );
  1524. path = View;
  1525. sourceTree = "<group>";
  1526. };
  1527. 833559C72510C66C000F1EF2 /* Model */ = {
  1528. isa = PBXGroup;
  1529. children = (
  1530. );
  1531. path = Model;
  1532. sourceTree = "<group>";
  1533. };
  1534. 833559C82510C673000F1EF2 /* Manager */ = {
  1535. isa = PBXGroup;
  1536. children = (
  1537. );
  1538. path = Manager;
  1539. sourceTree = "<group>";
  1540. };
  1541. 833559C92510C67D000F1EF2 /* Controller */ = {
  1542. isa = PBXGroup;
  1543. children = (
  1544. 833559D32510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift */,
  1545. );
  1546. path = Controller;
  1547. sourceTree = "<group>";
  1548. };
  1549. 833559CA2510C686000F1EF2 /* View */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. 8356659F2524883000425C38 /* LMHistoryView.swift */,
  1553. 835665AB25249BF400425C38 /* LMHistoryCell.swift */,
  1554. );
  1555. path = View;
  1556. sourceTree = "<group>";
  1557. };
  1558. 833559CB2510C68D000F1EF2 /* Model */ = {
  1559. isa = PBXGroup;
  1560. children = (
  1561. 835665A12524884400425C38 /* LMHistoryModel.swift */,
  1562. 835665A32524885500425C38 /* LMHistoryApi.swift */,
  1563. 835665A52524886C00425C38 /* LMHistoryHttpRequest.swift */,
  1564. );
  1565. path = Model;
  1566. sourceTree = "<group>";
  1567. };
  1568. 833559CC2510C695000F1EF2 /* Manager */ = {
  1569. isa = PBXGroup;
  1570. children = (
  1571. 835665A72524888200425C38 /* LMHistoryManager.swift */,
  1572. 835665A925248FDE00425C38 /* LMHistoryService.swift */,
  1573. );
  1574. path = Manager;
  1575. sourceTree = "<group>";
  1576. };
  1577. 8341652925837C89006FAB0D /* BaseLightPoleDetail */ = {
  1578. isa = PBXGroup;
  1579. children = (
  1580. 8341652D25837CD4006FAB0D /* Manager */,
  1581. 8341652C25837CC6006FAB0D /* Controller */,
  1582. 8341652B25837CBB006FAB0D /* Model */,
  1583. 8341652A25837CB1006FAB0D /* View */,
  1584. );
  1585. path = BaseLightPoleDetail;
  1586. sourceTree = "<group>";
  1587. };
  1588. 8341652A25837CB1006FAB0D /* View */ = {
  1589. isa = PBXGroup;
  1590. children = (
  1591. 8378142C2584C60A00FD3EC3 /* LMLightPoleDetailView.swift */,
  1592. );
  1593. path = View;
  1594. sourceTree = "<group>";
  1595. };
  1596. 8341652B25837CBB006FAB0D /* Model */ = {
  1597. isa = PBXGroup;
  1598. children = (
  1599. );
  1600. path = Model;
  1601. sourceTree = "<group>";
  1602. };
  1603. 8341652C25837CC6006FAB0D /* Controller */ = {
  1604. isa = PBXGroup;
  1605. children = (
  1606. 8341652E25837CFC006FAB0D /* LMLightPoleDetailCtr.swift */,
  1607. );
  1608. path = Controller;
  1609. sourceTree = "<group>";
  1610. };
  1611. 8341652D25837CD4006FAB0D /* Manager */ = {
  1612. isa = PBXGroup;
  1613. children = (
  1614. 837814312584C63B00FD3EC3 /* LMLightPoleDetailManager.swift */,
  1615. );
  1616. path = Manager;
  1617. sourceTree = "<group>";
  1618. };
  1619. 83491798253089EB006B44BD /* LightpoleManagement */ = {
  1620. isa = PBXGroup;
  1621. children = (
  1622. 831F19FE258A16D70078DB14 /* AlertDetail */,
  1623. 831F19F9258A16A10078DB14 /* LEDDetail */,
  1624. 831F19F4258A165A0078DB14 /* WifiDetail */,
  1625. 831F19EF258A15CC0078DB14 /* ChargeDetail */,
  1626. 837814592584F39D00FD3EC3 /* AirQualityDetail */,
  1627. 837814542584F33900FD3EC3 /* RadioDetail */,
  1628. 8378144F2584F2FE00FD3EC3 /* MonitorDetail */,
  1629. 8378144A2584F26F00FD3EC3 /* LampDetail */,
  1630. 837814362584F1BE00FD3EC3 /* CloudBoxDetail */,
  1631. 8341652925837C89006FAB0D /* BaseLightPoleDetail */,
  1632. 83602261253342C100416047 /* Light */,
  1633. 83602260253342A000416047 /* Meteorological */,
  1634. 5F5E1E8A2536AF54007EAC23 /* PlayVideo */,
  1635. 8360225F2533422C00416047 /* Monitor */,
  1636. 8360225E2533421700416047 /* Main */,
  1637. );
  1638. path = LightpoleManagement;
  1639. sourceTree = "<group>";
  1640. };
  1641. 8349179925308CAA006B44BD /* Controller */ = {
  1642. isa = PBXGroup;
  1643. children = (
  1644. 8349179D25308D0D006B44BD /* LMLightPoleCtr.swift */,
  1645. );
  1646. path = Controller;
  1647. sourceTree = "<group>";
  1648. };
  1649. 8349179A25308CC9006B44BD /* View */ = {
  1650. isa = PBXGroup;
  1651. children = (
  1652. 8349179F25308D1F006B44BD /* LMLightPoleView.swift */,
  1653. 8341650D25831A23006FAB0D /* LMLightPoleListView.swift */,
  1654. 8341652425835899006FAB0D /* LMLightPoleListCell.swift */,
  1655. );
  1656. path = View;
  1657. sourceTree = "<group>";
  1658. };
  1659. 8349179B25308CD2006B44BD /* Model */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. 8341651725834175006FAB0D /* LMLightPoleListRequest.swift */,
  1663. 834917A125308D49006B44BD /* LMLightPoleModel.swift */,
  1664. 8341651C25834195006FAB0D /* LMLightPoleListApi.swift */,
  1665. );
  1666. path = Model;
  1667. sourceTree = "<group>";
  1668. };
  1669. 8349179C25308CDA006B44BD /* Manager */ = {
  1670. isa = PBXGroup;
  1671. children = (
  1672. 834917A325308D5D006B44BD /* LMLightPoleManager.swift */,
  1673. 8341651225832220006FAB0D /* LMLightPoleSever.swift */,
  1674. );
  1675. path = Manager;
  1676. sourceTree = "<group>";
  1677. };
  1678. 834B897E2514B5A000E2108E /* main */ = {
  1679. isa = PBXGroup;
  1680. children = (
  1681. 833559BC2510C507000F1EF2 /* Manager */,
  1682. 833559BB2510C4FF000F1EF2 /* Model */,
  1683. 833559BA2510C4F7000F1EF2 /* View */,
  1684. 833559B92510C4EC000F1EF2 /* Controller */,
  1685. );
  1686. path = main;
  1687. sourceTree = "<group>";
  1688. };
  1689. 834B897F2514B5C500E2108E /* Controller */ = {
  1690. isa = PBXGroup;
  1691. children = (
  1692. 834B89832514B65300E2108E /* LMLampDetailContentCtr.swift */,
  1693. );
  1694. path = Controller;
  1695. sourceTree = "<group>";
  1696. };
  1697. 834B89802514B5DC00E2108E /* View */ = {
  1698. isa = PBXGroup;
  1699. children = (
  1700. 834B89852514B66E00E2108E /* LMLampDetailContentView.swift */,
  1701. );
  1702. path = View;
  1703. sourceTree = "<group>";
  1704. };
  1705. 834B89812514B5E600E2108E /* Model */ = {
  1706. isa = PBXGroup;
  1707. children = (
  1708. 834B89872514B69700E2108E /* LMLampDetailContentModel.swift */,
  1709. 834B898B2514BBD400E2108E /* LMLampDetaiContentApi.swift */,
  1710. 834B898D2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift */,
  1711. );
  1712. path = Model;
  1713. sourceTree = "<group>";
  1714. };
  1715. 834B89822514B5EF00E2108E /* Manager */ = {
  1716. isa = PBXGroup;
  1717. children = (
  1718. 834B89892514B93C00E2108E /* LMLampDetailContentManager.swift */,
  1719. 834B898F2514D63E00E2108E /* LMLampDetailContentService.swift */,
  1720. );
  1721. path = Manager;
  1722. sourceTree = "<group>";
  1723. };
  1724. 834E2966251CBD0000BC3482 /* AddNewLoop */ = {
  1725. isa = PBXGroup;
  1726. children = (
  1727. 834E296A251CBD5E00BC3482 /* Manager */,
  1728. 834E2969251CBD2C00BC3482 /* Model */,
  1729. 834E2968251CBD2300BC3482 /* View */,
  1730. 834E2967251CBD1700BC3482 /* Controller */,
  1731. );
  1732. path = AddNewLoop;
  1733. sourceTree = "<group>";
  1734. };
  1735. 834E2967251CBD1700BC3482 /* Controller */ = {
  1736. isa = PBXGroup;
  1737. children = (
  1738. 834E296B251CBD8E00BC3482 /* LMNewLoopCtr.swift */,
  1739. 83B73186251DEF1A00953DFF /* LMNewLoopTwoCtr.swift */,
  1740. );
  1741. path = Controller;
  1742. sourceTree = "<group>";
  1743. };
  1744. 834E2968251CBD2300BC3482 /* View */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. 83B7318E251DF16A00953DFF /* LMNewLoopView.swift */,
  1748. 83B73190251DF36800953DFF /* LMNewLoopInputContentCell.swift */,
  1749. 83B73192251DF38100953DFF /* LMNewLoopChoseContentCell.swift */,
  1750. 834E296D251CBDA500BC3482 /* LMNewLoopTwoView.swift */,
  1751. 83B73184251DBE2600953DFF /* LMNewLoopTwoCell.swift */,
  1752. );
  1753. path = View;
  1754. sourceTree = "<group>";
  1755. };
  1756. 834E2969251CBD2C00BC3482 /* Model */ = {
  1757. isa = PBXGroup;
  1758. children = (
  1759. 834E296F251CBDBC00BC3482 /* LMNewLoopModel.swift */,
  1760. 834E2971251CBDCA00BC3482 /* LMNewLoopApi.swift */,
  1761. 834E2973251CBDE100BC3482 /* LMNewLoopRequest.swift */,
  1762. );
  1763. path = Model;
  1764. sourceTree = "<group>";
  1765. };
  1766. 834E296A251CBD5E00BC3482 /* Manager */ = {
  1767. isa = PBXGroup;
  1768. children = (
  1769. 834E2975251CBDFD00BC3482 /* LMNewLoopManager.swift */,
  1770. 83ABC211251D9B5700D53141 /* LMNewLoopService.swift */,
  1771. 83B7318C251DEF8A00953DFF /* LMNewLoopTwoManager.swift */,
  1772. );
  1773. path = Manager;
  1774. sourceTree = "<group>";
  1775. };
  1776. 83503483252879E500BF947A /* AddNewStrategy */ = {
  1777. isa = PBXGroup;
  1778. children = (
  1779. 8350348725287A3D00BF947A /* Manager */,
  1780. 8350348625287A3400BF947A /* Model */,
  1781. 8350348525287A2700BF947A /* View */,
  1782. 8350348425287A0300BF947A /* Controller */,
  1783. );
  1784. path = AddNewStrategy;
  1785. sourceTree = "<group>";
  1786. };
  1787. 8350348425287A0300BF947A /* Controller */ = {
  1788. isa = PBXGroup;
  1789. children = (
  1790. 8350348825287A6A00BF947A /* LMNewStrategyGroupCtr.swift */,
  1791. );
  1792. path = Controller;
  1793. sourceTree = "<group>";
  1794. };
  1795. 8350348525287A2700BF947A /* View */ = {
  1796. isa = PBXGroup;
  1797. children = (
  1798. 8350348A25287A8800BF947A /* LMNewStrategyGroupView.swift */,
  1799. 8304615325295F9600B6B291 /* LMNewStrategyGroupCell.swift */,
  1800. );
  1801. path = View;
  1802. sourceTree = "<group>";
  1803. };
  1804. 8350348625287A3400BF947A /* Model */ = {
  1805. isa = PBXGroup;
  1806. children = (
  1807. 8350348C25287AA500BF947A /* LMNewStrategyGroupModel.swift */,
  1808. 8350348E25287AC000BF947A /* LMNewStrategyGroupApi.swift */,
  1809. 8350349025287AE800BF947A /* LMNewStrategyGroupRequest.swift */,
  1810. );
  1811. path = Model;
  1812. sourceTree = "<group>";
  1813. };
  1814. 8350348725287A3D00BF947A /* Manager */ = {
  1815. isa = PBXGroup;
  1816. children = (
  1817. 8350349225287B0800BF947A /* LMNewStrategyGroupManager.swift */,
  1818. 830461552529CBCE00B6B291 /* LMNewStrategyGroupService.swift */,
  1819. );
  1820. path = Manager;
  1821. sourceTree = "<group>";
  1822. };
  1823. 83559F2D25222DD700B166C4 /* Main */ = {
  1824. isa = PBXGroup;
  1825. children = (
  1826. 833559C42510C5F1000F1EF2 /* Manager */,
  1827. 833559C32510C5EA000F1EF2 /* Model */,
  1828. 833559C22510C5DD000F1EF2 /* View */,
  1829. 833559C12510C5D3000F1EF2 /* Controller */,
  1830. );
  1831. path = Main;
  1832. sourceTree = "<group>";
  1833. };
  1834. 83559F2E252232C300B166C4 /* GroupDetail */ = {
  1835. isa = PBXGroup;
  1836. children = (
  1837. 83559F2F252232F900B166C4 /* DetailContent */,
  1838. );
  1839. path = GroupDetail;
  1840. sourceTree = "<group>";
  1841. };
  1842. 83559F2F252232F900B166C4 /* DetailContent */ = {
  1843. isa = PBXGroup;
  1844. children = (
  1845. 83559F332522334000B166C4 /* Manager */,
  1846. 83559F322522332F00B166C4 /* Model */,
  1847. 83559F312522332500B166C4 /* View */,
  1848. 83559F302522331A00B166C4 /* Controller */,
  1849. );
  1850. path = DetailContent;
  1851. sourceTree = "<group>";
  1852. };
  1853. 83559F302522331A00B166C4 /* Controller */ = {
  1854. isa = PBXGroup;
  1855. children = (
  1856. 83559F362522339300B166C4 /* LMDetailContentCtr.swift */,
  1857. );
  1858. path = Controller;
  1859. sourceTree = "<group>";
  1860. };
  1861. 83559F312522332500B166C4 /* View */ = {
  1862. isa = PBXGroup;
  1863. children = (
  1864. 83559F38252233B800B166C4 /* LMDetailContentView.swift */,
  1865. 83559F442522490500B166C4 /* LMDetailContentCell.swift */,
  1866. );
  1867. path = View;
  1868. sourceTree = "<group>";
  1869. };
  1870. 83559F322522332F00B166C4 /* Model */ = {
  1871. isa = PBXGroup;
  1872. children = (
  1873. 83559F3A252233D100B166C4 /* LMDetailContentModel.swift */,
  1874. 83559F3C252233E400B166C4 /* LMDetailContentApi.swift */,
  1875. 83559F3E2522340000B166C4 /* LMDetailContentHttpRequest.swift */,
  1876. );
  1877. path = Model;
  1878. sourceTree = "<group>";
  1879. };
  1880. 83559F332522334000B166C4 /* Manager */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. 83559F402522341400B166C4 /* LMDetailContentManager.swift */,
  1884. 83559F422522342B00B166C4 /* LMDetailContentService.swift */,
  1885. );
  1886. path = Manager;
  1887. sourceTree = "<group>";
  1888. };
  1889. 83577A262519DB8F002A83A0 /* Main */ = {
  1890. isa = PBXGroup;
  1891. children = (
  1892. 833559C02510C5C8000F1EF2 /* Manager */,
  1893. 833559BF2510C5C0000F1EF2 /* Model */,
  1894. 833559BE2510C5B5000F1EF2 /* View */,
  1895. 833559BD2510C5AB000F1EF2 /* Controller */,
  1896. );
  1897. path = Main;
  1898. sourceTree = "<group>";
  1899. };
  1900. 8360225E2533421700416047 /* Main */ = {
  1901. isa = PBXGroup;
  1902. children = (
  1903. 8349179C25308CDA006B44BD /* Manager */,
  1904. 8349179B25308CD2006B44BD /* Model */,
  1905. 8349179A25308CC9006B44BD /* View */,
  1906. 8349179925308CAA006B44BD /* Controller */,
  1907. );
  1908. path = Main;
  1909. sourceTree = "<group>";
  1910. };
  1911. 8360225F2533422C00416047 /* Monitor */ = {
  1912. isa = PBXGroup;
  1913. children = (
  1914. 83602265253342EB00416047 /* Manager */,
  1915. 83602264253342E300416047 /* Model */,
  1916. 83602263253342DB00416047 /* View */,
  1917. 83602262253342CF00416047 /* Controller */,
  1918. );
  1919. path = Monitor;
  1920. sourceTree = "<group>";
  1921. };
  1922. 83602260253342A000416047 /* Meteorological */ = {
  1923. isa = PBXGroup;
  1924. children = (
  1925. 836022692533431000416047 /* Manager */,
  1926. 836022682533430900416047 /* Model */,
  1927. 83602267253342FF00416047 /* View */,
  1928. 83602266253342F600416047 /* Controller */,
  1929. );
  1930. path = Meteorological;
  1931. sourceTree = "<group>";
  1932. };
  1933. 83602261253342C100416047 /* Light */ = {
  1934. isa = PBXGroup;
  1935. children = (
  1936. 8360226D2533432F00416047 /* Manager */,
  1937. 8360226C2533432800416047 /* Model */,
  1938. 8360226B2533432100416047 /* View */,
  1939. 8360226A2533431900416047 /* Controller */,
  1940. );
  1941. path = Light;
  1942. sourceTree = "<group>";
  1943. };
  1944. 83602262253342CF00416047 /* Controller */ = {
  1945. isa = PBXGroup;
  1946. children = (
  1947. 836022842533471C00416047 /* LMMonitorCtr.swift */,
  1948. );
  1949. path = Controller;
  1950. sourceTree = "<group>";
  1951. };
  1952. 83602263253342DB00416047 /* View */ = {
  1953. isa = PBXGroup;
  1954. children = (
  1955. 836022822533470D00416047 /* LMMonitorPoleView.swift */,
  1956. 8360228625335F2000416047 /* LMMonitorPoleCell.swift */,
  1957. );
  1958. path = View;
  1959. sourceTree = "<group>";
  1960. };
  1961. 83602264253342E300416047 /* Model */ = {
  1962. isa = PBXGroup;
  1963. children = (
  1964. 836022802533467400416047 /* LMMonitorModel.swift */,
  1965. );
  1966. path = Model;
  1967. sourceTree = "<group>";
  1968. };
  1969. 83602265253342EB00416047 /* Manager */ = {
  1970. isa = PBXGroup;
  1971. children = (
  1972. 8360227E2533465C00416047 /* LMMonitorManager.swift */,
  1973. );
  1974. path = Manager;
  1975. sourceTree = "<group>";
  1976. };
  1977. 83602266253342F600416047 /* Controller */ = {
  1978. isa = PBXGroup;
  1979. children = (
  1980. 8360227C2533464700416047 /* LMMeteorologicalCtr.swift */,
  1981. );
  1982. path = Controller;
  1983. sourceTree = "<group>";
  1984. };
  1985. 83602267253342FF00416047 /* View */ = {
  1986. isa = PBXGroup;
  1987. children = (
  1988. 8360227A2533463500416047 /* LMMeteorologicalView.swift */,
  1989. 8359C049253424500027518B /* LMMeteorologicalCell.swift */,
  1990. );
  1991. path = View;
  1992. sourceTree = "<group>";
  1993. };
  1994. 836022682533430900416047 /* Model */ = {
  1995. isa = PBXGroup;
  1996. children = (
  1997. 836022782533462700416047 /* LMMeteorologicalModel.swift */,
  1998. 8359C04B253427920027518B /* LMMeteorologicalApi.swift */,
  1999. 8359C04D253427A70027518B /* LMMeteorologicalRequest.swift */,
  2000. );
  2001. path = Model;
  2002. sourceTree = "<group>";
  2003. };
  2004. 836022692533431000416047 /* Manager */ = {
  2005. isa = PBXGroup;
  2006. children = (
  2007. 836022762533461900416047 /* LMMeteorologicalManager.swift */,
  2008. 8359C04F253429500027518B /* LMMeteorologicalService.swift */,
  2009. );
  2010. path = Manager;
  2011. sourceTree = "<group>";
  2012. };
  2013. 8360226A2533431900416047 /* Controller */ = {
  2014. isa = PBXGroup;
  2015. children = (
  2016. 83602274253345F500416047 /* LMLightCtr.swift */,
  2017. );
  2018. path = Controller;
  2019. sourceTree = "<group>";
  2020. };
  2021. 8360226B2533432100416047 /* View */ = {
  2022. isa = PBXGroup;
  2023. children = (
  2024. 83602272253345E000416047 /* LMLightView.swift */,
  2025. 8359C0572534456B0027518B /* LMLightViewCell.swift */,
  2026. );
  2027. path = View;
  2028. sourceTree = "<group>";
  2029. };
  2030. 8360226C2533432800416047 /* Model */ = {
  2031. isa = PBXGroup;
  2032. children = (
  2033. 83602270253345CE00416047 /* LMLightModel.swift */,
  2034. 8359C05125343C1B0027518B /* LMLightApi.swift */,
  2035. 8359C05325343C400027518B /* LMLightRequest.swift */,
  2036. );
  2037. path = Model;
  2038. sourceTree = "<group>";
  2039. };
  2040. 8360226D2533432F00416047 /* Manager */ = {
  2041. isa = PBXGroup;
  2042. children = (
  2043. 8360226E2533434A00416047 /* LMLightManager.swift */,
  2044. 8359C055253440110027518B /* LMLightService.swift */,
  2045. );
  2046. path = Manager;
  2047. sourceTree = "<group>";
  2048. };
  2049. 837814362584F1BE00FD3EC3 /* CloudBoxDetail */ = {
  2050. isa = PBXGroup;
  2051. children = (
  2052. 8378143A2584F20100FD3EC3 /* Manager */,
  2053. 837814392584F1F400FD3EC3 /* Model */,
  2054. 837814382584F1EA00FD3EC3 /* View */,
  2055. 837814372584F1DE00FD3EC3 /* Controller */,
  2056. );
  2057. path = CloudBoxDetail;
  2058. sourceTree = "<group>";
  2059. };
  2060. 837814372584F1DE00FD3EC3 /* Controller */ = {
  2061. isa = PBXGroup;
  2062. children = (
  2063. 8378143B2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift */,
  2064. );
  2065. path = Controller;
  2066. sourceTree = "<group>";
  2067. };
  2068. 837814382584F1EA00FD3EC3 /* View */ = {
  2069. isa = PBXGroup;
  2070. children = (
  2071. 837814402584F24700FD3EC3 /* LMCloudBoxDetailView.swift */,
  2072. );
  2073. path = View;
  2074. sourceTree = "<group>";
  2075. };
  2076. 837814392584F1F400FD3EC3 /* Model */ = {
  2077. isa = PBXGroup;
  2078. children = (
  2079. 83ABDA812586427F00FDC0C7 /* LMCloudBoxRequest.swift */,
  2080. 83ABDA862586429500FDC0C7 /* LMCloudBoxModel.swift */,
  2081. 83ABDA8B258642A200FDC0C7 /* LMCloudBoxApi.swift */,
  2082. );
  2083. path = Model;
  2084. sourceTree = "<group>";
  2085. };
  2086. 8378143A2584F20100FD3EC3 /* Manager */ = {
  2087. isa = PBXGroup;
  2088. children = (
  2089. 837814452584F26500FD3EC3 /* LMCloudBoxManager.swift */,
  2090. 83ABDA7C25863F2000FDC0C7 /* LMCloudBoxServer.swift */,
  2091. );
  2092. path = Manager;
  2093. sourceTree = "<group>";
  2094. };
  2095. 8378144A2584F26F00FD3EC3 /* LampDetail */ = {
  2096. isa = PBXGroup;
  2097. children = (
  2098. 8378144E2584F2F600FD3EC3 /* Manager */,
  2099. 8378144D2584F2F000FD3EC3 /* Model */,
  2100. 8378144C2584F2E900FD3EC3 /* View */,
  2101. 8378144B2584F2DE00FD3EC3 /* Controller */,
  2102. );
  2103. path = LampDetail;
  2104. sourceTree = "<group>";
  2105. };
  2106. 8378144B2584F2DE00FD3EC3 /* Controller */ = {
  2107. isa = PBXGroup;
  2108. children = (
  2109. 8378148B2584F4C500FD3EC3 /* LMLightDetailCtr.swift */,
  2110. );
  2111. path = Controller;
  2112. sourceTree = "<group>";
  2113. };
  2114. 8378144C2584F2E900FD3EC3 /* View */ = {
  2115. isa = PBXGroup;
  2116. children = (
  2117. 837814902584F4D400FD3EC3 /* LMLightDetailView.swift */,
  2118. );
  2119. path = View;
  2120. sourceTree = "<group>";
  2121. };
  2122. 8378144D2584F2F000FD3EC3 /* Model */ = {
  2123. isa = PBXGroup;
  2124. children = (
  2125. 8380F20025874A47001A1C94 /* LMLightDetailRequest.swift */,
  2126. 8380F20525874A51001A1C94 /* LMLightDetailApi.swift */,
  2127. 8380F20A25874A5C001A1C94 /* LMLightDetailModel.swift */,
  2128. );
  2129. path = Model;
  2130. sourceTree = "<group>";
  2131. };
  2132. 8378144E2584F2F600FD3EC3 /* Manager */ = {
  2133. isa = PBXGroup;
  2134. children = (
  2135. 837814952584F4E600FD3EC3 /* LMLightDetailManager.swift */,
  2136. 8380F1FB25874A0E001A1C94 /* LMLightDetailSever.swift */,
  2137. );
  2138. path = Manager;
  2139. sourceTree = "<group>";
  2140. };
  2141. 8378144F2584F2FE00FD3EC3 /* MonitorDetail */ = {
  2142. isa = PBXGroup;
  2143. children = (
  2144. 837814532584F32C00FD3EC3 /* Manager */,
  2145. 837814522584F32500FD3EC3 /* Model */,
  2146. 837814512584F31E00FD3EC3 /* View */,
  2147. 837814502584F31500FD3EC3 /* Controller */,
  2148. );
  2149. path = MonitorDetail;
  2150. sourceTree = "<group>";
  2151. };
  2152. 837814502584F31500FD3EC3 /* Controller */ = {
  2153. isa = PBXGroup;
  2154. children = (
  2155. 8378147C2584F47400FD3EC3 /* LMMonitorDetailCtr.swift */,
  2156. );
  2157. path = Controller;
  2158. sourceTree = "<group>";
  2159. };
  2160. 837814512584F31E00FD3EC3 /* View */ = {
  2161. isa = PBXGroup;
  2162. children = (
  2163. 837814812584F48300FD3EC3 /* LMMonitorDetailView.swift */,
  2164. );
  2165. path = View;
  2166. sourceTree = "<group>";
  2167. };
  2168. 837814522584F32500FD3EC3 /* Model */ = {
  2169. isa = PBXGroup;
  2170. children = (
  2171. 83068D2E2588B13400170DDE /* LMMonitorDetailRequest.swift */,
  2172. 83068D332588B14400170DDE /* LMMonitorDetailApi.swift */,
  2173. 83068D382588B14D00170DDE /* LMMonitorDetailModel.swift */,
  2174. );
  2175. path = Model;
  2176. sourceTree = "<group>";
  2177. };
  2178. 837814532584F32C00FD3EC3 /* Manager */ = {
  2179. isa = PBXGroup;
  2180. children = (
  2181. 837814862584F49700FD3EC3 /* LMMonitorDetailManager.swift */,
  2182. );
  2183. path = Manager;
  2184. sourceTree = "<group>";
  2185. };
  2186. 837814542584F33900FD3EC3 /* RadioDetail */ = {
  2187. isa = PBXGroup;
  2188. children = (
  2189. 837814582584F37000FD3EC3 /* Manager */,
  2190. 837814572584F36900FD3EC3 /* Model */,
  2191. 837814562584F36300FD3EC3 /* View */,
  2192. 837814552584F35A00FD3EC3 /* Controller */,
  2193. );
  2194. path = RadioDetail;
  2195. sourceTree = "<group>";
  2196. };
  2197. 837814552584F35A00FD3EC3 /* Controller */ = {
  2198. isa = PBXGroup;
  2199. children = (
  2200. 8378146D2584F43E00FD3EC3 /* LMRadioDetailCtr.swift */,
  2201. );
  2202. path = Controller;
  2203. sourceTree = "<group>";
  2204. };
  2205. 837814562584F36300FD3EC3 /* View */ = {
  2206. isa = PBXGroup;
  2207. children = (
  2208. 837814722584F44C00FD3EC3 /* LMRadioDetailView.swift */,
  2209. );
  2210. path = View;
  2211. sourceTree = "<group>";
  2212. };
  2213. 837814572584F36900FD3EC3 /* Model */ = {
  2214. isa = PBXGroup;
  2215. children = (
  2216. );
  2217. path = Model;
  2218. sourceTree = "<group>";
  2219. };
  2220. 837814582584F37000FD3EC3 /* Manager */ = {
  2221. isa = PBXGroup;
  2222. children = (
  2223. 837814772584F45F00FD3EC3 /* LMRadioDetailManager.swift */,
  2224. );
  2225. path = Manager;
  2226. sourceTree = "<group>";
  2227. };
  2228. 837814592584F39D00FD3EC3 /* AirQualityDetail */ = {
  2229. isa = PBXGroup;
  2230. children = (
  2231. 8378145D2584F3D400FD3EC3 /* Manager */,
  2232. 8378145C2584F3CE00FD3EC3 /* Model */,
  2233. 8378145B2584F3C800FD3EC3 /* View */,
  2234. 8378145A2584F3C000FD3EC3 /* Controller */,
  2235. );
  2236. path = AirQualityDetail;
  2237. sourceTree = "<group>";
  2238. };
  2239. 8378145A2584F3C000FD3EC3 /* Controller */ = {
  2240. isa = PBXGroup;
  2241. children = (
  2242. 8378145E2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift */,
  2243. );
  2244. path = Controller;
  2245. sourceTree = "<group>";
  2246. };
  2247. 8378145B2584F3C800FD3EC3 /* View */ = {
  2248. isa = PBXGroup;
  2249. children = (
  2250. 837814632584F40F00FD3EC3 /* LMAirQualityDetailView.swift */,
  2251. );
  2252. path = View;
  2253. sourceTree = "<group>";
  2254. };
  2255. 8378145C2584F3CE00FD3EC3 /* Model */ = {
  2256. isa = PBXGroup;
  2257. children = (
  2258. );
  2259. path = Model;
  2260. sourceTree = "<group>";
  2261. };
  2262. 8378145D2584F3D400FD3EC3 /* Manager */ = {
  2263. isa = PBXGroup;
  2264. children = (
  2265. 837814682584F42600FD3EC3 /* LMAirQualityDetailManager.swift */,
  2266. 831555AD2589F38200999EA7 /* LMAirQualityDatailServer.swift */,
  2267. );
  2268. path = Manager;
  2269. sourceTree = "<group>";
  2270. };
  2271. 83CCD2B9251846A800AD14FD /* DetailContent */ = {
  2272. isa = PBXGroup;
  2273. children = (
  2274. 834B89822514B5EF00E2108E /* Manager */,
  2275. 834B89812514B5E600E2108E /* Model */,
  2276. 834B89802514B5DC00E2108E /* View */,
  2277. 834B897F2514B5C500E2108E /* Controller */,
  2278. );
  2279. path = DetailContent;
  2280. sourceTree = "<group>";
  2281. };
  2282. 83CCD2BA251846C300AD14FD /* AdddNewLamp */ = {
  2283. isa = PBXGroup;
  2284. children = (
  2285. 83CCD2BE251846FD00AD14FD /* Manager */,
  2286. 83CCD2BD251846F300AD14FD /* Model */,
  2287. 83CCD2BC251846EC00AD14FD /* View */,
  2288. 83CCD2BB251846E300AD14FD /* Controller */,
  2289. );
  2290. path = AdddNewLamp;
  2291. sourceTree = "<group>";
  2292. };
  2293. 83CCD2BB251846E300AD14FD /* Controller */ = {
  2294. isa = PBXGroup;
  2295. children = (
  2296. 83CCD2BF2518477100AD14FD /* LMNewLampCtr.swift */,
  2297. );
  2298. path = Controller;
  2299. sourceTree = "<group>";
  2300. };
  2301. 83CCD2BC251846EC00AD14FD /* View */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. 83CCD2C12518478400AD14FD /* LMNewLampView.swift */,
  2305. 83CCD2C72518500000AD14FD /* LMInputContentCell.swift */,
  2306. 83CCD2C92518501900AD14FD /* LMChoseContentCell.swift */,
  2307. 83CCD2CB2518503A00AD14FD /* LMInputAndChoseContentCell.swift */,
  2308. );
  2309. path = View;
  2310. sourceTree = "<group>";
  2311. };
  2312. 83CCD2BD251846F300AD14FD /* Model */ = {
  2313. isa = PBXGroup;
  2314. children = (
  2315. 83CCD2C32518479C00AD14FD /* LMNewLampModel.swift */,
  2316. 83CCD2CF2518B27B00AD14FD /* LMNewLampApi.swift */,
  2317. 83CCD2D12518B29700AD14FD /* LMNewLampRequest.swift */,
  2318. );
  2319. path = Model;
  2320. sourceTree = "<group>";
  2321. };
  2322. 83CCD2BE251846FD00AD14FD /* Manager */ = {
  2323. isa = PBXGroup;
  2324. children = (
  2325. 83CCD2C5251847AD00AD14FD /* LMNewLampManager.swift */,
  2326. 83CCD2CD2518A48100AD14FD /* LMNewLampService.swift */,
  2327. );
  2328. path = Manager;
  2329. sourceTree = "<group>";
  2330. };
  2331. 83D9FAA52522E13E009956A8 /* GroupSetting */ = {
  2332. isa = PBXGroup;
  2333. children = (
  2334. 83D9FAA92522E170009956A8 /* Manager */,
  2335. 83D9FAA82522E169009956A8 /* Model */,
  2336. 83D9FAA72522E162009956A8 /* View */,
  2337. 83D9FAA62522E156009956A8 /* Controller */,
  2338. );
  2339. path = GroupSetting;
  2340. sourceTree = "<group>";
  2341. };
  2342. 83D9FAA62522E156009956A8 /* Controller */ = {
  2343. isa = PBXGroup;
  2344. children = (
  2345. 83D9FAAA2522E18D009956A8 /* LMGroupSettingCtr.swift */,
  2346. );
  2347. path = Controller;
  2348. sourceTree = "<group>";
  2349. };
  2350. 83D9FAA72522E162009956A8 /* View */ = {
  2351. isa = PBXGroup;
  2352. children = (
  2353. 83D9FAAC2522E1A1009956A8 /* LMGroupSettingView.swift */,
  2354. 83D9FAB625230680009956A8 /* LMManualOperationView.swift */,
  2355. 83D9FAB8252306A9009956A8 /* LMStrategyOperationView.swift */,
  2356. 8356659B25242B1100425C38 /* LMStrategyOperationCell.swift */,
  2357. 8356659D2524580500425C38 /* LMStrategyOperationDetailCell.swift */,
  2358. 83D9FABA252306BF009956A8 /* LMAutoOperationView.swift */,
  2359. );
  2360. path = View;
  2361. sourceTree = "<group>";
  2362. };
  2363. 83D9FAA82522E169009956A8 /* Model */ = {
  2364. isa = PBXGroup;
  2365. children = (
  2366. 83D9FAAE2522E1BC009956A8 /* LMGroupSettingModel.swift */,
  2367. 83D9FAB02522E1D4009956A8 /* LMGroupSettingApi.swift */,
  2368. 83D9FAB22522E1EC009956A8 /* LMGroupSettingRequest.swift */,
  2369. );
  2370. path = Model;
  2371. sourceTree = "<group>";
  2372. };
  2373. 83D9FAA92522E170009956A8 /* Manager */ = {
  2374. isa = PBXGroup;
  2375. children = (
  2376. 83D9FAB42522E200009956A8 /* LMGroupSettingManager.swift */,
  2377. 834F9D822523725F00BFFE58 /* LMGroupSettingService.swift */,
  2378. );
  2379. path = Manager;
  2380. sourceTree = "<group>";
  2381. };
  2382. 83E4080F2387726800255664 = {
  2383. isa = PBXGroup;
  2384. children = (
  2385. 83E4081A2387726800255664 /* LampMind */,
  2386. 83E408312387726C00255664 /* LampMindTests */,
  2387. 83E4083C2387726D00255664 /* LampMindUITests */,
  2388. 83E408192387726800255664 /* Products */,
  2389. 7154D0FDA87A9D40FF675349 /* Pods */,
  2390. AA674B10D65B021AD315EF73 /* Frameworks */,
  2391. );
  2392. sourceTree = "<group>";
  2393. usesTabs = 0;
  2394. };
  2395. 83E408192387726800255664 /* Products */ = {
  2396. isa = PBXGroup;
  2397. children = (
  2398. 83E408182387726800255664 /* LampMind.app */,
  2399. 83E4082E2387726C00255664 /* LampMindTests.xctest */,
  2400. 83E408392387726D00255664 /* LampMindUITests.xctest */,
  2401. );
  2402. name = Products;
  2403. sourceTree = "<group>";
  2404. };
  2405. 83E4081A2387726800255664 /* LampMind */ = {
  2406. isa = PBXGroup;
  2407. children = (
  2408. 83E40850238777A200255664 /* Classes */,
  2409. 83E4084F238775DB00255664 /* LampMindShare */,
  2410. );
  2411. path = LampMind;
  2412. sourceTree = "<group>";
  2413. };
  2414. 83E408312387726C00255664 /* LampMindTests */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. 83E408322387726D00255664 /* LampMindTests.swift */,
  2418. 83E408342387726D00255664 /* Info.plist */,
  2419. );
  2420. path = LampMindTests;
  2421. sourceTree = "<group>";
  2422. };
  2423. 83E4083C2387726D00255664 /* LampMindUITests */ = {
  2424. isa = PBXGroup;
  2425. children = (
  2426. 83E4083D2387726D00255664 /* LampMindUITests.swift */,
  2427. 83E4083F2387726D00255664 /* Info.plist */,
  2428. );
  2429. path = LampMindUITests;
  2430. sourceTree = "<group>";
  2431. };
  2432. 83E4084F238775DB00255664 /* LampMindShare */ = {
  2433. isa = PBXGroup;
  2434. children = (
  2435. 83E4081B2387726800255664 /* AppDelegate.swift */,
  2436. 83E4081D2387726800255664 /* SceneDelegate.swift */,
  2437. 83E4081F2387726800255664 /* ViewController.swift */,
  2438. 83E408212387726800255664 /* Main.storyboard */,
  2439. 83E408242387726C00255664 /* Assets.xcassets */,
  2440. 83E408262387726C00255664 /* LaunchScreen.storyboard */,
  2441. 83E408292387726C00255664 /* Info.plist */,
  2442. 83DD401125E3463D00A5808E /* Localizable.strings */,
  2443. 83DD400225E3450E00A5808E /* InfoPlist.strings */,
  2444. 83E4084B2387759A00255664 /* LampMind-Bridging-Header.h */,
  2445. );
  2446. name = LampMindShare;
  2447. sourceTree = "<group>";
  2448. };
  2449. 83E40850238777A200255664 /* Classes */ = {
  2450. isa = PBXGroup;
  2451. children = (
  2452. 8348482D24692D4A00F71465 /* LampMind交接文档.pages */,
  2453. 83E4095E2387788200255664 /* Main */,
  2454. 83E408532387782F00255664 /* Global */,
  2455. );
  2456. name = Classes;
  2457. sourceTree = "<group>";
  2458. };
  2459. 83E408532387782F00255664 /* Global */ = {
  2460. isa = PBXGroup;
  2461. children = (
  2462. 83E408542387782F00255664 /* Database */,
  2463. 83E408552387782F00255664 /* Extension */,
  2464. 83E4085F2387782F00255664 /* ProjectConstant.swift */,
  2465. 83E408602387782F00255664 /* Networking */,
  2466. 83E408622387782F00255664 /* Utils */,
  2467. 83E408632387782F00255664 /* BaseClass */,
  2468. 83E408652387782F00255664 /* ProtocolDelegate */,
  2469. 83E4086A2387782F00255664 /* AppShare.swift */,
  2470. 83E4086B2387782F00255664 /* Vender */,
  2471. );
  2472. path = Global;
  2473. sourceTree = "<group>";
  2474. };
  2475. 83E408542387782F00255664 /* Database */ = {
  2476. isa = PBXGroup;
  2477. children = (
  2478. );
  2479. path = Database;
  2480. sourceTree = "<group>";
  2481. };
  2482. 83E408552387782F00255664 /* Extension */ = {
  2483. isa = PBXGroup;
  2484. children = (
  2485. 83E408562387782F00255664 /* UIBarButtonItem+item.swift */,
  2486. 83E408572387782F00255664 /* MKMapView+ZoomLevel.swift */,
  2487. 83E408582387782F00255664 /* UIView+Gradient.swift */,
  2488. 83E408592387782F00255664 /* UIView+Extension.swift */,
  2489. 83E4085A2387782F00255664 /* UIButton+Gradient.swift */,
  2490. 83E4085B2387782F00255664 /* LMView+UIViewController.swift */,
  2491. 83E4085C2387782F00255664 /* UIImagView+Kingfisher.swift */,
  2492. 83E4085D2387782F00255664 /* UIView+Configure.swift */,
  2493. 83E4085E2387782F00255664 /* UIVIew+Positioning.swift */,
  2494. );
  2495. path = Extension;
  2496. sourceTree = "<group>";
  2497. };
  2498. 83E408602387782F00255664 /* Networking */ = {
  2499. isa = PBXGroup;
  2500. children = (
  2501. 83E408612387782F00255664 /* ProviderSupport.swift */,
  2502. );
  2503. path = Networking;
  2504. sourceTree = "<group>";
  2505. };
  2506. 83E408622387782F00255664 /* Utils */ = {
  2507. isa = PBXGroup;
  2508. children = (
  2509. );
  2510. path = Utils;
  2511. sourceTree = "<group>";
  2512. };
  2513. 83E408632387782F00255664 /* BaseClass */ = {
  2514. isa = PBXGroup;
  2515. children = (
  2516. 83E408642387782F00255664 /* LMCornerLabel.swift */,
  2517. );
  2518. path = BaseClass;
  2519. sourceTree = "<group>";
  2520. };
  2521. 83E408652387782F00255664 /* ProtocolDelegate */ = {
  2522. isa = PBXGroup;
  2523. children = (
  2524. 83E408662387782F00255664 /* LMViewModelProtocolDelegate.swift */,
  2525. 83E408682387782F00255664 /* LMViewProtocolDelegate.swift */,
  2526. 83E408692387782F00255664 /* LMViewManagerProtocolDelegate.swift */,
  2527. );
  2528. path = ProtocolDelegate;
  2529. sourceTree = "<group>";
  2530. };
  2531. 83E4086B2387782F00255664 /* Vender */ = {
  2532. isa = PBXGroup;
  2533. children = (
  2534. 836D81B925B98FA3001718E0 /* IJKMediaFramework.framework */,
  2535. 8329FEC525B80F450001D20A /* OpenSDK */,
  2536. 5F63A8202539BCF200DD9DD6 /* SwiftScan */,
  2537. 5F6A10EC2537FDE0007A20DC /* Openssl */,
  2538. 83EAA71223966966008763FB /* SideRefresh */,
  2539. 83EAA71023966904008763FB /* THScrollChooseView */,
  2540. 83EAA7112396693B008763FB /* CXDatePickerView */,
  2541. 83E4086E2387782F00255664 /* DGKVOTool */,
  2542. 83E408722387782F00255664 /* ScrollSegmentView */,
  2543. 83E408752387782F00255664 /* HDEmptyView */,
  2544. 83E4087D2387782F00255664 /* KKWRefreshHeaderAnimator.swift */,
  2545. 83E408842387782F00255664 /* PickerViewParameter.h */,
  2546. );
  2547. path = Vender;
  2548. sourceTree = "<group>";
  2549. };
  2550. 83E4086E2387782F00255664 /* DGKVOTool */ = {
  2551. isa = PBXGroup;
  2552. children = (
  2553. 83E4086F2387782F00255664 /* DGKVOTool.swift */,
  2554. );
  2555. path = DGKVOTool;
  2556. sourceTree = "<group>";
  2557. };
  2558. 83E408722387782F00255664 /* ScrollSegmentView */ = {
  2559. isa = PBXGroup;
  2560. children = (
  2561. 83E408732387782F00255664 /* SegmentStyle.swift */,
  2562. 83E408742387782F00255664 /* ScrollSegmentView.swift */,
  2563. );
  2564. path = ScrollSegmentView;
  2565. sourceTree = "<group>";
  2566. };
  2567. 83E408752387782F00255664 /* HDEmptyView */ = {
  2568. isa = PBXGroup;
  2569. children = (
  2570. 83E408762387782F00255664 /* HDEmptyView.swift */,
  2571. 83E408772387782F00255664 /* HDRunTime.swift */,
  2572. 83E408782387782F00255664 /* UIView+Position.swift */,
  2573. 83E408792387782F00255664 /* UIScrollView+Empty.swift */,
  2574. 83E4087A2387782F00255664 /* HDEmptyBaseView.swift */,
  2575. );
  2576. path = HDEmptyView;
  2577. sourceTree = "<group>";
  2578. };
  2579. 83E4095E2387788200255664 /* Main */ = {
  2580. isa = PBXGroup;
  2581. children = (
  2582. 83EAA59823950E42008763FB /* TabbarController */,
  2583. 83EAA59A23950E43008763FB /* NavigationController */,
  2584. 83EAA69F239516AA008763FB /* Device */,
  2585. 83EAA6732395142B008763FB /* Alarm */,
  2586. 83EAA59F23950EDB008763FB /* GIS */,
  2587. 83E4095F238778B800255664 /* Login */,
  2588. );
  2589. path = Main;
  2590. sourceTree = "<group>";
  2591. };
  2592. 83E4095F238778B800255664 /* Login */ = {
  2593. isa = PBXGroup;
  2594. children = (
  2595. 83E409662387790900255664 /* Controller */,
  2596. 83E409642387790900255664 /* Manager */,
  2597. 83E409602387790900255664 /* Model */,
  2598. 83E409682387790A00255664 /* View */,
  2599. );
  2600. path = Login;
  2601. sourceTree = "<group>";
  2602. };
  2603. 83E409602387790900255664 /* Model */ = {
  2604. isa = PBXGroup;
  2605. children = (
  2606. 83E409612387790900255664 /* LMLoginModel.swift */,
  2607. 83E409622387790900255664 /* LMLoginHttpRequest.swift */,
  2608. 83E409632387790900255664 /* LMLoginApi.swift */,
  2609. );
  2610. path = Model;
  2611. sourceTree = "<group>";
  2612. };
  2613. 83E409642387790900255664 /* Manager */ = {
  2614. isa = PBXGroup;
  2615. children = (
  2616. 83E409652387790900255664 /* LMLoginManager.swift */,
  2617. );
  2618. path = Manager;
  2619. sourceTree = "<group>";
  2620. };
  2621. 83E409662387790900255664 /* Controller */ = {
  2622. isa = PBXGroup;
  2623. children = (
  2624. 83E409672387790900255664 /* LMLoginVCtr.swift */,
  2625. );
  2626. path = Controller;
  2627. sourceTree = "<group>";
  2628. };
  2629. 83E409682387790A00255664 /* View */ = {
  2630. isa = PBXGroup;
  2631. children = (
  2632. 83DD408B25E3817E00A5808E /* LMLoginVCtr.xib */,
  2633. );
  2634. path = View;
  2635. sourceTree = "<group>";
  2636. };
  2637. 83EAA59823950E42008763FB /* TabbarController */ = {
  2638. isa = PBXGroup;
  2639. children = (
  2640. 83EAA59923950E42008763FB /* MainViewController.swift */,
  2641. );
  2642. path = TabbarController;
  2643. sourceTree = "<group>";
  2644. };
  2645. 83EAA59A23950E43008763FB /* NavigationController */ = {
  2646. isa = PBXGroup;
  2647. children = (
  2648. 83EAA59723950E42008763FB /* RootNavigationController.swift */,
  2649. 83EAA59B23950E43008763FB /* LMNavigationController.swift */,
  2650. );
  2651. path = NavigationController;
  2652. sourceTree = "<group>";
  2653. };
  2654. 83EAA59F23950EDB008763FB /* GIS */ = {
  2655. isa = PBXGroup;
  2656. children = (
  2657. 5F6802A7253C833F0002577C /* RepairManager */,
  2658. 83EAA64A23950F22008763FB /* Dimming */,
  2659. 83EAA64023950F22008763FB /* RoadFilter */,
  2660. 83EAA5A023950EDB008763FB /* Home */,
  2661. );
  2662. path = GIS;
  2663. sourceTree = "<group>";
  2664. };
  2665. 83EAA5A023950EDB008763FB /* Home */ = {
  2666. isa = PBXGroup;
  2667. children = (
  2668. 83EAA5A123950EDB008763FB /* Controller */,
  2669. 83EAA5A423950EDB008763FB /* Manager */,
  2670. 83EAA5A723950EDB008763FB /* Model */,
  2671. 83EAA5AB23950EDB008763FB /* View */,
  2672. );
  2673. path = Home;
  2674. sourceTree = "<group>";
  2675. };
  2676. 83EAA5A123950EDB008763FB /* Controller */ = {
  2677. isa = PBXGroup;
  2678. children = (
  2679. 83EAA5A223950EDB008763FB /* LMGISVCtr.xib */,
  2680. 83EAA5A323950EDB008763FB /* LMGISVCtr.swift */,
  2681. );
  2682. path = Controller;
  2683. sourceTree = "<group>";
  2684. };
  2685. 83EAA5A423950EDB008763FB /* Manager */ = {
  2686. isa = PBXGroup;
  2687. children = (
  2688. 83EAA5A523950EDB008763FB /* LMGISManager.swift */,
  2689. 83EAA5A623950EDB008763FB /* LMGISMapManager.swift */,
  2690. );
  2691. path = Manager;
  2692. sourceTree = "<group>";
  2693. };
  2694. 83EAA5A723950EDB008763FB /* Model */ = {
  2695. isa = PBXGroup;
  2696. children = (
  2697. 83EAA5A823950EDB008763FB /* LMGISModel.swift */,
  2698. 83EAA5A923950EDB008763FB /* LMGisHttpRequest.swift */,
  2699. 83EAA5AA23950EDB008763FB /* LMGISApi.swift */,
  2700. );
  2701. path = Model;
  2702. sourceTree = "<group>";
  2703. };
  2704. 83EAA5AB23950EDB008763FB /* View */ = {
  2705. isa = PBXGroup;
  2706. children = (
  2707. 83EAA5B323950EDB008763FB /* LMMapView.swift */,
  2708. 83EAA5AD23950EDB008763FB /* LMGisHeaderView.swift */,
  2709. 83EAA5AC23950EDB008763FB /* LMPoleCalloutView.xib */,
  2710. 83EAA5AF23950EDB008763FB /* LMPoleCalloutView.swift */,
  2711. 83EAA5B023950EDB008763FB /* LMLampCalloutView.xib */,
  2712. 83EAA5B123950EDB008763FB /* LMLampCalloutView.swift */,
  2713. 83EAA5B223950EDB008763FB /* LMAnnotationView.swift */,
  2714. 83EAA5AE23950EDB008763FB /* LMLampWithAlarmCalloutView.swift */,
  2715. 83EAA5B523950EDB008763FB /* LMLampWithAlarmCalloutView.xib */,
  2716. 83EAA5B623950EDB008763FB /* LMLampNoAlarmCalloutView.swift */,
  2717. 83EAA5B423950EDB008763FB /* LMLampNoAlarmCalloutView.xib */,
  2718. );
  2719. path = View;
  2720. sourceTree = "<group>";
  2721. };
  2722. 83EAA64023950F22008763FB /* RoadFilter */ = {
  2723. isa = PBXGroup;
  2724. children = (
  2725. 83EAA64123950F22008763FB /* Controller */,
  2726. 83EAA64423950F22008763FB /* Manager */,
  2727. 83EAA64723950F22008763FB /* View */,
  2728. );
  2729. path = RoadFilter;
  2730. sourceTree = "<group>";
  2731. };
  2732. 83EAA64123950F22008763FB /* Controller */ = {
  2733. isa = PBXGroup;
  2734. children = (
  2735. 83EAA64223950F22008763FB /* LMRoadFilterVCtr.swift */,
  2736. 83EAA64323950F22008763FB /* LMRoadFilterVCtr.xib */,
  2737. );
  2738. path = Controller;
  2739. sourceTree = "<group>";
  2740. };
  2741. 83EAA64423950F22008763FB /* Manager */ = {
  2742. isa = PBXGroup;
  2743. children = (
  2744. 83EAA64523950F22008763FB /* LMRoadFilterManager.swift */,
  2745. 83EAA64623950F22008763FB /* LMRoadFilterCacheManager.swift */,
  2746. );
  2747. path = Manager;
  2748. sourceTree = "<group>";
  2749. };
  2750. 83EAA64723950F22008763FB /* View */ = {
  2751. isa = PBXGroup;
  2752. children = (
  2753. 83674E9625E60435000B4B3C /* LMRoadFilterView.xib */,
  2754. 83EAA64923950F22008763FB /* LMRoadFilterView.swift */,
  2755. );
  2756. path = View;
  2757. sourceTree = "<group>";
  2758. };
  2759. 83EAA64A23950F22008763FB /* Dimming */ = {
  2760. isa = PBXGroup;
  2761. children = (
  2762. 83EAA64B23950F22008763FB /* Controller */,
  2763. 83EAA64E23950F22008763FB /* Manager */,
  2764. 83EAA65023950F22008763FB /* DimmingSocket */,
  2765. 83EAA65223950F22008763FB /* model */,
  2766. 83EAA65423950F22008763FB /* View */,
  2767. );
  2768. path = Dimming;
  2769. sourceTree = "<group>";
  2770. };
  2771. 83EAA64B23950F22008763FB /* Controller */ = {
  2772. isa = PBXGroup;
  2773. children = (
  2774. 83EAA64C23950F22008763FB /* LMDimmingVCtr.xib */,
  2775. 83EAA64D23950F22008763FB /* LMDimmingVCtr.swift */,
  2776. );
  2777. path = Controller;
  2778. sourceTree = "<group>";
  2779. };
  2780. 83EAA64E23950F22008763FB /* Manager */ = {
  2781. isa = PBXGroup;
  2782. children = (
  2783. 83EAA64F23950F22008763FB /* LMDimmingManager.swift */,
  2784. );
  2785. path = Manager;
  2786. sourceTree = "<group>";
  2787. };
  2788. 83EAA65023950F22008763FB /* DimmingSocket */ = {
  2789. isa = PBXGroup;
  2790. children = (
  2791. 83EAA65123950F22008763FB /* LMWebSocket.swift */,
  2792. );
  2793. path = DimmingSocket;
  2794. sourceTree = "<group>";
  2795. };
  2796. 83EAA65223950F22008763FB /* model */ = {
  2797. isa = PBXGroup;
  2798. children = (
  2799. 83EAA65323950F22008763FB /* LMSliderViewStyle.swift */,
  2800. );
  2801. path = model;
  2802. sourceTree = "<group>";
  2803. };
  2804. 83EAA65423950F22008763FB /* View */ = {
  2805. isa = PBXGroup;
  2806. children = (
  2807. 83EAA65523950F22008763FB /* LMSliderView.swift */,
  2808. 83EAA65623950F22008763FB /* LMSliderView.xib */,
  2809. 835F1B9325E89DD0006A7CA1 /* LMDimmingView.xib */,
  2810. 83EAA65823950F22008763FB /* LMDimmingView.swift */,
  2811. );
  2812. path = View;
  2813. sourceTree = "<group>";
  2814. };
  2815. 83EAA6732395142B008763FB /* Alarm */ = {
  2816. isa = PBXGroup;
  2817. children = (
  2818. 83EAA6782395142B008763FB /* mainController */,
  2819. 83EAA69D23951556008763FB /* AlarmInfo */,
  2820. 83EAA69E23951570008763FB /* AlarmDispath */,
  2821. 83EAA6822395142B008763FB /* LMNetWorkManager.swift */,
  2822. );
  2823. path = Alarm;
  2824. sourceTree = "<group>";
  2825. };
  2826. 83EAA6782395142B008763FB /* mainController */ = {
  2827. isa = PBXGroup;
  2828. children = (
  2829. 83EAA69C23951539008763FB /* Model */,
  2830. 83EAA69B2395151C008763FB /* Controller */,
  2831. 83EAA6792395142B008763FB /* Manager */,
  2832. 83EAA67B2395142B008763FB /* View */,
  2833. );
  2834. path = mainController;
  2835. sourceTree = "<group>";
  2836. };
  2837. 83EAA6792395142B008763FB /* Manager */ = {
  2838. isa = PBXGroup;
  2839. children = (
  2840. 83EAA67A2395142B008763FB /* LMAlarmManager.swift */,
  2841. );
  2842. path = Manager;
  2843. sourceTree = "<group>";
  2844. };
  2845. 83EAA67B2395142B008763FB /* View */ = {
  2846. isa = PBXGroup;
  2847. children = (
  2848. 83EAA67C2395142B008763FB /* LMAlarmCell.xib */,
  2849. 83EAA67D2395142B008763FB /* LMEmptyView.xib */,
  2850. 83EAA67E2395142B008763FB /* LMAlarmView.swift */,
  2851. 83EAA67F2395142B008763FB /* LMAlarmCell.swift */,
  2852. 83EAA6802395142B008763FB /* LMEmptyView.swift */,
  2853. );
  2854. path = View;
  2855. sourceTree = "<group>";
  2856. };
  2857. 83EAA69B2395151C008763FB /* Controller */ = {
  2858. isa = PBXGroup;
  2859. children = (
  2860. 83EAA6812395142B008763FB /* LMAlarmVCtr.swift */,
  2861. 83EAA6752395142B008763FB /* LMAlarmVCtr.xib */,
  2862. );
  2863. path = Controller;
  2864. sourceTree = "<group>";
  2865. };
  2866. 83EAA69C23951539008763FB /* Model */ = {
  2867. isa = PBXGroup;
  2868. children = (
  2869. 83EAA6832395142B008763FB /* LMAlarmApi.swift */,
  2870. 83EAA6852395142B008763FB /* LMAlarmModel.swift */,
  2871. 83EAA6862395142B008763FB /* LMAlarmHttpRequest.swift */,
  2872. );
  2873. path = Model;
  2874. sourceTree = "<group>";
  2875. };
  2876. 83EAA69D23951556008763FB /* AlarmInfo */ = {
  2877. isa = PBXGroup;
  2878. children = (
  2879. 83EAA6742395142B008763FB /* LMAlarmInfoManger.swift */,
  2880. 83EAA6772395142B008763FB /* LMAlarmInfoVCtr.swift */,
  2881. 83725CB425EA1E47000222EB /* LMAlarmInfoVCtr.xib */,
  2882. );
  2883. path = AlarmInfo;
  2884. sourceTree = "<group>";
  2885. };
  2886. 83EAA69E23951570008763FB /* AlarmDispath */ = {
  2887. isa = PBXGroup;
  2888. children = (
  2889. 83EAA6762395142B008763FB /* LMAlarmDispathVctr.swift */,
  2890. 83025EED25E7C40000356051 /* LMAlarmDispathVctr.xib */,
  2891. 83EAA6882395142B008763FB /* LMAlarmDispatchManager.swift */,
  2892. );
  2893. path = AlarmDispath;
  2894. sourceTree = "<group>";
  2895. };
  2896. 83EAA69F239516AA008763FB /* Device */ = {
  2897. isa = PBXGroup;
  2898. children = (
  2899. 83491798253089EB006B44BD /* LightpoleManagement */,
  2900. 83EAA72523968F59008763FB /* LampManagement */,
  2901. 83EAA6A0239516AA008763FB /* DeviceManagerMain */,
  2902. );
  2903. path = Device;
  2904. sourceTree = "<group>";
  2905. };
  2906. 83EAA6A0239516AA008763FB /* DeviceManagerMain */ = {
  2907. isa = PBXGroup;
  2908. children = (
  2909. 83EAA6A1239516AA008763FB /* Controller */,
  2910. 83EAA6A4239516AA008763FB /* Manager */,
  2911. 83EAA6A6239516AA008763FB /* Model */,
  2912. 83EAA6AB239516AA008763FB /* View */,
  2913. );
  2914. path = DeviceManagerMain;
  2915. sourceTree = "<group>";
  2916. };
  2917. 83EAA6A1239516AA008763FB /* Controller */ = {
  2918. isa = PBXGroup;
  2919. children = (
  2920. 83EAA6A2239516AA008763FB /* LMDeviceVCtr.xib */,
  2921. 83EAA6A3239516AA008763FB /* LMDeviceVCtr.swift */,
  2922. );
  2923. path = Controller;
  2924. sourceTree = "<group>";
  2925. };
  2926. 83EAA6A4239516AA008763FB /* Manager */ = {
  2927. isa = PBXGroup;
  2928. children = (
  2929. 83EAA6A5239516AA008763FB /* LMDeviceViewManager.swift */,
  2930. );
  2931. path = Manager;
  2932. sourceTree = "<group>";
  2933. };
  2934. 83EAA6A6239516AA008763FB /* Model */ = {
  2935. isa = PBXGroup;
  2936. children = (
  2937. 83EAA6A7239516AA008763FB /* LMDeviceApi.swift */,
  2938. 83EAA6A8239516AA008763FB /* LMDeviceModel.swift */,
  2939. 83EAA6A9239516AA008763FB /* LMChartsModel.swift */,
  2940. 83EAA6AA239516AA008763FB /* LMDeviceHttpRequest.swift */,
  2941. );
  2942. path = Model;
  2943. sourceTree = "<group>";
  2944. };
  2945. 83EAA6AB239516AA008763FB /* View */ = {
  2946. isa = PBXGroup;
  2947. children = (
  2948. 83EAA6AC239516AA008763FB /* LMAlarmNumberView.swift */,
  2949. 83DD409525E38A3700A5808E /* LMAlarmNumberView.xib */,
  2950. 83EAA6AD239516AA008763FB /* LMElectricQuantityView.swift */,
  2951. 83EAA6B2239516AA008763FB /* LMElectriQuantiyCell.swift */,
  2952. 83EAA6B0239516AA008763FB /* LMElectriQuantiyCell.xib */,
  2953. 83EAA6AE239516AA008763FB /* LMDeviceView.swift */,
  2954. 83EAA6AF239516AA008763FB /* BalloonMarker.swift */,
  2955. 83EAA6B1239516AA008763FB /* LMMonitorView.swift */,
  2956. 83EAA6CA239645B1008763FB /* LMMonitorCell.swift */,
  2957. 83EAA6CB239645B1008763FB /* LMMonitorCell.xib */,
  2958. 83EAA6B3239516AA008763FB /* LMLightNumberView.swift */,
  2959. 83EAA6C623954149008763FB /* LMLightNumberView.xib */,
  2960. 83EAA6B4239516AA008763FB /* LMChartView.swift */,
  2961. );
  2962. path = View;
  2963. sourceTree = "<group>";
  2964. };
  2965. 83EAA71023966904008763FB /* THScrollChooseView */ = {
  2966. isa = PBXGroup;
  2967. children = (
  2968. 83E408712387782F00255664 /* THScrollChooseView.h */,
  2969. 83E4086C2387782F00255664 /* THScrollChooseView.m */,
  2970. );
  2971. path = THScrollChooseView;
  2972. sourceTree = "<group>";
  2973. };
  2974. 83EAA7112396693B008763FB /* CXDatePickerView */ = {
  2975. isa = PBXGroup;
  2976. children = (
  2977. 83E4086D2387782F00255664 /* CXDatePickerView.m */,
  2978. 83E4087B2387782F00255664 /* CXDatePickerView.h */,
  2979. 83E408702387782F00255664 /* NSDate+CXCategory.h */,
  2980. 83E4087C2387782F00255664 /* NSDate+CXCategory.m */,
  2981. );
  2982. path = CXDatePickerView;
  2983. sourceTree = "<group>";
  2984. };
  2985. 83EAA71223966966008763FB /* SideRefresh */ = {
  2986. isa = PBXGroup;
  2987. children = (
  2988. 83EAA71323966966008763FB /* UICollectionView+SideRefresh.m */,
  2989. 83EAA71423966966008763FB /* SideRefreshHeader.m */,
  2990. 83EAA71523966966008763FB /* SideRefreshFooter.m */,
  2991. 83EAA71623966966008763FB /* UICollectionView+SideExtension.h */,
  2992. 83EAA71723966966008763FB /* SideRefreshEmptyFooter.m */,
  2993. 83EAA71823966966008763FB /* SideRefresh.m */,
  2994. 83EAA71923966966008763FB /* UICollectionView+SideExtension.m */,
  2995. 83EAA71A23966966008763FB /* SideRefreshFooter.h */,
  2996. 83EAA71B23966966008763FB /* SideRefreshHeader.h */,
  2997. 83EAA71C23966966008763FB /* UICollectionView+SideRefresh.h */,
  2998. 83EAA71D23966966008763FB /* SideRefresh.h */,
  2999. 83EAA71E23966966008763FB /* SideRefreshEmptyFooter.h */,
  3000. );
  3001. path = SideRefresh;
  3002. sourceTree = "<group>";
  3003. };
  3004. 83EAA72523968F59008763FB /* LampManagement */ = {
  3005. isa = PBXGroup;
  3006. children = (
  3007. 83EAA72D23974991008763FB /* DeviceBase */,
  3008. 83EAA72C23969681008763FB /* HistoricalReport */,
  3009. 83EAA72B23969659008763FB /* Strategy */,
  3010. 83EAA72A23969636008763FB /* Group */,
  3011. 83EAA72923969608008763FB /* Loop */,
  3012. 83EAA728239695B6008763FB /* LampDetial */,
  3013. );
  3014. path = LampManagement;
  3015. sourceTree = "<group>";
  3016. };
  3017. 83EAA728239695B6008763FB /* LampDetial */ = {
  3018. isa = PBXGroup;
  3019. children = (
  3020. 83CCD2BA251846C300AD14FD /* AdddNewLamp */,
  3021. 83CCD2B9251846A800AD14FD /* DetailContent */,
  3022. 834B897E2514B5A000E2108E /* main */,
  3023. );
  3024. path = LampDetial;
  3025. sourceTree = "<group>";
  3026. };
  3027. 83EAA72923969608008763FB /* Loop */ = {
  3028. isa = PBXGroup;
  3029. children = (
  3030. 834E2966251CBD0000BC3482 /* AddNewLoop */,
  3031. 83577A262519DB8F002A83A0 /* Main */,
  3032. );
  3033. path = Loop;
  3034. sourceTree = "<group>";
  3035. };
  3036. 83EAA72A23969636008763FB /* Group */ = {
  3037. isa = PBXGroup;
  3038. children = (
  3039. 83503483252879E500BF947A /* AddNewStrategy */,
  3040. 83D9FAA52522E13E009956A8 /* GroupSetting */,
  3041. 83559F2E252232C300B166C4 /* GroupDetail */,
  3042. 83559F2D25222DD700B166C4 /* Main */,
  3043. );
  3044. path = Group;
  3045. sourceTree = "<group>";
  3046. };
  3047. 83EAA72B23969659008763FB /* Strategy */ = {
  3048. isa = PBXGroup;
  3049. children = (
  3050. 833559C82510C673000F1EF2 /* Manager */,
  3051. 833559C72510C66C000F1EF2 /* Model */,
  3052. 833559C62510C663000F1EF2 /* View */,
  3053. 833559C52510C657000F1EF2 /* Controller */,
  3054. );
  3055. path = Strategy;
  3056. sourceTree = "<group>";
  3057. };
  3058. 83EAA72C23969681008763FB /* HistoricalReport */ = {
  3059. isa = PBXGroup;
  3060. children = (
  3061. 833559CC2510C695000F1EF2 /* Manager */,
  3062. 833559CB2510C68D000F1EF2 /* Model */,
  3063. 833559CA2510C686000F1EF2 /* View */,
  3064. 833559C92510C67D000F1EF2 /* Controller */,
  3065. );
  3066. path = " HistoricalReport";
  3067. sourceTree = "<group>";
  3068. };
  3069. 83EAA72D23974991008763FB /* DeviceBase */ = {
  3070. isa = PBXGroup;
  3071. children = (
  3072. 83EAA73523974A77008763FB /* Manger */,
  3073. 83EAA73423974A69008763FB /* Model */,
  3074. 83EAA73323974A1B008763FB /* View */,
  3075. 83EAA73223974A05008763FB /* Coltroller */,
  3076. );
  3077. path = DeviceBase;
  3078. sourceTree = "<group>";
  3079. };
  3080. 83EAA73223974A05008763FB /* Coltroller */ = {
  3081. isa = PBXGroup;
  3082. children = (
  3083. 83EAA72E239749FD008763FB /* LMLampBaseVCtr.swift */,
  3084. 83EAA72F239749FD008763FB /* LMLampBaseVCtr.xib */,
  3085. );
  3086. path = Coltroller;
  3087. sourceTree = "<group>";
  3088. };
  3089. 83EAA73323974A1B008763FB /* View */ = {
  3090. isa = PBXGroup;
  3091. children = (
  3092. 83CCBDBA239758230096AA9F /* LMLampBaseView.swift */,
  3093. 83CCBDBC23975F9E0096AA9F /* LMSelectorView.swift */,
  3094. 83CCBDC62397B3DE0096AA9F /* LMSelectorCell.swift */,
  3095. 83CCBDC72397B3DE0096AA9F /* LMSelectorCell.xib */,
  3096. 83CCBDCA2397C27E0096AA9F /* LMLightTimeView.swift */,
  3097. 83CCBDCC2397C2940096AA9F /* LMLoopView.swift */,
  3098. 836AAF1A25E4B4D00068B7C6 /* LMLoopView.xib */,
  3099. 83CCBDCE2397C31D0096AA9F /* LMGroupView.swift */,
  3100. 836AAF2125E4B53A0068B7C6 /* LMGroupView.xib */,
  3101. 83CCBDD02397C3450096AA9F /* LMPowerSavingView.swift */,
  3102. 83CCBDD42397D4900096AA9F /* LMPowerSavingView.xib */,
  3103. );
  3104. path = View;
  3105. sourceTree = "<group>";
  3106. };
  3107. 83EAA73423974A69008763FB /* Model */ = {
  3108. isa = PBXGroup;
  3109. children = (
  3110. 83CCBDBE23978F800096AA9F /* LMLampApi.swift */,
  3111. 83CCBDC023978F940096AA9F /* LMLampModel.swift */,
  3112. 83CCBDC223978FA60096AA9F /* LMLampHttpRequest.swift */,
  3113. );
  3114. path = Model;
  3115. sourceTree = "<group>";
  3116. };
  3117. 83EAA73523974A77008763FB /* Manger */ = {
  3118. isa = PBXGroup;
  3119. children = (
  3120. 83EAA73623974AA1008763FB /* LMLampBaseManger.swift */,
  3121. 83CCBDC42397A4800096AA9F /* LMLampBaseService.swift */,
  3122. );
  3123. path = Manger;
  3124. sourceTree = "<group>";
  3125. };
  3126. AA674B10D65B021AD315EF73 /* Frameworks */ = {
  3127. isa = PBXGroup;
  3128. children = (
  3129. 83C7534425934EA50072318F /* QuartzCore.framework */,
  3130. 83C7534225934E3B0072318F /* CoreGraphics.framework */,
  3131. 5F6A115525382E76007A20DC /* libiconv.2.4.0.tbd */,
  3132. 5F6A115325382E58007A20DC /* CoreTelephony.framework */,
  3133. 5F6A115125382DF8007A20DC /* libsqlite3.0.tbd */,
  3134. 5F6A11482537FE83007A20DC /* libbz2.tbd */,
  3135. 5F6A10E62537E715007A20DC /* libc++.tbd */,
  3136. 5F6A10E12537E39B007A20DC /* CoreVideo.framework */,
  3137. 5F6A10DF2537E38C007A20DC /* MediaAccessibility.framework */,
  3138. 5F6A10DD2537E371007A20DC /* OpenGLES.framework */,
  3139. 5F6A10DA2537E353007A20DC /* AudioToolbox.framework */,
  3140. 5F6A10D82537E348007A20DC /* MediaPlayer.framework */,
  3141. 5F6A10D62537E33C007A20DC /* CoreAudio.framework */,
  3142. 5FED923C253704A300003727 /* OpenAL.framework */,
  3143. 5FED923A2537049600003727 /* GLKit.framework */,
  3144. 5FED92382537048700003727 /* CoreMedia.framework */,
  3145. 5FED92362537047500003727 /* VideoToolbox.framework */,
  3146. 5FED92342537045B00003727 /* MobileCoreServices.framework */,
  3147. 5FED92322537044E00003727 /* SystemConfiguration.framework */,
  3148. 5FED92302537042E00003727 /* libiconv.tbd */,
  3149. 5FED922E2537041E00003727 /* AVFoundation.framework */,
  3150. 5FED922C253703F600003727 /* libz.tbd */,
  3151. 5F5E1E9E2536E2B1007EAC23 /* libEZUIKit.a */,
  3152. 764030A0DF97F6C6E68A9282 /* Pods_LampMind.framework */,
  3153. );
  3154. name = Frameworks;
  3155. sourceTree = "<group>";
  3156. };
  3157. /* End PBXGroup section */
  3158. /* Begin PBXNativeTarget section */
  3159. 83E408172387726800255664 /* LampMind */ = {
  3160. isa = PBXNativeTarget;
  3161. buildConfigurationList = 83E408422387726D00255664 /* Build configuration list for PBXNativeTarget "LampMind" */;
  3162. buildPhases = (
  3163. 7AF283C2AEBCBC63075C08B5 /* [CP] Check Pods Manifest.lock */,
  3164. 83E408142387726800255664 /* Sources */,
  3165. 83E408152387726800255664 /* Frameworks */,
  3166. 83E408162387726800255664 /* Resources */,
  3167. CC683218C465EEC5AF4FBE99 /* [CP] Embed Pods Frameworks */,
  3168. 461B8A7290D122A2029F8C17 /* [CP] Copy Pods Resources */,
  3169. );
  3170. buildRules = (
  3171. );
  3172. dependencies = (
  3173. );
  3174. name = LampMind;
  3175. productName = LampMind;
  3176. productReference = 83E408182387726800255664 /* LampMind.app */;
  3177. productType = "com.apple.product-type.application";
  3178. };
  3179. 83E4082D2387726C00255664 /* LampMindTests */ = {
  3180. isa = PBXNativeTarget;
  3181. buildConfigurationList = 83E408452387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindTests" */;
  3182. buildPhases = (
  3183. 83E4082A2387726C00255664 /* Sources */,
  3184. 83E4082B2387726C00255664 /* Frameworks */,
  3185. 83E4082C2387726C00255664 /* Resources */,
  3186. );
  3187. buildRules = (
  3188. );
  3189. dependencies = (
  3190. 83E408302387726C00255664 /* PBXTargetDependency */,
  3191. );
  3192. name = LampMindTests;
  3193. productName = LampMindTests;
  3194. productReference = 83E4082E2387726C00255664 /* LampMindTests.xctest */;
  3195. productType = "com.apple.product-type.bundle.unit-test";
  3196. };
  3197. 83E408382387726D00255664 /* LampMindUITests */ = {
  3198. isa = PBXNativeTarget;
  3199. buildConfigurationList = 83E408482387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindUITests" */;
  3200. buildPhases = (
  3201. 83E408352387726D00255664 /* Sources */,
  3202. 83E408362387726D00255664 /* Frameworks */,
  3203. 83E408372387726D00255664 /* Resources */,
  3204. );
  3205. buildRules = (
  3206. );
  3207. dependencies = (
  3208. 83E4083B2387726D00255664 /* PBXTargetDependency */,
  3209. );
  3210. name = LampMindUITests;
  3211. productName = LampMindUITests;
  3212. productReference = 83E408392387726D00255664 /* LampMindUITests.xctest */;
  3213. productType = "com.apple.product-type.bundle.ui-testing";
  3214. };
  3215. /* End PBXNativeTarget section */
  3216. /* Begin PBXProject section */
  3217. 83E408102387726800255664 /* Project object */ = {
  3218. isa = PBXProject;
  3219. attributes = {
  3220. CLASSPREFIX = LM;
  3221. LastSwiftUpdateCheck = 1120;
  3222. LastUpgradeCheck = 1120;
  3223. ORGANIZATIONNAME = weclouds;
  3224. TargetAttributes = {
  3225. 83E408172387726800255664 = {
  3226. CreatedOnToolsVersion = 11.2.1;
  3227. LastSwiftMigration = 1120;
  3228. };
  3229. 83E4082D2387726C00255664 = {
  3230. CreatedOnToolsVersion = 11.2.1;
  3231. TestTargetID = 83E408172387726800255664;
  3232. };
  3233. 83E408382387726D00255664 = {
  3234. CreatedOnToolsVersion = 11.2.1;
  3235. TestTargetID = 83E408172387726800255664;
  3236. };
  3237. };
  3238. };
  3239. buildConfigurationList = 83E408132387726800255664 /* Build configuration list for PBXProject "LampMind" */;
  3240. compatibilityVersion = "Xcode 9.3";
  3241. developmentRegion = en;
  3242. hasScannedForEncodings = 0;
  3243. knownRegions = (
  3244. en,
  3245. Base,
  3246. "zh-Hans",
  3247. );
  3248. mainGroup = 83E4080F2387726800255664;
  3249. productRefGroup = 83E408192387726800255664 /* Products */;
  3250. projectDirPath = "";
  3251. projectRoot = "";
  3252. targets = (
  3253. 83E408172387726800255664 /* LampMind */,
  3254. 83E4082D2387726C00255664 /* LampMindTests */,
  3255. 83E408382387726D00255664 /* LampMindUITests */,
  3256. );
  3257. };
  3258. /* End PBXProject section */
  3259. /* Begin PBXResourcesBuildPhase section */
  3260. 83E408162387726800255664 /* Resources */ = {
  3261. isa = PBXResourcesBuildPhase;
  3262. buildActionMask = 2147483647;
  3263. files = (
  3264. 83EAA731239749FD008763FB /* LMLampBaseVCtr.xib in Resources */,
  3265. 83DD400025E3450E00A5808E /* InfoPlist.strings in Resources */,
  3266. 83EAA68F2395142B008763FB /* LMEmptyView.xib in Resources */,
  3267. 83725CB225EA1E47000222EB /* LMAlarmInfoVCtr.xib in Resources */,
  3268. 83EAA65F23950F22008763FB /* LMDimmingVCtr.xib in Resources */,
  3269. 83EAA6CD239645B2008763FB /* LMMonitorCell.xib in Resources */,
  3270. 83EAA60D23950EDD008763FB /* LMLampWithAlarmCalloutView.xib in Resources */,
  3271. 83E408282387726C00255664 /* LaunchScreen.storyboard in Resources */,
  3272. 83EAA60C23950EDD008763FB /* LMLampNoAlarmCalloutView.xib in Resources */,
  3273. 83DD408925E3817E00A5808E /* LMLoginVCtr.xib in Resources */,
  3274. 83EAA68E2395142B008763FB /* LMAlarmCell.xib in Resources */,
  3275. 83EAA60423950EDD008763FB /* LMPoleCalloutView.xib in Resources */,
  3276. 83CCBDD52397D4900096AA9F /* LMPowerSavingView.xib in Resources */,
  3277. 83DD400F25E3463D00A5808E /* Localizable.strings in Resources */,
  3278. 83EAA6B5239516AA008763FB /* LMDeviceVCtr.xib in Resources */,
  3279. 83025EEB25E7C40000356051 /* LMAlarmDispathVctr.xib in Resources */,
  3280. 83EAA6C0239516AA008763FB /* LMElectriQuantiyCell.xib in Resources */,
  3281. 83DD409325E38A3700A5808E /* LMAlarmNumberView.xib in Resources */,
  3282. 835F1B9125E89DD0006A7CA1 /* LMDimmingView.xib in Resources */,
  3283. 836AAF1F25E4B53A0068B7C6 /* LMGroupView.xib in Resources */,
  3284. 83EAA6C723954149008763FB /* LMLightNumberView.xib in Resources */,
  3285. 83EAA65A23950F22008763FB /* LMRoadFilterVCtr.xib in Resources */,
  3286. 83EAA66523950F22008763FB /* LMSliderView.xib in Resources */,
  3287. 83E408252387726C00255664 /* Assets.xcassets in Resources */,
  3288. 836AAF1825E4B4D00068B7C6 /* LMLoopView.xib in Resources */,
  3289. 83EAA68A2395142B008763FB /* LMAlarmVCtr.xib in Resources */,
  3290. 83E408232387726800255664 /* Main.storyboard in Resources */,
  3291. 5F63A8292539BCF200DD9DD6 /* CodeScan.bundle in Resources */,
  3292. 83674E9425E60435000B4B3C /* LMRoadFilterView.xib in Resources */,
  3293. 83CCBDC92397B3DE0096AA9F /* LMSelectorCell.xib in Resources */,
  3294. 83EAA60823950EDD008763FB /* LMLampCalloutView.xib in Resources */,
  3295. 83EAA5FD23950EDD008763FB /* LMGISVCtr.xib in Resources */,
  3296. );
  3297. runOnlyForDeploymentPostprocessing = 0;
  3298. };
  3299. 83E4082C2387726C00255664 /* Resources */ = {
  3300. isa = PBXResourcesBuildPhase;
  3301. buildActionMask = 2147483647;
  3302. files = (
  3303. );
  3304. runOnlyForDeploymentPostprocessing = 0;
  3305. };
  3306. 83E408372387726D00255664 /* Resources */ = {
  3307. isa = PBXResourcesBuildPhase;
  3308. buildActionMask = 2147483647;
  3309. files = (
  3310. );
  3311. runOnlyForDeploymentPostprocessing = 0;
  3312. };
  3313. /* End PBXResourcesBuildPhase section */
  3314. /* Begin PBXShellScriptBuildPhase section */
  3315. 461B8A7290D122A2029F8C17 /* [CP] Copy Pods Resources */ = {
  3316. isa = PBXShellScriptBuildPhase;
  3317. buildActionMask = 2147483647;
  3318. files = (
  3319. );
  3320. inputFileListPaths = (
  3321. "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-resources-${CONFIGURATION}-input-files.xcfilelist",
  3322. );
  3323. name = "[CP] Copy Pods Resources";
  3324. outputFileListPaths = (
  3325. "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-resources-${CONFIGURATION}-output-files.xcfilelist",
  3326. );
  3327. runOnlyForDeploymentPostprocessing = 0;
  3328. shellPath = /bin/sh;
  3329. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-resources.sh\"\n";
  3330. showEnvVarsInLog = 0;
  3331. };
  3332. 7AF283C2AEBCBC63075C08B5 /* [CP] Check Pods Manifest.lock */ = {
  3333. isa = PBXShellScriptBuildPhase;
  3334. buildActionMask = 2147483647;
  3335. files = (
  3336. );
  3337. inputFileListPaths = (
  3338. );
  3339. inputPaths = (
  3340. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  3341. "${PODS_ROOT}/Manifest.lock",
  3342. );
  3343. name = "[CP] Check Pods Manifest.lock";
  3344. outputFileListPaths = (
  3345. );
  3346. outputPaths = (
  3347. "$(DERIVED_FILE_DIR)/Pods-LampMind-checkManifestLockResult.txt",
  3348. );
  3349. runOnlyForDeploymentPostprocessing = 0;
  3350. shellPath = /bin/sh;
  3351. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  3352. showEnvVarsInLog = 0;
  3353. };
  3354. CC683218C465EEC5AF4FBE99 /* [CP] Embed Pods Frameworks */ = {
  3355. isa = PBXShellScriptBuildPhase;
  3356. buildActionMask = 2147483647;
  3357. files = (
  3358. );
  3359. inputFileListPaths = (
  3360. "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  3361. );
  3362. name = "[CP] Embed Pods Frameworks";
  3363. outputFileListPaths = (
  3364. "${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  3365. );
  3366. runOnlyForDeploymentPostprocessing = 0;
  3367. shellPath = /bin/sh;
  3368. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LampMind/Pods-LampMind-frameworks.sh\"\n";
  3369. showEnvVarsInLog = 0;
  3370. };
  3371. /* End PBXShellScriptBuildPhase section */
  3372. /* Begin PBXSourcesBuildPhase section */
  3373. 83E408142387726800255664 /* Sources */ = {
  3374. isa = PBXSourcesBuildPhase;
  3375. buildActionMask = 2147483647;
  3376. files = (
  3377. 5F6802AF253C84710002577C /* LMRepairManagerView.swift in Sources */,
  3378. 8359C04A253424500027518B /* LMMeteorologicalCell.swift in Sources */,
  3379. 83B73187251DEF1A00953DFF /* LMNewLoopTwoCtr.swift in Sources */,
  3380. 83EAA5FE23950EDD008763FB /* LMGISVCtr.swift in Sources */,
  3381. 833559D02510C705000F1EF2 /* LMGroupVCtr.swift in Sources */,
  3382. 83EAA66123950F22008763FB /* LMDimmingManager.swift in Sources */,
  3383. 831F1A2A258A17E10078DB14 /* LMWifiDetailView.swift in Sources */,
  3384. 83E408902387782F00255664 /* LMCornerLabel.swift in Sources */,
  3385. 8341652525835899006FAB0D /* LMLightPoleListCell.swift in Sources */,
  3386. 83559F3B252233D100B166C4 /* LMDetailContentModel.swift in Sources */,
  3387. 83E23E672521BAA500678616 /* LMGroupHttpRequest.swift in Sources */,
  3388. 83E4096E2387790A00255664 /* LMLoginVCtr.swift in Sources */,
  3389. 83559F452522490500B166C4 /* LMDetailContentCell.swift in Sources */,
  3390. 837814732584F44C00FD3EC3 /* LMRadioDetailView.swift in Sources */,
  3391. 8359C0582534456B0027518B /* LMLightViewCell.swift in Sources */,
  3392. 83E4088F2387782F00255664 /* ProviderSupport.swift in Sources */,
  3393. 837814822584F48300FD3EC3 /* LMMonitorDetailView.swift in Sources */,
  3394. 5F5E1E9A2536CEE6007EAC23 /* LMPlayVideoApi.swift in Sources */,
  3395. 834F9D832523726000BFFE58 /* LMGroupSettingService.swift in Sources */,
  3396. 831F1A04258A17310078DB14 /* LMAlertDetailManager.swift in Sources */,
  3397. 83E408932387782F00255664 /* LMViewProtocolDelegate.swift in Sources */,
  3398. 8360227D2533464700416047 /* LMMeteorologicalCtr.swift in Sources */,
  3399. 83EAA73723974AA1008763FB /* LMLampBaseManger.swift in Sources */,
  3400. 83EAA60223950EDD008763FB /* LMGisHttpRequest.swift in Sources */,
  3401. 83B7318F251DF16A00953DFF /* LMNewLoopView.swift in Sources */,
  3402. 83E4089E2387782F00255664 /* UIScrollView+Empty.swift in Sources */,
  3403. 837814782584F45F00FD3EC3 /* LMRadioDetailManager.swift in Sources */,
  3404. 8359C04C253427920027518B /* LMMeteorologicalApi.swift in Sources */,
  3405. 83559F372522339300B166C4 /* LMDetailContentCtr.swift in Sources */,
  3406. 83D9FABB252306BF009956A8 /* LMAutoOperationView.swift in Sources */,
  3407. 83559F432522342B00B166C4 /* LMDetailContentService.swift in Sources */,
  3408. 83EAA68D2395142B008763FB /* LMAlarmManager.swift in Sources */,
  3409. 831F1A1B258A179B0078DB14 /* LMEDDetailView.swift in Sources */,
  3410. 834917A225308D49006B44BD /* LMLightPoleModel.swift in Sources */,
  3411. 837814412584F24700FD3EC3 /* LMCloudBoxDetailView.swift in Sources */,
  3412. 83602273253345E000416047 /* LMLightView.swift in Sources */,
  3413. 83711D97258C89B8006387CE /* LMNowAlertCell.swift in Sources */,
  3414. 83D9FAB9252306A9009956A8 /* LMStrategyOperationView.swift in Sources */,
  3415. 83EAA6B7239516AA008763FB /* LMDeviceViewManager.swift in Sources */,
  3416. 8356659E2524580500425C38 /* LMStrategyOperationDetailCell.swift in Sources */,
  3417. 83EAA6932395142B008763FB /* LMAlarmVCtr.swift in Sources */,
  3418. 837814692584F42600FD3EC3 /* LMAirQualityDetailManager.swift in Sources */,
  3419. 83E408982387782F00255664 /* DGKVOTool.swift in Sources */,
  3420. 83CCBDD12397C3450096AA9F /* LMPowerSavingView.swift in Sources */,
  3421. 831F1A25258A17C90078DB14 /* LMWifiDetailManager.swift in Sources */,
  3422. 83E408992387782F00255664 /* SegmentStyle.swift in Sources */,
  3423. 8378147D2584F47400FD3EC3 /* LMMonitorDetailCtr.swift in Sources */,
  3424. 8359C04E253427A70027518B /* LMMeteorologicalRequest.swift in Sources */,
  3425. 8360228725335F2000416047 /* LMMonitorPoleCell.swift in Sources */,
  3426. 83EAA6BE239516AA008763FB /* LMDeviceView.swift in Sources */,
  3427. 834E2961251C37CF00BC3482 /* LMMainLoopModel.swift in Sources */,
  3428. 834B898A2514B93C00E2108E /* LMLampDetailContentManager.swift in Sources */,
  3429. 83EAA60A23950EDD008763FB /* LMAnnotationView.swift in Sources */,
  3430. 8360227B2533463500416047 /* LMMeteorologicalView.swift in Sources */,
  3431. 83E4088D2387782F00255664 /* UIVIew+Positioning.swift in Sources */,
  3432. 83EAA66323950F22008763FB /* LMSliderViewStyle.swift in Sources */,
  3433. 83EAA72723968F9B008763FB /* LMLampVCtr.swift in Sources */,
  3434. 834B898E2514BBED00E2108E /* LMLampDetainlContentHttpRequest.swift in Sources */,
  3435. 83E408A12387782F00255664 /* KKWRefreshHeaderAnimator.swift in Sources */,
  3436. 834E45662511E88300ED6B71 /* LMLampDetailView.swift in Sources */,
  3437. 837814962584F4E600FD3EC3 /* LMLightDetailManager.swift in Sources */,
  3438. 8341651D25834195006FAB0D /* LMLightPoleListApi.swift in Sources */,
  3439. 8356E1B7253FCD200024561F /* LMRepairApi.swift in Sources */,
  3440. 83B73191251DF36800953DFF /* LMNewLoopInputContentCell.swift in Sources */,
  3441. 834917A025308D1F006B44BD /* LMLightPoleView.swift in Sources */,
  3442. 83ABDA822586427F00FDC0C7 /* LMCloudBoxRequest.swift in Sources */,
  3443. 83E408962387782F00255664 /* THScrollChooseView.m in Sources */,
  3444. 83EAA6912395142B008763FB /* LMAlarmCell.swift in Sources */,
  3445. 8359C056253440110027518B /* LMLightService.swift in Sources */,
  3446. 83E23E5F2521BA6400678616 /* LMGroupManager.swift in Sources */,
  3447. 834E4570251201FB00ED6B71 /* LMLampDetailModel.swift in Sources */,
  3448. 83ABDA7D25863F2000FDC0C7 /* LMCloudBoxServer.swift in Sources */,
  3449. 83EAA6922395142B008763FB /* LMEmptyView.swift in Sources */,
  3450. 5F63A82F2539BCF200DD9DD6 /* LBXPermissions.swift in Sources */,
  3451. 5F63A82C2539BCF200DD9DD6 /* LBXScanViewController.swift in Sources */,
  3452. 834B89862514B66E00E2108E /* LMLampDetailContentView.swift in Sources */,
  3453. 834E296E251CBDA500BC3482 /* LMNewLoopTwoView.swift in Sources */,
  3454. 8356E1B5253FCC400024561F /* LMRepairService.swift in Sources */,
  3455. 83D9FAB32522E1EC009956A8 /* LMGroupSettingRequest.swift in Sources */,
  3456. 83B73193251DF38100953DFF /* LMNewLoopChoseContentCell.swift in Sources */,
  3457. 83E408872387782F00255664 /* UIView+Gradient.swift in Sources */,
  3458. 834E2974251CBDE100BC3482 /* LMNewLoopRequest.swift in Sources */,
  3459. 83E408882387782F00255664 /* UIView+Extension.swift in Sources */,
  3460. 8378145F2584F3FF00FD3EC3 /* LMAirQualityDetailCtr.swift in Sources */,
  3461. 836022852533471C00416047 /* LMMonitorCtr.swift in Sources */,
  3462. 83E408862387782F00255664 /* MKMapView+ZoomLevel.swift in Sources */,
  3463. 83EAA6BF239516AA008763FB /* BalloonMarker.swift in Sources */,
  3464. 8378142D2584C60A00FD3EC3 /* LMLightPoleDetailView.swift in Sources */,
  3465. 831555AE2589F38200999EA7 /* LMAirQualityDatailServer.swift in Sources */,
  3466. 834E2963251C37E400BC3482 /* LMMainLoopRequest.swift in Sources */,
  3467. 83E4089D2387782F00255664 /* UIView+Position.swift in Sources */,
  3468. 83ABDA872586429500FDC0C7 /* LMCloudBoxModel.swift in Sources */,
  3469. 830461562529CBCE00B6B291 /* LMNewStrategyGroupService.swift in Sources */,
  3470. 8380F20625874A51001A1C94 /* LMLightDetailApi.swift in Sources */,
  3471. 83EAA72423966966008763FB /* UICollectionView+SideExtension.m in Sources */,
  3472. 83E4096A2387790A00255664 /* LMLoginModel.swift in Sources */,
  3473. 834E2976251CBDFD00BC3482 /* LMNewLoopManager.swift in Sources */,
  3474. 83EAA66723950F22008763FB /* LMDimmingView.swift in Sources */,
  3475. 83E4088B2387782F00255664 /* UIImagView+Kingfisher.swift in Sources */,
  3476. 83E408202387726800255664 /* ViewController.swift in Sources */,
  3477. 5F5E1E9C2536CFB6007EAC23 /* LMPlayVideoRequest.swift in Sources */,
  3478. 83EAA59C23950E43008763FB /* RootNavigationController.swift in Sources */,
  3479. 831F1A3E258A18390078DB14 /* LMChargeDetailCtr.swift in Sources */,
  3480. 831F1A20258A17AB0078DB14 /* LMEDDetailCtr.swift in Sources */,
  3481. 83EAA72123966966008763FB /* SideRefreshFooter.m in Sources */,
  3482. 83EAA65B23950F22008763FB /* LMRoadFilterManager.swift in Sources */,
  3483. 834E295D251C370900BC3482 /* LMMainLoopService.swift in Sources */,
  3484. 83CCBDCF2397C31D0096AA9F /* LMGroupView.swift in Sources */,
  3485. 5F5E1E902536C944007EAC23 /* LMPlayVideoCtr.swift in Sources */,
  3486. 83EAA60523950EDD008763FB /* LMGisHeaderView.swift in Sources */,
  3487. 83E4089A2387782F00255664 /* ScrollSegmentView.swift in Sources */,
  3488. 83EAA60123950EDD008763FB /* LMGISModel.swift in Sources */,
  3489. 83602271253345CE00416047 /* LMLightModel.swift in Sources */,
  3490. 83D9FAB12522E1D4009956A8 /* LMGroupSettingApi.swift in Sources */,
  3491. 83EAA65923950F22008763FB /* LMRoadFilterVCtr.swift in Sources */,
  3492. 83EAA6942395142B008763FB /* LMNetWorkManager.swift in Sources */,
  3493. 8359C050253429500027518B /* LMMeteorologicalService.swift in Sources */,
  3494. 83559F3D252233E400B166C4 /* LMDetailContentApi.swift in Sources */,
  3495. 83E4088E2387782F00255664 /* ProjectConstant.swift in Sources */,
  3496. 5F63A82D2539BCF200DD9DD6 /* LBXScanLineAnimation.swift in Sources */,
  3497. 5F5E1E962536C99D007EAC23 /* LMPlayVideoManager.swift in Sources */,
  3498. 83E408A02387782F00255664 /* NSDate+CXCategory.m in Sources */,
  3499. 8380F20125874A47001A1C94 /* LMLightDetailRequest.swift in Sources */,
  3500. 83E408912387782F00255664 /* LMViewModelProtocolDelegate.swift in Sources */,
  3501. 83EAA6B6239516AA008763FB /* LMDeviceVCtr.swift in Sources */,
  3502. 5F5E1E942536C97F007EAC23 /* LMPlayVideoModel.swift in Sources */,
  3503. 83EAA6B8239516AA008763FB /* LMDeviceApi.swift in Sources */,
  3504. 83CCBDC323978FA60096AA9F /* LMLampHttpRequest.swift in Sources */,
  3505. 83CCD2CE2518A48100AD14FD /* LMNewLampService.swift in Sources */,
  3506. 83CCD2CC2518503A00AD14FD /* LMInputAndChoseContentCell.swift in Sources */,
  3507. 836022832533470D00416047 /* LMMonitorPoleView.swift in Sources */,
  3508. 8360226F2533434A00416047 /* LMLightManager.swift in Sources */,
  3509. 83EAA60923950EDD008763FB /* LMLampCalloutView.swift in Sources */,
  3510. 83D9FAAB2522E18D009956A8 /* LMGroupSettingCtr.swift in Sources */,
  3511. 83CCBDC123978F940096AA9F /* LMLampModel.swift in Sources */,
  3512. 83CCD2D02518B27B00AD14FD /* LMNewLampApi.swift in Sources */,
  3513. 836022792533462700416047 /* LMMeteorologicalModel.swift in Sources */,
  3514. 83711D92258C8422006387CE /* LMHistoryAlertCell.swift in Sources */,
  3515. 83E4081C2387726800255664 /* AppDelegate.swift in Sources */,
  3516. 834B89902514D63E00E2108E /* LMLampDetailContentService.swift in Sources */,
  3517. 83EAA6C1239516AA008763FB /* LMMonitorView.swift in Sources */,
  3518. 83EAA6CC239645B2008763FB /* LMMonitorCell.swift in Sources */,
  3519. 8334ED5525122B9900E0766A /* LMLampDetailCell.swift in Sources */,
  3520. 5F5E1E982536CDA9007EAC23 /* LMPlayVideoService.swift in Sources */,
  3521. 83EAA6C2239516AA008763FB /* LMElectriQuantiyCell.swift in Sources */,
  3522. 83CCBDCD2397C2940096AA9F /* LMLoopView.swift in Sources */,
  3523. 8350348D25287AA500BF947A /* LMNewStrategyGroupModel.swift in Sources */,
  3524. 833559D42510C7B1000F1EF2 /* LMHistoricalReportVCtr.swift in Sources */,
  3525. 83E4096D2387790A00255664 /* LMLoginManager.swift in Sources */,
  3526. 831F1A11258A175D0078DB14 /* LMAlertDetailCtr.swift in Sources */,
  3527. 83EAA60623950EDD008763FB /* LMLampWithAlarmCalloutView.swift in Sources */,
  3528. 835665A42524885500425C38 /* LMHistoryApi.swift in Sources */,
  3529. 83E23E652521BA8C00678616 /* LMGroupApi.swift in Sources */,
  3530. 837814462584F26500FD3EC3 /* LMCloudBoxManager.swift in Sources */,
  3531. 83B73185251DBE2600953DFF /* LMNewLoopTwoCell.swift in Sources */,
  3532. 835665A62524886C00425C38 /* LMHistoryHttpRequest.swift in Sources */,
  3533. 83B7318D251DEF8A00953DFF /* LMNewLoopTwoManager.swift in Sources */,
  3534. 83E408972387782F00255664 /* CXDatePickerView.m in Sources */,
  3535. 83068D2F2588B13400170DDE /* LMMonitorDetailRequest.swift in Sources */,
  3536. 834E295F251C37BA00BC3482 /* LMMainLoopApi.swift in Sources */,
  3537. 5F6802AD253C845E0002577C /* LMRepairCtr.swift in Sources */,
  3538. 83E4096C2387790A00255664 /* LMLoginApi.swift in Sources */,
  3539. 83EAA60723950EDD008763FB /* LMPoleCalloutView.swift in Sources */,
  3540. 83EAA68B2395142B008763FB /* LMAlarmDispathVctr.swift in Sources */,
  3541. 83E4089C2387782F00255664 /* HDRunTime.swift in Sources */,
  3542. 831F1A2F258A17F30078DB14 /* LMWifiDetailCtr.swift in Sources */,
  3543. 835665A22524884400425C38 /* LMHistoryModel.swift in Sources */,
  3544. 8304615425295F9600B6B291 /* LMNewStrategyGroupCell.swift in Sources */,
  3545. 83EAA59D23950E43008763FB /* MainViewController.swift in Sources */,
  3546. 8341652F25837CFC006FAB0D /* LMLightPoleDetailCtr.swift in Sources */,
  3547. 83E23E632521BA8100678616 /* LMGroupModel.swift in Sources */,
  3548. 5F6802B4253C84D30002577C /* LMRepairManager.swift in Sources */,
  3549. 83EAA66423950F22008763FB /* LMSliderView.swift in Sources */,
  3550. 834E45642511E85D00ED6B71 /* LMLampManager.swift in Sources */,
  3551. 83E4088C2387782F00255664 /* UIView+Configure.swift in Sources */,
  3552. 5F63A82A2539BCF200DD9DD6 /* LBXScanNetAnimation.swift in Sources */,
  3553. 83EAA6BC239516AA008763FB /* LMAlarmNumberView.swift in Sources */,
  3554. 83559F3F2522340000B166C4 /* LMDetailContentHttpRequest.swift in Sources */,
  3555. 83ABDA8C258642A200FDC0C7 /* LMCloudBoxApi.swift in Sources */,
  3556. 831F1A39258A18270078DB14 /* LMChargeDetailView.swift in Sources */,
  3557. 83ABC212251D9B5700D53141 /* LMNewLoopService.swift in Sources */,
  3558. 83EAA6C4239516AA008763FB /* LMChartView.swift in Sources */,
  3559. 83EAA66223950F22008763FB /* LMWebSocket.swift in Sources */,
  3560. 83EAA65E23950F22008763FB /* LMRoadFilterView.swift in Sources */,
  3561. 83EAA5FF23950EDD008763FB /* LMGISManager.swift in Sources */,
  3562. 834E2965251C459100BC3482 /* LMMainLoopCell.swift in Sources */,
  3563. 83EAA72323966966008763FB /* SideRefresh.m in Sources */,
  3564. 83D9FAB725230680009956A8 /* LMManualOperationView.swift in Sources */,
  3565. 835665AC25249BF400425C38 /* LMHistoryCell.swift in Sources */,
  3566. 835665A82524888200425C38 /* LMHistoryManager.swift in Sources */,
  3567. 8359C05425343C400027518B /* LMLightRequest.swift in Sources */,
  3568. 83D9FAAD2522E1A1009956A8 /* LMGroupSettingView.swift in Sources */,
  3569. 83CCBDBF23978F810096AA9F /* LMLampApi.swift in Sources */,
  3570. 83E23E612521BA7300678616 /* LMGroupService.swift in Sources */,
  3571. 83E23E6B2521BB5400678616 /* LMMainGroupView.swift in Sources */,
  3572. 83EAA65C23950F22008763FB /* LMRoadFilterCacheManager.swift in Sources */,
  3573. 83CCBDC52397A4800096AA9F /* LMLampBaseService.swift in Sources */,
  3574. 83D9FAB52522E200009956A8 /* LMGroupSettingManager.swift in Sources */,
  3575. 836022772533461900416047 /* LMMeteorologicalManager.swift in Sources */,
  3576. 83CCBDBB239758230096AA9F /* LMLampBaseView.swift in Sources */,
  3577. 8349179E25308D0D006B44BD /* LMLightPoleCtr.swift in Sources */,
  3578. 8356E1B9253FCE7B0024561F /* LMRepairRequest.swift in Sources */,
  3579. 837814642584F40F00FD3EC3 /* LMAirQualityDetailView.swift in Sources */,
  3580. 835665AA25248FDE00425C38 /* LMHistoryService.swift in Sources */,
  3581. 83CCD2C42518479C00AD14FD /* LMNewLampModel.swift in Sources */,
  3582. 834E456A2511F69A00ED6B71 /* LMLampDetailHttpRequest.swift in Sources */,
  3583. 835665A02524883000425C38 /* LMHistoryView.swift in Sources */,
  3584. 8350348925287A6A00BF947A /* LMNewStrategyGroupCtr.swift in Sources */,
  3585. 834E45682511F4E300ED6B71 /* LMLampServer.swift in Sources */,
  3586. 83E408852387782F00255664 /* UIBarButtonItem+item.swift in Sources */,
  3587. 83E408892387782F00255664 /* UIButton+Gradient.swift in Sources */,
  3588. 83EAA6BD239516AA008763FB /* LMElectricQuantityView.swift in Sources */,
  3589. 83EAA60323950EDD008763FB /* LMGISApi.swift in Sources */,
  3590. 837814322584C63B00FD3EC3 /* LMLightPoleDetailManager.swift in Sources */,
  3591. 83068D392588B14D00170DDE /* LMMonitorDetailModel.swift in Sources */,
  3592. 8350349325287B0800BF947A /* LMNewStrategyGroupManager.swift in Sources */,
  3593. 83068D342588B14400170DDE /* LMMonitorDetailApi.swift in Sources */,
  3594. 83E4089F2387782F00255664 /* HDEmptyBaseView.swift in Sources */,
  3595. 5F63A8302539BCF200DD9DD6 /* LBXScanWrapper.swift in Sources */,
  3596. 834B89842514B65300E2108E /* LMLampDetailContentCtr.swift in Sources */,
  3597. 834B89882514B69700E2108E /* LMLampDetailContentModel.swift in Sources */,
  3598. 836E8AE5258B6BB200883233 /* LMConnectDeviceCell.swift in Sources */,
  3599. 83E4089B2387782F00255664 /* HDEmptyView.swift in Sources */,
  3600. 83CCD2C6251847AD00AD14FD /* LMNewLampManager.swift in Sources */,
  3601. 8380F20B25874A5C001A1C94 /* LMLightDetailModel.swift in Sources */,
  3602. 5F63A82E2539BCF200DD9DD6 /* LBXScanViewStyle.swift in Sources */,
  3603. 5F5E1E922536C95C007EAC23 /* LMPlayVideoView.swift in Sources */,
  3604. 83E4088A2387782F00255664 /* LMView+UIViewController.swift in Sources */,
  3605. 836022812533467400416047 /* LMMonitorModel.swift in Sources */,
  3606. 83E408952387782F00255664 /* AppShare.swift in Sources */,
  3607. 83EAA6B9239516AA008763FB /* LMDeviceModel.swift in Sources */,
  3608. 8378146E2584F43E00FD3EC3 /* LMRadioDetailCtr.swift in Sources */,
  3609. 833559CE2510C6D8000F1EF2 /* LMLoopVCtr.swift in Sources */,
  3610. 83EAA6982395142B008763FB /* LMAlarmHttpRequest.swift in Sources */,
  3611. 83EAA60E23950EDD008763FB /* LMLampNoAlarmCalloutView.swift in Sources */,
  3612. 83EAA59E23950E43008763FB /* LMNavigationController.swift in Sources */,
  3613. 834E296C251CBD8E00BC3482 /* LMNewLoopCtr.swift in Sources */,
  3614. 83EAA71F23966966008763FB /* UICollectionView+SideRefresh.m in Sources */,
  3615. 831F1A0C258A174D0078DB14 /* LMAlertDetailView.swift in Sources */,
  3616. 83602275253345F500416047 /* LMLightCtr.swift in Sources */,
  3617. 83EAA72223966966008763FB /* SideRefreshEmptyFooter.m in Sources */,
  3618. 834E2970251CBDBC00BC3482 /* LMNewLoopModel.swift in Sources */,
  3619. 831F1A16258A17810078DB14 /* LMLEDDetailManager.swift in Sources */,
  3620. 833559D22510C725000F1EF2 /* LMStrategyVCtr.swift in Sources */,
  3621. 8356659C25242B1100425C38 /* LMStrategyOperationCell.swift in Sources */,
  3622. 83CCBDBD23975F9E0096AA9F /* LMSelectorView.swift in Sources */,
  3623. 83EAA69A2395142B008763FB /* LMAlarmDispatchManager.swift in Sources */,
  3624. 83E408942387782F00255664 /* LMViewManagerProtocolDelegate.swift in Sources */,
  3625. 8341651325832220006FAB0D /* LMLightPoleSever.swift in Sources */,
  3626. 8350348F25287AC000BF947A /* LMNewStrategyGroupApi.swift in Sources */,
  3627. 8350349125287AE800BF947A /* LMNewStrategyGroupRequest.swift in Sources */,
  3628. 83EAA6892395142B008763FB /* LMAlarmInfoManger.swift in Sources */,
  3629. 8341650E25831A23006FAB0D /* LMLightPoleListView.swift in Sources */,
  3630. 834E456E2511F6C600ED6B71 /* LMLampDetailApi.swift in Sources */,
  3631. 834E2972251CBDCA00BC3482 /* LMNewLoopApi.swift in Sources */,
  3632. 834B898C2514BBD400E2108E /* LMLampDetaiContentApi.swift in Sources */,
  3633. 83EAA6BB239516AA008763FB /* LMDeviceHttpRequest.swift in Sources */,
  3634. 8378148C2584F4C500FD3EC3 /* LMLightDetailCtr.swift in Sources */,
  3635. 83E23E6D2521D81200678616 /* LMTGroupItemCell.swift in Sources */,
  3636. 83EAA60B23950EDD008763FB /* LMMapView.swift in Sources */,
  3637. 83EAA730239749FD008763FB /* LMLampBaseVCtr.swift in Sources */,
  3638. 8380F1FC25874A0E001A1C94 /* LMLightDetailSever.swift in Sources */,
  3639. 83D9FAAF2522E1BC009956A8 /* LMGroupSettingModel.swift in Sources */,
  3640. 83CCBDCB2397C27E0096AA9F /* LMLightTimeView.swift in Sources */,
  3641. 83577A2A2519DC89002A83A0 /* LMMainLoopView.swift in Sources */,
  3642. 837814912584F4D400FD3EC3 /* LMLightDetailView.swift in Sources */,
  3643. 83CCD2C82518500000AD14FD /* LMInputContentCell.swift in Sources */,
  3644. 83EAA6952395142B008763FB /* LMAlarmApi.swift in Sources */,
  3645. 83EAA6C3239516AA008763FB /* LMLightNumberView.swift in Sources */,
  3646. 837814872584F49700FD3EC3 /* LMMonitorDetailManager.swift in Sources */,
  3647. 8360227F2533465C00416047 /* LMMonitorManager.swift in Sources */,
  3648. 8359C05225343C1B0027518B /* LMLightApi.swift in Sources */,
  3649. 83577A2C2519DECC002A83A0 /* LMMainLoopManager.swift in Sources */,
  3650. 8378143C2584F22800FD3EC3 /* LMCloudBoxDetailCtr.swift in Sources */,
  3651. 83CCD2C22518478400AD14FD /* LMNewLampView.swift in Sources */,
  3652. 83EAA60023950EDD008763FB /* LMGISMapManager.swift in Sources */,
  3653. 831F1A34258A181A0078DB14 /* LMChargeDetailManager.swift in Sources */,
  3654. 83EAA66023950F22008763FB /* LMDimmingVCtr.swift in Sources */,
  3655. 83CCD2C02518477100AD14FD /* LMNewLampCtr.swift in Sources */,
  3656. 83CCD2CA2518501900AD14FD /* LMChoseContentCell.swift in Sources */,
  3657. 5F63A82B2539BCF200DD9DD6 /* LBXScanView.swift in Sources */,
  3658. 83E4081E2387726800255664 /* SceneDelegate.swift in Sources */,
  3659. 83EAA68C2395142B008763FB /* LMAlarmInfoVCtr.swift in Sources */,
  3660. 83559F412522341400B166C4 /* LMDetailContentManager.swift in Sources */,
  3661. 83EAA6972395142B008763FB /* LMAlarmModel.swift in Sources */,
  3662. 8341651825834175006FAB0D /* LMLightPoleListRequest.swift in Sources */,
  3663. 834917A425308D5D006B44BD /* LMLightPoleManager.swift in Sources */,
  3664. 83EAA6BA239516AA008763FB /* LMChartsModel.swift in Sources */,
  3665. 83E4096B2387790A00255664 /* LMLoginHttpRequest.swift in Sources */,
  3666. 83CCBDC82397B3DE0096AA9F /* LMSelectorCell.swift in Sources */,
  3667. 83EAA6902395142B008763FB /* LMAlarmView.swift in Sources */,
  3668. 83559F39252233B800B166C4 /* LMDetailContentView.swift in Sources */,
  3669. 8350348B25287A8800BF947A /* LMNewStrategyGroupView.swift in Sources */,
  3670. 83EAA72023966966008763FB /* SideRefreshHeader.m in Sources */,
  3671. 5F6802B2253C84B50002577C /* LMRepairModel.swift in Sources */,
  3672. 83CCD2D22518B29700AD14FD /* LMNewLampRequest.swift in Sources */,
  3673. );
  3674. runOnlyForDeploymentPostprocessing = 0;
  3675. };
  3676. 83E4082A2387726C00255664 /* Sources */ = {
  3677. isa = PBXSourcesBuildPhase;
  3678. buildActionMask = 2147483647;
  3679. files = (
  3680. 83E408332387726D00255664 /* LampMindTests.swift in Sources */,
  3681. );
  3682. runOnlyForDeploymentPostprocessing = 0;
  3683. };
  3684. 83E408352387726D00255664 /* Sources */ = {
  3685. isa = PBXSourcesBuildPhase;
  3686. buildActionMask = 2147483647;
  3687. files = (
  3688. 83E4083E2387726D00255664 /* LampMindUITests.swift in Sources */,
  3689. );
  3690. runOnlyForDeploymentPostprocessing = 0;
  3691. };
  3692. /* End PBXSourcesBuildPhase section */
  3693. /* Begin PBXTargetDependency section */
  3694. 83E408302387726C00255664 /* PBXTargetDependency */ = {
  3695. isa = PBXTargetDependency;
  3696. target = 83E408172387726800255664 /* LampMind */;
  3697. targetProxy = 83E4082F2387726C00255664 /* PBXContainerItemProxy */;
  3698. };
  3699. 83E4083B2387726D00255664 /* PBXTargetDependency */ = {
  3700. isa = PBXTargetDependency;
  3701. target = 83E408172387726800255664 /* LampMind */;
  3702. targetProxy = 83E4083A2387726D00255664 /* PBXContainerItemProxy */;
  3703. };
  3704. /* End PBXTargetDependency section */
  3705. /* Begin PBXVariantGroup section */
  3706. 83025EED25E7C40000356051 /* LMAlarmDispathVctr.xib */ = {
  3707. isa = PBXVariantGroup;
  3708. children = (
  3709. 83025EEC25E7C40000356051 /* Base */,
  3710. 83025EEF25E7C40900356051 /* en */,
  3711. 83025EF125E7C40F00356051 /* zh-Hans */,
  3712. );
  3713. name = LMAlarmDispathVctr.xib;
  3714. sourceTree = "<group>";
  3715. };
  3716. 835F1B9325E89DD0006A7CA1 /* LMDimmingView.xib */ = {
  3717. isa = PBXVariantGroup;
  3718. children = (
  3719. 835F1B9225E89DD0006A7CA1 /* Base */,
  3720. 835F1B9825E89DD8006A7CA1 /* en */,
  3721. 835F1B9A25E89DDE006A7CA1 /* zh-Hans */,
  3722. );
  3723. name = LMDimmingView.xib;
  3724. sourceTree = "<group>";
  3725. };
  3726. 83674E9625E60435000B4B3C /* LMRoadFilterView.xib */ = {
  3727. isa = PBXVariantGroup;
  3728. children = (
  3729. 83674E9525E60435000B4B3C /* Base */,
  3730. 83674E9B25E60442000B4B3C /* en */,
  3731. 83674E9D25E60446000B4B3C /* zh-Hans */,
  3732. );
  3733. name = LMRoadFilterView.xib;
  3734. sourceTree = "<group>";
  3735. };
  3736. 836AAF1A25E4B4D00068B7C6 /* LMLoopView.xib */ = {
  3737. isa = PBXVariantGroup;
  3738. children = (
  3739. 836AAF1925E4B4D00068B7C6 /* Base */,
  3740. 836AAF1C25E4B4D90068B7C6 /* en */,
  3741. 836AAF1E25E4B4E00068B7C6 /* zh-Hans */,
  3742. );
  3743. name = LMLoopView.xib;
  3744. sourceTree = "<group>";
  3745. };
  3746. 836AAF2125E4B53A0068B7C6 /* LMGroupView.xib */ = {
  3747. isa = PBXVariantGroup;
  3748. children = (
  3749. 836AAF2025E4B53A0068B7C6 /* Base */,
  3750. 836AAF2625E4CE760068B7C6 /* en */,
  3751. 836AAF2825E4CE7C0068B7C6 /* zh-Hans */,
  3752. );
  3753. name = LMGroupView.xib;
  3754. sourceTree = "<group>";
  3755. };
  3756. 83725CB425EA1E47000222EB /* LMAlarmInfoVCtr.xib */ = {
  3757. isa = PBXVariantGroup;
  3758. children = (
  3759. 83725CB325EA1E47000222EB /* Base */,
  3760. 83725CB925EA1E52000222EB /* en */,
  3761. 83725CBB25EA1F0B000222EB /* zh-Hans */,
  3762. );
  3763. name = LMAlarmInfoVCtr.xib;
  3764. sourceTree = "<group>";
  3765. };
  3766. 83DD400225E3450E00A5808E /* InfoPlist.strings */ = {
  3767. isa = PBXVariantGroup;
  3768. children = (
  3769. 83DD400125E3450E00A5808E /* en */,
  3770. 83DD400625E3451700A5808E /* zh-Hans */,
  3771. );
  3772. name = InfoPlist.strings;
  3773. sourceTree = "<group>";
  3774. };
  3775. 83DD401125E3463D00A5808E /* Localizable.strings */ = {
  3776. isa = PBXVariantGroup;
  3777. children = (
  3778. 83DD401025E3463D00A5808E /* en */,
  3779. 83DD401525E3464600A5808E /* zh-Hans */,
  3780. );
  3781. name = Localizable.strings;
  3782. sourceTree = "<group>";
  3783. };
  3784. 83DD408B25E3817E00A5808E /* LMLoginVCtr.xib */ = {
  3785. isa = PBXVariantGroup;
  3786. children = (
  3787. 83DD408A25E3817E00A5808E /* Base */,
  3788. 83DD408D25E3818400A5808E /* en */,
  3789. 83DD408F25E3819700A5808E /* zh-Hans */,
  3790. );
  3791. name = LMLoginVCtr.xib;
  3792. sourceTree = "<group>";
  3793. };
  3794. 83DD409525E38A3700A5808E /* LMAlarmNumberView.xib */ = {
  3795. isa = PBXVariantGroup;
  3796. children = (
  3797. 83DD409425E38A3700A5808E /* Base */,
  3798. 83DD409725E38A4000A5808E /* en */,
  3799. 83DD409925E38A4B00A5808E /* zh-Hans */,
  3800. );
  3801. name = LMAlarmNumberView.xib;
  3802. sourceTree = "<group>";
  3803. };
  3804. 83E408212387726800255664 /* Main.storyboard */ = {
  3805. isa = PBXVariantGroup;
  3806. children = (
  3807. 83E408222387726800255664 /* Base */,
  3808. 836FC31925E0BE170071051F /* zh-Hans */,
  3809. );
  3810. name = Main.storyboard;
  3811. sourceTree = "<group>";
  3812. };
  3813. 83E408262387726C00255664 /* LaunchScreen.storyboard */ = {
  3814. isa = PBXVariantGroup;
  3815. children = (
  3816. 83E408272387726C00255664 /* Base */,
  3817. 836FC31D25E0BE1B0071051F /* zh-Hans */,
  3818. );
  3819. name = LaunchScreen.storyboard;
  3820. sourceTree = "<group>";
  3821. };
  3822. /* End PBXVariantGroup section */
  3823. /* Begin XCBuildConfiguration section */
  3824. 83E408402387726D00255664 /* Debug */ = {
  3825. isa = XCBuildConfiguration;
  3826. buildSettings = {
  3827. ALWAYS_SEARCH_USER_PATHS = NO;
  3828. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3829. CLANG_ANALYZER_NONNULL = YES;
  3830. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3831. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3832. CLANG_CXX_LIBRARY = "libc++";
  3833. CLANG_ENABLE_MODULES = YES;
  3834. CLANG_ENABLE_OBJC_ARC = YES;
  3835. CLANG_ENABLE_OBJC_WEAK = YES;
  3836. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3837. CLANG_WARN_BOOL_CONVERSION = YES;
  3838. CLANG_WARN_COMMA = YES;
  3839. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3840. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3841. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3842. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3843. CLANG_WARN_EMPTY_BODY = YES;
  3844. CLANG_WARN_ENUM_CONVERSION = YES;
  3845. CLANG_WARN_INFINITE_RECURSION = YES;
  3846. CLANG_WARN_INT_CONVERSION = YES;
  3847. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3848. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3849. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3850. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3851. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3852. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3853. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3854. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3855. CLANG_WARN_UNREACHABLE_CODE = YES;
  3856. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3857. COPY_PHASE_STRIP = NO;
  3858. DEBUG_INFORMATION_FORMAT = dwarf;
  3859. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3860. ENABLE_TESTABILITY = YES;
  3861. GCC_C_LANGUAGE_STANDARD = gnu11;
  3862. GCC_DYNAMIC_NO_PIC = NO;
  3863. GCC_NO_COMMON_BLOCKS = YES;
  3864. GCC_OPTIMIZATION_LEVEL = 0;
  3865. GCC_PREPROCESSOR_DEFINITIONS = (
  3866. "DEBUG=1",
  3867. "$(inherited)",
  3868. );
  3869. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3870. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3871. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3872. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3873. GCC_WARN_UNUSED_FUNCTION = YES;
  3874. GCC_WARN_UNUSED_VARIABLE = YES;
  3875. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3876. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3877. MTL_FAST_MATH = YES;
  3878. ONLY_ACTIVE_ARCH = YES;
  3879. SDKROOT = iphoneos;
  3880. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  3881. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3882. };
  3883. name = Debug;
  3884. };
  3885. 83E408412387726D00255664 /* Release */ = {
  3886. isa = XCBuildConfiguration;
  3887. buildSettings = {
  3888. ALWAYS_SEARCH_USER_PATHS = NO;
  3889. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3890. CLANG_ANALYZER_NONNULL = YES;
  3891. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3892. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3893. CLANG_CXX_LIBRARY = "libc++";
  3894. CLANG_ENABLE_MODULES = YES;
  3895. CLANG_ENABLE_OBJC_ARC = YES;
  3896. CLANG_ENABLE_OBJC_WEAK = YES;
  3897. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3898. CLANG_WARN_BOOL_CONVERSION = YES;
  3899. CLANG_WARN_COMMA = YES;
  3900. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3901. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3902. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3903. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3904. CLANG_WARN_EMPTY_BODY = YES;
  3905. CLANG_WARN_ENUM_CONVERSION = YES;
  3906. CLANG_WARN_INFINITE_RECURSION = YES;
  3907. CLANG_WARN_INT_CONVERSION = YES;
  3908. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3909. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3910. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3911. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3912. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3913. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3914. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3915. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3916. CLANG_WARN_UNREACHABLE_CODE = YES;
  3917. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3918. COPY_PHASE_STRIP = NO;
  3919. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3920. ENABLE_NS_ASSERTIONS = NO;
  3921. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3922. GCC_C_LANGUAGE_STANDARD = gnu11;
  3923. GCC_NO_COMMON_BLOCKS = YES;
  3924. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3925. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3926. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3927. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3928. GCC_WARN_UNUSED_FUNCTION = YES;
  3929. GCC_WARN_UNUSED_VARIABLE = YES;
  3930. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3931. MTL_ENABLE_DEBUG_INFO = NO;
  3932. MTL_FAST_MATH = YES;
  3933. SDKROOT = iphoneos;
  3934. SWIFT_COMPILATION_MODE = wholemodule;
  3935. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3936. VALIDATE_PRODUCT = YES;
  3937. };
  3938. name = Release;
  3939. };
  3940. 83E408432387726D00255664 /* Debug */ = {
  3941. isa = XCBuildConfiguration;
  3942. baseConfigurationReference = 6A62B2657BB335FF65D53B0C /* Pods-LampMind.debug.xcconfig */;
  3943. buildSettings = {
  3944. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3945. CLANG_ENABLE_MODULES = YES;
  3946. CODE_SIGN_IDENTITY = "Apple Development";
  3947. CODE_SIGN_STYLE = Automatic;
  3948. CURRENT_PROJECT_VERSION = 20210308;
  3949. DEVELOPMENT_TEAM = XX76ZRB47G;
  3950. ENABLE_BITCODE = NO;
  3951. FRAMEWORK_SEARCH_PATHS = (
  3952. "$(inherited)",
  3953. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"",
  3954. "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts\"",
  3955. "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh\"",
  3956. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift\"",
  3957. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView\"",
  3958. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher\"",
  3959. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya\"",
  3960. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging\"",
  3961. "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD\"",
  3962. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result\"",
  3963. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa\"",
  3964. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift\"",
  3965. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit\"",
  3966. "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream\"",
  3967. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup\"",
  3968. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift\"",
  3969. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON\"",
  3970. "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift\"",
  3971. "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger\"",
  3972. "\"${PODS_ROOT}/AMap3DMap-NO-IDFA\"",
  3973. "\"${PODS_ROOT}/AMapFoundation-NO-IDFA\"",
  3974. "\"${PODS_ROOT}/AMapLocation-NO-IDFA\"",
  3975. "\"${PODS_ROOT}/AMapSearch-NO-IDFA\"",
  3976. "$(PROJECT_DIR)/LampMind/Global/Vender",
  3977. );
  3978. HEADER_SEARCH_PATHS = (
  3979. "$(inherited)",
  3980. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers\"",
  3981. "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts/Charts.framework/Headers\"",
  3982. "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh/ESPullToRefresh.framework/Headers\"",
  3983. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers\"",
  3984. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers\"",
  3985. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers\"",
  3986. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers\"",
  3987. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging/ObjcExceptionBridging.framework/Headers\"",
  3988. "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD/PKHUD.framework/Headers\"",
  3989. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers\"",
  3990. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers\"",
  3991. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers\"",
  3992. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers\"",
  3993. "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream/Starscream.framework/Headers\"",
  3994. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup/SwiftPopup.framework/Headers\"",
  3995. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift/SwifterSwift.framework/Headers\"",
  3996. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers\"",
  3997. "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers\"",
  3998. "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger/XCGLogger.framework/Headers\"",
  3999. "\"$(SRCROOT)/LampMind/Global/Vender/LCOpenSDKDynamic.framework/Headers\"",
  4000. );
  4001. INFOPLIST_FILE = LampMind/Info.plist;
  4002. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4003. LD_RUNPATH_SEARCH_PATHS = (
  4004. "$(inherited)",
  4005. "@executable_path/Frameworks",
  4006. );
  4007. LIBRARY_SEARCH_PATHS = (
  4008. "$(inherited)",
  4009. "$(PROJECT_DIR)/LampMind/Global/Vender/Openssl",
  4010. "$(PROJECT_DIR)/LampMind/Global/Vender/OpenSDK",
  4011. );
  4012. MARKETING_VERSION = 1.0.4;
  4013. OTHER_LDFLAGS = (
  4014. "$(inherited)",
  4015. "-ObjC",
  4016. "-l\"c++\"",
  4017. "-l\"z\"",
  4018. "-framework",
  4019. "\"AMapFoundationKit\"",
  4020. "-framework",
  4021. "\"AMapLocationKit\"",
  4022. "-framework",
  4023. "\"AMapSearchKit\"",
  4024. "-framework",
  4025. "\"Accelerate\"",
  4026. "-framework",
  4027. "\"Alamofire\"",
  4028. "-framework",
  4029. "\"CFNetwork\"",
  4030. "-framework",
  4031. "\"Charts\"",
  4032. "-framework",
  4033. "\"CoreGraphics\"",
  4034. "-framework",
  4035. "\"CoreLocation\"",
  4036. "-framework",
  4037. "\"CoreTelephony\"",
  4038. "-framework",
  4039. "\"CoreText\"",
  4040. "-framework",
  4041. "\"ESPullToRefresh\"",
  4042. "-framework",
  4043. "\"ExternalAccessory\"",
  4044. "-framework",
  4045. "\"Foundation\"",
  4046. "-framework",
  4047. "\"GLKit\"",
  4048. "-framework",
  4049. "\"IQKeyboardManagerSwift\"",
  4050. "-framework",
  4051. "\"JXCategoryView\"",
  4052. "-framework",
  4053. "\"Kingfisher\"",
  4054. "-framework",
  4055. "\"MAMapKit\"",
  4056. "-framework",
  4057. "\"Moya\"",
  4058. "-framework",
  4059. "\"ObjcExceptionBridging\"",
  4060. "-framework",
  4061. "\"OpenGLES\"",
  4062. "-framework",
  4063. "\"PKHUD\"",
  4064. "-framework",
  4065. "\"QuartzCore\"",
  4066. "-framework",
  4067. "\"Result\"",
  4068. "-framework",
  4069. "\"RxCocoa\"",
  4070. "-framework",
  4071. "\"RxSwift\"",
  4072. "-framework",
  4073. "\"Security\"",
  4074. "-framework",
  4075. "\"SnapKit\"",
  4076. "-framework",
  4077. "\"Starscream\"",
  4078. "-framework",
  4079. "\"SwiftPopup\"",
  4080. "-framework",
  4081. "\"SwifterSwift\"",
  4082. "-framework",
  4083. "\"SwiftyJSON\"",
  4084. "-framework",
  4085. "\"SystemConfiguration\"",
  4086. "-framework",
  4087. "\"Toast_Swift\"",
  4088. "-framework",
  4089. "\"UIKit\"",
  4090. "-framework",
  4091. "\"XCGLogger\"",
  4092. );
  4093. PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.lampmind;
  4094. PRODUCT_NAME = "$(TARGET_NAME)";
  4095. PROVISIONING_PROFILE_SPECIFIER = "";
  4096. SWIFT_OBJC_BRIDGING_HEADER = "LampMind/LampMind-Bridging-Header.h";
  4097. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4098. SWIFT_VERSION = 5.0;
  4099. TARGETED_DEVICE_FAMILY = 1;
  4100. };
  4101. name = Debug;
  4102. };
  4103. 83E408442387726D00255664 /* Release */ = {
  4104. isa = XCBuildConfiguration;
  4105. baseConfigurationReference = B6A851A2A19952A236929375 /* Pods-LampMind.release.xcconfig */;
  4106. buildSettings = {
  4107. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4108. CLANG_ENABLE_MODULES = YES;
  4109. CODE_SIGN_IDENTITY = "Apple Development";
  4110. CODE_SIGN_STYLE = Automatic;
  4111. CURRENT_PROJECT_VERSION = 20210308;
  4112. DEVELOPMENT_TEAM = XX76ZRB47G;
  4113. ENABLE_BITCODE = NO;
  4114. FRAMEWORK_SEARCH_PATHS = (
  4115. "$(inherited)",
  4116. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"",
  4117. "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts\"",
  4118. "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh\"",
  4119. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift\"",
  4120. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView\"",
  4121. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher\"",
  4122. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya\"",
  4123. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging\"",
  4124. "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD\"",
  4125. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result\"",
  4126. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa\"",
  4127. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift\"",
  4128. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit\"",
  4129. "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream\"",
  4130. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup\"",
  4131. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift\"",
  4132. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON\"",
  4133. "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift\"",
  4134. "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger\"",
  4135. "\"${PODS_ROOT}/AMap3DMap-NO-IDFA\"",
  4136. "\"${PODS_ROOT}/AMapFoundation-NO-IDFA\"",
  4137. "\"${PODS_ROOT}/AMapLocation-NO-IDFA\"",
  4138. "\"${PODS_ROOT}/AMapSearch-NO-IDFA\"",
  4139. "$(PROJECT_DIR)/LampMind/Global/Vender",
  4140. );
  4141. HEADER_SEARCH_PATHS = (
  4142. "$(inherited)",
  4143. "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers\"",
  4144. "\"${PODS_CONFIGURATION_BUILD_DIR}/Charts/Charts.framework/Headers\"",
  4145. "\"${PODS_CONFIGURATION_BUILD_DIR}/ESPullToRefresh/ESPullToRefresh.framework/Headers\"",
  4146. "\"${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers\"",
  4147. "\"${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView/JXCategoryView.framework/Headers\"",
  4148. "\"${PODS_CONFIGURATION_BUILD_DIR}/Kingfisher/Kingfisher.framework/Headers\"",
  4149. "\"${PODS_CONFIGURATION_BUILD_DIR}/Moya/Moya.framework/Headers\"",
  4150. "\"${PODS_CONFIGURATION_BUILD_DIR}/ObjcExceptionBridging/ObjcExceptionBridging.framework/Headers\"",
  4151. "\"${PODS_CONFIGURATION_BUILD_DIR}/PKHUD/PKHUD.framework/Headers\"",
  4152. "\"${PODS_CONFIGURATION_BUILD_DIR}/Result/Result.framework/Headers\"",
  4153. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers\"",
  4154. "\"${PODS_CONFIGURATION_BUILD_DIR}/RxSwift/RxSwift.framework/Headers\"",
  4155. "\"${PODS_CONFIGURATION_BUILD_DIR}/SnapKit/SnapKit.framework/Headers\"",
  4156. "\"${PODS_CONFIGURATION_BUILD_DIR}/Starscream/Starscream.framework/Headers\"",
  4157. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftPopup/SwiftPopup.framework/Headers\"",
  4158. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwifterSwift/SwifterSwift.framework/Headers\"",
  4159. "\"${PODS_CONFIGURATION_BUILD_DIR}/SwiftyJSON/SwiftyJSON.framework/Headers\"",
  4160. "\"${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers\"",
  4161. "\"${PODS_CONFIGURATION_BUILD_DIR}/XCGLogger/XCGLogger.framework/Headers\"",
  4162. "\"$(SRCROOT)/LampMind/Global/Vender/LCOpenSDKDynamic.framework/Headers\"",
  4163. );
  4164. INFOPLIST_FILE = LampMind/Info.plist;
  4165. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4166. LD_RUNPATH_SEARCH_PATHS = (
  4167. "$(inherited)",
  4168. "@executable_path/Frameworks",
  4169. );
  4170. LIBRARY_SEARCH_PATHS = (
  4171. "$(inherited)",
  4172. "$(PROJECT_DIR)/LampMind/Global/Vender/Openssl",
  4173. "$(PROJECT_DIR)/LampMind/Global/Vender/OpenSDK",
  4174. );
  4175. MARKETING_VERSION = 1.0.4;
  4176. OTHER_LDFLAGS = (
  4177. "$(inherited)",
  4178. "-ObjC",
  4179. "-l\"c++\"",
  4180. "-l\"z\"",
  4181. "-framework",
  4182. "\"AMapFoundationKit\"",
  4183. "-framework",
  4184. "\"AMapLocationKit\"",
  4185. "-framework",
  4186. "\"AMapSearchKit\"",
  4187. "-framework",
  4188. "\"Accelerate\"",
  4189. "-framework",
  4190. "\"Alamofire\"",
  4191. "-framework",
  4192. "\"CFNetwork\"",
  4193. "-framework",
  4194. "\"Charts\"",
  4195. "-framework",
  4196. "\"CoreGraphics\"",
  4197. "-framework",
  4198. "\"CoreLocation\"",
  4199. "-framework",
  4200. "\"CoreTelephony\"",
  4201. "-framework",
  4202. "\"CoreText\"",
  4203. "-framework",
  4204. "\"ESPullToRefresh\"",
  4205. "-framework",
  4206. "\"ExternalAccessory\"",
  4207. "-framework",
  4208. "\"Foundation\"",
  4209. "-framework",
  4210. "\"GLKit\"",
  4211. "-framework",
  4212. "\"IQKeyboardManagerSwift\"",
  4213. "-framework",
  4214. "\"JXCategoryView\"",
  4215. "-framework",
  4216. "\"Kingfisher\"",
  4217. "-framework",
  4218. "\"MAMapKit\"",
  4219. "-framework",
  4220. "\"Moya\"",
  4221. "-framework",
  4222. "\"ObjcExceptionBridging\"",
  4223. "-framework",
  4224. "\"OpenGLES\"",
  4225. "-framework",
  4226. "\"PKHUD\"",
  4227. "-framework",
  4228. "\"QuartzCore\"",
  4229. "-framework",
  4230. "\"Result\"",
  4231. "-framework",
  4232. "\"RxCocoa\"",
  4233. "-framework",
  4234. "\"RxSwift\"",
  4235. "-framework",
  4236. "\"Security\"",
  4237. "-framework",
  4238. "\"SnapKit\"",
  4239. "-framework",
  4240. "\"Starscream\"",
  4241. "-framework",
  4242. "\"SwiftPopup\"",
  4243. "-framework",
  4244. "\"SwifterSwift\"",
  4245. "-framework",
  4246. "\"SwiftyJSON\"",
  4247. "-framework",
  4248. "\"SystemConfiguration\"",
  4249. "-framework",
  4250. "\"Toast_Swift\"",
  4251. "-framework",
  4252. "\"UIKit\"",
  4253. "-framework",
  4254. "\"XCGLogger\"",
  4255. );
  4256. PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.lampmind;
  4257. PRODUCT_NAME = "$(TARGET_NAME)";
  4258. PROVISIONING_PROFILE_SPECIFIER = "";
  4259. SWIFT_OBJC_BRIDGING_HEADER = "LampMind/LampMind-Bridging-Header.h";
  4260. SWIFT_VERSION = 5.0;
  4261. TARGETED_DEVICE_FAMILY = 1;
  4262. };
  4263. name = Release;
  4264. };
  4265. 83E408462387726D00255664 /* Debug */ = {
  4266. isa = XCBuildConfiguration;
  4267. buildSettings = {
  4268. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4269. BUNDLE_LOADER = "$(TEST_HOST)";
  4270. CODE_SIGN_STYLE = Automatic;
  4271. DEVELOPMENT_TEAM = XX76ZRB47G;
  4272. INFOPLIST_FILE = LampMindTests/Info.plist;
  4273. IPHONEOS_DEPLOYMENT_TARGET = 13.2;
  4274. LD_RUNPATH_SEARCH_PATHS = (
  4275. "$(inherited)",
  4276. "@executable_path/Frameworks",
  4277. "@loader_path/Frameworks",
  4278. );
  4279. PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindTests;
  4280. PRODUCT_NAME = "$(TARGET_NAME)";
  4281. SWIFT_VERSION = 5.0;
  4282. TARGETED_DEVICE_FAMILY = "1,2";
  4283. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LampMind.app/LampMind";
  4284. };
  4285. name = Debug;
  4286. };
  4287. 83E408472387726D00255664 /* Release */ = {
  4288. isa = XCBuildConfiguration;
  4289. buildSettings = {
  4290. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4291. BUNDLE_LOADER = "$(TEST_HOST)";
  4292. CODE_SIGN_STYLE = Automatic;
  4293. DEVELOPMENT_TEAM = XX76ZRB47G;
  4294. INFOPLIST_FILE = LampMindTests/Info.plist;
  4295. IPHONEOS_DEPLOYMENT_TARGET = 13.2;
  4296. LD_RUNPATH_SEARCH_PATHS = (
  4297. "$(inherited)",
  4298. "@executable_path/Frameworks",
  4299. "@loader_path/Frameworks",
  4300. );
  4301. PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindTests;
  4302. PRODUCT_NAME = "$(TARGET_NAME)";
  4303. SWIFT_VERSION = 5.0;
  4304. TARGETED_DEVICE_FAMILY = "1,2";
  4305. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LampMind.app/LampMind";
  4306. };
  4307. name = Release;
  4308. };
  4309. 83E408492387726D00255664 /* Debug */ = {
  4310. isa = XCBuildConfiguration;
  4311. buildSettings = {
  4312. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4313. CODE_SIGN_STYLE = Automatic;
  4314. DEVELOPMENT_TEAM = XX76ZRB47G;
  4315. INFOPLIST_FILE = LampMindUITests/Info.plist;
  4316. LD_RUNPATH_SEARCH_PATHS = (
  4317. "$(inherited)",
  4318. "@executable_path/Frameworks",
  4319. "@loader_path/Frameworks",
  4320. );
  4321. PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindUITests;
  4322. PRODUCT_NAME = "$(TARGET_NAME)";
  4323. SWIFT_VERSION = 5.0;
  4324. TARGETED_DEVICE_FAMILY = "1,2";
  4325. TEST_TARGET_NAME = LampMind;
  4326. };
  4327. name = Debug;
  4328. };
  4329. 83E4084A2387726D00255664 /* Release */ = {
  4330. isa = XCBuildConfiguration;
  4331. buildSettings = {
  4332. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4333. CODE_SIGN_STYLE = Automatic;
  4334. DEVELOPMENT_TEAM = XX76ZRB47G;
  4335. INFOPLIST_FILE = LampMindUITests/Info.plist;
  4336. LD_RUNPATH_SEARCH_PATHS = (
  4337. "$(inherited)",
  4338. "@executable_path/Frameworks",
  4339. "@loader_path/Frameworks",
  4340. );
  4341. PRODUCT_BUNDLE_IDENTIFIER = com.weclouds.LampMindUITests;
  4342. PRODUCT_NAME = "$(TARGET_NAME)";
  4343. SWIFT_VERSION = 5.0;
  4344. TARGETED_DEVICE_FAMILY = "1,2";
  4345. TEST_TARGET_NAME = LampMind;
  4346. };
  4347. name = Release;
  4348. };
  4349. /* End XCBuildConfiguration section */
  4350. /* Begin XCConfigurationList section */
  4351. 83E408132387726800255664 /* Build configuration list for PBXProject "LampMind" */ = {
  4352. isa = XCConfigurationList;
  4353. buildConfigurations = (
  4354. 83E408402387726D00255664 /* Debug */,
  4355. 83E408412387726D00255664 /* Release */,
  4356. );
  4357. defaultConfigurationIsVisible = 0;
  4358. defaultConfigurationName = Release;
  4359. };
  4360. 83E408422387726D00255664 /* Build configuration list for PBXNativeTarget "LampMind" */ = {
  4361. isa = XCConfigurationList;
  4362. buildConfigurations = (
  4363. 83E408432387726D00255664 /* Debug */,
  4364. 83E408442387726D00255664 /* Release */,
  4365. );
  4366. defaultConfigurationIsVisible = 0;
  4367. defaultConfigurationName = Release;
  4368. };
  4369. 83E408452387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindTests" */ = {
  4370. isa = XCConfigurationList;
  4371. buildConfigurations = (
  4372. 83E408462387726D00255664 /* Debug */,
  4373. 83E408472387726D00255664 /* Release */,
  4374. );
  4375. defaultConfigurationIsVisible = 0;
  4376. defaultConfigurationName = Release;
  4377. };
  4378. 83E408482387726D00255664 /* Build configuration list for PBXNativeTarget "LampMindUITests" */ = {
  4379. isa = XCConfigurationList;
  4380. buildConfigurations = (
  4381. 83E408492387726D00255664 /* Debug */,
  4382. 83E4084A2387726D00255664 /* Release */,
  4383. );
  4384. defaultConfigurationIsVisible = 0;
  4385. defaultConfigurationName = Release;
  4386. };
  4387. /* End XCConfigurationList section */
  4388. };
  4389. rootObject = 83E408102387726800255664 /* Project object */;
  4390. }