123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 51;
- objects = {
- 2729F7C724C6C87400E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7C624C6C87400E1F3C4 ; };
- 2729F7CA24C6EB4A00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7C924C6EB4A00E1F3C4 ; };
- 2729F7CD24C6F3F300E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7CC24C6F3F300E1F3C4 ; };
- 2729F7D124C8174A00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7D024C8174A00E1F3C4 ; };
- 2729F7D324C8175E00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7D224C8175E00E1F3C4 ; };
- 2729F7DA24C81E9B00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7D924C81E9B00E1F3C4 ; };
- 2729F7DD24C81FA200E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7DC24C81FA200E1F3C4 ; };
- 2729F7DF24C81FB000E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7DE24C81FB000E1F3C4 ; };
- 2729F7E324C8244100E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7E124C8244100E1F3C4 ; };
- 2729F7E424C8244100E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7E224C8244100E1F3C4 ; };
- 2729F7E724C8326900E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7E624C8326900E1F3C4 ; };
- 2729F7EA24C8328700E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7E924C8328700E1F3C4 ; };
- 2729F7EC24C8329700E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7EB24C8329700E1F3C4 ; };
- 2729F7F024C8379D00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7EE24C8379D00E1F3C4 ; };
- 2729F7F124C8379D00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7EF24C8379D00E1F3C4 ; };
- 2729F7F424C8395300E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7F324C8395300E1F3C4 ; };
- 2729F7F624C8398B00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7F524C8398B00E1F3C4 ; };
- 2729F7F924C8425E00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7F824C8425E00E1F3C4 ; };
- 2729F7FB24C8427200E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7FA24C8427100E1F3C4 ; };
- 2729F7FE24C851FA00E1F3C4 = {isa = PBXBuildFile; fileRef = 2729F7FC24C851F900E1F3C4 ; };
- 273EFB4A24DCF5850069DB4D = {isa = PBXBuildFile; fileRef = 273EFB4924DCF5850069DB4D ; };
- 273EFB4C24DCF5920069DB4D = {isa = PBXBuildFile; fileRef = 273EFB4B24DCF5920069DB4D ; };
- 273EFB5E24DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB4E24DD36410069DB4D ; };
- 273EFB5F24DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB4F24DD36410069DB4D ; };
- 273EFB6024DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5024DD36410069DB4D ; };
- 273EFB6124DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5124DD36410069DB4D ; };
- 273EFB6224DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5224DD36410069DB4D ; };
- 273EFB6324DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5424DD36410069DB4D ; };
- 273EFB6424DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5524DD36410069DB4D ; };
- 273EFB6524DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5824DD36410069DB4D ; };
- 273EFB6624DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5924DD36410069DB4D ; };
- 273EFB6724DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5A24DD36410069DB4D ; };
- 273EFB6824DD36420069DB4D = {isa = PBXBuildFile; fileRef = 273EFB5C24DD36410069DB4D ; };
- 273EFB7024E672850069DB4D = {isa = PBXBuildFile; fileRef = 273EFB6F24E672830069DB4D ; };
- 27476F4824BBFB5900181362 = {isa = PBXBuildFile; fileRef = 27476F4724BBFB5900181362 ; };
- 27476F4E24BBFB5900181362 = {isa = PBXBuildFile; fileRef = 27476F4D24BBFB5900181362 ; };
- 27476F5124BBFB5900181362 = {isa = PBXBuildFile; fileRef = 27476F4F24BBFB5900181362 ; };
- 27476F5324BBFB5C00181362 = {isa = PBXBuildFile; fileRef = 27476F5224BBFB5C00181362 ; };
- 27476F5624BBFB5C00181362 = {isa = PBXBuildFile; fileRef = 27476F5424BBFB5C00181362 ; };
- 27476F5924BBFB5C00181362 = {isa = PBXBuildFile; fileRef = 27476F5824BBFB5C00181362 ; };
- 27476F6324BBFB5C00181362 = {isa = PBXBuildFile; fileRef = 27476F6224BBFB5C00181362 ; };
- 27476F6E24BBFB5C00181362 = {isa = PBXBuildFile; fileRef = 27476F6D24BBFB5C00181362 ; };
- 2747718724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F7C24BC0BFF00181362 ; };
- 2747718824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F7D24BC0BFF00181362 ; };
- 2747718924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F8124BC0BFF00181362 ; };
- 2747718A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F8324BC0BFF00181362 ; };
- 2747718B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F8624BC0BFF00181362 ; };
- 2747718C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F8724BC0BFF00181362 ; };
- 2747718D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F8824BC0BFF00181362 ; };
- 2747718E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476F8924BC0BFF00181362 ; };
- 2747719F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FAC24BC0BFF00181362 ; };
- 274771A024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FAE24BC0BFF00181362 ; };
- 274771A124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FB024BC0BFF00181362 ; };
- 274771A224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FB524BC0BFF00181362 ; };
- 274771A324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FBB24BC0BFF00181362 ; };
- 274771A424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FBC24BC0BFF00181362 ; };
- 274771A524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FBE24BC0BFF00181362 ; };
- 274771A624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC024BC0BFF00181362 ; };
- 274771A724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC124BC0BFF00181362 ; };
- 274771A824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC224BC0BFF00181362 ; };
- 274771A924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC324BC0BFF00181362 ; };
- 274771AA24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC524BC0BFF00181362 ; };
- 274771AB24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC624BC0BFF00181362 ; };
- 274771AC24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FC724BC0BFF00181362 ; };
- 274771AD24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FCA24BC0BFF00181362 ; };
- 274771AE24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FCC24BC0BFF00181362 ; };
- 274771AF24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FCD24BC0BFF00181362 ; };
- 274771B024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FCE24BC0BFF00181362 ; };
- 274771B124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FD224BC0BFF00181362 ; };
- 274771B224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FD424BC0BFF00181362 ; };
- 274771B324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FD924BC0BFF00181362 ; };
- 274771B424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FDA24BC0BFF00181362 ; };
- 274771B524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FDB24BC0BFF00181362 ; };
- 274771B624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FDE24BC0BFF00181362 ; };
- 274771B724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE024BC0BFF00181362 ; };
- 274771B824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE224BC0BFF00181362 ; };
- 274771B924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE324BC0BFF00181362 ; };
- 274771BA24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE424BC0BFF00181362 ; };
- 274771BB24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE524BC0BFF00181362 ; };
- 274771BC24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE624BC0BFF00181362 ; };
- 274771BD24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FE724BC0BFF00181362 ; };
- 274771BE24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FF124BC0BFF00181362 ; };
- 274771BF24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FF224BC0BFF00181362 ; };
- 274771C024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FF324BC0BFF00181362 ; };
- 274771C224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FFC24BC0C0000181362 ; };
- 274771C324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FFE24BC0C0000181362 ; };
- 274771C424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 27476FFF24BC0C0000181362 ; };
- 274771C524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747700024BC0C0000181362 ; };
- 274771C624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747700124BC0C0000181362 ; };
- 274771C724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747700224BC0C0000181362 ; };
- 274771C824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747700624BC0C0100181362 ; };
- 274771C924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747701024BC0C0100181362 ; };
- 274771CA24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747701424BC0C0100181362 ; };
- 274771CB24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747701924BC0C0100181362 ; };
- 274771CC24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747702024BC0C0100181362 ; };
- 274771CD24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747702224BC0C0100181362 ; };
- 274771CE24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747702624BC0C0100181362 ; };
- 274771CF24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747702724BC0C0100181362 ; };
- 274771D124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703224BC0C0100181362 ; };
- 274771D224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703424BC0C0100181362 ; };
- 274771D324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703724BC0C0100181362 ; };
- 274771D424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703824BC0C0100181362 ; };
- 274771D524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703B24BC0C0100181362 ; };
- 274771D624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703C24BC0C0100181362 ; };
- 274771D724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703D24BC0C0100181362 ; };
- 274771D824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747703E24BC0C0100181362 ; };
- 274771D924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704024BC0C0100181362 ; };
- 274771DA24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704124BC0C0100181362 ; };
- 274771DB24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704324BC0C0100181362 ; };
- 274771DC24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704624BC0C0100181362 ; };
- 274771DD24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704724BC0C0100181362 ; };
- 274771DE24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704A24BC0C0100181362 ; };
- 274771DF24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704B24BC0C0100181362 ; };
- 274771E024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747704C24BC0C0100181362 ; };
- 274771E124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747705124BC0C0100181362 ; };
- 274771E224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747705224BC0C0100181362 ; };
- 274771E324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747705524BC0C0100181362 ; };
- 274771E424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747705D24BC0C0100181362 ; };
- 274771E524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747706424BC0C0100181362 ; };
- 274771E624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747706524BC0C0100181362 ; };
- 274771E724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747706624BC0C0100181362 ; };
- 274771E824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747706724BC0C0100181362 ; };
- 274771E924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747706824BC0C0100181362 ; };
- 274771EB24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747706F24BC0C0100181362 ; };
- 274771EC24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747707224BC0C0100181362 ; };
- 274771ED24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747707324BC0C0100181362 ; };
- 274771EE24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747707624BC0C0200181362 ; };
- 274771EF24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747707A24BC0C0200181362 ; };
- 274771F024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747707C24BC0C0200181362 ; };
- 274771F124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747707D24BC0C0200181362 ; };
- 274771F224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747708424BC0C0300181362 ; };
- 274771F324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747708524BC0C0300181362 ; };
- 274771F424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747708B24BC0C0300181362 ; };
- 274771F524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747708C24BC0C0300181362 ; };
- 274771F624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747708D24BC0C0300181362 ; };
- 274771F724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747708E24BC0C0300181362 ; };
- 274771F824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709424BC0C0300181362 ; };
- 274771F924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709624BC0C0300181362 ; };
- 274771FA24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709824BC0C0300181362 ; };
- 274771FB24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709924BC0C0300181362 ; };
- 274771FC24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709B24BC0C0300181362 ; };
- 274771FD24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709C24BC0C0300181362 ; };
- 274771FE24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747709F24BC0C0300181362 ; };
- 274771FF24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770A224BC0C0300181362 ; };
- 2747720024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770A424BC0C0300181362 ; };
- 2747720124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770A524BC0C0300181362 ; };
- 2747720224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770A624BC0C0300181362 ; };
- 2747720324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770A824BC0C0300181362 ; };
- 2747720424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770A924BC0C0300181362 ; };
- 2747720524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770AB24BC0C0300181362 ; };
- 2747720624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770AD24BC0C0300181362 ; };
- 2747720724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770AF24BC0C0300181362 ; };
- 2747720824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770B024BC0C0300181362 ; };
- 2747720924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770B524BC0C0300181362 ; };
- 2747720A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770B924BC0C0300181362 ; };
- 2747720B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770BA24BC0C0300181362 ; };
- 2747720C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770BB24BC0C0300181362 ; };
- 2747720D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770BC24BC0C0300181362 ; };
- 2747720E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770BD24BC0C0300181362 ; };
- 2747720F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770BF24BC0C0300181362 ; };
- 2747721024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770C424BC0C0300181362 ; };
- 2747721124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770C624BC0C0300181362 ; };
- 2747721224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770C824BC0C0300181362 ; };
- 2747721324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770CA24BC0C0300181362 ; };
- 2747721424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770CB24BC0C0300181362 ; };
- 2747721524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770CE24BC0C0300181362 ; };
- 2747721624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770CF24BC0C0300181362 ; };
- 2747721724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770D124BC0C0300181362 ; };
- 2747721824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770D224BC0C0300181362 ; };
- 2747721924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770D324BC0C0300181362 ; };
- 2747721A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770D924BC0C0400181362 ; };
- 2747721B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770DA24BC0C0400181362 ; };
- 2747721C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770DB24BC0C0400181362 ; };
- 2747721D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770DC24BC0C0400181362 ; };
- 2747721E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770DD24BC0C0400181362 ; };
- 2747721F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770DE24BC0C0400181362 ; };
- 2747722024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770E024BC0C0400181362 ; };
- 2747722124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770E124BC0C0400181362 ; };
- 2747722224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770E324BC0C0400181362 ; };
- 2747722324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770E424BC0C0400181362 ; };
- 2747722424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770E524BC0C0400181362 ; };
- 2747722524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770EF24BC0C0400181362 ; };
- 2747722624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770F324BC0C0400181362 ; };
- 2747722724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770F424BC0C0400181362 ; };
- 2747722824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770F624BC0C0400181362 ; };
- 2747722924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770F824BC0C0400181362 ; };
- 2747722A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770FC24BC0C0400181362 ; };
- 2747722B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770FE24BC0C0400181362 ; };
- 2747722C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 274770FF24BC0C0400181362 ; };
- 2747722D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710024BC0C0400181362 ; };
- 2747722E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710124BC0C0400181362 ; };
- 2747722F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710424BC0C0400181362 ; };
- 2747723024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710724BC0C0400181362 ; };
- 2747723124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710924BC0C0400181362 ; };
- 2747723224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710E24BC0C0400181362 ; };
- 2747723324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747710F24BC0C0400181362 ; };
- 2747723424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747711024BC0C0400181362 ; };
- 2747723524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747711524BC0C0400181362 ; };
- 2747723624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747711C24BC0C0400181362 ; };
- 2747723724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747711D24BC0C0400181362 ; };
- 2747723824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747711F24BC0C0400181362 ; };
- 2747723924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712024BC0C0400181362 ; };
- 2747723A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712124BC0C0400181362 ; };
- 2747723B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712624BC0C0400181362 ; };
- 2747723C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712824BC0C0400181362 ; };
- 2747723D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712924BC0C0400181362 ; };
- 2747723E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712A24BC0C0400181362 ; };
- 2747723F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712C24BC0C0400181362 ; };
- 2747724024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747712E24BC0C0400181362 ; };
- 2747724124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713124BC0C0400181362 ; };
- 2747724224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713324BC0C0400181362 ; };
- 2747724324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713424BC0C0400181362 ; };
- 2747724424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713724BC0C0400181362 ; };
- 2747724524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713D24BC0C0400181362 ; };
- 2747724624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713E24BC0C0400181362 ; };
- 2747724724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747713F24BC0C0400181362 ; };
- 2747724824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747714224BC0C0400181362 ; };
- 2747724924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747714324BC0C0400181362 ; };
- 2747724A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747714724BC0C0400181362 ; };
- 2747724B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747714A24BC0C0400181362 ; };
- 2747724C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747714B24BC0C0400181362 ; };
- 2747724D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747714C24BC0C0400181362 ; };
- 2747724E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715324BC0C0400181362 ; };
- 2747724F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715524BC0C0400181362 ; };
- 2747725024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715624BC0C0400181362 ; };
- 2747725124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715C24BC0C0400181362 ; };
- 2747725224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715D24BC0C0400181362 ; };
- 2747725324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715E24BC0C0400181362 ; };
- 2747725424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747715F24BC0C0400181362 ; };
- 2747725524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747716124BC0C0400181362 ; };
- 2747725624BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747716224BC0C0400181362 ; };
- 2747725724BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747716524BC0C0400181362 ; };
- 2747725824BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747716824BC0C0400181362 ; };
- 2747725924BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747716D24BC0C0400181362 ; };
- 2747725A24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717024BC0C0400181362 ; };
- 2747725B24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717224BC0C0400181362 ; };
- 2747725C24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717524BC0C0400181362 ; };
- 2747725D24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717624BC0C0400181362 ; };
- 2747725E24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717724BC0C0400181362 ; };
- 2747725F24BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717824BC0C0400181362 ; };
- 2747726024BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717924BC0C0400181362 ; };
- 2747726124BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717B24BC0C0400181362 ; };
- 2747726224BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717E24BC0C0400181362 ; };
- 2747726324BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747717F24BC0C0400181362 ; };
- 2747726424BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747718224BC0C0400181362 ; };
- 2747726524BC0C0500181362 = {isa = PBXBuildFile; fileRef = 2747718324BC0C0400181362 ; };
- 2747728524BC0D4300181362 = {isa = PBXBuildFile; fileRef = 2747728424BC0D4200181362 ; };
- 2747728724BC0D4800181362 = {isa = PBXBuildFile; fileRef = 2747728624BC0D4800181362 ; };
- 2747728924BC0D5200181362 = {isa = PBXBuildFile; fileRef = 2747728824BC0D5200181362 ; };
- 2747728B24BC0D5800181362 = {isa = PBXBuildFile; fileRef = 2747728A24BC0D5800181362 ; };
- 2747728D24BC0D5F00181362 = {isa = PBXBuildFile; fileRef = 2747728C24BC0D5F00181362 ; };
- 2747728F24BC0D6500181362 = {isa = PBXBuildFile; fileRef = 2747728E24BC0D6500181362 ; };
- 2747729124BC0D6C00181362 = {isa = PBXBuildFile; fileRef = 2747729024BC0D6B00181362 ; };
- 2747729324BC0D7300181362 = {isa = PBXBuildFile; fileRef = 2747729224BC0D7300181362 ; };
- 2747729524BC0D7A00181362 = {isa = PBXBuildFile; fileRef = 2747729424BC0D7A00181362 ; };
- 2747729724BC0D8100181362 = {isa = PBXBuildFile; fileRef = 2747729624BC0D8000181362 ; };
- 2747729924BC0D8700181362 = {isa = PBXBuildFile; fileRef = 2747729824BC0D8700181362 ; };
- 2747729B24BC0D8D00181362 = {isa = PBXBuildFile; fileRef = 2747729A24BC0D8D00181362 ; };
- 2747729D24BC0D9300181362 = {isa = PBXBuildFile; fileRef = 2747729C24BC0D9300181362 ; };
- 2747729F24BC0D9B00181362 = {isa = PBXBuildFile; fileRef = 2747729E24BC0D9B00181362 ; };
- 274772A124BC0DA000181362 = {isa = PBXBuildFile; fileRef = 274772A024BC0DA000181362 ; };
- 274772A324BC0DA800181362 = {isa = PBXBuildFile; fileRef = 274772A224BC0DA800181362 ; };
- 274772A524BC0DAE00181362 = {isa = PBXBuildFile; fileRef = 274772A424BC0DAE00181362 ; };
- 274772A724BC0DB500181362 = {isa = PBXBuildFile; fileRef = 274772A624BC0DB500181362 ; };
- 274772A924BC0DC100181362 = {isa = PBXBuildFile; fileRef = 274772A824BC0DC000181362 ; };
- 274772AB24BC0DC900181362 = {isa = PBXBuildFile; fileRef = 274772AA24BC0DC900181362 ; };
- 274772AD24BC0DD000181362 = {isa = PBXBuildFile; fileRef = 274772AC24BC0DD000181362 ; };
- 274772AF24BC0DDF00181362 = {isa = PBXBuildFile; fileRef = 274772AE24BC0DDE00181362 ; };
- 274772B124BC0DEB00181362 = {isa = PBXBuildFile; fileRef = 274772B024BC0DEB00181362 ; };
- 2748F8F124C05F4D003F8E11 = {isa = PBXBuildFile; fileRef = 2748F8F024C05F4C003F8E11 ; };
- 2748F8F524C138A0003F8E11 = {isa = PBXBuildFile; fileRef = 2748F8F324C1389F003F8E11 ; };
- 2748F8F624C138A0003F8E11 = {isa = PBXBuildFile; fileRef = 2748F8F424C1389F003F8E11 ; };
- 27544CF824BC337D00EF58AF = {isa = PBXBuildFile; fileRef = 27544CF724BC337D00EF58AF ; };
- 27544CFB24BC338900EF58AF = {isa = PBXBuildFile; fileRef = 27544CFA24BC338900EF58AF ; };
- 277279DC25396EE800B329B8 = {isa = PBXBuildFile; fileRef = 277279DB25396EE800B329B8 ; };
- 2774F24225184AB4003473A2 = {isa = PBXBuildFile; fileRef = 2774F24125184AB4003473A2 ; };
- 2774F2DB251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2BE251877DF003473A2 ; };
- 2774F2DC251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C0251877DF003473A2 ; };
- 2774F2DD251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C1251877DF003473A2 ; };
- 2774F2DE251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C2251877DF003473A2 ; };
- 2774F2DF251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C3251877DF003473A2 ; };
- 2774F2E0251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C6251877DF003473A2 ; };
- 2774F2E1251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C7251877DF003473A2 ; };
- 2774F2E2251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C8251877DF003473A2 ; };
- 2774F2E3251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2C9251877DF003473A2 ; };
- 2774F2E4251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2CD251877DF003473A2 ; };
- 2774F2E5251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2CF251877DF003473A2 ; };
- 2774F2E6251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2D0251877DF003473A2 ; };
- 2774F2E7251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2D6251877DF003473A2 ; };
- 2774F2E8251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2D7251877DF003473A2 ; };
- 2774F2E9251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2D8251877DF003473A2 ; };
- 2774F2EA251877E0003473A2 = {isa = PBXBuildFile; fileRef = 2774F2D9251877DF003473A2 ; };
- 2774F2F325187B18003473A2 = {isa = PBXBuildFile; fileRef = 2774F2F225187B18003473A2 ; };
- 2774F2FC25189EFB003473A2 = {isa = PBXBuildFile; fileRef = 2774F2FB25189EFA003473A2 ; };
- 2774F30125189F09003473A2 = {isa = PBXBuildFile; fileRef = 2774F30025189F09003473A2 ; };
- 2774F3072518B1D4003473A2 = {isa = PBXBuildFile; fileRef = 2774F3062518B1D4003473A2 ; };
- 278D113424CA8E4D00599421 = {isa = PBXBuildFile; fileRef = 278D113324CA8E4D00599421 ; };
- 278D113624CADC4800599421 = {isa = PBXBuildFile; fileRef = 278D113524CADC4800599421 ; };
- 278D113924CFBACA00599421 = {isa = PBXBuildFile; fileRef = 278D113824CFBACA00599421 ; };
- 278D113C24CFC6A200599421 = {isa = PBXBuildFile; fileRef = 278D113B24CFC6A200599421 ; };
- 278D113E24CFC6B600599421 = {isa = PBXBuildFile; fileRef = 278D113D24CFC6B600599421 ; };
- 278D114124CFD58800599421 = {isa = PBXBuildFile; fileRef = 278D114024CFD58800599421 ; };
- 278D114324CFD59B00599421 = {isa = PBXBuildFile; fileRef = 278D114224CFD59B00599421 ; };
- 278D114624D0009000599421 = {isa = PBXBuildFile; fileRef = 278D114524D0009000599421 ; };
- 2794D1B024BC604800BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1AF24BC604800BAF6F3 ; };
- 2794D1B224BC605600BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1B124BC605600BAF6F3 ; };
- 2794D1B524BC662600BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1B424BC662600BAF6F3 ; };
- 2794D1B824BC699700BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1B724BC699700BAF6F3 ; };
- 2794D1BA24BC69A400BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1B924BC69A400BAF6F3 ; };
- 2794D1BD24BD4CF800BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1BC24BD4CF800BAF6F3 ; };
- 2794D1BF24BD4D0C00BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1BE24BD4D0C00BAF6F3 ; };
- 2794D1C224BD60D500BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1C124BD60D500BAF6F3 ; };
- 2794D1C424BD60E900BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1C324BD60E900BAF6F3 ; };
- 2794D1C724BD62FB00BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1C624BD62FB00BAF6F3 ; };
- 2794D1C924BD631A00BAF6F3 = {isa = PBXBuildFile; fileRef = 2794D1C824BD631A00BAF6F3 ; };
- 27A008A524BD96C50002452B = {isa = PBXBuildFile; fileRef = 27A0089C24BD96C50002452B ; };
- 27A008A624BD96C50002452B = {isa = PBXBuildFile; fileRef = 27A008A024BD96C50002452B ; };
- 27A008A724BD96C50002452B = {isa = PBXBuildFile; fileRef = 27A008A124BD96C50002452B ; };
- 27A008A824BD96C50002452B = {isa = PBXBuildFile; fileRef = 27A008A224BD96C50002452B ; };
- 27A008A924BD96C50002452B = {isa = PBXBuildFile; fileRef = 27A008A424BD96C50002452B ; };
- 27A008AE24BD96E50002452B = {isa = PBXBuildFile; fileRef = 27A008AB24BD96E50002452B ; };
- 27A008AF24BD96E50002452B = {isa = PBXBuildFile; fileRef = 27A008AC24BD96E50002452B ; };
- 27A008B524BD97FE0002452B = {isa = PBXBuildFile; fileRef = 27A008B424BD97FE0002452B ; };
- 27A008B824BD98170002452B = {isa = PBXBuildFile; fileRef = 27A008B724BD98170002452B ; };
- 27A008C324BD99B10002452B = {isa = PBXBuildFile; fileRef = 27A008C224BD99B10002452B ; };
- 27A008C624BD99BD0002452B = {isa = PBXBuildFile; fileRef = 27A008C524BD99BD0002452B ; };
- 27A008C924BD9D550002452B = {isa = PBXBuildFile; fileRef = 27A008C824BD9D550002452B ; };
- 27A008CC24BD9E8A0002452B = {isa = PBXBuildFile; fileRef = 27A008CB24BD9E8A0002452B ; };
- 27A008CE24BD9E950002452B = {isa = PBXBuildFile; fileRef = 27A008CD24BD9E950002452B ; };
- 27A008D324BDA67F0002452B = {isa = PBXBuildFile; fileRef = 27A008D024BDA67E0002452B ; };
- 27A008D424BDA67F0002452B = {isa = PBXBuildFile; fileRef = 27A008D224BDA67F0002452B ; };
- 27A008DB24BDA6950002452B = {isa = PBXBuildFile; fileRef = 27A008D524BDA6940002452B ; };
- 27A008DC24BDA6950002452B = {isa = PBXBuildFile; fileRef = 27A008D624BDA6940002452B ; };
- 27A008DD24BDA6950002452B = {isa = PBXBuildFile; fileRef = 27A008D924BDA6950002452B ; };
- 27A008DE24BDA6950002452B = {isa = PBXBuildFile; fileRef = 27A008DA24BDA6950002452B ; };
- 27A008E124BDA6B40002452B = {isa = PBXBuildFile; fileRef = 27A008DF24BDA6B30002452B ; };
- 27A008E524BDA6C40002452B = {isa = PBXBuildFile; fileRef = 27A008E224BDA6C30002452B ; };
- 27A008E624BDA6C40002452B = {isa = PBXBuildFile; fileRef = 27A008E324BDA6C30002452B ; };
- 27A008E924BDA7070002452B = {isa = PBXBuildFile; fileRef = 27A008E724BDA7070002452B ; };
- 27A008ED24BDA7100002452B = {isa = PBXBuildFile; fileRef = 27A008EA24BDA70F0002452B ; };
- 27A008EE24BDA7100002452B = {isa = PBXBuildFile; fileRef = 27A008EB24BDA7100002452B ; };
- 27A008F324BDB1E50002452B = {isa = PBXBuildFile; fileRef = 27A008F024BDB1E30002452B ; };
- 27A008F424BDB1E50002452B = {isa = PBXBuildFile; fileRef = 27A008F224BDB1E50002452B ; };
- 27A008F724BDB6220002452B = {isa = PBXBuildFile; fileRef = 27A008F624BDB6220002452B ; };
- 27A008F924BDB6310002452B = {isa = PBXBuildFile; fileRef = 27A008F824BDB6310002452B ; };
- 27A008FC24BECDC40002452B = {isa = PBXBuildFile; fileRef = 27A008FB24BECDC40002452B ; };
- 27A008FE24BECDFC0002452B = {isa = PBXBuildFile; fileRef = 27A008FD24BECDFC0002452B ; };
- 27B9066D2542AFE900A1BEBF = {isa = PBXBuildFile; fileRef = 27B9066A2542AFE900A1BEBF ; };
- 27B9066E2542AFE900A1BEBF = {isa = PBXBuildFile; fileRef = 27B9066B2542AFE900A1BEBF ; };
- 27B9066F2542AFE900A1BEBF = {isa = PBXBuildFile; fileRef = 27B9066C2542AFE900A1BEBF ; };
- 27D4149824CA741D000DBC0C = {isa = PBXBuildFile; fileRef = 27D4149724CA741D000DBC0C ; };
- 27D4149B24CA757A000DBC0C = {isa = PBXBuildFile; fileRef = 27D4149A24CA757A000DBC0C ; };
- 27DBF9D324D8F67B00202145 = {isa = PBXBuildFile; fileRef = 27DBF9D224D8F67B00202145 ; };
- 27DBF9D624DAAE6200202145 = {isa = PBXBuildFile; fileRef = 27DBF9D524DAAE6100202145 ; };
- 27DBF9D824DAAE7500202145 = {isa = PBXBuildFile; fileRef = 27DBF9D724DAAE7500202145 ; };
- 27E32B0224F4DF0D0007CA8F = {isa = PBXBuildFile; fileRef = 27E32B0124F4DF0D0007CA8F ; };
- 27E32B0A24FE41B50007CA8F = {isa = PBXBuildFile; fileRef = 27E32B0924FE41B30007CA8F ; };
- 27EF3EEE24BEE35E002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EED24BEE35E002068A2 ; };
- 27EF3EF224BEE885002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EF024BEE885002068A2 ; };
- 27EF3EF324BEE885002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EF124BEE885002068A2 ; };
- 27EF3EF624BEF1DA002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EF524BEF1DA002068A2 ; };
- 27EF3EF824BEF1E8002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EF724BEF1E8002068A2 ; };
- 27EF3EFB24BEFC79002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EFA24BEFC79002068A2 ; };
- 27EF3EFE24BF015A002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EFD24BF015A002068A2 ; };
- 27EF3F0024BF016B002068A2 = {isa = PBXBuildFile; fileRef = 27EF3EFF24BF016B002068A2 ; };
- 27EF3F0324BF0F12002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F0224BF0F12002068A2 ; };
- 27EF3F0624BFF8A1002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F0424BFF8A0002068A2 ; };
- 27EF3F0924C02B3F002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F0724C02B3E002068A2 ; };
- 27EF3F2024C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F0B24C02B67002068A2 ; };
- 27EF3F2124C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F0F24C02B67002068A2 ; };
- 27EF3F2224C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F1224C02B67002068A2 ; };
- 27EF3F2324C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F1724C02B68002068A2 ; };
- 27EF3F2524C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F1924C02B68002068A2 ; };
- 27EF3F2624C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F1B24C02B68002068A2 ; };
- 27EF3F2724C02B68002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F1F24C02B68002068A2 ; };
- 27EF3F2A24C02DE9002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F2824C02DE8002068A2 ; };
- 27EF3F2E24C0384E002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F2C24C0384E002068A2 ; };
- 27EF3F2F24C0384E002068A2 = {isa = PBXBuildFile; fileRef = 27EF3F2D24C0384E002068A2 ; };
- 52771C0027351695CEDB4C8E = {isa = PBXBuildFile; fileRef = 1C12DE728E343C25BB5998D7 ; };
- 5577ECF41C84E1BDFEC99DBC = {isa = PBXBuildFile; fileRef = 8BAA64634BC925E7C2CD7008 ; };
- A7C23B2E920E232C71C39B0E = {isa = PBXBuildFile; fileRef = F8D13E0A14104E75F7922812 ; };
- 27476F5F24BBFB5C00181362 = {
- isa = PBXContainerItemProxy;
- containerPortal = 27476F3B24BBFB5900181362 ;
- proxyType = 1;
- remoteGlobalIDString = 27476F4224BBFB5900181362;
- remoteInfo = MusicGradeExam;
- };
- 27476F6A24BBFB5C00181362 = {
- isa = PBXContainerItemProxy;
- containerPortal = 27476F3B24BBFB5900181362 ;
- proxyType = 1;
- remoteGlobalIDString = 27476F4224BBFB5900181362;
- remoteInfo = MusicGradeExam;
- };
- 1AA4DFCEF527585287BEBFE0 = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam.release.xcconfig"; sourceTree = "<group>"; };
- 1C12DE728E343C25BB5998D7 = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExam.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2729F7C524C6C87400E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenFileViewController.h; sourceTree = "<group>"; };
- 2729F7C624C6C87400E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OpenFileViewController.m; sourceTree = "<group>"; };
- 2729F7C824C6EB4900E1F3C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubjectNameModel.h; sourceTree = "<group>"; };
- 2729F7C924C6EB4A00E1F3C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SubjectNameModel.m; sourceTree = "<group>"; };
- 2729F7CB24C6F3F300E1F3C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongListModel.h; sourceTree = "<group>"; };
- 2729F7CC24C6F3F300E1F3C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongListModel.m; sourceTree = "<group>"; };
- 2729F7CF24C8174A00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileNameView.h; sourceTree = "<group>"; };
- 2729F7D024C8174A00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FileNameView.m; sourceTree = "<group>"; };
- 2729F7D224C8175E00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FileNameView.xib; sourceTree = "<group>"; };
- 2729F7D824C81E9B00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamViewController.h; sourceTree = "<group>"; };
- 2729F7D924C81E9B00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamViewController.m; sourceTree = "<group>"; };
- 2729F7DB24C81FA200E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LibraryTipsView.h; sourceTree = "<group>"; };
- 2729F7DC24C81FA200E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LibraryTipsView.m; sourceTree = "<group>"; };
- 2729F7DE24C81FB000E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LibraryTipsView.xib; sourceTree = "<group>"; };
- 2729F7E024C8244100E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamListCell.h; sourceTree = "<group>"; };
- 2729F7E124C8244100E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamListCell.m; sourceTree = "<group>"; };
- 2729F7E224C8244100E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamListCell.xib; sourceTree = "<group>"; };
- 2729F7E524C8326900E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordExamViewController.h; sourceTree = "<group>"; };
- 2729F7E624C8326900E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordExamViewController.m; sourceTree = "<group>"; };
- 2729F7E824C8328700E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordBodyView.h; sourceTree = "<group>"; };
- 2729F7E924C8328700E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordBodyView.m; sourceTree = "<group>"; };
- 2729F7EB24C8329700E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordBodyView.xib; sourceTree = "<group>"; };
- 2729F7ED24C8379D00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordListCell.h; sourceTree = "<group>"; };
- 2729F7EE24C8379D00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordListCell.m; sourceTree = "<group>"; };
- 2729F7EF24C8379D00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordListCell.xib; sourceTree = "<group>"; };
- 2729F7F224C8395300E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordBottomView.h; sourceTree = "<group>"; };
- 2729F7F324C8395300E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordBottomView.m; sourceTree = "<group>"; };
- 2729F7F524C8398B00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordBottomView.xib; sourceTree = "<group>"; };
- 2729F7F724C8425E00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordTipsView.h; sourceTree = "<group>"; };
- 2729F7F824C8425E00E1F3C4 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordTipsView.m; sourceTree = "<group>"; };
- 2729F7FA24C8427100E1F3C4 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordTipsView.xib; sourceTree = "<group>"; };
- 2729F7FC24C851F900E1F3C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseExamModel.m; sourceTree = "<group>"; };
- 2729F7FD24C851FA00E1F3C4 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseExamModel.h; sourceTree = "<group>"; };
- 273EFB4824DCF5850069DB4D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamSearchView.h; sourceTree = "<group>"; };
- 273EFB4924DCF5850069DB4D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamSearchView.m; sourceTree = "<group>"; };
- 273EFB4B24DCF5920069DB4D = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamSearchView.xib; sourceTree = "<group>"; };
- 273EFB4E24DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongIMLib.framework; sourceTree = "<group>"; };
- 273EFB4F24DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrwb.a"; sourceTree = "<group>"; };
- 273EFB5024DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrnb.a"; sourceTree = "<group>"; };
- 273EFB5124DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libvo-amrwbenc.a"; sourceTree = "<group>"; };
- 273EFB5224DD36410069DB4D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RCConfig.plist; sourceTree = "<group>"; };
- 273EFB5424DD36410069DB4D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RCColor.plist; sourceTree = "<group>"; };
- 273EFB5624DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RongCloudKit.strings"; sourceTree = "<group>"; };
- 273EFB5724DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RongCloudKit.strings; sourceTree = "<group>"; };
- 273EFB5824DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongIMKit.framework; sourceTree = "<group>"; };
- 273EFB5924DD36410069DB4D = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Emoji.plist; sourceTree = "<group>"; };
- 273EFB5A24DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = RongCloud.bundle; sourceTree = "<group>"; };
- 273EFB5C24DD36410069DB4D = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongSight.framework; sourceTree = "<group>"; };
- 273EFB6E24E672830069DB4D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TicketRefreshModel.h; sourceTree = "<group>"; };
- 273EFB6F24E672830069DB4D = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TicketRefreshModel.m; sourceTree = "<group>"; };
- 27476F4324BBFB5900181362 = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "酷乐秀.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 27476F4624BBFB5900181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- 27476F4724BBFB5900181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- 27476F4C24BBFB5900181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
- 27476F4D24BBFB5900181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
- 27476F5024BBFB5900181362 = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- 27476F5224BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 27476F5524BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- 27476F5724BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 27476F5824BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 27476F5E24BBFB5C00181362 = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicGradeExamTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 27476F6224BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicGradeExamTests.m; sourceTree = "<group>"; };
- 27476F6424BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 27476F6924BBFB5C00181362 = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicGradeExamUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 27476F6D24BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicGradeExamUITests.m; sourceTree = "<group>"; };
- 27476F6F24BBFB5C00181362 = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 27476F7C24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JYEqualCellSpaceFlowLayout.m; sourceTree = "<group>"; };
- 27476F7D24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
- 27476F7E24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
- 27476F8024BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
- 27476F8124BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
- 27476F8224BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
- 27476F8324BC0BFF00181362 = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
- 27476F8424BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
- 27476F8524BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
- 27476F8624BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
- 27476F8724BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
- 27476F8824BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
- 27476F8924BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
- 27476F8A24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPickerView.h; sourceTree = "<group>"; };
- 27476FAC24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
- 27476FAD24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
- 27476FAE24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
- 27476FAF24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
- 27476FB024BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
- 27476FB124BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
- 27476FB324BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
- 27476FB424BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
- 27476FB524BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
- 27476FB624BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
- 27476FB724BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
- 27476FB824BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
- 27476FB924BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
- 27476FBA24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
- 27476FBB24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
- 27476FBC24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
- 27476FBD24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
- 27476FBE24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
- 27476FBF24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
- 27476FC024BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
- 27476FC124BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
- 27476FC224BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
- 27476FC324BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
- 27476FC424BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
- 27476FC524BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
- 27476FC624BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
- 27476FC724BC0BFF00181362 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
- 27476FC824BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
- 27476FC924BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
- 27476FCA24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
- 27476FCB24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
- 27476FCC24BC0BFF00181362 = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
- 27476FCD24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
- 27476FCE24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
- 27476FCF24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JYEqualCellSpaceFlowLayout.h; sourceTree = "<group>"; };
- 27476FD124BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZKCycleScrollViewFlowLayout.h; sourceTree = "<group>"; };
- 27476FD224BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZKCycleScrollView.m; sourceTree = "<group>"; };
- 27476FD324BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZKCycleScrollView.h; sourceTree = "<group>"; };
- 27476FD424BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZKCycleScrollViewFlowLayout.m; sourceTree = "<group>"; };
- 27476FD524BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
- 27476FD724BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
- 27476FD824BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
- 27476FD924BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
- 27476FDA24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
- 27476FDB24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
- 27476FDC24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
- 27476FDE24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPickerView.m; sourceTree = "<group>"; };
- 27476FDF24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
- 27476FE024BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
- 27476FE224BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
- 27476FE324BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
- 27476FE424BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
- 27476FE524BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
- 27476FE624BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
- 27476FE724BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
- 27476FE824BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
- 27476FE924BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
- 27476FEA24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
- 27476FEB24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
- 27476FEC24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
- 27476FED24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
- 27476FEE24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
- 27476FEF24BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
- 27476FF024BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
- 27476FF124BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
- 27476FF224BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
- 27476FF324BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
- 27476FF424BC0BFF00181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
- 27476FF724BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
- 27476FF824BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
- 27476FF924BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
- 27476FFA24BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarController.h; sourceTree = "<group>"; };
- 27476FFB24BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
- 27476FFC24BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
- 27476FFE24BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
- 27476FFF24BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
- 2747700024BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
- 2747700124BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarController.m; sourceTree = "<group>"; };
- 2747700224BC0C0000181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRequestManager.m; sourceTree = "<group>"; };
- 2747700624BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
- 2747700724BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
- 2747701024BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomViewController.m; sourceTree = "<group>"; };
- 2747701124BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomViewController.h; sourceTree = "<group>"; };
- 2747701324BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomLoginHelper.h; sourceTree = "<group>"; };
- 2747701424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomLoginHelper.m; sourceTree = "<group>"; };
- 2747701724BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRemoteUserManager.h; sourceTree = "<group>"; };
- 2747701924BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTCService.m; sourceTree = "<group>"; };
- 2747701A24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCService.h; sourceTree = "<group>"; };
- 2747701D24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCode.h; sourceTree = "<group>"; };
- 2747701F24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MBProgressHUD.h"; sourceTree = "<group>"; };
- 2747702024BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MBProgressHUD.m"; sourceTree = "<group>"; };
- 2747702224BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RolePortraitView.m; sourceTree = "<group>"; };
- 2747702324BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RolePortraitView.h; sourceTree = "<group>"; };
- 2747702424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macro.h; sourceTree = "<group>"; };
- 2747702624BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPUtility.m; sourceTree = "<group>"; };
- 2747702724BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPResult.m; sourceTree = "<group>"; };
- 2747702824BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPUtility.h; sourceTree = "<group>"; };
- 2747702924BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPResult.h; sourceTree = "<group>"; };
- 2747702D24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomService.h; sourceTree = "<group>"; };
- 2747702F24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoleChangedMessage.h; sourceTree = "<group>"; };
- 2747703024BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssistantTransferMessage.h; sourceTree = "<group>"; };
- 2747703124BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InviteUpgradeMessage.h; sourceTree = "<group>"; };
- 2747703224BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechMessage.m; sourceTree = "<group>"; };
- 2747703324BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechResultMessage.h; sourceTree = "<group>"; };
- 2747703424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisplayCommandMessage.m; sourceTree = "<group>"; };
- 2747703524BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemberChangeMessage.h; sourceTree = "<group>"; };
- 2747703624BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceMessage.h; sourceTree = "<group>"; };
- 2747703724BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlDeviceNotifyMessage.m; sourceTree = "<group>"; };
- 2747703824BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketExpiredMessage.m; sourceTree = "<group>"; };
- 2747703924BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodePlayMessage.h; sourceTree = "<group>"; };
- 2747703A24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TurnPageMessage.h; sourceTree = "<group>"; };
- 2747703B24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteboardMessage.m; sourceTree = "<group>"; };
- 2747703C24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AssistantTransferMessage.m; sourceTree = "<group>"; };
- 2747703D24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoleChangedMessage.m; sourceTree = "<group>"; };
- 2747703E24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InviteUpgradeMessage.m; sourceTree = "<group>"; };
- 2747703F24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlDeviceNotifyMessage.h; sourceTree = "<group>"; };
- 2747704024BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceMessage.m; sourceTree = "<group>"; };
- 2747704124BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MemberChangeMessage.m; sourceTree = "<group>"; };
- 2747704224BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayCommandMessage.h; sourceTree = "<group>"; };
- 2747704324BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechResultMessage.m; sourceTree = "<group>"; };
- 2747704424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechMessage.h; sourceTree = "<group>"; };
- 2747704524BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteboardMessage.h; sourceTree = "<group>"; };
- 2747704624BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TurnPageMessage.m; sourceTree = "<group>"; };
- 2747704724BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodePlayMessage.m; sourceTree = "<group>"; };
- 2747704824BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketExpiredMessage.h; sourceTree = "<group>"; };
- 2747704A24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Whiteboard.m; sourceTree = "<group>"; };
- 2747704B24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomMember.m; sourceTree = "<group>"; };
- 2747704C24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Classroom.m; sourceTree = "<group>"; };
- 2747704D24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Whiteboard.h; sourceTree = "<group>"; };
- 2747704E24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Classroom.h; sourceTree = "<group>"; };
- 2747704F24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomMember.h; sourceTree = "<group>"; };
- 2747705024BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomDefine.h; sourceTree = "<group>"; };
- 2747705124BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomService.m; sourceTree = "<group>"; };
- 2747705224BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRemoteUserManager.m; sourceTree = "<group>"; };
- 2747705424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSIMService.h; sourceTree = "<group>"; };
- 2747705524BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSIMService.m; sourceTree = "<group>"; };
- 2747705C24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotifyMessageViewController.h; sourceTree = "<group>"; };
- 2747705D24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotifyMessageViewController.m; sourceTree = "<group>"; };
- 2747706224BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
- 2747706324BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiLoginViewController.h; sourceTree = "<group>"; };
- 2747706424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
- 2747706524BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
- 2747706624BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisterViewController.m; sourceTree = "<group>"; };
- 2747706724BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiLoginViewController.m; sourceTree = "<group>"; };
- 2747706824BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
- 2747706924BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
- 2747706A24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
- 2747706B24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterViewController.h; sourceTree = "<group>"; };
- 2747706E24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
- 2747706F24BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
- 2747707224BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
- 2747707324BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
- 2747707424BC0C0100181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
- 2747707624BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlineRoomManager.m; sourceTree = "<group>"; };
- 2747707724BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
- 2747707824BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
- 2747707924BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
- 2747707A24BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
- 2747707B24BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlineRoomManager.h; sourceTree = "<group>"; };
- 2747707C24BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
- 2747707D24BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
- 2747707F24BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
- 2747708024BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
- 2747708124BC0C0200181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
- 2747708424BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "KSNetworking+RequestOperation.m"; sourceTree = "<group>"; };
- 2747708524BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworking.m; sourceTree = "<group>"; };
- 2747708724BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLRUManager.h; sourceTree = "<group>"; };
- 2747708824BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMemoryCache.h; sourceTree = "<group>"; };
- 2747708924BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSCacheManager.h; sourceTree = "<group>"; };
- 2747708A24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSDiskCache.h; sourceTree = "<group>"; };
- 2747708B24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLRUManager.m; sourceTree = "<group>"; };
- 2747708C24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMemoryCache.m; sourceTree = "<group>"; };
- 2747708D24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSDiskCache.m; sourceTree = "<group>"; };
- 2747708E24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSCacheManager.m; sourceTree = "<group>"; };
- 2747708F24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworking.h; sourceTree = "<group>"; };
- 2747709024BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "KSNetworking+RequestOperation.h"; sourceTree = "<group>"; };
- 2747709224BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
- 2747709324BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
- 2747709424BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
- 2747709524BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
- 2747709624BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
- 2747709724BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
- 2747709824BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
- 2747709924BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
- 2747709A24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
- 2747709B24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
- 2747709C24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
- 2747709D24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
- 2747709E24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
- 2747709F24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
- 274770A024BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
- 274770A224BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
- 274770A324BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
- 274770A424BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
- 274770A524BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
- 274770A624BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
- 274770A724BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
- 274770A824BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
- 274770A924BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
- 274770AA24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
- 274770AB24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
- 274770AC24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
- 274770AD24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
- 274770AE24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
- 274770AF24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
- 274770B024BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
- 274770B124BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
- 274770B224BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ks_SafeAccess.h"; sourceTree = "<group>"; };
- 274770B324BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
- 274770B424BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
- 274770B524BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
- 274770B624BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
- 274770B724BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+KSLayout.h"; sourceTree = "<group>"; };
- 274770B824BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
- 274770B924BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
- 274770BA24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
- 274770BB24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
- 274770BC24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
- 274770BD24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
- 274770BE24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
- 274770BF24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
- 274770C024BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
- 274770C124BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
- 274770C224BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
- 274770C324BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
- 274770C424BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
- 274770C524BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
- 274770C624BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ks_SafeAccess.m"; sourceTree = "<group>"; };
- 274770C724BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
- 274770C824BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
- 274770C924BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
- 274770CA24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
- 274770CB24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
- 274770CC24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
- 274770CD24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
- 274770CE24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
- 274770CF24BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+KSLayout.m"; sourceTree = "<group>"; };
- 274770D024BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
- 274770D124BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
- 274770D224BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
- 274770D324BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
- 274770D424BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
- 274770D524BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
- 274770D624BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
- 274770D724BC0C0300181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
- 274770D924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
- 274770DA24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
- 274770DB24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
- 274770DC24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
- 274770DD24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
- 274770DE24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
- 274770DF24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
- 274770E024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
- 274770E124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
- 274770E224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
- 274770E324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
- 274770E424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
- 274770E524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
- 274770E624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
- 274770E724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
- 274770E824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
- 274770E924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
- 274770EA24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
- 274770EB24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
- 274770EC24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
- 274770ED24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
- 274770EE24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
- 274770EF24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
- 274770F024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
- 274770F124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
- 274770F224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
- 274770F324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
- 274770F424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
- 274770F624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
- 274770F724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
- 274770F824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
- 274770FA24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
- 274770FB24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
- 274770FC24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
- 274770FD24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
- 274770FE24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
- 274770FF24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSAdditions.m"; sourceTree = "<group>"; };
- 2747710024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
- 2747710124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
- 2747710224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
- 2747710324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSAdditions.h"; sourceTree = "<group>"; };
- 2747710424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
- 2747710524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
- 2747710624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
- 2747710724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
- 2747710824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
- 2747710924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
- 2747710A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
- 2747710B24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
- 2747710E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerListContainerView.m; sourceTree = "<group>"; };
- 2747710F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerMainTableView.m; sourceTree = "<group>"; };
- 2747711024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerView.m; sourceTree = "<group>"; };
- 2747711124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerListRefreshView.h; sourceTree = "<group>"; };
- 2747711224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerView.h; sourceTree = "<group>"; };
- 2747711324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerListContainerView.h; sourceTree = "<group>"; };
- 2747711424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerMainTableView.h; sourceTree = "<group>"; };
- 2747711524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerListRefreshView.m; sourceTree = "<group>"; };
- 2747711824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorCell.h; sourceTree = "<group>"; };
- 2747711924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorCellModel.h; sourceTree = "<group>"; };
- 2747711A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorView.h; sourceTree = "<group>"; };
- 2747711C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorLineView.m; sourceTree = "<group>"; };
- 2747711D24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorTriangleView.m; sourceTree = "<group>"; };
- 2747711E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorBackgroundView.h; sourceTree = "<group>"; };
- 2747711F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorImageView.m; sourceTree = "<group>"; };
- 2747712024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorBallView.m; sourceTree = "<group>"; };
- 2747712124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorComponentView.m; sourceTree = "<group>"; };
- 2747712224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorLineView.h; sourceTree = "<group>"; };
- 2747712324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorTriangleView.h; sourceTree = "<group>"; };
- 2747712424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorBallView.h; sourceTree = "<group>"; };
- 2747712524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorImageView.h; sourceTree = "<group>"; };
- 2747712624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorBackgroundView.m; sourceTree = "<group>"; };
- 2747712724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorComponentView.h; sourceTree = "<group>"; };
- 2747712824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorCellModel.m; sourceTree = "<group>"; };
- 2747712924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorCell.m; sourceTree = "<group>"; };
- 2747712A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorView.m; sourceTree = "<group>"; };
- 2747712C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotCell.m; sourceTree = "<group>"; };
- 2747712D24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotCellModel.h; sourceTree = "<group>"; };
- 2747712E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotView.m; sourceTree = "<group>"; };
- 2747712F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotCell.h; sourceTree = "<group>"; };
- 2747713024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotView.h; sourceTree = "<group>"; };
- 2747713124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotCellModel.m; sourceTree = "<group>"; };
- 2747713324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageView.m; sourceTree = "<group>"; };
- 2747713424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageCell.m; sourceTree = "<group>"; };
- 2747713524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageCellModel.h; sourceTree = "<group>"; };
- 2747713624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageView.h; sourceTree = "<group>"; };
- 2747713724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageCellModel.m; sourceTree = "<group>"; };
- 2747713824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageCell.h; sourceTree = "<group>"; };
- 2747713A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleCellModel.h; sourceTree = "<group>"; };
- 2747713B24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleCell.h; sourceTree = "<group>"; };
- 2747713C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleView.h; sourceTree = "<group>"; };
- 2747713D24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleCellModel.m; sourceTree = "<group>"; };
- 2747713E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleCell.m; sourceTree = "<group>"; };
- 2747713F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleView.m; sourceTree = "<group>"; };
- 2747714024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryView.h; sourceTree = "<group>"; };
- 2747714224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageView.m; sourceTree = "<group>"; };
- 2747714324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageCell.m; sourceTree = "<group>"; };
- 2747714424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageCellModel.h; sourceTree = "<group>"; };
- 2747714524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageView.h; sourceTree = "<group>"; };
- 2747714624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageCell.h; sourceTree = "<group>"; };
- 2747714724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageCellModel.m; sourceTree = "<group>"; };
- 2747714924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberCellModel.h; sourceTree = "<group>"; };
- 2747714A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberView.m; sourceTree = "<group>"; };
- 2747714B24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberCell.m; sourceTree = "<group>"; };
- 2747714C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberCellModel.m; sourceTree = "<group>"; };
- 2747714D24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberView.h; sourceTree = "<group>"; };
- 2747714E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberCell.h; sourceTree = "<group>"; };
- 2747715024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryCollectionView.h; sourceTree = "<group>"; };
- 2747715124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorProtocol.h; sourceTree = "<group>"; };
- 2747715224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryViewDefines.h; sourceTree = "<group>"; };
- 2747715324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryFactory.m; sourceTree = "<group>"; };
- 2747715424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JXAdd.h"; sourceTree = "<group>"; };
- 2747715524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryCollectionView.m; sourceTree = "<group>"; };
- 2747715624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JXAdd.m"; sourceTree = "<group>"; };
- 2747715724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryFactory.h; sourceTree = "<group>"; };
- 2747715924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseView.h; sourceTree = "<group>"; };
- 2747715A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseCell.h; sourceTree = "<group>"; };
- 2747715B24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseCellModel.h; sourceTree = "<group>"; };
- 2747715C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseView.m; sourceTree = "<group>"; };
- 2747715D24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseCell.m; sourceTree = "<group>"; };
- 2747715E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseCellModel.m; sourceTree = "<group>"; };
- 2747715F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
- 2747716124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
- 2747716224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
- 2747716324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
- 2747716424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
- 2747716524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
- 2747716624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
- 2747716724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
- 2747716824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
- 2747716924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
- 2747716A24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
- 2747716B24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
- 2747716C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
- 2747716D24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
- 2747716E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
- 2747716F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
- 2747717024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
- 2747717124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
- 2747717224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
- 2747717324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
- 2747717424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
- 2747717524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
- 2747717624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
- 2747717724BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
- 2747717824BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
- 2747717924BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
- 2747717B24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
- 2747717C24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
- 2747717E24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
- 2747717F24BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
- 2747718024BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
- 2747718124BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
- 2747718224BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
- 2747718324BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
- 2747718424BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
- 2747718524BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
- 2747718624BC0C0400181362 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRequestManager.h; sourceTree = "<group>"; };
- 2747728424BC0D4200181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
- 2747728624BC0D4800181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
- 2747728824BC0D5200181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
- 2747728A24BC0D5800181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
- 2747728C24BC0D5F00181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- 2747728E24BC0D6500181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 2747729024BC0D6B00181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
- 2747729224BC0D7300181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
- 2747729424BC0D7A00181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 2747729624BC0D8000181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
- 2747729824BC0D8700181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
- 2747729A24BC0D8D00181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
- 2747729C24BC0D9300181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
- 2747729E24BC0D9B00181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
- 274772A024BC0DA000181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
- 274772A224BC0DA800181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
- 274772A424BC0DAE00181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 274772A624BC0DB500181362 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
- 274772A824BC0DC000181362 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
- 274772AA24BC0DC900181362 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- 274772AC24BC0DD000181362 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
- 274772AE24BC0DDE00181362 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
- 274772B024BC0DEB00181362 = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
- 2748F8EF24C05F4C003F8E11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamLibraryController.h; sourceTree = "<group>"; };
- 2748F8F024C05F4C003F8E11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamLibraryController.m; sourceTree = "<group>"; };
- 2748F8F224C1389F003F8E11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamLibraryListCell.h; sourceTree = "<group>"; };
- 2748F8F324C1389F003F8E11 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamLibraryListCell.m; sourceTree = "<group>"; };
- 2748F8F424C1389F003F8E11 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamLibraryListCell.xib; sourceTree = "<group>"; };
- 27544CF624BC337D00EF58AF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamTicketViewController.h; sourceTree = "<group>"; };
- 27544CF724BC337D00EF58AF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamTicketViewController.m; sourceTree = "<group>"; };
- 27544CF924BC338900EF58AF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCenterViewController.h; sourceTree = "<group>"; };
- 27544CFA24BC338900EF58AF = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserCenterViewController.m; sourceTree = "<group>"; };
- 277279DA25396EE800B329B8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KSVideoRecordViewController.h; sourceTree = "<group>"; };
- 277279DB25396EE800B329B8 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KSVideoRecordViewController.m; sourceTree = "<group>"; };
- 2774F24025184AB4003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimulationExamConfigController.h; sourceTree = "<group>"; };
- 2774F24125184AB4003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SimulationExamConfigController.m; sourceTree = "<group>"; };
- 2774F2BC251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
- 2774F2BD251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
- 2774F2BE251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
- 2774F2BF251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
- 2774F2C0251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
- 2774F2C1251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
- 2774F2C2251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
- 2774F2C3251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
- 2774F2C4251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
- 2774F2C5251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
- 2774F2C6251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Layout.m"; sourceTree = "<group>"; };
- 2774F2C7251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
- 2774F2C8251877DF003473A2 = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
- 2774F2C9251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
- 2774F2CA251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
- 2774F2CB251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
- 2774F2CC251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
- 2774F2CD251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
- 2774F2CE251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
- 2774F2CF251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
- 2774F2D0251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
- 2774F2D1251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
- 2774F2D2251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
- 2774F2D3251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
- 2774F2D4251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
- 2774F2D5251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Layout.h"; sourceTree = "<group>"; };
- 2774F2D6251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
- 2774F2D7251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
- 2774F2D8251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
- 2774F2D9251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
- 2774F2DA251877DF003473A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
- 2774F2F125187B18003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimulationWaitExamController.h; sourceTree = "<group>"; };
- 2774F2F225187B18003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SimulationWaitExamController.m; sourceTree = "<group>"; };
- 2774F2FA25189EFA003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimulationExamConfigView.h; sourceTree = "<group>"; };
- 2774F2FB25189EFA003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SimulationExamConfigView.m; sourceTree = "<group>"; };
- 2774F30025189F09003473A2 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SimulationExamConfigView.xib; sourceTree = "<group>"; };
- 2774F3052518B1D4003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimulationExamRecordController.h; sourceTree = "<group>"; };
- 2774F3062518B1D4003473A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SimulationExamRecordController.m; sourceTree = "<group>"; };
- 278D113224CA8E4D00599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamDisplayViewController.h; sourceTree = "<group>"; };
- 278D113324CA8E4D00599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamDisplayViewController.m; sourceTree = "<group>"; };
- 278D113524CADC4800599421 = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = System/Library/Frameworks/Photos.framework; sourceTree = SDKROOT; };
- 278D113724CFBACA00599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamGuideViewController.h; sourceTree = "<group>"; };
- 278D113824CFBACA00599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamGuideViewController.m; sourceTree = "<group>"; };
- 278D113A24CFC6A100599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamDeviceCheckView.h; sourceTree = "<group>"; };
- 278D113B24CFC6A200599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamDeviceCheckView.m; sourceTree = "<group>"; };
- 278D113D24CFC6B600599421 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamDeviceCheckView.xib; sourceTree = "<group>"; };
- 278D113F24CFD58800599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuideNextPageView.h; sourceTree = "<group>"; };
- 278D114024CFD58800599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GuideNextPageView.m; sourceTree = "<group>"; };
- 278D114224CFD59B00599421 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GuideNextPageView.xib; sourceTree = "<group>"; };
- 278D114424D0009000599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KSGuideMaskView.h; sourceTree = "<group>"; };
- 278D114524D0009000599421 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KSGuideMaskView.m; sourceTree = "<group>"; };
- 2794D1AE24BC604800BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
- 2794D1AF24BC604800BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
- 2794D1B124BC605600BAF6F3 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
- 2794D1B324BC662600BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VeriCheckView.h; sourceTree = "<group>"; };
- 2794D1B424BC662600BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VeriCheckView.m; sourceTree = "<group>"; };
- 2794D1B624BC699700BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegisterBodyView.h; sourceTree = "<group>"; };
- 2794D1B724BC699700BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RegisterBodyView.m; sourceTree = "<group>"; };
- 2794D1B924BC69A400BAF6F3 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RegisterBodyView.xib; sourceTree = "<group>"; };
- 2794D1BB24BD4CF800BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FSBodyView.h; sourceTree = "<group>"; };
- 2794D1BC24BD4CF800BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FSBodyView.m; sourceTree = "<group>"; };
- 2794D1BE24BD4D0C00BAF6F3 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FSBodyView.xib; sourceTree = "<group>"; };
- 2794D1C024BD60D500BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCenterBodyView.h; sourceTree = "<group>"; };
- 2794D1C124BD60D500BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserCenterBodyView.m; sourceTree = "<group>"; };
- 2794D1C324BD60E900BAF6F3 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserCenterBodyView.xib; sourceTree = "<group>"; };
- 2794D1C524BD62FB00BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ModifyBodyView.h; sourceTree = "<group>"; };
- 2794D1C624BD62FB00BAF6F3 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ModifyBodyView.m; sourceTree = "<group>"; };
- 2794D1C824BD631A00BAF6F3 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ModifyBodyView.xib; sourceTree = "<group>"; };
- 27A0089B24BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
- 27A0089C24BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
- 27A0089F24BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
- 27A008A024BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
- 27A008A124BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
- 27A008A224BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
- 27A008A324BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
- 27A008A424BD96C50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
- 27A008AB24BD96E50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
- 27A008AC24BD96E50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
- 27A008AD24BD96E50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
- 27A008B324BD97FE0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
- 27A008B424BD97FE0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
- 27A008B624BD98170002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
- 27A008B724BD98170002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
- 27A008C124BD99B10002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
- 27A008C224BD99B10002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
- 27A008C424BD99BD0002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserViewController.h; sourceTree = "<group>"; };
- 27A008C524BD99BD0002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserViewController.m; sourceTree = "<group>"; };
- 27A008C724BD9D550002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
- 27A008C824BD9D550002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
- 27A008CA24BD9E8A0002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingBodyView.h; sourceTree = "<group>"; };
- 27A008CB24BD9E8A0002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingBodyView.m; sourceTree = "<group>"; };
- 27A008CD24BD9E950002452B = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SettingBodyView.xib; sourceTree = "<group>"; };
- 27A008CF24BDA67E0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
- 27A008D024BDA67E0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
- 27A008D124BDA67E0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
- 27A008D224BDA67F0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
- 27A008D524BDA6940002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneChangeBodyView.xib; sourceTree = "<group>"; };
- 27A008D624BDA6940002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhoneChangeBodyView.m; sourceTree = "<group>"; };
- 27A008D724BDA6940002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhoneCheckBodyView.h; sourceTree = "<group>"; };
- 27A008D824BDA6950002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhoneChangeBodyView.h; sourceTree = "<group>"; };
- 27A008D924BDA6950002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhoneCheckBodyView.m; sourceTree = "<group>"; };
- 27A008DA24BDA6950002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneCheckBodyView.xib; sourceTree = "<group>"; };
- 27A008DF24BDA6B30002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
- 27A008E024BDA6B40002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
- 27A008E224BDA6C30002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FeedbackBodyView.xib; sourceTree = "<group>"; };
- 27A008E324BDA6C30002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackBodyView.m; sourceTree = "<group>"; };
- 27A008E424BDA6C40002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackBodyView.h; sourceTree = "<group>"; };
- 27A008E724BDA7070002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
- 27A008E824BDA7070002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
- 27A008EA24BDA70F0002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AboutBodyView.xib; sourceTree = "<group>"; };
- 27A008EB24BDA7100002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutBodyView.m; sourceTree = "<group>"; };
- 27A008EC24BDA7100002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutBodyView.h; sourceTree = "<group>"; };
- 27A008EF24BDB1E20002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SysUser.h; sourceTree = "<group>"; };
- 27A008F024BDB1E30002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SysUser.m; sourceTree = "<group>"; };
- 27A008F124BDB1E30002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
- 27A008F224BDB1E50002452B = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
- 27A008F524BDB6220002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserBodyView.h; sourceTree = "<group>"; };
- 27A008F624BDB6220002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserBodyView.m; sourceTree = "<group>"; };
- 27A008F824BDB6310002452B = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserBodyView.xib; sourceTree = "<group>"; };
- 27A008FA24BECDC40002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBodyView.h; sourceTree = "<group>"; };
- 27A008FB24BECDC40002452B = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBodyView.m; sourceTree = "<group>"; };
- 27A008FD24BECDFC0002452B = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBodyView.xib; sourceTree = "<group>"; };
- 27B9066A2542AFE900A1BEBF = {isa = PBXFileReference; lastKnownFileType = file; path = tips_second.caf; sourceTree = "<group>"; };
- 27B9066B2542AFE900A1BEBF = {isa = PBXFileReference; lastKnownFileType = file; path = tips_one.caf; sourceTree = "<group>"; };
- 27B9066C2542AFE900A1BEBF = {isa = PBXFileReference; lastKnownFileType = file; path = tips_third.caf; sourceTree = "<group>"; };
- 27D4149624CA741D000DBC0C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordExamModel.h; sourceTree = "<group>"; };
- 27D4149724CA741D000DBC0C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordExamModel.m; sourceTree = "<group>"; };
- 27D4149924CA757A000DBC0C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongModel.h; sourceTree = "<group>"; };
- 27D4149A24CA757A000DBC0C = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongModel.m; sourceTree = "<group>"; };
- 27DBF9D124D8F67B00202145 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KSStatusView.h; sourceTree = "<group>"; };
- 27DBF9D224D8F67B00202145 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KSStatusView.m; sourceTree = "<group>"; };
- 27DBF9D424DAAE6100202145 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamBottomView.h; sourceTree = "<group>"; };
- 27DBF9D524DAAE6100202145 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamBottomView.m; sourceTree = "<group>"; };
- 27DBF9D724DAAE7500202145 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitExamBottomView.xib; sourceTree = "<group>"; };
- 27E32B0024ECD9910007CA8F = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "酷乐秀.entitlements"; sourceTree = "<group>"; };
- 27E32B0124F4DF0D0007CA8F = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongRTCLib.framework; sourceTree = "<group>"; };
- 27E32B0824FE41B30007CA8F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubjectImageModel.h; sourceTree = "<group>"; };
- 27E32B0924FE41B30007CA8F = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubjectImageModel.m; sourceTree = "<group>"; };
- 27EF3EEC24BEE35E002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageListModel.h; sourceTree = "<group>"; };
- 27EF3EED24BEE35E002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageListModel.m; sourceTree = "<group>"; };
- 27EF3EEF24BEE885002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotifyMessageCell.h; sourceTree = "<group>"; };
- 27EF3EF024BEE885002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotifyMessageCell.m; sourceTree = "<group>"; };
- 27EF3EF124BEE885002068A2 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NotifyMessageCell.xib; sourceTree = "<group>"; };
- 27EF3EF424BEF1DA002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TicketBodyView.h; sourceTree = "<group>"; };
- 27EF3EF524BEF1DA002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TicketBodyView.m; sourceTree = "<group>"; };
- 27EF3EF724BEF1E8002068A2 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TicketBodyView.xib; sourceTree = "<group>"; };
- 27EF3EF924BEFC79002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamViewController.h; sourceTree = "<group>"; };
- 27EF3EFA24BEFC79002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamViewController.m; sourceTree = "<group>"; };
- 27EF3EFC24BF015A002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamBodyView.h; sourceTree = "<group>"; };
- 27EF3EFD24BF015A002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamBodyView.m; sourceTree = "<group>"; };
- 27EF3EFF24BF016B002068A2 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitExamBodyView.xib; sourceTree = "<group>"; };
- 27EF3F0124BF0F11002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketListModel.h; sourceTree = "<group>"; };
- 27EF3F0224BF0F12002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketListModel.m; sourceTree = "<group>"; };
- 27EF3F0424BFF8A0002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketDetailModel.m; sourceTree = "<group>"; };
- 27EF3F0524BFF8A1002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketDetailModel.h; sourceTree = "<group>"; };
- 27EF3F0724C02B3E002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalRenderManager.m; sourceTree = "<group>"; };
- 27EF3F0824C02B3F002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalRenderManager.h; sourceTree = "<group>"; };
- 27EF3F0B24C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTipsView.m; sourceTree = "<group>"; };
- 27EF3F0C24C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTipsView.h; sourceTree = "<group>"; };
- 27EF3F0E24C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNormalAlertView.h; sourceTree = "<group>"; };
- 27EF3F0F24C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNormalAlertView.m; sourceTree = "<group>"; };
- 27EF3F1124C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassTitleView.h; sourceTree = "<group>"; };
- 27EF3F1224C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassTitleView.m; sourceTree = "<group>"; };
- 27EF3F1424C02B67002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListView.h; sourceTree = "<group>"; };
- 27EF3F1524C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListCell.h; sourceTree = "<group>"; };
- 27EF3F1724C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListView.m; sourceTree = "<group>"; };
- 27EF3F1924C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListCell.m; sourceTree = "<group>"; };
- 27EF3F1B24C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainToolView.m; sourceTree = "<group>"; };
- 27EF3F1C24C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainToolView.h; sourceTree = "<group>"; };
- 27EF3F1E24C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomMainContainer.h; sourceTree = "<group>"; };
- 27EF3F1F24C02B68002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomMainContainer.m; sourceTree = "<group>"; };
- 27EF3F2824C02DE8002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmptyView.m; sourceTree = "<group>"; };
- 27EF3F2924C02DE9002068A2 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmptyView.h; sourceTree = "<group>"; };
- 27EF3F2B24C0384E002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeExamTicketCell.h; sourceTree = "<group>"; };
- 27EF3F2C24C0384E002068A2 = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeExamTicketCell.m; sourceTree = "<group>"; };
- 27EF3F2D24C0384E002068A2 = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeExamTicketCell.xib; sourceTree = "<group>"; };
- 2BB32BBE582672362BB6E017 = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig"; sourceTree = "<group>"; };
- 2F7D3758362ED28D51286A60 = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam.debug.xcconfig"; sourceTree = "<group>"; };
- 5402063E714DA9D9107F8070 = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExamTests.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExamTests/Pods-MusicGradeExamTests.debug.xcconfig"; sourceTree = "<group>"; };
- 8BAA64634BC925E7C2CD7008 = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExamTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- E19677AAD7D01861E10F49D5 = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExamTests.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExamTests/Pods-MusicGradeExamTests.release.xcconfig"; sourceTree = "<group>"; };
- E1DA29861866096EC2DBC683 = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig"; sourceTree = "<group>"; };
- F8D13E0A14104E75F7922812 = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExam-MusicGradeExamUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 27476F4024BBFB5900181362 = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 278D113624CADC4800599421 ,
- 274772B124BC0DEB00181362 ,
- 273EFB5E24DD36420069DB4D ,
- 274772AF24BC0DDF00181362 ,
- 274772AD24BC0DD000181362 ,
- 274772AB24BC0DC900181362 ,
- 27E32B0224F4DF0D0007CA8F ,
- 274772A924BC0DC100181362 ,
- 274772A724BC0DB500181362 ,
- 274772A524BC0DAE00181362 ,
- 274772A324BC0DA800181362 ,
- 274772A124BC0DA000181362 ,
- 2747729F24BC0D9B00181362 ,
- 2747729D24BC0D9300181362 ,
- 273EFB5F24DD36420069DB4D ,
- 2747729B24BC0D8D00181362 ,
- 2747729924BC0D8700181362 ,
- 2747729724BC0D8100181362 ,
- 2747729524BC0D7A00181362 ,
- 2747729324BC0D7300181362 ,
- 2747729124BC0D6C00181362 ,
- 2747728F24BC0D6500181362 ,
- 2747728D24BC0D5F00181362 ,
- 273EFB6124DD36420069DB4D ,
- 2747728B24BC0D5800181362 ,
- 2747728924BC0D5200181362 ,
- 2747728724BC0D4800181362 ,
- 273EFB6024DD36420069DB4D ,
- 273EFB6824DD36420069DB4D ,
- 2747728524BC0D4300181362 ,
- 52771C0027351695CEDB4C8E ,
- 273EFB6524DD36420069DB4D ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F5B24BBFB5C00181362 = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5577ECF41C84E1BDFEC99DBC ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F6624BBFB5C00181362 = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- A7C23B2E920E232C71C39B0E ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2729F7D424C81CA200E1F3C4 = {
- isa = PBXGroup;
- children = (
- 2729F7D524C81CA200E1F3C4 ,
- 2729F7D624C81CA300E1F3C4 ,
- 2729F7D724C81CA300E1F3C4 ,
- );
- path = RecordExam;
- sourceTree = "<group>";
- };
- 2729F7D524C81CA200E1F3C4 = {
- isa = PBXGroup;
- children = (
- 2729F7E524C8326900E1F3C4 ,
- 2729F7E624C8326900E1F3C4 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2729F7D624C81CA300E1F3C4 = {
- isa = PBXGroup;
- children = (
- 27D4149624CA741D000DBC0C ,
- 27D4149724CA741D000DBC0C ,
- 27D4149924CA757A000DBC0C ,
- 27D4149A24CA757A000DBC0C ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2729F7D724C81CA300E1F3C4 = {
- isa = PBXGroup;
- children = (
- 2729F7E824C8328700E1F3C4 ,
- 2729F7E924C8328700E1F3C4 ,
- 2729F7EB24C8329700E1F3C4 ,
- 2729F7F724C8425E00E1F3C4 ,
- 2729F7F824C8425E00E1F3C4 ,
- 2729F7FA24C8427100E1F3C4 ,
- 2729F7ED24C8379D00E1F3C4 ,
- 2729F7EE24C8379D00E1F3C4 ,
- 2729F7EF24C8379D00E1F3C4 ,
- 2729F7F224C8395300E1F3C4 ,
- 2729F7F324C8395300E1F3C4 ,
- 2729F7F524C8398B00E1F3C4 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 273EFB4D24DD36410069DB4D = {
- isa = PBXGroup;
- children = (
- 273EFB4E24DD36410069DB4D ,
- 273EFB4F24DD36410069DB4D ,
- 273EFB5024DD36410069DB4D ,
- 273EFB5124DD36410069DB4D ,
- 273EFB5224DD36410069DB4D ,
- );
- path = IMLib;
- sourceTree = "<group>";
- };
- 273EFB5324DD36410069DB4D = {
- isa = PBXGroup;
- children = (
- 273EFB5424DD36410069DB4D ,
- 273EFB5524DD36410069DB4D ,
- 273EFB5824DD36410069DB4D ,
- 273EFB5924DD36410069DB4D ,
- 273EFB5A24DD36410069DB4D ,
- );
- path = IMKit;
- sourceTree = "<group>";
- };
- 273EFB5B24DD36410069DB4D = {
- isa = PBXGroup;
- children = (
- 273EFB5C24DD36410069DB4D ,
- );
- path = Sight;
- sourceTree = "<group>";
- };
- 27476F3A24BBFB5900181362 = {
- isa = PBXGroup;
- children = (
- 27476F4524BBFB5900181362 ,
- 27476F6124BBFB5C00181362 ,
- 27476F6C24BBFB5C00181362 ,
- 27476F4424BBFB5900181362 ,
- 3765A35FA865CF0E79E4496A ,
- 8478281B4E8B1E1D71EF685C ,
- );
- sourceTree = "<group>";
- };
- 27476F4424BBFB5900181362 = {
- isa = PBXGroup;
- children = (
- 27476F4324BBFB5900181362 ,
- 27476F5E24BBFB5C00181362 ,
- 27476F6924BBFB5C00181362 ,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 27476F4524BBFB5900181362 = {
- isa = PBXGroup;
- children = (
- 27B9065D2542ABE000A1BEBF ,
- 27E32B0024ECD9910007CA8F ,
- 2747718624BC0C0400181362 ,
- 2747700224BC0C0000181362 ,
- 2747707524BC0C0200181362 ,
- 2747700324BC0C0100181362 ,
- 27476FF524BC0C0000181362 ,
- 2747707E24BC0C0200181362 ,
- 27476F7B24BC0BFF00181362 ,
- 2747708224BC0C0300181362 ,
- 27476F4624BBFB5900181362 ,
- 27476F4724BBFB5900181362 ,
- 27476F4C24BBFB5900181362 ,
- 27476F4D24BBFB5900181362 ,
- 27476F4F24BBFB5900181362 ,
- 27476F5224BBFB5C00181362 ,
- 27476F5424BBFB5C00181362 ,
- 27476F5724BBFB5C00181362 ,
- 27476F5824BBFB5C00181362 ,
- 2747726624BC0C7C00181362 ,
- );
- path = MusicGradeExam;
- sourceTree = "<group>";
- };
- 27476F6124BBFB5C00181362 = {
- isa = PBXGroup;
- children = (
- 27476F6224BBFB5C00181362 ,
- 27476F6424BBFB5C00181362 ,
- );
- path = MusicGradeExamTests;
- sourceTree = "<group>";
- };
- 27476F6C24BBFB5C00181362 = {
- isa = PBXGroup;
- children = (
- 27476F6D24BBFB5C00181362 ,
- 27476F6F24BBFB5C00181362 ,
- );
- path = MusicGradeExamUITests;
- sourceTree = "<group>";
- };
- 27476F7B24BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 2774F2BB251877DF003473A2 ,
- 27476FE124BC0BFF00181362 ,
- 27476FD524BC0BFF00181362 ,
- 27476F7D24BC0BFF00181362 ,
- 27476FCF24BC0BFF00181362 ,
- 27476F7C24BC0BFF00181362 ,
- 27476F8A24BC0BFF00181362 ,
- 27476FDE24BC0BFF00181362 ,
- 27476FB224BC0BFF00181362 ,
- 27476F7E24BC0BFF00181362 ,
- 27476FE024BC0BFF00181362 ,
- 27476FDD24BC0BFF00181362 ,
- 27476FAB24BC0BFF00181362 ,
- 27476FD624BC0BFF00181362 ,
- 27476FF424BC0BFF00181362 ,
- 27476FCE24BC0BFF00181362 ,
- 27476FDF24BC0BFF00181362 ,
- 27476F8924BC0BFF00181362 ,
- 27476F7F24BC0BFF00181362 ,
- 27476FD024BC0BFF00181362 ,
- );
- path = ThirdPart;
- sourceTree = "<group>";
- };
- 27476F7F24BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 27476F8024BC0BFF00181362 ,
- 27476F8124BC0BFF00181362 ,
- 27476F8224BC0BFF00181362 ,
- 27476F8324BC0BFF00181362 ,
- 27476F8424BC0BFF00181362 ,
- 27476F8524BC0BFF00181362 ,
- 27476F8624BC0BFF00181362 ,
- 27476F8724BC0BFF00181362 ,
- 27476F8824BC0BFF00181362 ,
- );
- path = WMPlayer;
- sourceTree = "<group>";
- };
- 27476FAB24BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 27476FAC24BC0BFF00181362 ,
- 27476FAD24BC0BFF00181362 ,
- 27476FAE24BC0BFF00181362 ,
- 27476FAF24BC0BFF00181362 ,
- 27476FB024BC0BFF00181362 ,
- 27476FB124BC0BFF00181362 ,
- );
- path = SCIndexView;
- sourceTree = "<group>";
- };
- 27476FB224BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 27476FB324BC0BFF00181362 ,
- 27476FB424BC0BFF00181362 ,
- 27476FB524BC0BFF00181362 ,
- 27476FB624BC0BFF00181362 ,
- 27476FB724BC0BFF00181362 ,
- 27476FB824BC0BFF00181362 ,
- 27476FB924BC0BFF00181362 ,
- 27476FBA24BC0BFF00181362 ,
- 27476FBB24BC0BFF00181362 ,
- 27476FBC24BC0BFF00181362 ,
- 27476FBD24BC0BFF00181362 ,
- 27476FBE24BC0BFF00181362 ,
- 27476FBF24BC0BFF00181362 ,
- 27476FC024BC0BFF00181362 ,
- 27476FC124BC0BFF00181362 ,
- 27476FC224BC0BFF00181362 ,
- 27476FC324BC0BFF00181362 ,
- 27476FC424BC0BFF00181362 ,
- 27476FC524BC0BFF00181362 ,
- 27476FC624BC0BFF00181362 ,
- 27476FC724BC0BFF00181362 ,
- 27476FC824BC0BFF00181362 ,
- 27476FC924BC0BFF00181362 ,
- 27476FCA24BC0BFF00181362 ,
- 27476FCB24BC0BFF00181362 ,
- 27476FCC24BC0BFF00181362 ,
- 27476FCD24BC0BFF00181362 ,
- );
- path = MSSBrowse;
- sourceTree = "<group>";
- };
- 27476FD024BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 27476FD124BC0BFF00181362 ,
- 27476FD224BC0BFF00181362 ,
- 27476FD324BC0BFF00181362 ,
- 27476FD424BC0BFF00181362 ,
- );
- path = ZKCycleScrollView;
- sourceTree = "<group>";
- };
- 27476FD624BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 27476FD724BC0BFF00181362 ,
- 27476FD824BC0BFF00181362 ,
- 27476FD924BC0BFF00181362 ,
- 27476FDA24BC0BFF00181362 ,
- 27476FDB24BC0BFF00181362 ,
- 27476FDC24BC0BFF00181362 ,
- );
- path = TYCyclePagerView;
- sourceTree = "<group>";
- };
- 27476FDD24BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- );
- path = QWNavigationBar;
- sourceTree = "<group>";
- };
- 27476FE124BC0BFF00181362 = {
- isa = PBXGroup;
- children = (
- 27476FE224BC0BFF00181362 ,
- 27476FE324BC0BFF00181362 ,
- 27476FE424BC0BFF00181362 ,
- 27476FE524BC0BFF00181362 ,
- 27476FE624BC0BFF00181362 ,
- 27476FE724BC0BFF00181362 ,
- 27476FE824BC0BFF00181362 ,
- 27476FE924BC0BFF00181362 ,
- 27476FEA24BC0BFF00181362 ,
- 27476FEB24BC0BFF00181362 ,
- 27476FEC24BC0BFF00181362 ,
- 27476FED24BC0BFF00181362 ,
- 27476FEE24BC0BFF00181362 ,
- 27476FEF24BC0BFF00181362 ,
- 27476FF024BC0BFF00181362 ,
- 27476FF124BC0BFF00181362 ,
- 27476FF224BC0BFF00181362 ,
- 27476FF324BC0BFF00181362 ,
- );
- path = ALCalendarPicker;
- sourceTree = "<group>";
- };
- 27476FF524BC0C0000181362 = {
- isa = PBXGroup;
- children = (
- 27A008C724BD9D550002452B ,
- 27A008C824BD9D550002452B ,
- 27476FF824BC0C0000181362 ,
- 27476FFF24BC0C0000181362 ,
- 27476FF724BC0C0000181362 ,
- 27476FFC24BC0C0000181362 ,
- 27476FF924BC0C0000181362 ,
- 27476FFE24BC0C0000181362 ,
- 27476FFA24BC0C0000181362 ,
- 2747700124BC0C0000181362 ,
- 27476FFB24BC0C0000181362 ,
- 2747700024BC0C0000181362 ,
- );
- path = Base;
- sourceTree = "<group>";
- };
- 2747700324BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 277279D925396E5C00B329B8 ,
- 2729F7D424C81CA200E1F3C4 ,
- 2747700424BC0C0100181362 ,
- 2748F8EB24C05F30003F8E11 ,
- 2747705624BC0C0100181362 ,
- 2747700A24BC0C0100181362 ,
- 2747700E24BC0C0100181362 ,
- 2747705A24BC0C0100181362 ,
- 2747706024BC0C0100181362 ,
- );
- path = UI;
- sourceTree = "<group>";
- };
- 2747700424BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2774F23C25184A48003473A2 ,
- 2747700524BC0C0100181362 ,
- 2747700824BC0C0100181362 ,
- 2747700924BC0C0100181362 ,
- );
- path = Home;
- sourceTree = "<group>";
- };
- 2747700524BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747700724BC0C0100181362 ,
- 2747700624BC0C0100181362 ,
- 278D113224CA8E4D00599421 ,
- 278D113324CA8E4D00599421 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2747700824BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747700924BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27A008FA24BECDC40002452B ,
- 27A008FB24BECDC40002452B ,
- 27A008FD24BECDFC0002452B ,
- 27EF3F2B24C0384E002068A2 ,
- 27EF3F2C24C0384E002068A2 ,
- 27EF3F2D24C0384E002068A2 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747700A24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27A008BD24BD99820002452B ,
- 27A008B924BD99620002452B ,
- 27A0089924BD96C50002452B ,
- 27A008AA24BD96E50002452B ,
- 2747700B24BC0C0100181362 ,
- 2747700C24BC0C0100181362 ,
- 2747700D24BC0C0100181362 ,
- );
- path = UserCenter;
- sourceTree = "<group>";
- };
- 2747700B24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27544CF924BC338900EF58AF ,
- 27544CFA24BC338900EF58AF ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2747700C24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747700D24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2794D1C024BD60D500BAF6F3 ,
- 2794D1C124BD60D500BAF6F3 ,
- 2794D1C324BD60E900BAF6F3 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747700E24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747700F24BC0C0100181362 ,
- 2747701224BC0C0100181362 ,
- 2747701524BC0C0100181362 ,
- 2747701624BC0C0100181362 ,
- );
- path = Classroom;
- sourceTree = "<group>";
- };
- 2747700F24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747701124BC0C0100181362 ,
- 2747701024BC0C0100181362 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2747701224BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27EF3F0824C02B3F002068A2 ,
- 27EF3F0724C02B3E002068A2 ,
- 2747701324BC0C0100181362 ,
- 2747701424BC0C0100181362 ,
- 27E32B0824FE41B30007CA8F ,
- 27E32B0924FE41B30007CA8F ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747701524BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27EF3F1D24C02B68002068A2 ,
- 27EF3F1A24C02B68002068A2 ,
- 27EF3F0D24C02B67002068A2 ,
- 27EF3F0A24C02B67002068A2 ,
- 27EF3F1024C02B67002068A2 ,
- 27EF3F1324C02B67002068A2 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747701624BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747701B24BC0C0100181362 ,
- 2747705324BC0C0100181362 ,
- 2747701724BC0C0100181362 ,
- 2747705224BC0C0100181362 ,
- 2747701824BC0C0100181362 ,
- );
- path = Service;
- sourceTree = "<group>";
- };
- 2747701824BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747701A24BC0C0100181362 ,
- 2747701924BC0C0100181362 ,
- );
- path = RTCService;
- sourceTree = "<group>";
- };
- 2747701B24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747705024BC0C0100181362 ,
- 2747702D24BC0C0100181362 ,
- 2747705124BC0C0100181362 ,
- 2747702E24BC0C0100181362 ,
- 2747704924BC0C0100181362 ,
- 2747701C24BC0C0100181362 ,
- );
- path = Classroom;
- sourceTree = "<group>";
- };
- 2747701C24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747701D24BC0C0100181362 ,
- 2747701E24BC0C0100181362 ,
- 2747702124BC0C0100181362 ,
- 2747702424BC0C0100181362 ,
- 2747702524BC0C0100181362 ,
- 2747702A24BC0C0100181362 ,
- );
- path = Util;
- sourceTree = "<group>";
- };
- 2747701E24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747701F24BC0C0100181362 ,
- 2747702024BC0C0100181362 ,
- );
- path = Category;
- sourceTree = "<group>";
- };
- 2747702124BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747702224BC0C0100181362 ,
- 2747702324BC0C0100181362 ,
- );
- path = Portrait;
- sourceTree = "<group>";
- };
- 2747702524BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747702924BC0C0100181362 ,
- 2747702724BC0C0100181362 ,
- 2747702824BC0C0100181362 ,
- 2747702624BC0C0100181362 ,
- );
- path = HTTP;
- sourceTree = "<group>";
- };
- 2747702A24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747702E24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747704424BC0C0100181362 ,
- 2747703224BC0C0100181362 ,
- 2747703324BC0C0100181362 ,
- 2747704324BC0C0100181362 ,
- 2747703024BC0C0100181362 ,
- 2747703C24BC0C0100181362 ,
- 2747703F24BC0C0100181362 ,
- 2747703724BC0C0100181362 ,
- 2747703624BC0C0100181362 ,
- 2747704024BC0C0100181362 ,
- 2747704224BC0C0100181362 ,
- 2747703424BC0C0100181362 ,
- 2747703124BC0C0100181362 ,
- 2747703E24BC0C0100181362 ,
- 2747703524BC0C0100181362 ,
- 2747704124BC0C0100181362 ,
- 2747703924BC0C0100181362 ,
- 2747704724BC0C0100181362 ,
- 2747702F24BC0C0100181362 ,
- 2747703D24BC0C0100181362 ,
- 2747704824BC0C0100181362 ,
- 2747703824BC0C0100181362 ,
- 2747703A24BC0C0100181362 ,
- 2747704624BC0C0100181362 ,
- 2747704524BC0C0100181362 ,
- 2747703B24BC0C0100181362 ,
- );
- path = Message;
- sourceTree = "<group>";
- };
- 2747704924BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747704E24BC0C0100181362 ,
- 2747704C24BC0C0100181362 ,
- 2747704F24BC0C0100181362 ,
- 2747704B24BC0C0100181362 ,
- 2747704D24BC0C0100181362 ,
- 2747704A24BC0C0100181362 ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747705324BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747705424BC0C0100181362 ,
- 2747705524BC0C0100181362 ,
- );
- path = IM;
- sourceTree = "<group>";
- };
- 2747705624BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747705724BC0C0100181362 ,
- 2747705824BC0C0100181362 ,
- 2747705924BC0C0100181362 ,
- );
- path = Exam;
- sourceTree = "<group>";
- };
- 2747705724BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27544CF624BC337D00EF58AF ,
- 27544CF724BC337D00EF58AF ,
- 27EF3EF924BEFC79002068A2 ,
- 27EF3EFA24BEFC79002068A2 ,
- 278D113724CFBACA00599421 ,
- 278D113824CFBACA00599421 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2747705824BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27EF3F0124BF0F11002068A2 ,
- 27EF3F0224BF0F12002068A2 ,
- 27EF3F0524BFF8A1002068A2 ,
- 27EF3F0424BFF8A0002068A2 ,
- 273EFB6E24E672830069DB4D ,
- 273EFB6F24E672830069DB4D ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747705924BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27EF3EF424BEF1DA002068A2 ,
- 27EF3EF524BEF1DA002068A2 ,
- 27EF3EF724BEF1E8002068A2 ,
- 27EF3EFC24BF015A002068A2 ,
- 27EF3EFD24BF015A002068A2 ,
- 27EF3EFF24BF016B002068A2 ,
- 27DBF9D424DAAE6100202145 ,
- 27DBF9D524DAAE6100202145 ,
- 27DBF9D724DAAE7500202145 ,
- 278D113A24CFC6A100599421 ,
- 278D113B24CFC6A200599421 ,
- 278D113D24CFC6B600599421 ,
- 278D113F24CFD58800599421 ,
- 278D114024CFD58800599421 ,
- 278D114224CFD59B00599421 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747705A24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747705B24BC0C0100181362 ,
- 2747705E24BC0C0100181362 ,
- 2747705F24BC0C0100181362 ,
- );
- path = NotiferMessage;
- sourceTree = "<group>";
- };
- 2747705B24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747705C24BC0C0100181362 ,
- 2747705D24BC0C0100181362 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2747705E24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27EF3EEC24BEE35E002068A2 ,
- 27EF3EED24BEE35E002068A2 ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747705F24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 27EF3EEF24BEE885002068A2 ,
- 27EF3EF024BEE885002068A2 ,
- 27EF3EF124BEE885002068A2 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747706024BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747706124BC0C0100181362 ,
- 2747706C24BC0C0100181362 ,
- 2747707124BC0C0100181362 ,
- );
- path = Login;
- sourceTree = "<group>";
- };
- 2747706124BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747706A24BC0C0100181362 ,
- 2747706424BC0C0100181362 ,
- 2747706924BC0C0100181362 ,
- 2747706524BC0C0100181362 ,
- 2747706224BC0C0100181362 ,
- 2747706824BC0C0100181362 ,
- 2747706B24BC0C0100181362 ,
- 2747706624BC0C0100181362 ,
- 2747706324BC0C0100181362 ,
- 2747706724BC0C0100181362 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2747706C24BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747706E24BC0C0100181362 ,
- 2747706F24BC0C0100181362 ,
- 27A008EF24BDB1E20002452B ,
- 27A008F024BDB1E30002452B ,
- 27A008F124BDB1E30002452B ,
- 27A008F224BDB1E50002452B ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2747707124BC0C0100181362 = {
- isa = PBXGroup;
- children = (
- 2747707424BC0C0100181362 ,
- 2747707224BC0C0100181362 ,
- 2747707324BC0C0100181362 ,
- 2794D1AE24BC604800BAF6F3 ,
- 2794D1AF24BC604800BAF6F3 ,
- 2794D1B124BC605600BAF6F3 ,
- 2794D1B324BC662600BAF6F3 ,
- 2794D1B424BC662600BAF6F3 ,
- 2794D1B624BC699700BAF6F3 ,
- 2794D1B724BC699700BAF6F3 ,
- 2794D1B924BC69A400BAF6F3 ,
- 2794D1BB24BD4CF800BAF6F3 ,
- 2794D1BC24BD4CF800BAF6F3 ,
- 2794D1BE24BD4D0C00BAF6F3 ,
- 2794D1C524BD62FB00BAF6F3 ,
- 2794D1C624BD62FB00BAF6F3 ,
- 2794D1C824BD631A00BAF6F3 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2747707524BC0C0200181362 = {
- isa = PBXGroup;
- children = (
- 2747707724BC0C0200181362 ,
- 2747707A24BC0C0200181362 ,
- 2747707924BC0C0200181362 ,
- 2747707D24BC0C0200181362 ,
- 2747707B24BC0C0200181362 ,
- 2747707624BC0C0200181362 ,
- 2747707824BC0C0200181362 ,
- 2747707C24BC0C0200181362 ,
- );
- path = Manager;
- sourceTree = "<group>";
- };
- 2747707E24BC0C0200181362 = {
- isa = PBXGroup;
- children = (
- 2747707F24BC0C0200181362 ,
- 2747708024BC0C0200181362 ,
- 2747708124BC0C0200181362 ,
- );
- path = Define;
- sourceTree = "<group>";
- };
- 2747708224BC0C0300181362 = {
- isa = PBXGroup;
- children = (
- 2747708324BC0C0300181362 ,
- 2747709124BC0C0300181362 ,
- 274770A124BC0C0300181362 ,
- 274770D824BC0C0400181362 ,
- 274770F524BC0C0400181362 ,
- );
- path = Tools;
- sourceTree = "<group>";
- };
- 2747708324BC0C0300181362 = {
- isa = PBXGroup;
- children = (
- 2747708624BC0C0300181362 ,
- 2747708F24BC0C0300181362 ,
- 2747708524BC0C0300181362 ,
- 2747709024BC0C0300181362 ,
- 2747708424BC0C0300181362 ,
- );
- path = NetworkManager;
- sourceTree = "<group>";
- };
- 2747708624BC0C0300181362 = {
- isa = PBXGroup;
- children = (
- 2747708924BC0C0300181362 ,
- 2747708E24BC0C0300181362 ,
- 2747708A24BC0C0300181362 ,
- 2747708D24BC0C0300181362 ,
- 2747708724BC0C0300181362 ,
- 2747708B24BC0C0300181362 ,
- 2747708824BC0C0300181362 ,
- 2747708C24BC0C0300181362 ,
- );
- path = Cache;
- sourceTree = "<group>";
- };
- 2747709124BC0C0300181362 = {
- isa = PBXGroup;
- children = (
- 2747709224BC0C0300181362 ,
- 2747709324BC0C0300181362 ,
- 2747709424BC0C0300181362 ,
- 2747709524BC0C0300181362 ,
- 2747709624BC0C0300181362 ,
- 2747709724BC0C0300181362 ,
- 2747709824BC0C0300181362 ,
- 2747709924BC0C0300181362 ,
- 2747709A24BC0C0300181362 ,
- 2747709B24BC0C0300181362 ,
- 2747709C24BC0C0300181362 ,
- 2747709D24BC0C0300181362 ,
- 2747709E24BC0C0300181362 ,
- 2747709F24BC0C0300181362 ,
- 274770A024BC0C0300181362 ,
- );
- path = SafeControl;
- sourceTree = "<group>";
- };
- 274770A124BC0C0300181362 = {
- isa = PBXGroup;
- children = (
- 274770A224BC0C0300181362 ,
- 274770A324BC0C0300181362 ,
- 274770A424BC0C0300181362 ,
- 274770A524BC0C0300181362 ,
- 274770A624BC0C0300181362 ,
- 274770A724BC0C0300181362 ,
- 274770A824BC0C0300181362 ,
- 274770A924BC0C0300181362 ,
- 274770AA24BC0C0300181362 ,
- 274770AB24BC0C0300181362 ,
- 274770AC24BC0C0300181362 ,
- 274770AD24BC0C0300181362 ,
- 274770AE24BC0C0300181362 ,
- 274770AF24BC0C0300181362 ,
- 274770B024BC0C0300181362 ,
- 274770B124BC0C0300181362 ,
- 274770B224BC0C0300181362 ,
- 274770B324BC0C0300181362 ,
- 274770B424BC0C0300181362 ,
- 274770B524BC0C0300181362 ,
- 274770B624BC0C0300181362 ,
- 274770B724BC0C0300181362 ,
- 274770B824BC0C0300181362 ,
- 274770B924BC0C0300181362 ,
- 274770BA24BC0C0300181362 ,
- 274770BB24BC0C0300181362 ,
- 274770BC24BC0C0300181362 ,
- 274770BD24BC0C0300181362 ,
- 274770BE24BC0C0300181362 ,
- 274770BF24BC0C0300181362 ,
- 274770C024BC0C0300181362 ,
- 274770C124BC0C0300181362 ,
- 274770C224BC0C0300181362 ,
- 274770C324BC0C0300181362 ,
- 274770C424BC0C0300181362 ,
- 274770C524BC0C0300181362 ,
- 274770C624BC0C0300181362 ,
- 274770C724BC0C0300181362 ,
- 274770C824BC0C0300181362 ,
- 274770C924BC0C0300181362 ,
- 274770CA24BC0C0300181362 ,
- 274770CB24BC0C0300181362 ,
- 274770CC24BC0C0300181362 ,
- 274770CD24BC0C0300181362 ,
- 274770CE24BC0C0300181362 ,
- 274770CF24BC0C0300181362 ,
- 274770D024BC0C0300181362 ,
- 274770D124BC0C0300181362 ,
- 274770D224BC0C0300181362 ,
- 274770D324BC0C0300181362 ,
- 274770D424BC0C0300181362 ,
- 274770D524BC0C0300181362 ,
- 274770D624BC0C0300181362 ,
- 274770D724BC0C0300181362 ,
- );
- path = Extension;
- sourceTree = "<group>";
- };
- 274770D824BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 274770D924BC0C0400181362 ,
- 274770DA24BC0C0400181362 ,
- 274770DB24BC0C0400181362 ,
- 274770DC24BC0C0400181362 ,
- 274770DD24BC0C0400181362 ,
- 274770DE24BC0C0400181362 ,
- 274770DF24BC0C0400181362 ,
- 274770E024BC0C0400181362 ,
- 274770E124BC0C0400181362 ,
- 274770E224BC0C0400181362 ,
- 274770E324BC0C0400181362 ,
- 274770E424BC0C0400181362 ,
- 274770E524BC0C0400181362 ,
- 274770E624BC0C0400181362 ,
- 274770E724BC0C0400181362 ,
- 274770E824BC0C0400181362 ,
- 274770E924BC0C0400181362 ,
- 274770EA24BC0C0400181362 ,
- 274770EB24BC0C0400181362 ,
- 274770EC24BC0C0400181362 ,
- 274770ED24BC0C0400181362 ,
- 274770EE24BC0C0400181362 ,
- 274770EF24BC0C0400181362 ,
- 274770F024BC0C0400181362 ,
- 274770F124BC0C0400181362 ,
- 274770F224BC0C0400181362 ,
- 274770F324BC0C0400181362 ,
- 274770F424BC0C0400181362 ,
- );
- path = Category;
- sourceTree = "<group>";
- };
- 274770F524BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747716E24BC0C0400181362 ,
- 274770F624BC0C0400181362 ,
- 274770F724BC0C0400181362 ,
- 2747716D24BC0C0400181362 ,
- 2747710C24BC0C0400181362 ,
- 2747717324BC0C0400181362 ,
- 274770F824BC0C0400181362 ,
- 2747717124BC0C0400181362 ,
- 2747710724BC0C0400181362 ,
- 2747710624BC0C0400181362 ,
- 2747717224BC0C0400181362 ,
- 2747716024BC0C0400181362 ,
- 2747716C24BC0C0400181362 ,
- 2747717724BC0C0400181362 ,
- 2747716F24BC0C0400181362 ,
- 2747710924BC0C0400181362 ,
- 2747710A24BC0C0400181362 ,
- 2747717624BC0C0400181362 ,
- 2747717A24BC0C0400181362 ,
- 2747717424BC0C0400181362 ,
- 2747715F24BC0C0400181362 ,
- 2747716A24BC0C0400181362 ,
- 2747717924BC0C0400181362 ,
- 2747710B24BC0C0400181362 ,
- 2747717524BC0C0400181362 ,
- 2747710824BC0C0400181362 ,
- 2747717024BC0C0400181362 ,
- 274770F924BC0C0400181362 ,
- 2747716B24BC0C0400181362 ,
- 2747717824BC0C0400181362 ,
- 27DBF9D124D8F67B00202145 ,
- 27DBF9D224D8F67B00202145 ,
- 278D114424D0009000599421 ,
- 278D114524D0009000599421 ,
- );
- path = Custom;
- sourceTree = "<group>";
- };
- 274770F924BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 274770FA24BC0C0400181362 ,
- 274770FB24BC0C0400181362 ,
- 274770FC24BC0C0400181362 ,
- 274770FD24BC0C0400181362 ,
- 274770FE24BC0C0400181362 ,
- 274770FF24BC0C0400181362 ,
- 2747710024BC0C0400181362 ,
- 2747710124BC0C0400181362 ,
- 2747710224BC0C0400181362 ,
- 2747710324BC0C0400181362 ,
- 2747710424BC0C0400181362 ,
- 2747710524BC0C0400181362 ,
- );
- path = PressRecord;
- sourceTree = "<group>";
- };
- 2747710C24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747710D24BC0C0400181362 ,
- 2747711624BC0C0400181362 ,
- );
- path = JXView;
- sourceTree = "<group>";
- };
- 2747710D24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747711324BC0C0400181362 ,
- 2747710E24BC0C0400181362 ,
- 2747711124BC0C0400181362 ,
- 2747711524BC0C0400181362 ,
- 2747711424BC0C0400181362 ,
- 2747710F24BC0C0400181362 ,
- 2747711224BC0C0400181362 ,
- 2747711024BC0C0400181362 ,
- );
- path = JXPagerView;
- sourceTree = "<group>";
- };
- 2747711624BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747711724BC0C0400181362 ,
- 2747712B24BC0C0400181362 ,
- 2747713224BC0C0400181362 ,
- 2747713924BC0C0400181362 ,
- 2747714024BC0C0400181362 ,
- 2747714124BC0C0400181362 ,
- 2747714824BC0C0400181362 ,
- 2747714F24BC0C0400181362 ,
- 2747715824BC0C0400181362 ,
- );
- path = JXCategoryView;
- sourceTree = "<group>";
- };
- 2747711724BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747711824BC0C0400181362 ,
- 2747711924BC0C0400181362 ,
- 2747711A24BC0C0400181362 ,
- 2747711B24BC0C0400181362 ,
- 2747712824BC0C0400181362 ,
- 2747712924BC0C0400181362 ,
- 2747712A24BC0C0400181362 ,
- );
- path = Indicator;
- sourceTree = "<group>";
- };
- 2747711B24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747711C24BC0C0400181362 ,
- 2747711D24BC0C0400181362 ,
- 2747711E24BC0C0400181362 ,
- 2747711F24BC0C0400181362 ,
- 2747712024BC0C0400181362 ,
- 2747712124BC0C0400181362 ,
- 2747712224BC0C0400181362 ,
- 2747712324BC0C0400181362 ,
- 2747712424BC0C0400181362 ,
- 2747712524BC0C0400181362 ,
- 2747712624BC0C0400181362 ,
- 2747712724BC0C0400181362 ,
- );
- path = IndicatorViews;
- sourceTree = "<group>";
- };
- 2747712B24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747712C24BC0C0400181362 ,
- 2747712D24BC0C0400181362 ,
- 2747712E24BC0C0400181362 ,
- 2747712F24BC0C0400181362 ,
- 2747713024BC0C0400181362 ,
- 2747713124BC0C0400181362 ,
- );
- path = Dot;
- sourceTree = "<group>";
- };
- 2747713224BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747713324BC0C0400181362 ,
- 2747713424BC0C0400181362 ,
- 2747713524BC0C0400181362 ,
- 2747713624BC0C0400181362 ,
- 2747713724BC0C0400181362 ,
- 2747713824BC0C0400181362 ,
- );
- path = TitleImage;
- sourceTree = "<group>";
- };
- 2747713924BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747713A24BC0C0400181362 ,
- 2747713B24BC0C0400181362 ,
- 2747713C24BC0C0400181362 ,
- 2747713D24BC0C0400181362 ,
- 2747713E24BC0C0400181362 ,
- 2747713F24BC0C0400181362 ,
- );
- path = Title;
- sourceTree = "<group>";
- };
- 2747714124BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747714224BC0C0400181362 ,
- 2747714324BC0C0400181362 ,
- 2747714424BC0C0400181362 ,
- 2747714524BC0C0400181362 ,
- 2747714624BC0C0400181362 ,
- 2747714724BC0C0400181362 ,
- );
- path = Image;
- sourceTree = "<group>";
- };
- 2747714824BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747714924BC0C0400181362 ,
- 2747714A24BC0C0400181362 ,
- 2747714B24BC0C0400181362 ,
- 2747714C24BC0C0400181362 ,
- 2747714D24BC0C0400181362 ,
- 2747714E24BC0C0400181362 ,
- );
- path = Number;
- sourceTree = "<group>";
- };
- 2747714F24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747715024BC0C0400181362 ,
- 2747715124BC0C0400181362 ,
- 2747715224BC0C0400181362 ,
- 2747715324BC0C0400181362 ,
- 2747715424BC0C0400181362 ,
- 2747715524BC0C0400181362 ,
- 2747715624BC0C0400181362 ,
- 2747715724BC0C0400181362 ,
- );
- path = Common;
- sourceTree = "<group>";
- };
- 2747715824BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747715924BC0C0400181362 ,
- 2747715A24BC0C0400181362 ,
- 2747715B24BC0C0400181362 ,
- 2747715C24BC0C0400181362 ,
- 2747715D24BC0C0400181362 ,
- 2747715E24BC0C0400181362 ,
- );
- path = Base;
- sourceTree = "<group>";
- };
- 2747716024BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747716124BC0C0400181362 ,
- 2747716224BC0C0400181362 ,
- 2747716324BC0C0400181362 ,
- 2747716424BC0C0400181362 ,
- 2747716524BC0C0400181362 ,
- 2747716624BC0C0400181362 ,
- 2747716724BC0C0400181362 ,
- 2747716824BC0C0400181362 ,
- 2747716924BC0C0400181362 ,
- );
- path = KSInputView;
- sourceTree = "<group>";
- };
- 2747717A24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747717B24BC0C0400181362 ,
- 2747717C24BC0C0400181362 ,
- 2747717D24BC0C0400181362 ,
- 2747718224BC0C0400181362 ,
- 2747718324BC0C0400181362 ,
- 2747718424BC0C0400181362 ,
- 2747718524BC0C0400181362 ,
- );
- path = LLPhotoBrowser;
- sourceTree = "<group>";
- };
- 2747717D24BC0C0400181362 = {
- isa = PBXGroup;
- children = (
- 2747717E24BC0C0400181362 ,
- 2747717F24BC0C0400181362 ,
- 2747718024BC0C0400181362 ,
- 2747718124BC0C0400181362 ,
- );
- path = LLClasses;
- sourceTree = "<group>";
- };
- 2747726624BC0C7C00181362 = {
- isa = PBXGroup;
- children = (
- 27E32B0124F4DF0D0007CA8F ,
- 273EFB5324DD36410069DB4D ,
- 273EFB4D24DD36410069DB4D ,
- 273EFB5B24DD36410069DB4D ,
- );
- path = RongCloud;
- sourceTree = "<group>";
- };
- 2748F8EB24C05F30003F8E11 = {
- isa = PBXGroup;
- children = (
- 2748F8EC24C05F30003F8E11 ,
- 2748F8ED24C05F30003F8E11 ,
- 2748F8EE24C05F30003F8E11 ,
- );
- path = ExamLibrary;
- sourceTree = "<group>";
- };
- 2748F8EC24C05F30003F8E11 = {
- isa = PBXGroup;
- children = (
- 2729F7D824C81E9B00E1F3C4 ,
- 2729F7D924C81E9B00E1F3C4 ,
- 2748F8EF24C05F4C003F8E11 ,
- 2748F8F024C05F4C003F8E11 ,
- 2729F7C524C6C87400E1F3C4 ,
- 2729F7C624C6C87400E1F3C4 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2748F8ED24C05F30003F8E11 = {
- isa = PBXGroup;
- children = (
- 2729F7FD24C851FA00E1F3C4 ,
- 2729F7FC24C851F900E1F3C4 ,
- 2729F7C824C6EB4900E1F3C4 ,
- 2729F7C924C6EB4A00E1F3C4 ,
- 2729F7CB24C6F3F300E1F3C4 ,
- 2729F7CC24C6F3F300E1F3C4 ,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2748F8EE24C05F30003F8E11 = {
- isa = PBXGroup;
- children = (
- 2729F7E024C8244100E1F3C4 ,
- 2729F7E124C8244100E1F3C4 ,
- 2729F7E224C8244100E1F3C4 ,
- 2748F8F224C1389F003F8E11 ,
- 2748F8F324C1389F003F8E11 ,
- 2748F8F424C1389F003F8E11 ,
- 2729F7CF24C8174A00E1F3C4 ,
- 2729F7D024C8174A00E1F3C4 ,
- 2729F7D224C8175E00E1F3C4 ,
- 2729F7DB24C81FA200E1F3C4 ,
- 2729F7DC24C81FA200E1F3C4 ,
- 2729F7DE24C81FB000E1F3C4 ,
- 273EFB4824DCF5850069DB4D ,
- 273EFB4924DCF5850069DB4D ,
- 273EFB4B24DCF5920069DB4D ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 277279D925396E5C00B329B8 = {
- isa = PBXGroup;
- children = (
- 277279DA25396EE800B329B8 ,
- 277279DB25396EE800B329B8 ,
- );
- path = RecordAction;
- sourceTree = "<group>";
- };
- 2774F23C25184A48003473A2 = {
- isa = PBXGroup;
- children = (
- 2774F23D25184A48003473A2 ,
- 2774F23E25184A48003473A2 ,
- 2774F23F25184A48003473A2 ,
- );
- path = SimulationExam;
- sourceTree = "<group>";
- };
- 2774F23D25184A48003473A2 = {
- isa = PBXGroup;
- children = (
- 2774F24025184AB4003473A2 ,
- 2774F24125184AB4003473A2 ,
- 2774F2F125187B18003473A2 ,
- 2774F2F225187B18003473A2 ,
- 2774F3052518B1D4003473A2 ,
- 2774F3062518B1D4003473A2 ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2774F23E25184A48003473A2 = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2774F23F25184A48003473A2 = {
- isa = PBXGroup;
- children = (
- 2774F2FA25189EFA003473A2 ,
- 2774F2FB25189EFA003473A2 ,
- 2774F30025189F09003473A2 ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2774F2BB251877DF003473A2 = {
- isa = PBXGroup;
- children = (
- 2774F2D1251877DF003473A2 ,
- 2774F2C3251877DF003473A2 ,
- 2774F2CC251877DF003473A2 ,
- 2774F2C0251877DF003473A2 ,
- 2774F2D2251877DF003473A2 ,
- 2774F2C2251877DF003473A2 ,
- 2774F2CA251877DF003473A2 ,
- 2774F2D8251877DF003473A2 ,
- 2774F2CE251877DF003473A2 ,
- 2774F2BE251877DF003473A2 ,
- 2774F2BF251877DF003473A2 ,
- 2774F2CD251877DF003473A2 ,
- 2774F2C8251877DF003473A2 ,
- 2774F2C5251877DF003473A2 ,
- 2774F2D6251877DF003473A2 ,
- 2774F2CB251877DF003473A2 ,
- 2774F2D9251877DF003473A2 ,
- 2774F2C4251877DF003473A2 ,
- 2774F2D7251877DF003473A2 ,
- 2774F2BD251877DF003473A2 ,
- 2774F2CF251877DF003473A2 ,
- 2774F2BC251877DF003473A2 ,
- 2774F2D0251877DF003473A2 ,
- 2774F2D4251877DF003473A2 ,
- 2774F2C7251877DF003473A2 ,
- 2774F2DA251877DF003473A2 ,
- 2774F2C9251877DF003473A2 ,
- 2774F2D3251877DF003473A2 ,
- 2774F2C1251877DF003473A2 ,
- 2774F2D5251877DF003473A2 ,
- 2774F2C6251877DF003473A2 ,
- );
- path = TZImagePickerController;
- sourceTree = "<group>";
- };
- 27A0089924BD96C50002452B = {
- isa = PBXGroup;
- children = (
- 27A0089A24BD96C50002452B ,
- 27A0089D24BD96C50002452B ,
- 27A0089E24BD96C50002452B ,
- );
- path = Networking;
- sourceTree = "<group>";
- };
- 27A0089A24BD96C50002452B = {
- isa = PBXGroup;
- children = (
- 27A0089B24BD96C50002452B ,
- 27A0089C24BD96C50002452B ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 27A0089D24BD96C50002452B = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 27A0089E24BD96C50002452B = {
- isa = PBXGroup;
- children = (
- 27A0089F24BD96C50002452B ,
- 27A008A224BD96C50002452B ,
- 27A008A424BD96C50002452B ,
- 27A008A324BD96C50002452B ,
- 27A008A024BD96C50002452B ,
- 27A008A124BD96C50002452B ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 27A008AA24BD96E50002452B = {
- isa = PBXGroup;
- children = (
- 27A008B624BD98170002452B ,
- 27A008B724BD98170002452B ,
- 27A008B324BD97FE0002452B ,
- 27A008B424BD97FE0002452B ,
- 27A008AD24BD96E50002452B ,
- 27A008AC24BD96E50002452B ,
- 27A008AB24BD96E50002452B ,
- );
- path = DeviceCheck;
- sourceTree = "<group>";
- };
- 27A008B924BD99620002452B = {
- isa = PBXGroup;
- children = (
- 27A008BA24BD99620002452B ,
- 27A008BB24BD99620002452B ,
- 27A008BC24BD99620002452B ,
- );
- path = Setting;
- sourceTree = "<group>";
- };
- 27A008BA24BD99620002452B = {
- isa = PBXGroup;
- children = (
- 27A008C124BD99B10002452B ,
- 27A008C224BD99B10002452B ,
- 27A008CF24BDA67E0002452B ,
- 27A008D024BDA67E0002452B ,
- 27A008D124BDA67E0002452B ,
- 27A008D224BDA67F0002452B ,
- 27A008E024BDA6B40002452B ,
- 27A008DF24BDA6B30002452B ,
- 27A008E824BDA7070002452B ,
- 27A008E724BDA7070002452B ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 27A008BB24BD99620002452B = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 27A008BC24BD99620002452B = {
- isa = PBXGroup;
- children = (
- 27A008CA24BD9E8A0002452B ,
- 27A008CB24BD9E8A0002452B ,
- 27A008CD24BD9E950002452B ,
- 27A008D824BDA6950002452B ,
- 27A008D624BDA6940002452B ,
- 27A008D524BDA6940002452B ,
- 27A008D724BDA6940002452B ,
- 27A008D924BDA6950002452B ,
- 27A008DA24BDA6950002452B ,
- 27A008E424BDA6C40002452B ,
- 27A008E324BDA6C30002452B ,
- 27A008E224BDA6C30002452B ,
- 27A008EC24BDA7100002452B ,
- 27A008EB24BDA7100002452B ,
- 27A008EA24BDA70F0002452B ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 27A008BD24BD99820002452B = {
- isa = PBXGroup;
- children = (
- 27A008BE24BD99820002452B ,
- 27A008BF24BD99820002452B ,
- 27A008C024BD99820002452B ,
- );
- name = Mine;
- path = Controller/Mine;
- sourceTree = "<group>";
- };
- 27A008BE24BD99820002452B = {
- isa = PBXGroup;
- children = (
- 27A008C424BD99BD0002452B ,
- 27A008C524BD99BD0002452B ,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 27A008BF24BD99820002452B = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 27A008C024BD99820002452B = {
- isa = PBXGroup;
- children = (
- 27A008F524BDB6220002452B ,
- 27A008F624BDB6220002452B ,
- 27A008F824BDB6310002452B ,
- );
- path = View;
- sourceTree = "<group>";
- };
- 27B9065D2542ABE000A1BEBF = {
- isa = PBXGroup;
- children = (
- 27B9066B2542AFE900A1BEBF ,
- 27B9066A2542AFE900A1BEBF ,
- 27B9066C2542AFE900A1BEBF ,
- );
- path = TipsAudio;
- sourceTree = "<group>";
- };
- 27EF3F0A24C02B67002068A2 = {
- isa = PBXGroup;
- children = (
- 27EF3F0B24C02B67002068A2 ,
- 27EF3F0C24C02B67002068A2 ,
- );
- path = TipsView;
- sourceTree = "<group>";
- };
- 27EF3F0D24C02B67002068A2 = {
- isa = PBXGroup;
- children = (
- 27EF3F0E24C02B67002068A2 ,
- 27EF3F0F24C02B67002068A2 ,
- );
- path = NormalAlertView;
- sourceTree = "<group>";
- };
- 27EF3F1024C02B67002068A2 = {
- isa = PBXGroup;
- children = (
- 27EF3F1124C02B67002068A2 ,
- 27EF3F1224C02B67002068A2 ,
- );
- path = TitleView;
- sourceTree = "<group>";
- };
- 27EF3F1324C02B67002068A2 = {
- isa = PBXGroup;
- children = (
- 27EF3F1524C02B68002068A2 ,
- 27EF3F1924C02B68002068A2 ,
- 27EF3F1424C02B67002068A2 ,
- 27EF3F1724C02B68002068A2 ,
- );
- path = VideoList;
- sourceTree = "<group>";
- };
- 27EF3F1A24C02B68002068A2 = {
- isa = PBXGroup;
- children = (
- 27EF3F1B24C02B68002068A2 ,
- 27EF3F1C24C02B68002068A2 ,
- );
- path = MainToolbar;
- sourceTree = "<group>";
- };
- 27EF3F1D24C02B68002068A2 = {
- isa = PBXGroup;
- children = (
- 27EF3F1E24C02B68002068A2 ,
- 27EF3F1F24C02B68002068A2 ,
- 27EF3F2924C02DE9002068A2 ,
- 27EF3F2824C02DE8002068A2 ,
- );
- path = MainContainer;
- sourceTree = "<group>";
- };
- 3765A35FA865CF0E79E4496A = {
- isa = PBXGroup;
- children = (
- 2F7D3758362ED28D51286A60 ,
- 1AA4DFCEF527585287BEBFE0 ,
- E1DA29861866096EC2DBC683 ,
- 2BB32BBE582672362BB6E017 ,
- 5402063E714DA9D9107F8070 ,
- E19677AAD7D01861E10F49D5 ,
- );
- path = Pods;
- sourceTree = "<group>";
- };
- 8478281B4E8B1E1D71EF685C = {
- isa = PBXGroup;
- children = (
- 278D113524CADC4800599421 ,
- 274772B024BC0DEB00181362 ,
- 274772AE24BC0DDE00181362 ,
- 274772AC24BC0DD000181362 ,
- 274772AA24BC0DC900181362 ,
- 274772A824BC0DC000181362 ,
- 274772A624BC0DB500181362 ,
- 274772A424BC0DAE00181362 ,
- 274772A224BC0DA800181362 ,
- 274772A024BC0DA000181362 ,
- 2747729E24BC0D9B00181362 ,
- 2747729C24BC0D9300181362 ,
- 2747729A24BC0D8D00181362 ,
- 2747729824BC0D8700181362 ,
- 2747729624BC0D8000181362 ,
- 2747729424BC0D7A00181362 ,
- 2747729224BC0D7300181362 ,
- 2747729024BC0D6B00181362 ,
- 2747728E24BC0D6500181362 ,
- 2747728C24BC0D5F00181362 ,
- 2747728A24BC0D5800181362 ,
- 2747728824BC0D5200181362 ,
- 2747728624BC0D4800181362 ,
- 2747728424BC0D4200181362 ,
- 1C12DE728E343C25BB5998D7 ,
- F8D13E0A14104E75F7922812 ,
- 8BAA64634BC925E7C2CD7008 ,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 27476F4224BBFB5900181362 = {
- isa = PBXNativeTarget;
- buildConfigurationList = 27476F7224BBFB5C00181362 ;
- buildPhases = (
- A2CFBEEEA280BC5D8A12DDFF ,
- 27476F3F24BBFB5900181362 ,
- 27476F4024BBFB5900181362 ,
- 27476F4124BBFB5900181362 ,
- FB27AFBA470BD4CA0203D584 ,
- 273EFB6D24E29A730069DB4D ,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = MusicGradeExam;
- productName = MusicGradeExam;
- productReference = 27476F4324BBFB5900181362 ;
- productType = "com.apple.product-type.application";
- };
- 27476F5D24BBFB5C00181362 = {
- isa = PBXNativeTarget;
- buildConfigurationList = 27476F7524BBFB5C00181362 ;
- buildPhases = (
- 1CF0D64E1EAEBE124C36BB82 ,
- 27476F5A24BBFB5C00181362 ,
- 27476F5B24BBFB5C00181362 ,
- 27476F5C24BBFB5C00181362 ,
- );
- buildRules = (
- );
- dependencies = (
- 27476F6024BBFB5C00181362 ,
- );
- name = MusicGradeExamTests;
- productName = MusicGradeExamTests;
- productReference = 27476F5E24BBFB5C00181362 ;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 27476F6824BBFB5C00181362 = {
- isa = PBXNativeTarget;
- buildConfigurationList = 27476F7824BBFB5C00181362 ;
- buildPhases = (
- AC2303F321F3E3EDB53A3E35 ,
- 27476F6524BBFB5C00181362 ,
- 27476F6624BBFB5C00181362 ,
- 27476F6724BBFB5C00181362 ,
- 224760B7408CF475A1025795 ,
- );
- buildRules = (
- );
- dependencies = (
- 27476F6B24BBFB5C00181362 ,
- );
- name = MusicGradeExamUITests;
- productName = MusicGradeExamUITests;
- productReference = 27476F6924BBFB5C00181362 ;
- productType = "com.apple.product-type.bundle.ui-testing";
- };
- 27476F3B24BBFB5900181362 = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1160;
- ORGANIZATIONNAME = DayaMusic;
- TargetAttributes = {
- 27476F4224BBFB5900181362 = {
- CreatedOnToolsVersion = 11.5;
- };
- 27476F5D24BBFB5C00181362 = {
- CreatedOnToolsVersion = 11.5;
- TestTargetID = 27476F4224BBFB5900181362;
- };
- 27476F6824BBFB5C00181362 = {
- CreatedOnToolsVersion = 11.5;
- TestTargetID = 27476F4224BBFB5900181362;
- };
- };
- };
- buildConfigurationList = 27476F3E24BBFB5900181362 ;
- compatibilityVersion = "Xcode 9.3";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- "zh-Hans",
- );
- mainGroup = 27476F3A24BBFB5900181362;
- productRefGroup = 27476F4424BBFB5900181362 ;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 27476F4224BBFB5900181362 ,
- 27476F5D24BBFB5C00181362 ,
- 27476F6824BBFB5C00181362 ,
- );
- };
- 27476F4124BBFB5900181362 = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 27A008ED24BDA7100002452B ,
- 2774F30125189F09003473A2 ,
- 274771AE24BC0C0500181362 ,
- 27A008CE24BD9E950002452B ,
- 2794D1BF24BD4D0C00BAF6F3 ,
- 2729F7E424C8244100E1F3C4 ,
- 27A008E524BDA6C40002452B ,
- 273EFB6624DD36420069DB4D ,
- 2747718A24BC0C0500181362 ,
- 27476F5624BBFB5C00181362 ,
- 273EFB6324DD36420069DB4D ,
- 273EFB6424DD36420069DB4D ,
- 27B9066D2542AFE900A1BEBF ,
- 278D113E24CFC6B600599421 ,
- 2729F7EC24C8329700E1F3C4 ,
- 27EF3EF824BEF1E8002068A2 ,
- 27A008F924BDB6310002452B ,
- 2794D1C424BD60E900BAF6F3 ,
- 2729F7FB24C8427200E1F3C4 ,
- 273EFB6724DD36420069DB4D ,
- 2794D1B224BC605600BAF6F3 ,
- 27A008A724BD96C50002452B ,
- 2794D1C924BD631A00BAF6F3 ,
- 27A008DB24BDA6950002452B ,
- 2729F7DF24C81FB000E1F3C4 ,
- 27A008FE24BECDFC0002452B ,
- 274771AC24BC0C0500181362 ,
- 274771ED24BC0C0500181362 ,
- 2729F7F624C8398B00E1F3C4 ,
- 2729F7F124C8379D00E1F3C4 ,
- 2794D1BA24BC69A400BAF6F3 ,
- 27DBF9D824DAAE7500202145 ,
- 27B9066F2542AFE900A1BEBF ,
- 27A008DE24BDA6950002452B ,
- 27476F5324BBFB5C00181362 ,
- 27A008AE24BD96E50002452B ,
- 2748F8F624C138A0003F8E11 ,
- 278D114324CFD59B00599421 ,
- 27476F5124BBFB5900181362 ,
- 2729F7D324C8175E00E1F3C4 ,
- 2774F2E2251877E0003473A2 ,
- 273EFB4C24DCF5920069DB4D ,
- 273EFB6224DD36420069DB4D ,
- 27EF3EF324BEE885002068A2 ,
- 27EF3F0024BF016B002068A2 ,
- 27A008A924BD96C50002452B ,
- 27EF3F2F24C0384E002068A2 ,
- 27B9066E2542AFE900A1BEBF ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F5C24BBFB5C00181362 = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F6724BBFB5C00181362 = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 1CF0D64E1EAEBE124C36BB82 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-MusicGradeExamTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- 224760B7408CF475A1025795 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 273EFB6D24E29A730069DB4D = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "#!/bin/sh\n#\n# Copyright 2016 Bugly, Tencent. All rights reserved.\n#\n# V1.4.0\n#\n# 2016.08.03\n#\n#\n#\n######################################################\n# 1. 脚本集成到Xcode工程的Target\n######################################################\n#\n# --- Copy the SCRIPT to the Run Script of Build Phases in the Xcode project ---\n#\n# #\nBUGLY_APP_ID=\"b6927d9c46\"\n# #\nBUGLY_APP_KEY=\"5356a79d-5008-4106-82e6-765b9afeb996\"\n# #\nBUNDLE_IDENTIFIER=\"com.JMCloudMusic.MusicGradeExam\"\n# #\nUPLOAD_DSYM_ONLY=1\n#\n# # 脚本默认配置的版本格式为CFBundleShortVersionString(CFBundleVersion), 如果你修改默认的版本格式, 请设置此变量, 如果不想修改, 请忽略此设置\n# CUSTOMIZED_APP_VERSION=\"\"\n#\n# # Debug模式编译是否上传,1=上传 0=不上传,默认不上传\n# UPLOAD_DEBUG_SYMBOLS=0\n#\n# # 模拟器编译是否上传,1=上传 0=不上传,默认不上传\n# UPLOAD_SIMULATOR_SYMBOLS=0\n#\n# #只有Archive操作时上传, 1=支持Archive上传 0=所有Release模式编译都上传\n# UPLOAD_ARCHIVE_ONLY=0\n#\n# #\n# source dSYMUpload.sh\n#\n# --- END OF SCRIPT ---\n#\n#\n#\n#\n#######################################################\n# 2. 脚本根据输入参数处理\n#######################################################\n#\n# #命令行下输入应用基本信息, .dSYM文件的父目录路径, 输出文件目录即可\n#\n# sh dSYMUpload.sh <bugly_app_id> <bugly_app_key> <app_bundle_identifier> <app_version> <dSYM_src_dir> <bSYMBOL_dest_dir>\n#\n# #\n#\n# #注意:\n# # 1. dSYMUpload.sh会调用buglySymboliOS.jar进行.dSYM解析,所以依赖Java运行时环境\n# # 2. dSYMUpload.sh和buglySymboliOS.jar的文件路径需一致\n#\n#\n\n#\n# --- CONTENT OF SCRIPT ---\n#\n\n# Bugly服务域名\nBUGLY_DSYM_UPLOAD_DOMAIN=\"api.bugly.qq.com\"\n\n# 注意jar工具的路径跟dSYMUpload.sh脚本路径一致, 请务必保证jar路径的正确性\nBUGLY_SYMBOL_JAR_PATH=\"dsymtool/buglySymboliOS.jar\"\n# 查找添加到系统目录的jar工具\nif [ ! -f \"${BUGLY_SYMBOL_JAR_PATH}\" ]; then\n BUGLY_SYMBOL_JAR_PATH=\"$HOME/bin/buglySymboliOS.jar\"\nfi\n\n# 打印错误信息\nfunction exitWithMessage(){\n echo \"--------------------------------\"\n echo \"${1}\"\n echo \"--------------------------------\"\n exit ${2}\n}\n\n# 上传bSYMBOL文件\nfunction dSYMUpload() {\n P_APP_ID=\"$1\"\n P_APP_KEY=\"$2\"\n P_APP_BUNDLE_ID=\"$3\"\n P_APP_VERSION=\"$4\"\n P_BSYMBOL_ZIP_FILE=\"$5\"\n\n #\n P_BSYMBOL_ZIP_FILE_NAME=${P_BSYMBOL_ZIP_FILE
- };
- A2CFBEEEA280BC5D8A12DDFF /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-MusicGradeExam-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n
- showEnvVarsInLog = 0;
- };
- AC2303F321F3E3EDB53A3E35 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-MusicGradeExam-MusicGradeExamUITests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- FB27AFBA470BD4CA0203D584 = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 27476F3F24BBFB5900181362 = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2729F7F924C8425E00E1F3C4 ,
- 2747722A24BC0C0500181362 ,
- 274771E324BC0C0500181362 ,
- 2747721D24BC0C0500181362 ,
- 27EF3F2024C02B68002068A2 ,
- 27A008B824BD98170002452B ,
- 2747725224BC0C0500181362 ,
- 2747723824BC0C0500181362 ,
- 2774F2E4251877E0003473A2 ,
- 2747725024BC0C0500181362 ,
- 2747723924BC0C0500181362 ,
- 2747721724BC0C0500181362 ,
- 2747722E24BC0C0500181362 ,
- 274771B024BC0C0500181362 ,
- 2774F2E1251877E0003473A2 ,
- 274771CA24BC0C0500181362 ,
- 27EF3F0924C02B3F002068A2 ,
- 2794D1C724BD62FB00BAF6F3 ,
- 274771A624BC0C0500181362 ,
- 2747720124BC0C0500181362 ,
- 274771F124BC0C0500181362 ,
- 278D113924CFBACA00599421 ,
- 2747721424BC0C0500181362 ,
- 27EF3F2324C02B68002068A2 ,
- 27A008DD24BDA6950002452B ,
- 2774F2E6251877E0003473A2 ,
- 2747724824BC0C0500181362 ,
- 2747723424BC0C0500181362 ,
- 274771A524BC0C0500181362 ,
- 274771E124BC0C0500181362 ,
- 274771DD24BC0C0500181362 ,
- 2747718E24BC0C0500181362 ,
- 2747718924BC0C0500181362 ,
- 27A008AF24BD96E50002452B ,
- 2748F8F524C138A0003F8E11 ,
- 274771E524BC0C0500181362 ,
- 27A008DC24BDA6950002452B ,
- 2747718824BC0C0500181362 ,
- 2747726024BC0C0500181362 ,
- 2747722C24BC0C0500181362 ,
- 2747720324BC0C0500181362 ,
- 274771DF24BC0C0500181362 ,
- 2747720624BC0C0500181362 ,
- 2747720F24BC0C0500181362 ,
- 2747720824BC0C0500181362 ,
- 274771D924BC0C0500181362 ,
- 2747721E24BC0C0500181362 ,
- 2747721624BC0C0500181362 ,
- 2747721524BC0C0500181362 ,
- 2774F2EA251877E0003473A2 ,
- 274771A324BC0C0500181362 ,
- 2747723024BC0C0500181362 ,
- 2774F2FC25189EFB003473A2 ,
- 278D113C24CFC6A200599421 ,
- 2794D1B824BC699700BAF6F3 ,
- 2747720A24BC0C0500181362 ,
- 274771B524BC0C0500181362 ,
- 274771CF24BC0C0500181362 ,
- 274771D424BC0C0500181362 ,
- 274771F924BC0C0500181362 ,
- 274771D624BC0C0500181362 ,
- 27A008E624BDA6C40002452B ,
- 274771F524BC0C0500181362 ,
- 274771A024BC0C0500181362 ,
- 2747723324BC0C0500181362 ,
- 2747724424BC0C0500181362 ,
- 2747725624BC0C0500181362 ,
- 274771B324BC0C0500181362 ,
- 274771C524BC0C0500181362 ,
- 2747725524BC0C0500181362 ,
- 274771C924BC0C0500181362 ,
- 2747726524BC0C0500181362 ,
- 2774F2DD251877E0003473A2 ,
- 274771BF24BC0C0500181362 ,
- 2747722624BC0C0500181362 ,
- 2747722124BC0C0500181362 ,
- 274771E024BC0C0500181362 ,
- 2747719F24BC0C0500181362 ,
- 2747720D24BC0C0500181362 ,
- 27E32B0A24FE41B50007CA8F ,
- 2729F7EA24C8328700E1F3C4 ,
- 274771BC24BC0C0500181362 ,
- 27EF3EF224BEE885002068A2 ,
- 274771F424BC0C0500181362 ,
- 2747718C24BC0C0500181362 ,
- 2729F7FE24C851FA00E1F3C4 ,
- 2747718724BC0C0500181362 ,
- 274771E624BC0C0500181362 ,
- 2747726424BC0C0500181362 ,
- 273EFB4A24DCF5850069DB4D ,
- 27A008C924BD9D550002452B ,
- 27EF3F2124C02B68002068A2 ,
- 2747723524BC0C0500181362 ,
- 274771A824BC0C0500181362 ,
- 27A008F724BDB6220002452B ,
- 274771D224BC0C0500181362 ,
- 2747722F24BC0C0500181362 ,
- 2747723C24BC0C0500181362 ,
- 27EF3F0624BFF8A1002068A2 ,
- 274771FD24BC0C0500181362 ,
- 2747718B24BC0C0500181362 ,
- 2747721024BC0C0500181362 ,
- 274771A424BC0C0500181362 ,
- 274771AF24BC0C0500181362 ,
- 27A008E124BDA6B40002452B ,
- 27EF3EF624BEF1DA002068A2 ,
- 274771CC24BC0C0500181362 ,
- 274771F624BC0C0500181362 ,
- 2729F7E324C8244100E1F3C4 ,
- 2747721224BC0C0500181362 ,
- 2747720924BC0C0500181362 ,
- 2774F2E7251877E0003473A2 ,
- 27A008C624BD99BD0002452B ,
- 27A008EE24BDA7100002452B ,
- 2729F7F424C8395300E1F3C4 ,
- 2774F24225184AB4003473A2 ,
- 2774F3072518B1D4003473A2 ,
- 27476F4E24BBFB5900181362 ,
- 274771DC24BC0C0500181362 ,
- 2747721124BC0C0500181362 ,
- 2774F2DF251877E0003473A2 ,
- 2747722924BC0C0500181362 ,
- 274771B224BC0C0500181362 ,
- 274771BB24BC0C0500181362 ,
- 2729F7CA24C6EB4A00E1F3C4 ,
- 2747724D24BC0C0500181362 ,
- 278D114124CFD58800599421 ,
- 274771C024BC0C0500181362 ,
- 2747724C24BC0C0500181362 ,
- 274771B824BC0C0500181362 ,
- 2747723F24BC0C0500181362 ,
- 2774F2E3251877E0003473A2 ,
- 274771F224BC0C0500181362 ,
- 2774F2DB251877E0003473A2 ,
- 2747720E24BC0C0500181362 ,
- 2747720024BC0C0500181362 ,
- 274771E924BC0C0500181362 ,
- 2747725D24BC0C0500181362 ,
- 274771CB24BC0C0500181362 ,
- 274771CD24BC0C0500181362 ,
- 2729F7E724C8326900E1F3C4 ,
- 2747722024BC0C0500181362 ,
- 27DBF9D324D8F67B00202145 ,
- 274771C624BC0C0500181362 ,
- 27D4149824CA741D000DBC0C ,
- 27EF3F2A24C02DE9002068A2 ,
- 2747724524BC0C0500181362 ,
- 2747720B24BC0C0500181362 ,
- 2747724024BC0C0500181362 ,
- 274771A224BC0C0500181362 ,
- 274771CE24BC0C0500181362 ,
- 274771D324BC0C0500181362 ,
- 27A008B524BD97FE0002452B ,
- 27DBF9D624DAAE6200202145 ,
- 2747721924BC0C0500181362 ,
- 27EF3F2E24C0384E002068A2 ,
- 278D114624D0009000599421 ,
- 2747722B24BC0C0500181362 ,
- 27A008D424BDA67F0002452B ,
- 2747726224BC0C0500181362 ,
- 273EFB7024E672850069DB4D ,
- 274771E724BC0C0500181362 ,
- 274771F824BC0C0500181362 ,
- 274771BD24BC0C0500181362 ,
- 274771B624BC0C0500181362 ,
- 274771B424BC0C0500181362 ,
- 2774F2F325187B18003473A2 ,
- 27A008E924BDA7070002452B ,
- 27544CF824BC337D00EF58AF ,
- 2794D1B024BC604800BAF6F3 ,
- 274771C824BC0C0500181362 ,
- 27544CFB24BC338900EF58AF ,
- 27EF3EFB24BEFC79002068A2 ,
- 274771B124BC0C0500181362 ,
- 274771A724BC0C0500181362 ,
- 2747724924BC0C0500181362 ,
- 2747720C24BC0C0500181362 ,
- 274771B724BC0C0500181362 ,
- 274771BE24BC0C0500181362 ,
- 274771D824BC0C0500181362 ,
- 2774F2E5251877E0003473A2 ,
- 2747725324BC0C0500181362 ,
- 2748F8F124C05F4D003F8E11 ,
- 2747722324BC0C0500181362 ,
- 274771D524BC0C0500181362 ,
- 2747725F24BC0C0500181362 ,
- 274771A124BC0C0500181362 ,
- 2747720224BC0C0500181362 ,
- 2747724B24BC0C0500181362 ,
- 2747721324BC0C0500181362 ,
- 27A008CC24BD9E8A0002452B ,
- 2729F7DA24C81E9B00E1F3C4 ,
- 2747721B24BC0C0500181362 ,
- 2747723E24BC0C0500181362 ,
- 2747725424BC0C0500181362 ,
- 27A008D324BDA67F0002452B ,
- 2747724A24BC0C0500181362 ,
- 2774F2DE251877E0003473A2 ,
- 27EF3F0324BF0F12002068A2 ,
- 2747721C24BC0C0500181362 ,
- 2747724724BC0C0500181362 ,
- 274771F724BC0C0500181362 ,
- 2747722224BC0C0500181362 ,
- 2747725C24BC0C0500181362 ,
- 2774F2E9251877E0003473A2 ,
- 2747724124BC0C0500181362 ,
- 274771E224BC0C0500181362 ,
- 2747725B24BC0C0500181362 ,
- 274771AB24BC0C0500181362 ,
- 274771A924BC0C0500181362 ,
- 27A008A524BD96C50002452B ,
- 2729F7D124C8174A00E1F3C4 ,
- 27EF3EFE24BF015A002068A2 ,
- 274771C724BC0C0500181362 ,
- 2747722824BC0C0500181362 ,
- 2747720724BC0C0500181362 ,
- 2747723A24BC0C0500181362 ,
- 27476F4824BBFB5900181362 ,
- 2747725A24BC0C0500181362 ,
- 2747725124BC0C0500181362 ,
- 2729F7DD24C81FA200E1F3C4 ,
- 274771E424BC0C0500181362 ,
- 2747724F24BC0C0500181362 ,
- 274771AA24BC0C0500181362 ,
- 274771DE24BC0C0500181362 ,
- 2747723B24BC0C0500181362 ,
- 274771FB24BC0C0500181362 ,
- 278D113424CA8E4D00599421 ,
- 274771D724BC0C0500181362 ,
- 27A008F324BDB1E50002452B ,
- 27EF3EEE24BEE35E002068A2 ,
- 2747725824BC0C0500181362 ,
- 2747725E24BC0C0500181362 ,
- 27EF3F2224C02B68002068A2 ,
- 2747720524BC0C0500181362 ,
- 274771D124BC0C0500181362 ,
- 274771FF24BC0C0500181362 ,
- 27A008F424BDB1E50002452B ,
- 2747726124BC0C0500181362 ,
- 2794D1BD24BD4CF800BAF6F3 ,
- 27A008A624BD96C50002452B ,
- 274771C224BC0C0500181362 ,
- 2794D1B524BC662600BAF6F3 ,
- 27A008FC24BECDC40002452B ,
- 2747722D24BC0C0500181362 ,
- 27A008A824BD96C50002452B ,
- 274771DB24BC0C0500181362 ,
- 2747723624BC0C0500181362 ,
- 2747724E24BC0C0500181362 ,
- 27EF3F2524C02B68002068A2 ,
- 2747722524BC0C0500181362 ,
- 27EF3F2724C02B68002068A2 ,
- 2747722724BC0C0500181362 ,
- 274771EE24BC0C0500181362 ,
- 2747721F24BC0C0500181362 ,
- 2747723124BC0C0500181362 ,
- 2794D1C224BD60D500BAF6F3 ,
- 274771AD24BC0C0500181362 ,
- 274771EF24BC0C0500181362 ,
- 274771EB24BC0C0500181362 ,
- 2774F2DC251877E0003473A2 ,
- 2747723224BC0C0500181362 ,
- 2729F7F024C8379D00E1F3C4 ,
- 27A008C324BD99B10002452B ,
- 2747725724BC0C0500181362 ,
- 274771DA24BC0C0500181362 ,
- 2747721824BC0C0500181362 ,
- 27EF3F2624C02B68002068A2 ,
- 2729F7C724C6C87400E1F3C4 ,
- 2747725924BC0C0500181362 ,
- 2747724224BC0C0500181362 ,
- 2747720424BC0C0500181362 ,
- 2747724324BC0C0500181362 ,
- 274771E824BC0C0500181362 ,
- 274771F024BC0C0500181362 ,
- 27476F5924BBFB5C00181362 ,
- 274771B924BC0C0500181362 ,
- 2747726324BC0C0500181362 ,
- 274771FE24BC0C0500181362 ,
- 2774F2E0251877E0003473A2 ,
- 2774F2E8251877E0003473A2 ,
- 2729F7CD24C6F3F300E1F3C4 ,
- 27D4149B24CA757A000DBC0C ,
- 2747723D24BC0C0500181362 ,
- 2747721A24BC0C0500181362 ,
- 274771EC24BC0C0500181362 ,
- 274771BA24BC0C0500181362 ,
- 274771FA24BC0C0500181362 ,
- 2747724624BC0C0500181362 ,
- 274771FC24BC0C0500181362 ,
- 274771C324BC0C0500181362 ,
- 2747723724BC0C0500181362 ,
- 274771F324BC0C0500181362 ,
- 274771C424BC0C0500181362 ,
- 2747722424BC0C0500181362 ,
- 277279DC25396EE800B329B8 ,
- 2747718D24BC0C0500181362 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F5A24BBFB5C00181362 = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 27476F6324BBFB5C00181362 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F6524BBFB5C00181362 = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 27476F6E24BBFB5C00181362 ,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27476F6024BBFB5C00181362 = {
- isa = PBXTargetDependency;
- target = 27476F4224BBFB5900181362 ;
- targetProxy = 27476F5F24BBFB5C00181362 ;
- };
- 27476F6B24BBFB5C00181362 = {
- isa = PBXTargetDependency;
- target = 27476F4224BBFB5900181362 ;
- targetProxy = 27476F6A24BBFB5C00181362 ;
- };
- 273EFB5524DD36410069DB4D = {
- isa = PBXVariantGroup;
- children = (
- 273EFB5624DD36410069DB4D ,
- 273EFB5724DD36410069DB4D ,
- );
- name = RongCloudKit.strings;
- sourceTree = "<group>";
- };
- 27476F4F24BBFB5900181362 = {
- isa = PBXVariantGroup;
- children = (
- 27476F5024BBFB5900181362 ,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- 27476F5424BBFB5C00181362 = {
- isa = PBXVariantGroup;
- children = (
- 27476F5524BBFB5C00181362 ,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- 27476F7024BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- VALID_ARCHS = "arm64 arm64e armv7s";
- };
- name = Debug;
- };
- 27476F7124BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- VALID_ARCHS = "arm64 arm64e armv7s";
- };
- name = Release;
- };
- 27476F7324BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 2F7D3758362ED28D51286A60 ;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = "MusicGradeExam/酷乐秀.entitlements";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1.4.0;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEVELOPMENT_TEAM = P664H7S5LL;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/Sight",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMKit",
- );
- GCC_PREFIX_HEADER = "$(SRCROOT)/MusicGradeExam/Define/PrefixHeader.pch";
- INFOPLIST_FILE = MusicGradeExam/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
- );
- MARKETING_VERSION = 1.4.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JMCloudMusic.MusicGradeExam;
- PRODUCT_NAME = "酷乐秀";
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 27476F7424BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 1AA4DFCEF527585287BEBFE0 ;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = "MusicGradeExam/酷乐秀.entitlements";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1.4.0;
- DEVELOPMENT_TEAM = P664H7S5LL;
- ENABLE_BITCODE = NO;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/Sight",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMKit",
- );
- GCC_PREFIX_HEADER = "$(SRCROOT)/MusicGradeExam/Define/PrefixHeader.pch";
- INFOPLIST_FILE = MusicGradeExam/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
- );
- MARKETING_VERSION = 1.4.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JMCloudMusic.MusicGradeExam;
- PRODUCT_NAME = "酷乐秀";
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 27476F7624BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 5402063E714DA9D9107F8070 ;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 2K89M44X82;
- INFOPLIST_FILE = MusicGradeExamTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.5;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicGradeExam.app/MusicGradeExam";
- };
- name = Debug;
- };
- 27476F7724BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = E19677AAD7D01861E10F49D5 ;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 2K89M44X82;
- INFOPLIST_FILE = MusicGradeExamTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 13.5;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicGradeExam.app/MusicGradeExam";
- };
- name = Release;
- };
- 27476F7924BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = E1DA29861866096EC2DBC683 ;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 2K89M44X82;
- INFOPLIST_FILE = MusicGradeExamUITests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = MusicGradeExam;
- };
- name = Debug;
- };
- 27476F7A24BBFB5C00181362 = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 2BB32BBE582672362BB6E017 ;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 2K89M44X82;
- INFOPLIST_FILE = MusicGradeExamUITests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = MusicGradeExam;
- };
- name = Release;
- };
- 27476F3E24BBFB5900181362 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 27476F7024BBFB5C00181362 ,
- 27476F7124BBFB5C00181362 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 27476F7224BBFB5C00181362 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 27476F7324BBFB5C00181362 ,
- 27476F7424BBFB5C00181362 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 27476F7524BBFB5C00181362 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 27476F7624BBFB5C00181362 ,
- 27476F7724BBFB5C00181362 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 27476F7824BBFB5C00181362 = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 27476F7924BBFB5C00181362 ,
- 27476F7A24BBFB5C00181362 ,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- };
- rootObject = 27476F3B24BBFB5900181362 ;
- }
|