project.pbxproj 398 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  10. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  11. F70022A11EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  12. F70022A21EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  13. F70022A41EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  14. F70022A51EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  15. F70022A71EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  16. F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  17. F70022AA1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  18. F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  19. F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  20. F70022AE1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  21. F70022B01EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  22. F70022B11EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  23. F70022B31EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  24. F70022B41EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  25. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  26. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  27. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  28. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  29. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  30. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  31. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  32. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  33. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  34. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  35. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  36. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  37. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  38. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  39. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  40. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  41. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  42. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  43. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  44. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  45. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  46. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  47. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  48. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  49. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  50. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  51. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  52. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  53. F70022E01EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  54. F70022E11EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  55. F70022E31EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  56. F70022E41EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  57. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  58. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  59. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  60. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  61. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  62. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  63. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  64. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  65. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  66. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  67. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  68. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  69. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  70. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  71. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  72. F710E8101EF95C9C00DC2427 /* CCIntro.m in Sources */ = {isa = PBXBuildFile; fileRef = F710E80E1EF95C9C00DC2427 /* CCIntro.m */; };
  73. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  74. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  75. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  76. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  77. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  78. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  79. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  80. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  81. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  82. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  83. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  84. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  85. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  86. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  87. F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  88. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  89. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  90. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  91. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  92. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  93. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  94. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  95. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  96. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  97. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F720E01E1E48C73E001A4B9E /* CCActions.swift */; };
  98. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  99. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  100. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  101. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  102. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */ = {isa = PBXBuildFile; fileRef = F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */; };
  103. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  104. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  105. F734E5891F019D860060CB77 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  106. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  107. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */; };
  108. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */; };
  109. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */; };
  110. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */; };
  111. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */; };
  112. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */; };
  113. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB41F470D9100BBEE4B /* JISFreq.tab */; };
  114. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */; };
  115. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */; };
  116. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */; };
  117. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */; };
  118. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */; };
  119. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */; };
  120. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */; };
  121. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */; };
  122. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */; };
  123. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */; };
  124. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */; };
  125. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */; };
  126. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */; };
  127. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */; };
  128. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */; };
  129. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */; };
  130. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */; };
  131. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */; };
  132. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */; };
  133. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */; };
  134. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */; };
  135. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */; };
  136. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */; };
  137. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */; };
  138. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */; };
  139. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */; };
  140. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */; };
  141. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */; };
  142. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */; };
  143. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */; };
  144. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */; };
  145. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */; };
  146. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EEA1F470D9100BBEE4B /* symbols.cmake */; };
  147. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */; };
  148. F73B4F791E8D3BF800A97F07 /* CCMainTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */; };
  149. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  150. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  151. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  152. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  153. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  154. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  155. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  156. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  157. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  158. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  159. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  160. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  161. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  162. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  163. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  164. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  165. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  166. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  167. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  168. F73D71621F2673C200E233EB /* NCText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D71611F2673C200E233EB /* NCText.swift */; };
  169. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D71631F2674A400E233EB /* NCText.storyboard */; };
  170. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  171. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  172. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  173. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  174. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  175. F7434B3920E2401C00417916 /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  176. F7434B3A20E2403500417916 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  177. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  178. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  179. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  180. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  181. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  182. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  183. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  184. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  185. F7434B4320E2405900417916 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  186. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  187. F7434B4520E2406400417916 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  188. F7434B4620E2406900417916 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  189. F7434B4720E2406C00417916 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  190. F7434B4820E2407000417916 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  191. F7434B4920E2407300417916 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  192. F7434B4A20E2407600417916 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  193. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  194. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  195. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  196. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  197. F7434B4F20E2408E00417916 /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  198. F7434B5020E2409100417916 /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  199. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  200. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  201. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  202. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  203. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  204. F7434B5620E2412900417916 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  205. F7434B5720E2416800417916 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  206. F7434B5820E241B100417916 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  207. F7434B5920E241B600417916 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  208. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  209. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  210. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  211. F7434B5D20E241E800417916 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  212. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  213. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  214. F7434B6120E2445C00417916 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  215. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  216. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  217. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  218. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  219. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  220. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  221. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  222. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  223. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  224. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */ = {isa = PBXBuildFile; fileRef = F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */; };
  225. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  226. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  227. F75AE3C71E9D12900088BB09 /* SwiftyAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */; };
  228. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  229. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  230. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 /* XLFormBaseCell.m */; };
  231. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 /* XLFormButtonCell.m */; };
  232. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 /* XLFormCheckCell.m */; };
  233. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 /* XLFormDateCell.m */; };
  234. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */; };
  235. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 /* XLFormImageCell.m */; };
  236. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */; };
  237. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */; };
  238. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 /* XLFormPickerCell.m */; };
  239. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */; };
  240. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */; };
  241. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 /* XLFormSliderCell.m */; };
  242. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */; };
  243. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */; };
  244. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */; };
  245. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */; };
  246. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */; };
  247. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */; };
  248. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 /* XLFormViewController.m */; };
  249. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 /* XLFormDescriptor.m */; };
  250. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */; };
  251. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */; };
  252. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */; };
  253. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */; };
  254. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */; };
  255. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */; };
  256. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */; };
  257. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */; };
  258. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */; };
  259. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */; };
  260. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */; };
  261. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 /* XLFormTextView.m */; };
  262. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */; };
  263. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */; };
  264. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 /* XLFormValidator.m */; };
  265. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 /* XLForm.m */; };
  266. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 /* XLForm.bundle */; };
  267. F762CB861EACB81000B38484 /* RECommonFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB7D1EACB81000B38484 /* RECommonFunctions.m */; };
  268. F762CB871EACB81000B38484 /* REMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB7F1EACB81000B38484 /* REMenu.m */; };
  269. F762CB881EACB81000B38484 /* REMenuContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB811EACB81000B38484 /* REMenuContainerView.m */; };
  270. F762CB891EACB81000B38484 /* REMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB831EACB81000B38484 /* REMenuItem.m */; };
  271. F762CB8A1EACB81000B38484 /* REMenuItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB851EACB81000B38484 /* REMenuItemView.m */; };
  272. F762CB951EACB84400B38484 /* icon-error.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8D1EACB84400B38484 /* icon-error.png */; };
  273. F762CB961EACB84400B38484 /* icon-error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8E1EACB84400B38484 /* icon-error@2x.png */; };
  274. F762CB971EACB84400B38484 /* icon-info.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8F1EACB84400B38484 /* icon-info.png */; };
  275. F762CB981EACB84400B38484 /* icon-info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB901EACB84400B38484 /* icon-info@2x.png */; };
  276. F762CB991EACB84400B38484 /* icon-success.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB911EACB84400B38484 /* icon-success.png */; };
  277. F762CB9A1EACB84400B38484 /* icon-success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB921EACB84400B38484 /* icon-success@2x.png */; };
  278. F762CB9B1EACB84400B38484 /* TWMessageBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB941EACB84400B38484 /* TWMessageBarManager.m */; };
  279. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A231DC0B726004860C4 /* EAIntroPage.m */; };
  280. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A251DC0B726004860C4 /* EAIntroView.m */; };
  281. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */; };
  282. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7659A311DC0B737004860C4 /* iRate.bundle */; };
  283. F7659A391DC0B737004860C4 /* iRate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A331DC0B737004860C4 /* iRate.m */; };
  284. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  285. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  286. F76F23341ED4603700C40023 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76F23331ED4603700C40023 /* LaunchScreen.xib */; };
  287. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  288. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  289. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  290. F771E3E120E2392E00AFB62D /* DocumentActionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3E020E2392E00AFB62D /* DocumentActionViewController.swift */; };
  291. F771E3E420E2392E00AFB62D /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F771E3E220E2392E00AFB62D /* MainInterface.storyboard */; };
  292. F771E3E820E2392E00AFB62D /* File Provider ExtensionUI.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3DE20E2392E00AFB62D /* File Provider ExtensionUI.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  293. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  294. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  295. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  296. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  297. F771E3F920E239B500AFB62D /* FileProviderExtension+Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F620E239B400AFB62D /* FileProviderExtension+Network.swift */; };
  298. F771E3FD20E23BA700AFB62D /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  299. F771E3FE20E23BAB00AFB62D /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  300. F771E3FF20E23C3A00AFB62D /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  301. F771E40020E23C3D00AFB62D /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  302. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */; };
  303. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */; };
  304. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */; };
  305. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  306. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  307. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  308. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  309. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */; };
  310. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  311. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A582D61A24DAB500E903D7 /* AppDelegate.m */; };
  312. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  313. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  314. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  315. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F78316871C0CB3CA00C43975 /* CCShareUserOC.m */; };
  316. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  317. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */; };
  318. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  319. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  320. F77B0E411D118A16002130FE /* CCSplit.m in Sources */ = {isa = PBXBuildFile; fileRef = F792A77C1BC7C45400C9388E /* CCSplit.m */; };
  321. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E65F1BC5042E008D989A /* CCDetail.m */; };
  322. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  323. F77B0E541D118A16002130FE /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  324. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  325. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */; };
  326. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  327. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  328. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  329. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  330. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  331. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  332. F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  333. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  334. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  335. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  336. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  337. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  338. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  339. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  340. F77B0F181D118A16002130FE /* Intro.strings in Resources */ = {isa = PBXBuildFile; fileRef = F744BE9F1BEBB69F004FFF66 /* Intro.strings */; };
  341. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  342. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  343. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F768EB021BFB7EA900B6E341 /* CCShare.storyboard */; };
  344. F77B0F551D118A16002130FE /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  345. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  346. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  347. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  348. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */; };
  349. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  350. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  351. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  352. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading@2x.gif */; };
  353. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  354. F77EB62A1EC0B50A003F814F /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  355. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  356. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  357. F78071211EDB135100EAFFF6 /* CCPhotos.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071201EDB135100EAFFF6 /* CCPhotos.m */; };
  358. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  359. F78964AD1EBB576C00403E13 /* JDStatusBarNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */; };
  360. F78964AE1EBB576C00403E13 /* JDStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */; };
  361. F78964AF1EBB576C00403E13 /* JDStatusBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964AC1EBB576C00403E13 /* JDStatusBarView.m */; };
  362. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  363. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  364. F7A321651E9E37960069AD1B /* CCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321641E9E37960069AD1B /* CCActivity.m */; };
  365. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  366. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  367. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 /* Crashlytics.framework */; };
  368. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 /* Fabric.framework */; };
  369. F7A5541E204EF8AF008468EC /* TOScrollBarGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A55418204EF8AF008468EC /* TOScrollBarGestureRecognizer.m */; };
  370. F7A5541F204EF8AF008468EC /* TOScrollBar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A5541B204EF8AF008468EC /* TOScrollBar.m */; };
  371. F7A55420204EF8AF008468EC /* UIScrollView+TOScrollBar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A5541D204EF8AF008468EC /* UIScrollView+TOScrollBar.m */; };
  372. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  373. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  374. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7B1FBB11E72E3D1001781FE /* Media.xcassets */; };
  375. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */; };
  376. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */; };
  377. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */; };
  378. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */; };
  379. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */; };
  380. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */; };
  381. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 /* english.txt */; };
  382. F7B3A4EE1E97818A000DACE8 /* CCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */; };
  383. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B4F1C81F44356F00B53B42 /* NCUchardet.m */; };
  384. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  385. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  386. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  387. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  388. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  389. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  390. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */; };
  391. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  392. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  393. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  394. F7D423331F0596AC009C9782 /* AppIcon-076.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423161F0596AC009C9782 /* AppIcon-076.png */; };
  395. F7D423341F0596AC009C9782 /* AppIcon-120.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423171F0596AC009C9782 /* AppIcon-120.png */; };
  396. F7D423351F0596AC009C9782 /* AppIcon-152.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423181F0596AC009C9782 /* AppIcon-152.png */; };
  397. F7D423361F0596AC009C9782 /* AppIcon-167.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423191F0596AC009C9782 /* AppIcon-167.png */; };
  398. F7D423371F0596AC009C9782 /* AppIcon-180.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231A1F0596AC009C9782 /* AppIcon-180.png */; };
  399. F7D423381F0596AC009C9782 /* Reader-Button-H.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */; };
  400. F7D423391F0596AC009C9782 /* Reader-Button-H@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */; };
  401. F7D4233A1F0596AC009C9782 /* Reader-Button-H@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */; };
  402. F7D4233B1F0596AC009C9782 /* Reader-Button-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */; };
  403. F7D4233C1F0596AC009C9782 /* Reader-Button-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */; };
  404. F7D4233D1F0596AC009C9782 /* Reader-Button-N@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */; };
  405. F7D4233E1F0596AC009C9782 /* Reader-Email.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423211F0596AC009C9782 /* Reader-Email.png */; };
  406. F7D4233F1F0596AC009C9782 /* Reader-Email@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423221F0596AC009C9782 /* Reader-Email@2x.png */; };
  407. F7D423401F0596AC009C9782 /* Reader-Email@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423231F0596AC009C9782 /* Reader-Email@3x.png */; };
  408. F7D423411F0596AC009C9782 /* Reader-Export.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423241F0596AC009C9782 /* Reader-Export.png */; };
  409. F7D423421F0596AC009C9782 /* Reader-Export@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423251F0596AC009C9782 /* Reader-Export@2x.png */; };
  410. F7D423431F0596AC009C9782 /* Reader-Export@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423261F0596AC009C9782 /* Reader-Export@3x.png */; };
  411. F7D423441F0596AC009C9782 /* Reader-Mark-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423271F0596AC009C9782 /* Reader-Mark-N.png */; };
  412. F7D423451F0596AC009C9782 /* Reader-Mark-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */; };
  413. F7D423461F0596AC009C9782 /* Reader-Mark-N@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */; };
  414. F7D423471F0596AC009C9782 /* Reader-Mark-Y.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */; };
  415. F7D423481F0596AC009C9782 /* Reader-Mark-Y@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */; };
  416. F7D423491F0596AC009C9782 /* Reader-Mark-Y@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */; };
  417. F7D4234A1F0596AC009C9782 /* Reader-Print.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232D1F0596AC009C9782 /* Reader-Print.png */; };
  418. F7D4234B1F0596AC009C9782 /* Reader-Print@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */; };
  419. F7D4234C1F0596AC009C9782 /* Reader-Print@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */; };
  420. F7D4234D1F0596AC009C9782 /* Reader-Thumbs.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423301F0596AC009C9782 /* Reader-Thumbs.png */; };
  421. F7D4234E1F0596AC009C9782 /* Reader-Thumbs@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */; };
  422. F7D4234F1F0596AC009C9782 /* Reader-Thumbs@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */; };
  423. F7D423791F0596C6009C9782 /* CGPDFDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423521F0596C6009C9782 /* CGPDFDocument.m */; };
  424. F7D4237A1F0596C6009C9782 /* ReaderConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423541F0596C6009C9782 /* ReaderConstants.m */; };
  425. F7D4237B1F0596C6009C9782 /* ReaderContentPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423561F0596C6009C9782 /* ReaderContentPage.m */; };
  426. F7D4237C1F0596C6009C9782 /* ReaderContentTile.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423581F0596C6009C9782 /* ReaderContentTile.m */; };
  427. F7D4237D1F0596C6009C9782 /* ReaderContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235A1F0596C6009C9782 /* ReaderContentView.m */; };
  428. F7D4237E1F0596C6009C9782 /* ReaderDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235C1F0596C6009C9782 /* ReaderDocument.m */; };
  429. F7D4237F1F0596C6009C9782 /* ReaderDocumentOutline.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */; };
  430. F7D423801F0596C6009C9782 /* ReaderMainPagebar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */; };
  431. F7D423811F0596C6009C9782 /* ReaderMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */; };
  432. F7D423821F0596C6009C9782 /* ReaderThumbCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423641F0596C6009C9782 /* ReaderThumbCache.m */; };
  433. F7D423831F0596C6009C9782 /* ReaderThumbFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */; };
  434. F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */; };
  435. F7D423851F0596C6009C9782 /* ReaderThumbRender.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */; };
  436. F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */; };
  437. F7D423871F0596C6009C9782 /* ReaderThumbsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */; };
  438. F7D423881F0596C6009C9782 /* ReaderThumbView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423701F0596C6009C9782 /* ReaderThumbView.m */; };
  439. F7D423891F0596C6009C9782 /* ReaderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423721F0596C6009C9782 /* ReaderViewController.m */; };
  440. F7D4238A1F0596C6009C9782 /* ThumbsMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */; };
  441. F7D4238B1F0596C6009C9782 /* ThumbsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423761F0596C6009C9782 /* ThumbsViewController.m */; };
  442. F7D4238C1F0596C6009C9782 /* UIXToolbarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423781F0596C6009C9782 /* UIXToolbarView.m */; };
  443. F7D424531F063B82009C9782 /* NSBundle+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423A81F063B81009C9782 /* NSBundle+CTAssetsPickerController.m */; };
  444. F7D424541F063B82009C9782 /* NSDateFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423AA1F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.m */; };
  445. F7D424551F063B82009C9782 /* NSIndexSet+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423AC1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.m */; };
  446. F7D424561F063B82009C9782 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423AE1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.m */; };
  447. F7D424571F063B82009C9782 /* PHAsset+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B01F063B81009C9782 /* PHAsset+CTAssetsPickerController.m */; };
  448. F7D424581F063B82009C9782 /* PHAssetCollection+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B21F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.m */; };
  449. F7D424591F063B82009C9782 /* PHImageManager+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B41F063B81009C9782 /* PHImageManager+CTAssetsPickerController.m */; };
  450. F7D4245A1F063B82009C9782 /* UICollectionView+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B61F063B81009C9782 /* UICollectionView+CTAssetsPickerController.m */; };
  451. F7D4245B1F063B82009C9782 /* UIImage+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423B81F063B81009C9782 /* UIImage+CTAssetsPickerController.m */; };
  452. F7D4245C1F063B82009C9782 /* CTAssetCheckmark.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423BA1F063B81009C9782 /* CTAssetCheckmark.m */; };
  453. F7D4245D1F063B82009C9782 /* CTAssetCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423BC1F063B81009C9782 /* CTAssetCollectionViewCell.m */; };
  454. F7D4245E1F063B82009C9782 /* CTAssetCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423BE1F063B81009C9782 /* CTAssetCollectionViewController.m */; };
  455. F7D4245F1F063B82009C9782 /* CTAssetItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C01F063B81009C9782 /* CTAssetItemViewController.m */; };
  456. F7D424601F063B82009C9782 /* CTAssetPlayButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C21F063B81009C9782 /* CTAssetPlayButton.m */; };
  457. F7D424611F063B82009C9782 /* CTAssetScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C41F063B81009C9782 /* CTAssetScrollView.m */; };
  458. F7D424621F063B82009C9782 /* CTAssetSelectionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C61F063B81009C9782 /* CTAssetSelectionButton.m */; };
  459. F7D424631F063B82009C9782 /* CTAssetSelectionLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423C81F063B81009C9782 /* CTAssetSelectionLabel.m */; };
  460. F7D424641F063B82009C9782 /* CTAssetsGridSelectedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423CA1F063B81009C9782 /* CTAssetsGridSelectedView.m */; };
  461. F7D424651F063B82009C9782 /* CTAssetsGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423CC1F063B81009C9782 /* CTAssetsGridView.m */; };
  462. F7D424661F063B82009C9782 /* CTAssetsGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423CE1F063B81009C9782 /* CTAssetsGridViewCell.m */; };
  463. F7D424671F063B82009C9782 /* CTAssetsGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D01F063B81009C9782 /* CTAssetsGridViewController.m */; };
  464. F7D424681F063B82009C9782 /* CTAssetsGridViewFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D21F063B81009C9782 /* CTAssetsGridViewFooter.m */; };
  465. F7D424691F063B82009C9782 /* CTAssetsGridViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D41F063B81009C9782 /* CTAssetsGridViewLayout.m */; };
  466. F7D4246A1F063B82009C9782 /* CTAssetsNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D61F063B82009C9782 /* CTAssetsNavigationController.m */; };
  467. F7D4246B1F063B82009C9782 /* CTAssetsPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423D81F063B82009C9782 /* CTAssetsPageView.m */; };
  468. F7D4246C1F063B82009C9782 /* CTAssetsPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423DA1F063B82009C9782 /* CTAssetsPageViewController.m */; };
  469. F7D4246D1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423DC1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m */; };
  470. F7D4246E1F063B82009C9782 /* CTAssetsPickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7D423DD1F063B82009C9782 /* CTAssetsPickerController.bundle */; };
  471. F7D4246F1F063B82009C9782 /* CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423DF1F063B82009C9782 /* CTAssetsPickerController.m */; };
  472. F7D424701F063B82009C9782 /* CTAssetsPickerNoAssetsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E21F063B82009C9782 /* CTAssetsPickerNoAssetsView.m */; };
  473. F7D424711F063B82009C9782 /* CTAssetsViewControllerTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E41F063B82009C9782 /* CTAssetsViewControllerTransition.m */; };
  474. F7D424721F063B82009C9782 /* CTAssetThumbnailOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E61F063B82009C9782 /* CTAssetThumbnailOverlay.m */; };
  475. F7D424731F063B82009C9782 /* CTAssetThumbnailStacks.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423E81F063B82009C9782 /* CTAssetThumbnailStacks.m */; };
  476. F7D424741F063B82009C9782 /* CTAssetThumbnailView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D423EA1F063B82009C9782 /* CTAssetThumbnailView.m */; };
  477. F7DC5FEC1F011EB700A903C7 /* MGSwipeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */; };
  478. F7DC5FED1F011EB700A903C7 /* MGSwipeTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */; };
  479. F7DFE2521EBDC3A400CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  480. F7DFE2541EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  481. F7DFE2551EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  482. F7DFE2571EBDC52E00CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  483. F7DFE2581EBDC52E00CF5202 /* Realm.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  484. F7DFE25A1EBDC53200CF5202 /* RealmSwift.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  485. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */; };
  486. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  487. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  488. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  489. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  490. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  491. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  492. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  493. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  494. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  495. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  496. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  497. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  498. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  499. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  500. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  501. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  502. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  503. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  504. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  505. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  506. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  507. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  508. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  509. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  510. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  511. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  512. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  513. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  514. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  515. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  516. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  517. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  518. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  519. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  520. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  521. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  522. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  523. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  524. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  525. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  526. F7F801031D98205A007537BC /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  527. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  528. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  529. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  530. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  531. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  532. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  533. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  534. /* End PBXBuildFile section */
  535. /* Begin PBXContainerItemProxy section */
  536. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  537. isa = PBXContainerItemProxy;
  538. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  539. proxyType = 1;
  540. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  541. remoteInfo = "Share Ext Nextcloud";
  542. };
  543. F771E3E620E2392E00AFB62D /* PBXContainerItemProxy */ = {
  544. isa = PBXContainerItemProxy;
  545. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  546. proxyType = 1;
  547. remoteGlobalIDString = F771E3DD20E2392E00AFB62D;
  548. remoteInfo = "File Provider ExtensionUI";
  549. };
  550. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  551. isa = PBXContainerItemProxy;
  552. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  553. proxyType = 1;
  554. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  555. remoteInfo = "File Provider Extension";
  556. };
  557. /* End PBXContainerItemProxy section */
  558. /* Begin PBXCopyFilesBuildPhase section */
  559. F75A3FFF1EBCB55B00B213E8 /* Embed Frameworks */ = {
  560. isa = PBXCopyFilesBuildPhase;
  561. buildActionMask = 2147483647;
  562. dstPath = "";
  563. dstSubfolderSpec = 10;
  564. files = (
  565. F7DFE25A1EBDC53200CF5202 /* RealmSwift.framework in Embed Frameworks */,
  566. F7DFE2581EBDC52E00CF5202 /* Realm.framework in Embed Frameworks */,
  567. );
  568. name = "Embed Frameworks";
  569. runOnlyForDeploymentPostprocessing = 0;
  570. };
  571. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  572. isa = PBXCopyFilesBuildPhase;
  573. buildActionMask = 2147483647;
  574. dstPath = "";
  575. dstSubfolderSpec = 13;
  576. files = (
  577. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  578. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  579. F771E3E820E2392E00AFB62D /* File Provider ExtensionUI.appex in Embed App Extensions */,
  580. );
  581. name = "Embed App Extensions";
  582. runOnlyForDeploymentPostprocessing = 0;
  583. };
  584. /* End PBXCopyFilesBuildPhase section */
  585. /* Begin PBXFileReference section */
  586. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  587. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  588. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  589. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  590. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  591. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  592. F70022591EC4C9100080073F /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
  593. F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
  594. F700225B1EC4C9100080073F /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
  595. F700225C1EC4C9100080073F /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
  596. F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
  597. F700225E1EC4C9100080073F /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
  598. F700225F1EC4C9100080073F /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
  599. F70022601EC4C9100080073F /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
  600. F70022611EC4C9100080073F /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
  601. F70022621EC4C9100080073F /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
  602. F70022631EC4C9100080073F /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
  603. F70022641EC4C9100080073F /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
  604. F70022651EC4C9100080073F /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
  605. F70022661EC4C9100080073F /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  606. F70022671EC4C9100080073F /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  607. F70022681EC4C9100080073F /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  608. F70022691EC4C9100080073F /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  609. F700226A1EC4C9100080073F /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  610. F700226B1EC4C9100080073F /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  611. F700226C1EC4C9100080073F /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  612. F700226D1EC4C9100080073F /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  613. F700226E1EC4C9100080073F /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  614. F700226F1EC4C9100080073F /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  615. F70022701EC4C9100080073F /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  616. F70022711EC4C9100080073F /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  617. F70022721EC4C9100080073F /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  618. F70022731EC4C9100080073F /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  619. F70022741EC4C9100080073F /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  620. F70022751EC4C9100080073F /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  621. F70022761EC4C9100080073F /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  622. F70022771EC4C9100080073F /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  623. F70022781EC4C9100080073F /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  624. F70022791EC4C9100080073F /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  625. F700227A1EC4C9100080073F /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  626. F700227B1EC4C9100080073F /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  627. F700227C1EC4C9100080073F /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  628. F700227D1EC4C9100080073F /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  629. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  630. F70022801EC4C9100080073F /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  631. F70022811EC4C9100080073F /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  632. F70022821EC4C9100080073F /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  633. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  634. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  635. F70022851EC4C9100080073F /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  636. F70022861EC4C9100080073F /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  637. F70022881EC4C9100080073F /* OCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLListParser.h; sourceTree = "<group>"; };
  638. F70022891EC4C9100080073F /* OCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLListParser.m; sourceTree = "<group>"; };
  639. F700228A1EC4C9100080073F /* OCXMLParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLParser.h; sourceTree = "<group>"; };
  640. F700228B1EC4C9100080073F /* OCXMLParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLParser.m; sourceTree = "<group>"; };
  641. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  642. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  643. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  644. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  645. F70022901EC4C9100080073F /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  646. F70022911EC4C9100080073F /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  647. F700229C1EC4C9100080073F /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  648. F700229D1EC4C9100080073F /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  649. F700229E1EC4C9100080073F /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  650. F700229F1EC4C9100080073F /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  651. F70022A01EC4C9100080073F /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  652. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  653. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  654. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  655. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  656. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  657. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  658. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  659. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  660. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  661. F70A07C5205285FA00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  662. F70A07C6205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  663. F70A07C7205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  664. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  665. F70A07C9205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  666. F70A07CA205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Intro.strings"; sourceTree = "<group>"; };
  667. F70A07CB205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Error.strings"; sourceTree = "<group>"; };
  668. F70A63061D5B3467004E2AA5 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
  669. F70A63071D5B3467004E2AA5 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
  670. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  671. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  672. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  673. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  674. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  675. F70F04831C889183008DAB36 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  676. F70F04841C889183008DAB36 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  677. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  678. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  679. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  680. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  681. F710E80D1EF95C9C00DC2427 /* CCIntro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCIntro.h; sourceTree = "<group>"; };
  682. F710E80E1EF95C9C00DC2427 /* CCIntro.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCIntro.m; sourceTree = "<group>"; };
  683. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  684. F7151A801D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  685. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  686. F7151A821D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  687. F7151A831D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intro.strings; sourceTree = "<group>"; };
  688. F7151A841D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Error.strings; sourceTree = "<group>"; };
  689. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  690. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  691. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  692. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  693. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  694. F7169A2D1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  695. F7169A2E1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  696. F7169A2F1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  697. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  698. F7169A311EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  699. F7169A321EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intro.strings; sourceTree = "<group>"; };
  700. F7169A331EE59BB80086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Error.strings; sourceTree = "<group>"; };
  701. F7169A491EE59C630086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  702. F7169A4A1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  703. F7169A4B1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  704. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  705. F7169A4D1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  706. F7169A4E1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intro.strings; sourceTree = "<group>"; };
  707. F7169A4F1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Error.strings; sourceTree = "<group>"; };
  708. F720E01E1E48C73E001A4B9E /* CCActions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; lineEnding = 0; name = CCActions.swift; path = Actions/CCActions.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
  709. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  710. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  711. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  712. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  713. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  714. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  715. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  716. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  717. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  718. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  719. F7320931201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  720. F7320932201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  721. F7320933201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  722. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. F7320935201B8130008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  724. F7320936201B8130008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Intro.strings; sourceTree = "<group>"; };
  725. F7320937201B8130008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Error.strings; sourceTree = "<group>"; };
  726. F7320938201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  727. F7320939201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  728. F732093A201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  729. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  730. F732093C201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  731. F732093D201B81E5008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Intro.strings"; sourceTree = "<group>"; };
  732. F732093E201B81E5008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Error.strings"; sourceTree = "<group>"; };
  733. F732B3361E8045A1002B7D75 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  734. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  735. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  736. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  737. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  738. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
  739. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
  740. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
  741. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
  742. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
  743. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
  744. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
  745. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
  746. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
  747. F73B4EB61F470D9100BBEE4B /* JpCntx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
  748. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
  749. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
  750. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
  751. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
  752. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
  753. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
  754. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
  755. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
  756. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
  757. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
  758. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
  759. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
  760. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
  761. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
  762. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
  763. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
  764. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
  765. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
  766. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
  767. F73B4ECB1F470D9100BBEE4B /* nscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
  768. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
  769. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
  770. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
  771. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
  772. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
  773. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
  774. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
  775. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
  776. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
  777. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
  778. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
  779. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
  780. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
  781. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
  782. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
  783. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
  784. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
  785. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
  786. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
  787. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
  788. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
  789. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
  790. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
  791. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
  792. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
  793. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
  794. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
  795. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
  796. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
  797. F73B4EE91F470D9100BBEE4B /* prmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
  798. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
  799. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
  800. F73B4EED1F470D9100BBEE4B /* uchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
  801. F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMainTabBarController.swift; sourceTree = "<group>"; };
  802. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  803. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  804. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  805. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  806. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  807. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  808. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  809. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  810. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  811. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  812. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  813. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  814. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  815. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  816. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  817. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  818. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  819. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  820. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
  821. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
  822. F73CCE281DC13798007E38D8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  823. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICKeyChainStore.h; sourceTree = "<group>"; };
  824. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICKeyChainStore.m; sourceTree = "<group>"; };
  825. F73D71611F2673C200E233EB /* NCText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCText.swift; sourceTree = "<group>"; };
  826. F73D71631F2674A400E233EB /* NCText.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCText.storyboard; sourceTree = "<group>"; };
  827. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  828. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  829. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareInfoCMOC.h; sourceTree = "<group>"; };
  830. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareInfoCMOC.m; sourceTree = "<group>"; };
  831. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  832. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  833. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  834. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  835. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
  836. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
  837. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  838. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  839. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  840. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  841. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  842. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  843. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  844. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  845. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  846. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  847. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  848. F7540EE21D5B238600C3FFA8 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
  849. F7540EE31D5B238600C3FFA8 /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
  850. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
  851. F7540EE51D5B238600C3FFA8 /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
  852. F7540EE61D5B238600C3FFA8 /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
  853. F7540EE71D5B238600C3FFA8 /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
  854. F7540EE81D5B238600C3FFA8 /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
  855. F7540EE91D5B238600C3FFA8 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
  856. F7540EEA1D5B238600C3FFA8 /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
  857. F7540EEB1D5B238600C3FFA8 /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
  858. F7540EEC1D5B238600C3FFA8 /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
  859. F7540EED1D5B238600C3FFA8 /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
  860. F7540EEE1D5B238600C3FFA8 /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
  861. F7540EEF1D5B238600C3FFA8 /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
  862. F7540EF01D5B238600C3FFA8 /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
  863. F7540EF11D5B238600C3FFA8 /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
  864. F7540EF21D5B238600C3FFA8 /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
  865. F7540EF41D5B238600C3FFA8 /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
  866. F7540EF51D5B238600C3FFA8 /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
  867. F7540EF71D5B238600C3FFA8 /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
  868. F7540EF81D5B238600C3FFA8 /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
  869. F7540EF91D5B238600C3FFA8 /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
  870. F7540EFA1D5B238600C3FFA8 /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
  871. F7540EFB1D5B238600C3FFA8 /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
  872. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
  873. F7540EFD1D5B238600C3FFA8 /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
  874. F7540EFE1D5B238600C3FFA8 /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
  875. F7540EFF1D5B238600C3FFA8 /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
  876. F7540F001D5B238600C3FFA8 /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
  877. F7540F011D5B238600C3FFA8 /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
  878. F7540F041D5B238600C3FFA8 /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
  879. F7540F051D5B238600C3FFA8 /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
  880. F7540F061D5B238600C3FFA8 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
  881. F7540F071D5B238600C3FFA8 /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
  882. F7540F081D5B238600C3FFA8 /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
  883. F7540F091D5B238600C3FFA8 /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
  884. F7540F0A1D5B238600C3FFA8 /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
  885. F7540F0B1D5B238600C3FFA8 /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
  886. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
  887. F7540F0D1D5B238600C3FFA8 /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
  888. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
  889. F7540F0F1D5B238600C3FFA8 /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
  890. F7540F101D5B238600C3FFA8 /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
  891. F7540F111D5B238600C3FFA8 /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
  892. F7540F121D5B238600C3FFA8 /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
  893. F7540F141D5B238600C3FFA8 /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
  894. F7540F151D5B238600C3FFA8 /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
  895. F7540F161D5B238600C3FFA8 /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
  896. F7540F171D5B238600C3FFA8 /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
  897. F7540F181D5B238600C3FFA8 /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
  898. F7540F191D5B238600C3FFA8 /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
  899. F7540F1A1D5B238600C3FFA8 /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
  900. F7540F1B1D5B238600C3FFA8 /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
  901. F7540F1C1D5B238600C3FFA8 /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
  902. F7540F1D1D5B238600C3FFA8 /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
  903. F7540F1E1D5B238600C3FFA8 /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
  904. F7540F1F1D5B238600C3FFA8 /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
  905. F7540F211D5B238600C3FFA8 /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
  906. F7540F221D5B238600C3FFA8 /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
  907. F7540F231D5B238600C3FFA8 /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
  908. F7540F241D5B238600C3FFA8 /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
  909. F7540F251D5B238600C3FFA8 /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
  910. F7540F261D5B238600C3FFA8 /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
  911. F7540F271D5B238600C3FFA8 /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
  912. F7540F291D5B238600C3FFA8 /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
  913. F7540F2A1D5B238600C3FFA8 /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
  914. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
  915. F7540F2C1D5B238600C3FFA8 /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
  916. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  917. F75797AD1E81356C00187A1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  918. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  919. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  920. F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyAvatar.swift; sourceTree = "<group>"; };
  921. F75B91DF1ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  922. F75B91E01ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  923. F75B91E11ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  924. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  925. F75B91E31ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  926. F75B91E41ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intro.strings; sourceTree = "<group>"; };
  927. F75B91E51ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Error.strings; sourceTree = "<group>"; };
  928. F75B91F41ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  929. F75B91F51ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  930. F75B91F61ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  931. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  932. F75B91F81ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  933. F75B91F91ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intro.strings"; sourceTree = "<group>"; };
  934. F75B91FA1ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Error.strings"; sourceTree = "<group>"; };
  935. F75B923A1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  936. F75B923B1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  937. F75B923C1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  938. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  939. F75B923E1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  940. F75B923F1ECAE55F00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intro.strings; sourceTree = "<group>"; };
  941. F75B92401ECAE55F00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Error.strings; sourceTree = "<group>"; };
  942. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  943. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  944. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  945. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  946. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  947. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  948. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  949. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  950. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  951. F762CAA91EACB66200B38484 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  952. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  953. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  954. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  955. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  956. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  957. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  958. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  959. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  960. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  961. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  962. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  963. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  964. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  965. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  966. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  967. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  968. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  969. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  970. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  971. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  972. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  973. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  974. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  975. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  976. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  977. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  978. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  979. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  980. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  981. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  982. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  983. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  984. F762CACB1EACB66200B38484 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  985. F762CACC1EACB66200B38484 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  986. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  987. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  988. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  989. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  990. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  991. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  992. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  993. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  994. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  995. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  996. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  997. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  998. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  999. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  1000. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  1001. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  1002. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1003. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1004. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1005. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1006. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1007. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1008. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1009. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1010. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1011. F762CAE91EACB66200B38484 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1012. F762CAEA1EACB66200B38484 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1013. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1014. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1015. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1016. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1017. F762CAF01EACB66200B38484 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1018. F762CAF11EACB66200B38484 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1019. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1020. F762CAF31EACB66200B38484 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1021. F762CAF41EACB66200B38484 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1022. F762CAF51EACB66200B38484 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1023. F762CB7C1EACB81000B38484 /* RECommonFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RECommonFunctions.h; sourceTree = "<group>"; };
  1024. F762CB7D1EACB81000B38484 /* RECommonFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RECommonFunctions.m; sourceTree = "<group>"; };
  1025. F762CB7E1EACB81000B38484 /* REMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenu.h; sourceTree = "<group>"; };
  1026. F762CB7F1EACB81000B38484 /* REMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenu.m; sourceTree = "<group>"; };
  1027. F762CB801EACB81000B38484 /* REMenuContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuContainerView.h; sourceTree = "<group>"; };
  1028. F762CB811EACB81000B38484 /* REMenuContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuContainerView.m; sourceTree = "<group>"; };
  1029. F762CB821EACB81000B38484 /* REMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItem.h; sourceTree = "<group>"; };
  1030. F762CB831EACB81000B38484 /* REMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItem.m; sourceTree = "<group>"; };
  1031. F762CB841EACB81000B38484 /* REMenuItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItemView.h; sourceTree = "<group>"; };
  1032. F762CB851EACB81000B38484 /* REMenuItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItemView.m; sourceTree = "<group>"; };
  1033. F762CB8D1EACB84400B38484 /* icon-error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error.png"; sourceTree = "<group>"; };
  1034. F762CB8E1EACB84400B38484 /* icon-error@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error@2x.png"; sourceTree = "<group>"; };
  1035. F762CB8F1EACB84400B38484 /* icon-info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info.png"; sourceTree = "<group>"; };
  1036. F762CB901EACB84400B38484 /* icon-info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info@2x.png"; sourceTree = "<group>"; };
  1037. F762CB911EACB84400B38484 /* icon-success.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success.png"; sourceTree = "<group>"; };
  1038. F762CB921EACB84400B38484 /* icon-success@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success@2x.png"; sourceTree = "<group>"; };
  1039. F762CB931EACB84400B38484 /* TWMessageBarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWMessageBarManager.h; sourceTree = "<group>"; };
  1040. F762CB941EACB84400B38484 /* TWMessageBarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWMessageBarManager.m; sourceTree = "<group>"; };
  1041. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1042. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1043. F7659A221DC0B726004860C4 /* EAIntroPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroPage.h; sourceTree = "<group>"; };
  1044. F7659A231DC0B726004860C4 /* EAIntroPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroPage.m; sourceTree = "<group>"; };
  1045. F7659A241DC0B726004860C4 /* EAIntroView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroView.h; sourceTree = "<group>"; };
  1046. F7659A251DC0B726004860C4 /* EAIntroView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroView.m; sourceTree = "<group>"; };
  1047. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EARestrictedScrollView.h; sourceTree = "<group>"; };
  1048. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EARestrictedScrollView.m; sourceTree = "<group>"; };
  1049. F7659A311DC0B737004860C4 /* iRate.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = iRate.bundle; sourceTree = "<group>"; };
  1050. F7659A321DC0B737004860C4 /* iRate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iRate.h; sourceTree = "<group>"; };
  1051. F7659A331DC0B737004860C4 /* iRate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iRate.m; sourceTree = "<group>"; };
  1052. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareOC.h; sourceTree = "<group>"; };
  1053. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareOC.m; sourceTree = "<group>"; };
  1054. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCShare.storyboard; sourceTree = "<group>"; };
  1055. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1056. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1057. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1058. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1059. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1060. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  1061. F76F23331ED4603700C40023 /* LaunchScreen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreen.xib; sourceTree = "<group>"; };
  1062. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1063. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  1064. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  1065. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  1066. F771E3DE20E2392E00AFB62D /* File Provider ExtensionUI.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider ExtensionUI.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1067. F771E3E020E2392E00AFB62D /* DocumentActionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DocumentActionViewController.swift; sourceTree = "<group>"; };
  1068. F771E3E320E2392E00AFB62D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = "<group>"; };
  1069. F771E3E520E2392E00AFB62D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1070. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  1071. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  1072. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  1073. F771E3F620E239B400AFB62D /* FileProviderExtension+Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Network.swift"; sourceTree = "<group>"; };
  1074. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  1075. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  1076. F77438E81FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1077. F77438E91FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1078. F77438EA1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1079. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1080. F77438EC1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1081. F77438ED1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Intro.strings"; sourceTree = "<group>"; };
  1082. F77438EE1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Error.strings"; sourceTree = "<group>"; };
  1083. F77438EF1FCD69D200662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1084. F77438F01FCD69D200662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1085. F77438F11FCD69D200662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1086. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1087. F77438F31FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1088. F77438F41FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Intro.strings; sourceTree = "<group>"; };
  1089. F77438F51FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Error.strings; sourceTree = "<group>"; };
  1090. F77438F61FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1091. F77438F71FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1092. F77438F81FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1093. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1094. F77438FA1FCD6A0E00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1095. F77438FB1FCD6A0E00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Intro.strings"; sourceTree = "<group>"; };
  1096. F77438FC1FCD6A0E00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Error.strings"; sourceTree = "<group>"; };
  1097. F77438FD1FCD6B7E00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1098. F77438FE1FCD6B7E00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1099. F77438FF1FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1100. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1101. F77439011FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1102. F77439021FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Intro.strings; sourceTree = "<group>"; };
  1103. F77439031FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Error.strings; sourceTree = "<group>"; };
  1104. F77439041FCD6BEF00662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1105. F77439051FCD6BEF00662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1106. F77439061FCD6BEF00662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1107. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1108. F77439081FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1109. F77439091FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Intro.strings"; sourceTree = "<group>"; };
  1110. F774390A1FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Error.strings"; sourceTree = "<group>"; };
  1111. F774390B1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1112. F774390C1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1113. F774390D1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1114. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1115. F774390F1FCD6C0D00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1116. F77439101FCD6C0D00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1117. F77439111FCD6C0D00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Error.strings"; sourceTree = "<group>"; };
  1118. F77439121FCD6C4900662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1119. F77439131FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1120. F77439141FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1121. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1122. F77439161FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1123. F77439171FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1124. F77439181FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Error.strings"; sourceTree = "<group>"; };
  1125. F77439191FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1126. F774391A1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1127. F774391B1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1128. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1129. F774391D1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1130. F774391E1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1131. F774391F1FCD6C6800662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Error.strings"; sourceTree = "<group>"; };
  1132. F77439201FCD6C8600662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1133. F77439211FCD6C8600662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1134. F77439221FCD6C8600662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1135. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1136. F77439241FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1137. F77439251FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Intro.strings"; sourceTree = "<group>"; };
  1138. F77439261FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Error.strings"; sourceTree = "<group>"; };
  1139. F77439271FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1140. F77439281FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1141. F77439291FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1142. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1143. F774392B1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1144. F774392C1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Intro.strings"; sourceTree = "<group>"; };
  1145. F774392D1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Error.strings"; sourceTree = "<group>"; };
  1146. F774392E1FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1147. F774392F1FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1148. F77439301FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1149. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1150. F77439321FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1151. F77439331FCD6CC500662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Intro.strings"; sourceTree = "<group>"; };
  1152. F77439341FCD6CC500662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Error.strings"; sourceTree = "<group>"; };
  1153. F77439351FCD6CDD00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1154. F77439361FCD6CDD00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1155. F77439371FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1156. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1157. F77439391FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1158. F774393A1FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Intro.strings"; sourceTree = "<group>"; };
  1159. F774393B1FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Error.strings"; sourceTree = "<group>"; };
  1160. F774393C1FCD6D0A00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1161. F774393D1FCD6D0A00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1162. F774393E1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1163. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1164. F77439401FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1165. F77439411FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Intro.strings"; sourceTree = "<group>"; };
  1166. F77439421FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Error.strings"; sourceTree = "<group>"; };
  1167. F77439431FCD6D2200662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1168. F77439441FCD6D2200662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1169. F77439451FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1170. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1171. F77439471FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1172. F77439481FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Intro.strings"; sourceTree = "<group>"; };
  1173. F77439491FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Error.strings"; sourceTree = "<group>"; };
  1174. F774394A1FCD6D3D00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1175. F774394B1FCD6D3D00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1176. F774394C1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1177. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1178. F774394E1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1179. F774394F1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1180. F77439501FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Error.strings"; sourceTree = "<group>"; };
  1181. F77439511FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1182. F77439521FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1183. F77439531FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1184. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1185. F77439551FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1186. F77439561FCD6D6200662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Intro.strings"; sourceTree = "<group>"; };
  1187. F77439571FCD6D6200662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Error.strings"; sourceTree = "<group>"; };
  1188. F77439581FCD6D8100662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1189. F77439591FCD6D8100662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1190. F774395A1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1191. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1192. F774395C1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1193. F774395D1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Intro.strings"; sourceTree = "<group>"; };
  1194. F774395E1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Error.strings"; sourceTree = "<group>"; };
  1195. F774395F1FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1196. F77439601FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1197. F77439611FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1198. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1199. F77439631FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1200. F77439641FCD6D9D00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Intro.strings"; sourceTree = "<group>"; };
  1201. F77439651FCD6D9D00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Error.strings"; sourceTree = "<group>"; };
  1202. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
  1203. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
  1204. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
  1205. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1206. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1207. F77D49A71DC238E500CDC568 /* loading@2x.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = "loading@2x.gif"; sourceTree = "<group>"; };
  1208. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1209. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1210. F780711F1EDB135100EAFFF6 /* CCPhotos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPhotos.h; sourceTree = "<group>"; };
  1211. F78071201EDB135100EAFFF6 /* CCPhotos.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPhotos.m; sourceTree = "<group>"; };
  1212. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareUserOC.h; sourceTree = "<group>"; };
  1213. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareUserOC.m; sourceTree = "<group>"; };
  1214. F78964A71EBB576C00403E13 /* JDStatusBarNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarNotification.h; sourceTree = "<group>"; };
  1215. F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarNotification.m; sourceTree = "<group>"; };
  1216. F78964A91EBB576C00403E13 /* JDStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarStyle.h; sourceTree = "<group>"; };
  1217. F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarStyle.m; sourceTree = "<group>"; };
  1218. F78964AB1EBB576C00403E13 /* JDStatusBarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarView.h; sourceTree = "<group>"; };
  1219. F78964AC1EBB576C00403E13 /* JDStatusBarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarView.m; sourceTree = "<group>"; };
  1220. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1221. F78D6F431F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1222. F78D6F441F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1223. F78D6F451F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1224. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1225. F78D6F471F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1226. F78D6F481F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intro.strings"; sourceTree = "<group>"; };
  1227. F78D6F491F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Error.strings"; sourceTree = "<group>"; };
  1228. F78D6F4A1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1229. F78D6F4B1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1230. F78D6F4C1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1231. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1232. F78D6F4E1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1233. F78D6F4F1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1234. F78D6F501F0B7CE5002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Error.strings"; sourceTree = "<group>"; };
  1235. F78D6F511F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1236. F78D6F521F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1237. F78D6F531F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1238. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1239. F78D6F551F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1240. F78D6F561F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intro.strings; sourceTree = "<group>"; };
  1241. F78D6F571F0B7D48002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Error.strings; sourceTree = "<group>"; };
  1242. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1243. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1244. F792A77B1BC7C45400C9388E /* CCSplit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSplit.h; sourceTree = "<group>"; };
  1245. F792A77C1BC7C45400C9388E /* CCSplit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSplit.m; sourceTree = "<group>"; };
  1246. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1247. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1248. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1249. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  1250. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1251. F7A321631E9E37960069AD1B /* CCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActivity.h; sourceTree = "<group>"; };
  1252. F7A321641E9E37960069AD1B /* CCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCActivity.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1253. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  1254. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  1255. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1256. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1257. F7A377141EB2364A002856D3 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
  1258. F7A377151EB2364A002856D3 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
  1259. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1260. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1261. F7A55418204EF8AF008468EC /* TOScrollBarGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TOScrollBarGestureRecognizer.m; sourceTree = "<group>"; };
  1262. F7A55419204EF8AF008468EC /* TOScrollBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TOScrollBar.h; sourceTree = "<group>"; };
  1263. F7A5541A204EF8AF008468EC /* UIScrollView+TOScrollBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+TOScrollBar.h"; sourceTree = "<group>"; };
  1264. F7A5541B204EF8AF008468EC /* TOScrollBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TOScrollBar.m; sourceTree = "<group>"; };
  1265. F7A5541C204EF8AF008468EC /* TOScrollBarGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TOScrollBarGestureRecognizer.h; sourceTree = "<group>"; };
  1266. F7A5541D204EF8AF008468EC /* UIScrollView+TOScrollBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+TOScrollBar.m"; sourceTree = "<group>"; };
  1267. F7A582D61A24DAB500E903D7 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AppDelegate.m; sourceTree = "<group>"; };
  1268. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1269. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1270. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1271. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1272. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1273. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1274. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1275. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1276. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1277. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1278. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1279. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1280. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  1281. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  1282. F7B1A7731EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1283. F7B1A7741EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1284. F7B1A7751EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1285. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1286. F7B1A7771EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1287. F7B1A7781EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intro.strings; sourceTree = "<group>"; };
  1288. F7B1A7791EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Error.strings; sourceTree = "<group>"; };
  1289. F7B1FBB11E72E3D1001781FE /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
  1290. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftModalWebVC.swift; sourceTree = "<group>"; };
  1291. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVC.swift; sourceTree = "<group>"; };
  1292. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivity.swift; sourceTree = "<group>"; };
  1293. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivityChrome.swift; sourceTree = "<group>"; };
  1294. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivitySafari.swift; sourceTree = "<group>"; };
  1295. F7B2DEED1F976785007CF4D2 /* english.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  1296. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  1297. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  1298. F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCLoginWeb.swift; sourceTree = "<group>"; };
  1299. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
  1300. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
  1301. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1302. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1303. F7BB04821FD58ACA00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1304. F7BB04831FD58ACA00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1305. F7BB04841FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1306. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1307. F7BB04861FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1308. F7BB04871FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intro.strings"; sourceTree = "<group>"; };
  1309. F7BB04881FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Error.strings"; sourceTree = "<group>"; };
  1310. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCQuickActions.h; sourceTree = "<group>"; };
  1311. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCQuickActions.m; sourceTree = "<group>"; };
  1312. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1313. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1314. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1315. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1316. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1317. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1318. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1319. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1320. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1321. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1322. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1323. F7C8C1911B482CEA0048180E /* CCGlobal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGlobal.m; sourceTree = "<group>"; };
  1324. F7CC04E31F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1325. F7CC04E41F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1326. F7CC04E51F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1327. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1328. F7CC04E71F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1329. F7CC04E81F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intro.strings; sourceTree = "<group>"; };
  1330. F7CC04E91F5AD50E00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Error.strings; sourceTree = "<group>"; };
  1331. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSharePermissionOC.h; sourceTree = "<group>"; };
  1332. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSharePermissionOC.m; sourceTree = "<group>"; };
  1333. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1334. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1335. F7D02A461C5F9E4400D6F972 /* CCMove.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMove.h; sourceTree = "<group>"; };
  1336. F7D02A471C5F9E4400D6F972 /* CCMove.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMove.m; sourceTree = "<group>"; };
  1337. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCMove.storyboard; sourceTree = "<group>"; };
  1338. F7D0E65E1BC5042E008D989A /* CCDetail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCDetail.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1339. F7D0E65F1BC5042E008D989A /* CCDetail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCDetail.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1340. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1341. F7D423161F0596AC009C9782 /* AppIcon-076.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-076.png"; sourceTree = "<group>"; };
  1342. F7D423171F0596AC009C9782 /* AppIcon-120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-120.png"; sourceTree = "<group>"; };
  1343. F7D423181F0596AC009C9782 /* AppIcon-152.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-152.png"; sourceTree = "<group>"; };
  1344. F7D423191F0596AC009C9782 /* AppIcon-167.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-167.png"; sourceTree = "<group>"; };
  1345. F7D4231A1F0596AC009C9782 /* AppIcon-180.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AppIcon-180.png"; sourceTree = "<group>"; };
  1346. F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H.png"; sourceTree = "<group>"; };
  1347. F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@2x.png"; sourceTree = "<group>"; };
  1348. F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@3x.png"; sourceTree = "<group>"; };
  1349. F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N.png"; sourceTree = "<group>"; };
  1350. F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@2x.png"; sourceTree = "<group>"; };
  1351. F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@3x.png"; sourceTree = "<group>"; };
  1352. F7D423211F0596AC009C9782 /* Reader-Email.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email.png"; sourceTree = "<group>"; };
  1353. F7D423221F0596AC009C9782 /* Reader-Email@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@2x.png"; sourceTree = "<group>"; };
  1354. F7D423231F0596AC009C9782 /* Reader-Email@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@3x.png"; sourceTree = "<group>"; };
  1355. F7D423241F0596AC009C9782 /* Reader-Export.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export.png"; sourceTree = "<group>"; };
  1356. F7D423251F0596AC009C9782 /* Reader-Export@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@2x.png"; sourceTree = "<group>"; };
  1357. F7D423261F0596AC009C9782 /* Reader-Export@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@3x.png"; sourceTree = "<group>"; };
  1358. F7D423271F0596AC009C9782 /* Reader-Mark-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N.png"; sourceTree = "<group>"; };
  1359. F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@2x.png"; sourceTree = "<group>"; };
  1360. F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@3x.png"; sourceTree = "<group>"; };
  1361. F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y.png"; sourceTree = "<group>"; };
  1362. F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@2x.png"; sourceTree = "<group>"; };
  1363. F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@3x.png"; sourceTree = "<group>"; };
  1364. F7D4232D1F0596AC009C9782 /* Reader-Print.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print.png"; sourceTree = "<group>"; };
  1365. F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@2x.png"; sourceTree = "<group>"; };
  1366. F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@3x.png"; sourceTree = "<group>"; };
  1367. F7D423301F0596AC009C9782 /* Reader-Thumbs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs.png"; sourceTree = "<group>"; };
  1368. F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@2x.png"; sourceTree = "<group>"; };
  1369. F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@3x.png"; sourceTree = "<group>"; };
  1370. F7D423511F0596C6009C9782 /* CGPDFDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPDFDocument.h; sourceTree = "<group>"; };
  1371. F7D423521F0596C6009C9782 /* CGPDFDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPDFDocument.m; sourceTree = "<group>"; };
  1372. F7D423531F0596C6009C9782 /* ReaderConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderConstants.h; sourceTree = "<group>"; };
  1373. F7D423541F0596C6009C9782 /* ReaderConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderConstants.m; sourceTree = "<group>"; };
  1374. F7D423551F0596C6009C9782 /* ReaderContentPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentPage.h; sourceTree = "<group>"; };
  1375. F7D423561F0596C6009C9782 /* ReaderContentPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentPage.m; sourceTree = "<group>"; };
  1376. F7D423571F0596C6009C9782 /* ReaderContentTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentTile.h; sourceTree = "<group>"; };
  1377. F7D423581F0596C6009C9782 /* ReaderContentTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentTile.m; sourceTree = "<group>"; };
  1378. F7D423591F0596C6009C9782 /* ReaderContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentView.h; sourceTree = "<group>"; };
  1379. F7D4235A1F0596C6009C9782 /* ReaderContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentView.m; sourceTree = "<group>"; };
  1380. F7D4235B1F0596C6009C9782 /* ReaderDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocument.h; sourceTree = "<group>"; };
  1381. F7D4235C1F0596C6009C9782 /* ReaderDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocument.m; sourceTree = "<group>"; };
  1382. F7D4235D1F0596C6009C9782 /* ReaderDocumentOutline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocumentOutline.h; sourceTree = "<group>"; };
  1383. F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocumentOutline.m; sourceTree = "<group>"; };
  1384. F7D4235F1F0596C6009C9782 /* ReaderMainPagebar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainPagebar.h; sourceTree = "<group>"; };
  1385. F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainPagebar.m; sourceTree = "<group>"; };
  1386. F7D423611F0596C6009C9782 /* ReaderMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainToolbar.h; sourceTree = "<group>"; };
  1387. F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainToolbar.m; sourceTree = "<group>"; };
  1388. F7D423631F0596C6009C9782 /* ReaderThumbCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbCache.h; sourceTree = "<group>"; };
  1389. F7D423641F0596C6009C9782 /* ReaderThumbCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbCache.m; sourceTree = "<group>"; };
  1390. F7D423651F0596C6009C9782 /* ReaderThumbFetch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbFetch.h; sourceTree = "<group>"; };
  1391. F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbFetch.m; sourceTree = "<group>"; };
  1392. F7D423671F0596C6009C9782 /* ReaderThumbQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbQueue.h; sourceTree = "<group>"; };
  1393. F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbQueue.m; sourceTree = "<group>"; };
  1394. F7D423691F0596C6009C9782 /* ReaderThumbRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRender.h; sourceTree = "<group>"; };
  1395. F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRender.m; sourceTree = "<group>"; };
  1396. F7D4236B1F0596C6009C9782 /* ReaderThumbRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRequest.h; sourceTree = "<group>"; };
  1397. F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRequest.m; sourceTree = "<group>"; };
  1398. F7D4236D1F0596C6009C9782 /* ReaderThumbsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbsView.h; sourceTree = "<group>"; };
  1399. F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbsView.m; sourceTree = "<group>"; };
  1400. F7D4236F1F0596C6009C9782 /* ReaderThumbView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbView.h; sourceTree = "<group>"; };
  1401. F7D423701F0596C6009C9782 /* ReaderThumbView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbView.m; sourceTree = "<group>"; };
  1402. F7D423711F0596C6009C9782 /* ReaderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderViewController.h; sourceTree = "<group>"; };
  1403. F7D423721F0596C6009C9782 /* ReaderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderViewController.m; sourceTree = "<group>"; };
  1404. F7D423731F0596C6009C9782 /* ThumbsMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsMainToolbar.h; sourceTree = "<group>"; };
  1405. F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsMainToolbar.m; sourceTree = "<group>"; };
  1406. F7D423751F0596C6009C9782 /* ThumbsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsViewController.h; sourceTree = "<group>"; };
  1407. F7D423761F0596C6009C9782 /* ThumbsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsViewController.m; sourceTree = "<group>"; };
  1408. F7D423771F0596C6009C9782 /* UIXToolbarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIXToolbarView.h; sourceTree = "<group>"; };
  1409. F7D423781F0596C6009C9782 /* UIXToolbarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIXToolbarView.m; sourceTree = "<group>"; };
  1410. F7D423A51F063B81009C9782 /* CTAssetsPageViewController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPageViewController+Internal.h"; sourceTree = "<group>"; };
  1411. F7D423A61F063B81009C9782 /* CTAssetsPickerController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPickerController+Internal.h"; sourceTree = "<group>"; };
  1412. F7D423A71F063B81009C9782 /* NSBundle+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1413. F7D423A81F063B81009C9782 /* NSBundle+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1414. F7D423A91F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDateFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1415. F7D423AA1F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDateFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1416. F7D423AB1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1417. F7D423AC1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1418. F7D423AD1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumberFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1419. F7D423AE1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumberFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1420. F7D423AF1F063B81009C9782 /* PHAsset+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1421. F7D423B01F063B81009C9782 /* PHAsset+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1422. F7D423B11F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAssetCollection+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1423. F7D423B21F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAssetCollection+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1424. F7D423B31F063B81009C9782 /* PHImageManager+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHImageManager+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1425. F7D423B41F063B81009C9782 /* PHImageManager+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHImageManager+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1426. F7D423B51F063B81009C9782 /* UICollectionView+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1427. F7D423B61F063B81009C9782 /* UICollectionView+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1428. F7D423B71F063B81009C9782 /* UIImage+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1429. F7D423B81F063B81009C9782 /* UIImage+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1430. F7D423B91F063B81009C9782 /* CTAssetCheckmark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCheckmark.h; sourceTree = "<group>"; };
  1431. F7D423BA1F063B81009C9782 /* CTAssetCheckmark.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCheckmark.m; sourceTree = "<group>"; };
  1432. F7D423BB1F063B81009C9782 /* CTAssetCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewCell.h; sourceTree = "<group>"; };
  1433. F7D423BC1F063B81009C9782 /* CTAssetCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewCell.m; sourceTree = "<group>"; };
  1434. F7D423BD1F063B81009C9782 /* CTAssetCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewController.h; sourceTree = "<group>"; };
  1435. F7D423BE1F063B81009C9782 /* CTAssetCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewController.m; sourceTree = "<group>"; };
  1436. F7D423BF1F063B81009C9782 /* CTAssetItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetItemViewController.h; sourceTree = "<group>"; };
  1437. F7D423C01F063B81009C9782 /* CTAssetItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetItemViewController.m; sourceTree = "<group>"; };
  1438. F7D423C11F063B81009C9782 /* CTAssetPlayButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetPlayButton.h; sourceTree = "<group>"; };
  1439. F7D423C21F063B81009C9782 /* CTAssetPlayButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetPlayButton.m; sourceTree = "<group>"; };
  1440. F7D423C31F063B81009C9782 /* CTAssetScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetScrollView.h; sourceTree = "<group>"; };
  1441. F7D423C41F063B81009C9782 /* CTAssetScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetScrollView.m; sourceTree = "<group>"; };
  1442. F7D423C51F063B81009C9782 /* CTAssetSelectionButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionButton.h; sourceTree = "<group>"; };
  1443. F7D423C61F063B81009C9782 /* CTAssetSelectionButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionButton.m; sourceTree = "<group>"; };
  1444. F7D423C71F063B81009C9782 /* CTAssetSelectionLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionLabel.h; sourceTree = "<group>"; };
  1445. F7D423C81F063B81009C9782 /* CTAssetSelectionLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionLabel.m; sourceTree = "<group>"; };
  1446. F7D423C91F063B81009C9782 /* CTAssetsGridSelectedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridSelectedView.h; sourceTree = "<group>"; };
  1447. F7D423CA1F063B81009C9782 /* CTAssetsGridSelectedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridSelectedView.m; sourceTree = "<group>"; };
  1448. F7D423CB1F063B81009C9782 /* CTAssetsGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridView.h; sourceTree = "<group>"; };
  1449. F7D423CC1F063B81009C9782 /* CTAssetsGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridView.m; sourceTree = "<group>"; };
  1450. F7D423CD1F063B81009C9782 /* CTAssetsGridViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewCell.h; sourceTree = "<group>"; };
  1451. F7D423CE1F063B81009C9782 /* CTAssetsGridViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewCell.m; sourceTree = "<group>"; };
  1452. F7D423CF1F063B81009C9782 /* CTAssetsGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewController.h; sourceTree = "<group>"; };
  1453. F7D423D01F063B81009C9782 /* CTAssetsGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewController.m; sourceTree = "<group>"; };
  1454. F7D423D11F063B81009C9782 /* CTAssetsGridViewFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewFooter.h; sourceTree = "<group>"; };
  1455. F7D423D21F063B81009C9782 /* CTAssetsGridViewFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewFooter.m; sourceTree = "<group>"; };
  1456. F7D423D31F063B81009C9782 /* CTAssetsGridViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewLayout.h; sourceTree = "<group>"; };
  1457. F7D423D41F063B81009C9782 /* CTAssetsGridViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewLayout.m; sourceTree = "<group>"; };
  1458. F7D423D51F063B81009C9782 /* CTAssetsNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsNavigationController.h; sourceTree = "<group>"; };
  1459. F7D423D61F063B82009C9782 /* CTAssetsNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsNavigationController.m; sourceTree = "<group>"; };
  1460. F7D423D71F063B82009C9782 /* CTAssetsPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageView.h; sourceTree = "<group>"; };
  1461. F7D423D81F063B82009C9782 /* CTAssetsPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageView.m; sourceTree = "<group>"; };
  1462. F7D423D91F063B82009C9782 /* CTAssetsPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageViewController.h; sourceTree = "<group>"; };
  1463. F7D423DA1F063B82009C9782 /* CTAssetsPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageViewController.m; sourceTree = "<group>"; };
  1464. F7D423DB1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerAccessDeniedView.h; sourceTree = "<group>"; };
  1465. F7D423DC1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerAccessDeniedView.m; sourceTree = "<group>"; };
  1466. F7D423DD1F063B82009C9782 /* CTAssetsPickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CTAssetsPickerController.bundle; sourceTree = "<group>"; };
  1467. F7D423DE1F063B82009C9782 /* CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerController.h; sourceTree = "<group>"; };
  1468. F7D423DF1F063B82009C9782 /* CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerController.m; sourceTree = "<group>"; };
  1469. F7D423E01F063B82009C9782 /* CTAssetsPickerDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerDefines.h; sourceTree = "<group>"; };
  1470. F7D423E11F063B82009C9782 /* CTAssetsPickerNoAssetsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerNoAssetsView.h; sourceTree = "<group>"; };
  1471. F7D423E21F063B82009C9782 /* CTAssetsPickerNoAssetsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerNoAssetsView.m; sourceTree = "<group>"; };
  1472. F7D423E31F063B82009C9782 /* CTAssetsViewControllerTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsViewControllerTransition.h; sourceTree = "<group>"; };
  1473. F7D423E41F063B82009C9782 /* CTAssetsViewControllerTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsViewControllerTransition.m; sourceTree = "<group>"; };
  1474. F7D423E51F063B82009C9782 /* CTAssetThumbnailOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailOverlay.h; sourceTree = "<group>"; };
  1475. F7D423E61F063B82009C9782 /* CTAssetThumbnailOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailOverlay.m; sourceTree = "<group>"; };
  1476. F7D423E71F063B82009C9782 /* CTAssetThumbnailStacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailStacks.h; sourceTree = "<group>"; };
  1477. F7D423E81F063B82009C9782 /* CTAssetThumbnailStacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailStacks.m; sourceTree = "<group>"; };
  1478. F7D423E91F063B82009C9782 /* CTAssetThumbnailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailView.h; sourceTree = "<group>"; };
  1479. F7D423EA1F063B82009C9782 /* CTAssetThumbnailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailView.m; sourceTree = "<group>"; };
  1480. F7D532431F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1481. F7D532441F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1482. F7D532451F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1483. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1484. F7D532471F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1485. F7D532481F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intro.strings; sourceTree = "<group>"; };
  1486. F7D532491F5D4124006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Error.strings; sourceTree = "<group>"; };
  1487. F7D5324A1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1488. F7D5324B1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1489. F7D5324C1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1490. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1491. F7D5324E1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1492. F7D5324F1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intro.strings; sourceTree = "<group>"; };
  1493. F7D532501F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Error.strings; sourceTree = "<group>"; };
  1494. F7D532511F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1495. F7D532521F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1496. F7D532531F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1497. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1498. F7D532551F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1499. F7D532561F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Intro.strings"; sourceTree = "<group>"; };
  1500. F7D532571F5D4156006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Error.strings"; sourceTree = "<group>"; };
  1501. F7D5328C1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1502. F7D5328D1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1503. F7D5328E1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1504. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1505. F7D532901F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1506. F7D532911F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intro.strings"; sourceTree = "<group>"; };
  1507. F7D532921F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Error.strings"; sourceTree = "<group>"; };
  1508. F7D532A11F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1509. F7D532A21F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1510. F7D532A31F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1511. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1512. F7D532A51F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1513. F7D532A61F5D4462006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Intro.strings"; sourceTree = "<group>"; };
  1514. F7D532A71F5D4462006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Error.strings"; sourceTree = "<group>"; };
  1515. F7DC5FE81F011EB700A903C7 /* MGSwipeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeButton.h; sourceTree = "<group>"; };
  1516. F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeButton.m; sourceTree = "<group>"; };
  1517. F7DC5FEA1F011EB700A903C7 /* MGSwipeTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeTableCell.h; sourceTree = "<group>"; };
  1518. F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeTableCell.m; sourceTree = "<group>"; };
  1519. F7DE9AAD1F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1520. F7DE9AAE1F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1521. F7DE9AAF1F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1522. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1523. F7DE9AB11F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1524. F7DE9AB21F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Intro.strings; sourceTree = "<group>"; };
  1525. F7DE9AB31F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Error.strings; sourceTree = "<group>"; };
  1526. F7DFE24F1EBDC3A400CF5202 /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Realm.framework; sourceTree = "<group>"; };
  1527. F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RealmSwift.framework; sourceTree = "<group>"; };
  1528. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCCreateCloud.swift; sourceTree = "<group>"; };
  1529. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1530. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1531. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1532. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1533. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1534. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1535. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1536. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1537. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1538. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1539. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1540. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1541. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1542. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1543. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1544. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1545. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1546. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1547. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1548. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1549. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1550. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1551. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1552. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1553. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1554. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1555. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1556. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1557. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1558. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1559. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1560. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1561. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1562. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1563. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1564. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1565. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1566. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1567. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1568. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1569. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1570. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1571. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1572. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1573. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1574. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1575. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1576. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1577. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1578. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1579. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1580. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1581. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1582. F7F801001D98205A007537BC /* CCCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
  1583. F7F801011D98205A007537BC /* CCCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
  1584. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1585. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1586. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1587. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1588. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1589. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1590. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1591. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1592. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1593. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1594. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  1595. /* End PBXFileReference section */
  1596. /* Begin PBXFrameworksBuildPhase section */
  1597. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1598. isa = PBXFrameworksBuildPhase;
  1599. buildActionMask = 2147483647;
  1600. files = (
  1601. F7DFE2551EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1602. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */,
  1603. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */,
  1604. F7DFE2521EBDC3A400CF5202 /* Realm.framework in Frameworks */,
  1605. );
  1606. runOnlyForDeploymentPostprocessing = 0;
  1607. };
  1608. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1609. isa = PBXFrameworksBuildPhase;
  1610. buildActionMask = 2147483647;
  1611. files = (
  1612. F771E3FD20E23BA700AFB62D /* Realm.framework in Frameworks */,
  1613. F771E3FF20E23C3A00AFB62D /* libssl.a in Frameworks */,
  1614. F771E40020E23C3D00AFB62D /* libcrypto.a in Frameworks */,
  1615. F771E3FE20E23BAB00AFB62D /* RealmSwift.framework in Frameworks */,
  1616. );
  1617. runOnlyForDeploymentPostprocessing = 0;
  1618. };
  1619. F771E3DB20E2392E00AFB62D /* Frameworks */ = {
  1620. isa = PBXFrameworksBuildPhase;
  1621. buildActionMask = 2147483647;
  1622. files = (
  1623. );
  1624. runOnlyForDeploymentPostprocessing = 0;
  1625. };
  1626. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1627. isa = PBXFrameworksBuildPhase;
  1628. buildActionMask = 2147483647;
  1629. files = (
  1630. F7DFE2571EBDC52E00CF5202 /* Realm.framework in Frameworks */,
  1631. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  1632. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  1633. F7DFE2541EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1634. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */,
  1635. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1636. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */,
  1637. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */,
  1638. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */,
  1639. );
  1640. runOnlyForDeploymentPostprocessing = 0;
  1641. };
  1642. /* End PBXFrameworksBuildPhase section */
  1643. /* Begin PBXGroup section */
  1644. F70022561EC4C9100080073F /* OCCommunicationLib */ = {
  1645. isa = PBXGroup;
  1646. children = (
  1647. F70022571EC4C9100080073F /* ExternalLibs */,
  1648. F70022661EC4C9100080073F /* OCActivity.h */,
  1649. F70022671EC4C9100080073F /* OCActivity.m */,
  1650. F70022681EC4C9100080073F /* OCCapabilities.h */,
  1651. F70022691EC4C9100080073F /* OCCapabilities.m */,
  1652. F700226A1EC4C9100080073F /* OCCommunication.h */,
  1653. F700226B1EC4C9100080073F /* OCCommunication.m */,
  1654. F700226C1EC4C9100080073F /* OCErrorMsg.h */,
  1655. F700226D1EC4C9100080073F /* OCExternalSites.h */,
  1656. F700226E1EC4C9100080073F /* OCExternalSites.m */,
  1657. F700226F1EC4C9100080073F /* OCFileDto.h */,
  1658. F70022701EC4C9100080073F /* OCFileDto.m */,
  1659. F70022711EC4C9100080073F /* OCFrameworkConstants.h */,
  1660. F70022721EC4C9100080073F /* OCNotifications.h */,
  1661. F70022731EC4C9100080073F /* OCNotifications.m */,
  1662. F70022741EC4C9100080073F /* OCNotificationsAction.h */,
  1663. F70022751EC4C9100080073F /* OCNotificationsAction.m */,
  1664. F70022761EC4C9100080073F /* OCRichObjectStrings.h */,
  1665. F70022771EC4C9100080073F /* OCRichObjectStrings.m */,
  1666. F70022781EC4C9100080073F /* OCSharedDto.h */,
  1667. F70022791EC4C9100080073F /* OCSharedDto.m */,
  1668. F700227A1EC4C9100080073F /* OCShareUser.h */,
  1669. F700227B1EC4C9100080073F /* OCShareUser.m */,
  1670. F700227C1EC4C9100080073F /* OCUserProfile.h */,
  1671. F700227D1EC4C9100080073F /* OCUserProfile.m */,
  1672. F700227E1EC4C9100080073F /* OCWebDavClient */,
  1673. F700229B1EC4C9100080073F /* Utils */,
  1674. );
  1675. name = OCCommunicationLib;
  1676. path = Library/OCCommunicationLib;
  1677. sourceTree = "<group>";
  1678. };
  1679. F70022571EC4C9100080073F /* ExternalLibs */ = {
  1680. isa = PBXGroup;
  1681. children = (
  1682. F70022581EC4C9100080073F /* AFNetworking */,
  1683. );
  1684. path = ExternalLibs;
  1685. sourceTree = "<group>";
  1686. };
  1687. F70022581EC4C9100080073F /* AFNetworking */ = {
  1688. isa = PBXGroup;
  1689. children = (
  1690. F70022591EC4C9100080073F /* AFHTTPSessionManager.h */,
  1691. F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */,
  1692. F700225B1EC4C9100080073F /* AFNetworking.h */,
  1693. F700225C1EC4C9100080073F /* AFNetworkReachabilityManager.h */,
  1694. F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */,
  1695. F700225E1EC4C9100080073F /* AFSecurityPolicy.h */,
  1696. F700225F1EC4C9100080073F /* AFSecurityPolicy.m */,
  1697. F70022601EC4C9100080073F /* AFURLRequestSerialization.h */,
  1698. F70022611EC4C9100080073F /* AFURLRequestSerialization.m */,
  1699. F70022621EC4C9100080073F /* AFURLResponseSerialization.h */,
  1700. F70022631EC4C9100080073F /* AFURLResponseSerialization.m */,
  1701. F70022641EC4C9100080073F /* AFURLSessionManager.h */,
  1702. F70022651EC4C9100080073F /* AFURLSessionManager.m */,
  1703. );
  1704. path = AFNetworking;
  1705. sourceTree = "<group>";
  1706. };
  1707. F700227E1EC4C9100080073F /* OCWebDavClient */ = {
  1708. isa = PBXGroup;
  1709. children = (
  1710. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */,
  1711. F70022801EC4C9100080073F /* NSDate+ISO8601.m */,
  1712. F70022811EC4C9100080073F /* NSDate+RFC1123.h */,
  1713. F70022821EC4C9100080073F /* NSDate+RFC1123.m */,
  1714. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */,
  1715. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */,
  1716. F70022851EC4C9100080073F /* OCWebDAVClient.h */,
  1717. F70022861EC4C9100080073F /* OCWebDAVClient.m */,
  1718. F70022871EC4C9100080073F /* Parsers */,
  1719. );
  1720. path = OCWebDavClient;
  1721. sourceTree = "<group>";
  1722. };
  1723. F70022871EC4C9100080073F /* Parsers */ = {
  1724. isa = PBXGroup;
  1725. children = (
  1726. F70022881EC4C9100080073F /* OCXMLListParser.h */,
  1727. F70022891EC4C9100080073F /* OCXMLListParser.m */,
  1728. F700228A1EC4C9100080073F /* OCXMLParser.h */,
  1729. F700228B1EC4C9100080073F /* OCXMLParser.m */,
  1730. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */,
  1731. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */,
  1732. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */,
  1733. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */,
  1734. F70022901EC4C9100080073F /* OCXMLSharedParser.h */,
  1735. F70022911EC4C9100080073F /* OCXMLSharedParser.m */,
  1736. );
  1737. path = Parsers;
  1738. sourceTree = "<group>";
  1739. };
  1740. F700229B1EC4C9100080073F /* Utils */ = {
  1741. isa = PBXGroup;
  1742. children = (
  1743. F700229C1EC4C9100080073F /* NSString+Encode.h */,
  1744. F700229D1EC4C9100080073F /* NSString+Encode.m */,
  1745. F700229E1EC4C9100080073F /* OCConstants.h */,
  1746. F700229F1EC4C9100080073F /* UtilsFramework.h */,
  1747. F70022A01EC4C9100080073F /* UtilsFramework.m */,
  1748. );
  1749. path = Utils;
  1750. sourceTree = "<group>";
  1751. };
  1752. F70211F31BAC56E9003FC03E /* Main */ = {
  1753. isa = PBXGroup;
  1754. children = (
  1755. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */,
  1756. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  1757. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  1758. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  1759. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  1760. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  1761. F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */,
  1762. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1763. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1764. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1765. F7D0E65E1BC5042E008D989A /* CCDetail.h */,
  1766. F7D0E65F1BC5042E008D989A /* CCDetail.m */,
  1767. F73F537E1E929C8500F8678D /* CCMore.swift */,
  1768. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1769. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1770. F792A77B1BC7C45400C9388E /* CCSplit.h */,
  1771. F792A77C1BC7C45400C9388E /* CCSplit.m */,
  1772. );
  1773. path = Main;
  1774. sourceTree = "<group>";
  1775. };
  1776. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1777. isa = PBXGroup;
  1778. children = (
  1779. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1780. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1781. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1782. );
  1783. path = UploadFromOtherUpp;
  1784. sourceTree = "<group>";
  1785. };
  1786. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1787. isa = PBXGroup;
  1788. children = (
  1789. F70F02B21C889183008DAB36 /* AFViewShaker */,
  1790. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */,
  1791. F7659A211DC0B726004860C4 /* EAIntroView */,
  1792. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */,
  1793. F78964A61EBB576C00403E13 /* JDStatusBarNotification */,
  1794. F7659A2F1DC0B737004860C4 /* iRate */,
  1795. F70F04821C889183008DAB36 /* MBProgressHUD */,
  1796. F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */,
  1797. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */,
  1798. F7540EE11D5B238600C3FFA8 /* openssl */,
  1799. F75037421DBFA91A008FB480 /* PureLayout */,
  1800. F70F05241C889184008DAB36 /* Reachability */,
  1801. F7DFE24E1EBDC3A400CF5202 /* Realm */,
  1802. F7A55417204EF8AF008468EC /* TOScrollBar */,
  1803. F75AE3C51E9D12900088BB09 /* SwiftyAvatar */,
  1804. F73CCE271DC13798007E38D8 /* UICKeyChainStore */,
  1805. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  1806. );
  1807. path = "Libraries external";
  1808. sourceTree = SOURCE_ROOT;
  1809. };
  1810. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  1811. isa = PBXGroup;
  1812. children = (
  1813. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  1814. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  1815. );
  1816. path = AFViewShaker;
  1817. sourceTree = "<group>";
  1818. };
  1819. F70F04821C889183008DAB36 /* MBProgressHUD */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. F70F04831C889183008DAB36 /* MBProgressHUD.h */,
  1823. F70F04841C889183008DAB36 /* MBProgressHUD.m */,
  1824. );
  1825. path = MBProgressHUD;
  1826. sourceTree = "<group>";
  1827. };
  1828. F70F05241C889184008DAB36 /* Reachability */ = {
  1829. isa = PBXGroup;
  1830. children = (
  1831. F70F05251C889184008DAB36 /* Reachability.h */,
  1832. F70F05261C889184008DAB36 /* Reachability.m */,
  1833. );
  1834. path = Reachability;
  1835. sourceTree = "<group>";
  1836. };
  1837. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  1838. isa = PBXGroup;
  1839. children = (
  1840. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  1841. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  1842. );
  1843. path = "UIImage+animatedGIF";
  1844. sourceTree = "<group>";
  1845. };
  1846. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1847. isa = PBXGroup;
  1848. children = (
  1849. F710E80D1EF95C9C00DC2427 /* CCIntro.h */,
  1850. F710E80E1EF95C9C00DC2427 /* CCIntro.m */,
  1851. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1852. );
  1853. path = Intro;
  1854. sourceTree = "<group>";
  1855. };
  1856. F7169A161EE590930086BD69 /* Shares */ = {
  1857. isa = PBXGroup;
  1858. children = (
  1859. F7169A171EE590930086BD69 /* NCShares.h */,
  1860. F7169A181EE590930086BD69 /* NCShares.m */,
  1861. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  1862. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  1863. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  1864. );
  1865. path = Shares;
  1866. sourceTree = "<group>";
  1867. };
  1868. F720E02A1E48C74C001A4B9E /* Actions */ = {
  1869. isa = PBXGroup;
  1870. children = (
  1871. F720E01E1E48C73E001A4B9E /* CCActions.swift */,
  1872. );
  1873. name = Actions;
  1874. sourceTree = "<group>";
  1875. };
  1876. F728CE741BF6322C00E69702 /* Share */ = {
  1877. isa = PBXGroup;
  1878. children = (
  1879. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */,
  1880. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */,
  1881. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */,
  1882. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */,
  1883. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */,
  1884. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */,
  1885. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */,
  1886. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */,
  1887. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */,
  1888. );
  1889. path = Share;
  1890. sourceTree = "<group>";
  1891. };
  1892. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  1893. isa = PBXGroup;
  1894. children = (
  1895. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  1896. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  1897. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  1898. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  1899. );
  1900. path = AHKActionSheet;
  1901. sourceTree = "<group>";
  1902. };
  1903. F72B60941A24F04E004EF66F /* Localizations */ = {
  1904. isa = PBXGroup;
  1905. children = (
  1906. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */,
  1907. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */,
  1908. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */,
  1909. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1910. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */,
  1911. F744BE9F1BEBB69F004FFF66 /* Intro.strings */,
  1912. F7B381BF1C074E3E004693F8 /* Error.strings */,
  1913. );
  1914. name = Localizations;
  1915. sourceTree = "<group>";
  1916. };
  1917. F73B4EAC1F470D9100BBEE4B /* src */ = {
  1918. isa = PBXGroup;
  1919. children = (
  1920. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */,
  1921. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */,
  1922. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */,
  1923. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */,
  1924. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */,
  1925. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */,
  1926. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */,
  1927. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */,
  1928. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */,
  1929. F73B4EB61F470D9100BBEE4B /* JpCntx.h */,
  1930. F73B4EB71F470D9100BBEE4B /* LangModels */,
  1931. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */,
  1932. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */,
  1933. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */,
  1934. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */,
  1935. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */,
  1936. F73B4ECB1F470D9100BBEE4B /* nscore.h */,
  1937. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */,
  1938. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */,
  1939. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */,
  1940. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */,
  1941. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */,
  1942. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */,
  1943. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */,
  1944. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */,
  1945. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */,
  1946. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */,
  1947. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */,
  1948. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */,
  1949. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */,
  1950. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */,
  1951. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */,
  1952. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */,
  1953. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */,
  1954. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */,
  1955. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */,
  1956. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */,
  1957. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */,
  1958. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */,
  1959. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */,
  1960. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */,
  1961. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */,
  1962. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */,
  1963. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */,
  1964. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */,
  1965. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */,
  1966. F73B4EE91F470D9100BBEE4B /* prmem.h */,
  1967. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */,
  1968. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */,
  1969. F73B4EED1F470D9100BBEE4B /* uchardet.h */,
  1970. );
  1971. path = src;
  1972. sourceTree = "<group>";
  1973. };
  1974. F73B4EB71F470D9100BBEE4B /* LangModels */ = {
  1975. isa = PBXGroup;
  1976. children = (
  1977. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */,
  1978. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */,
  1979. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */,
  1980. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */,
  1981. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */,
  1982. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */,
  1983. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */,
  1984. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */,
  1985. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */,
  1986. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */,
  1987. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */,
  1988. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */,
  1989. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */,
  1990. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */,
  1991. );
  1992. path = LangModels;
  1993. sourceTree = "<group>";
  1994. };
  1995. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  1996. isa = PBXGroup;
  1997. children = (
  1998. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  1999. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  2000. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  2001. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  2002. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  2003. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  2004. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  2005. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  2006. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  2007. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  2008. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  2009. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  2010. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  2011. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  2012. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  2013. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  2014. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  2015. );
  2016. path = BKPasscodeView;
  2017. sourceTree = "<group>";
  2018. };
  2019. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */ = {
  2020. isa = PBXGroup;
  2021. children = (
  2022. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */,
  2023. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */,
  2024. );
  2025. path = DZNEmptyDataSet;
  2026. sourceTree = "<group>";
  2027. };
  2028. F73CCE271DC13798007E38D8 /* UICKeyChainStore */ = {
  2029. isa = PBXGroup;
  2030. children = (
  2031. F73CCE281DC13798007E38D8 /* Info.plist */,
  2032. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */,
  2033. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */,
  2034. );
  2035. path = UICKeyChainStore;
  2036. sourceTree = "<group>";
  2037. };
  2038. F73D71561F26739100E233EB /* Text */ = {
  2039. isa = PBXGroup;
  2040. children = (
  2041. F73D71611F2673C200E233EB /* NCText.swift */,
  2042. F73D71631F2674A400E233EB /* NCText.storyboard */,
  2043. );
  2044. path = Text;
  2045. sourceTree = "<group>";
  2046. };
  2047. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  2048. isa = PBXGroup;
  2049. children = (
  2050. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  2051. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  2052. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  2053. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  2054. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  2055. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */,
  2056. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */,
  2057. );
  2058. path = Networking;
  2059. sourceTree = "<group>";
  2060. };
  2061. F75037421DBFA91A008FB480 /* PureLayout */ = {
  2062. isa = PBXGroup;
  2063. children = (
  2064. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  2065. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  2066. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  2067. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  2068. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  2069. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  2070. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  2071. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  2072. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  2073. );
  2074. path = PureLayout;
  2075. sourceTree = "<group>";
  2076. };
  2077. F7540EE11D5B238600C3FFA8 /* openssl */ = {
  2078. isa = PBXGroup;
  2079. children = (
  2080. F70A63061D5B3467004E2AA5 /* libcrypto.a */,
  2081. F70A63071D5B3467004E2AA5 /* libssl.a */,
  2082. F7540EE21D5B238600C3FFA8 /* aes.h */,
  2083. F7540EE31D5B238600C3FFA8 /* asn1.h */,
  2084. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */,
  2085. F7540EE51D5B238600C3FFA8 /* asn1t.h */,
  2086. F7540EE61D5B238600C3FFA8 /* bio.h */,
  2087. F7540EE71D5B238600C3FFA8 /* blowfish.h */,
  2088. F7540EE81D5B238600C3FFA8 /* bn.h */,
  2089. F7540EE91D5B238600C3FFA8 /* buffer.h */,
  2090. F7540EEA1D5B238600C3FFA8 /* camellia.h */,
  2091. F7540EEB1D5B238600C3FFA8 /* cast.h */,
  2092. F7540EEC1D5B238600C3FFA8 /* cmac.h */,
  2093. F7540EED1D5B238600C3FFA8 /* cms.h */,
  2094. F7540EEE1D5B238600C3FFA8 /* comp.h */,
  2095. F7540EEF1D5B238600C3FFA8 /* conf.h */,
  2096. F7540EF01D5B238600C3FFA8 /* conf_api.h */,
  2097. F7540EF11D5B238600C3FFA8 /* crypto.h */,
  2098. F7540EF21D5B238600C3FFA8 /* des.h */,
  2099. F7540EF41D5B238600C3FFA8 /* dh.h */,
  2100. F7540EF51D5B238600C3FFA8 /* dsa.h */,
  2101. F7540EF71D5B238600C3FFA8 /* dtls1.h */,
  2102. F7540EF81D5B238600C3FFA8 /* e_os2.h */,
  2103. F7540EF91D5B238600C3FFA8 /* ebcdic.h */,
  2104. F7540EFA1D5B238600C3FFA8 /* ec.h */,
  2105. F7540EFB1D5B238600C3FFA8 /* ecdh.h */,
  2106. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */,
  2107. F7540EFD1D5B238600C3FFA8 /* engine.h */,
  2108. F7540EFE1D5B238600C3FFA8 /* err.h */,
  2109. F7540EFF1D5B238600C3FFA8 /* evp.h */,
  2110. F7540F001D5B238600C3FFA8 /* hmac.h */,
  2111. F7540F011D5B238600C3FFA8 /* idea.h */,
  2112. F7540F041D5B238600C3FFA8 /* lhash.h */,
  2113. F7540F051D5B238600C3FFA8 /* md4.h */,
  2114. F7540F061D5B238600C3FFA8 /* md5.h */,
  2115. F7540F071D5B238600C3FFA8 /* mdc2.h */,
  2116. F7540F081D5B238600C3FFA8 /* modes.h */,
  2117. F7540F091D5B238600C3FFA8 /* obj_mac.h */,
  2118. F7540F0A1D5B238600C3FFA8 /* objects.h */,
  2119. F7540F0B1D5B238600C3FFA8 /* ocsp.h */,
  2120. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */,
  2121. F7540F0D1D5B238600C3FFA8 /* opensslv.h */,
  2122. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */,
  2123. F7540F0F1D5B238600C3FFA8 /* pem.h */,
  2124. F7540F101D5B238600C3FFA8 /* pem2.h */,
  2125. F7540F111D5B238600C3FFA8 /* pkcs12.h */,
  2126. F7540F121D5B238600C3FFA8 /* pkcs7.h */,
  2127. F7540F141D5B238600C3FFA8 /* rand.h */,
  2128. F7540F151D5B238600C3FFA8 /* rc2.h */,
  2129. F7540F161D5B238600C3FFA8 /* rc4.h */,
  2130. F7540F171D5B238600C3FFA8 /* ripemd.h */,
  2131. F7540F181D5B238600C3FFA8 /* rsa.h */,
  2132. F7540F191D5B238600C3FFA8 /* safestack.h */,
  2133. F7540F1A1D5B238600C3FFA8 /* seed.h */,
  2134. F7540F1B1D5B238600C3FFA8 /* sha.h */,
  2135. F7540F1C1D5B238600C3FFA8 /* srp.h */,
  2136. F7540F1D1D5B238600C3FFA8 /* srtp.h */,
  2137. F7540F1E1D5B238600C3FFA8 /* ssl.h */,
  2138. F7540F1F1D5B238600C3FFA8 /* ssl2.h */,
  2139. F7540F211D5B238600C3FFA8 /* ssl3.h */,
  2140. F7540F221D5B238600C3FFA8 /* stack.h */,
  2141. F7540F231D5B238600C3FFA8 /* symhacks.h */,
  2142. F7540F241D5B238600C3FFA8 /* tls1.h */,
  2143. F7540F251D5B238600C3FFA8 /* ts.h */,
  2144. F7540F261D5B238600C3FFA8 /* txt_db.h */,
  2145. F7540F271D5B238600C3FFA8 /* ui.h */,
  2146. F7540F291D5B238600C3FFA8 /* whrlpool.h */,
  2147. F7540F2A1D5B238600C3FFA8 /* x509.h */,
  2148. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */,
  2149. F7540F2C1D5B238600C3FFA8 /* x509v3.h */,
  2150. );
  2151. path = openssl;
  2152. sourceTree = "<group>";
  2153. };
  2154. F75AE3C51E9D12900088BB09 /* SwiftyAvatar */ = {
  2155. isa = PBXGroup;
  2156. children = (
  2157. F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */,
  2158. );
  2159. path = SwiftyAvatar;
  2160. sourceTree = "<group>";
  2161. };
  2162. F762CA9F1EACB66200B38484 /* XLForm */ = {
  2163. isa = PBXGroup;
  2164. children = (
  2165. F762CAA11EACB66200B38484 /* XL */,
  2166. F762CAF51EACB66200B38484 /* XLForm.bundle */,
  2167. );
  2168. path = XLForm;
  2169. sourceTree = "<group>";
  2170. };
  2171. F762CAA11EACB66200B38484 /* XL */ = {
  2172. isa = PBXGroup;
  2173. children = (
  2174. F762CAA21EACB66200B38484 /* Cell */,
  2175. F762CAC51EACB66200B38484 /* Controllers */,
  2176. F762CACD1EACB66200B38484 /* Descriptors */,
  2177. F762CAD51EACB66200B38484 /* Helpers */,
  2178. F762CAEB1EACB66200B38484 /* Validation */,
  2179. F762CAF31EACB66200B38484 /* XLForm.h */,
  2180. F762CAF41EACB66200B38484 /* XLForm.m */,
  2181. );
  2182. path = XL;
  2183. sourceTree = "<group>";
  2184. };
  2185. F762CAA21EACB66200B38484 /* Cell */ = {
  2186. isa = PBXGroup;
  2187. children = (
  2188. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */,
  2189. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */,
  2190. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */,
  2191. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */,
  2192. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */,
  2193. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */,
  2194. F762CAA91EACB66200B38484 /* XLFormDateCell.h */,
  2195. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */,
  2196. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */,
  2197. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */,
  2198. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */,
  2199. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */,
  2200. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */,
  2201. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */,
  2202. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */,
  2203. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */,
  2204. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */,
  2205. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */,
  2206. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */,
  2207. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */,
  2208. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */,
  2209. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */,
  2210. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */,
  2211. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */,
  2212. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */,
  2213. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */,
  2214. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */,
  2215. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */,
  2216. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */,
  2217. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */,
  2218. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */,
  2219. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */,
  2220. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */,
  2221. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */,
  2222. );
  2223. path = Cell;
  2224. sourceTree = "<group>";
  2225. };
  2226. F762CAC51EACB66200B38484 /* Controllers */ = {
  2227. isa = PBXGroup;
  2228. children = (
  2229. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */,
  2230. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */,
  2231. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */,
  2232. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */,
  2233. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */,
  2234. F762CACB1EACB66200B38484 /* XLFormViewController.h */,
  2235. F762CACC1EACB66200B38484 /* XLFormViewController.m */,
  2236. );
  2237. path = Controllers;
  2238. sourceTree = "<group>";
  2239. };
  2240. F762CACD1EACB66200B38484 /* Descriptors */ = {
  2241. isa = PBXGroup;
  2242. children = (
  2243. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */,
  2244. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */,
  2245. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */,
  2246. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */,
  2247. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */,
  2248. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */,
  2249. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */,
  2250. );
  2251. path = Descriptors;
  2252. sourceTree = "<group>";
  2253. };
  2254. F762CAD51EACB66200B38484 /* Helpers */ = {
  2255. isa = PBXGroup;
  2256. children = (
  2257. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */,
  2258. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */,
  2259. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */,
  2260. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */,
  2261. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */,
  2262. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */,
  2263. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */,
  2264. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */,
  2265. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */,
  2266. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */,
  2267. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */,
  2268. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */,
  2269. F762CAE21EACB66200B38484 /* Views */,
  2270. );
  2271. path = Helpers;
  2272. sourceTree = "<group>";
  2273. };
  2274. F762CAE21EACB66200B38484 /* Views */ = {
  2275. isa = PBXGroup;
  2276. children = (
  2277. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */,
  2278. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */,
  2279. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */,
  2280. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */,
  2281. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */,
  2282. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */,
  2283. F762CAE91EACB66200B38484 /* XLFormTextView.h */,
  2284. F762CAEA1EACB66200B38484 /* XLFormTextView.m */,
  2285. );
  2286. path = Views;
  2287. sourceTree = "<group>";
  2288. };
  2289. F762CAEB1EACB66200B38484 /* Validation */ = {
  2290. isa = PBXGroup;
  2291. children = (
  2292. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */,
  2293. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */,
  2294. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */,
  2295. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */,
  2296. F762CAF01EACB66200B38484 /* XLFormValidator.h */,
  2297. F762CAF11EACB66200B38484 /* XLFormValidator.m */,
  2298. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */,
  2299. );
  2300. path = Validation;
  2301. sourceTree = "<group>";
  2302. };
  2303. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */ = {
  2304. isa = PBXGroup;
  2305. children = (
  2306. F7D423501F0596C6009C9782 /* Sources */,
  2307. F7D423151F0596AC009C9782 /* Graphics */,
  2308. );
  2309. path = "VFR Pdf Reader";
  2310. sourceTree = "<group>";
  2311. };
  2312. F762CB7B1EACB81000B38484 /* REMenu */ = {
  2313. isa = PBXGroup;
  2314. children = (
  2315. F762CB7C1EACB81000B38484 /* RECommonFunctions.h */,
  2316. F762CB7D1EACB81000B38484 /* RECommonFunctions.m */,
  2317. F762CB7E1EACB81000B38484 /* REMenu.h */,
  2318. F762CB7F1EACB81000B38484 /* REMenu.m */,
  2319. F762CB801EACB81000B38484 /* REMenuContainerView.h */,
  2320. F762CB811EACB81000B38484 /* REMenuContainerView.m */,
  2321. F762CB821EACB81000B38484 /* REMenuItem.h */,
  2322. F762CB831EACB81000B38484 /* REMenuItem.m */,
  2323. F762CB841EACB81000B38484 /* REMenuItemView.h */,
  2324. F762CB851EACB81000B38484 /* REMenuItemView.m */,
  2325. );
  2326. path = REMenu;
  2327. sourceTree = "<group>";
  2328. };
  2329. F762CB8B1EACB84400B38484 /* TWMessageBarManager */ = {
  2330. isa = PBXGroup;
  2331. children = (
  2332. F762CB8C1EACB84400B38484 /* Icons */,
  2333. F762CB931EACB84400B38484 /* TWMessageBarManager.h */,
  2334. F762CB941EACB84400B38484 /* TWMessageBarManager.m */,
  2335. );
  2336. path = TWMessageBarManager;
  2337. sourceTree = "<group>";
  2338. };
  2339. F762CB8C1EACB84400B38484 /* Icons */ = {
  2340. isa = PBXGroup;
  2341. children = (
  2342. F762CB8D1EACB84400B38484 /* icon-error.png */,
  2343. F762CB8E1EACB84400B38484 /* icon-error@2x.png */,
  2344. F762CB8F1EACB84400B38484 /* icon-info.png */,
  2345. F762CB901EACB84400B38484 /* icon-info@2x.png */,
  2346. F762CB911EACB84400B38484 /* icon-success.png */,
  2347. F762CB921EACB84400B38484 /* icon-success@2x.png */,
  2348. );
  2349. path = Icons;
  2350. sourceTree = "<group>";
  2351. };
  2352. F7659A211DC0B726004860C4 /* EAIntroView */ = {
  2353. isa = PBXGroup;
  2354. children = (
  2355. F7659A221DC0B726004860C4 /* EAIntroPage.h */,
  2356. F7659A231DC0B726004860C4 /* EAIntroPage.m */,
  2357. F7659A241DC0B726004860C4 /* EAIntroView.h */,
  2358. F7659A251DC0B726004860C4 /* EAIntroView.m */,
  2359. );
  2360. path = EAIntroView;
  2361. sourceTree = "<group>";
  2362. };
  2363. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */ = {
  2364. isa = PBXGroup;
  2365. children = (
  2366. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */,
  2367. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */,
  2368. );
  2369. path = EARestrictedScrollView;
  2370. sourceTree = "<group>";
  2371. };
  2372. F7659A2F1DC0B737004860C4 /* iRate */ = {
  2373. isa = PBXGroup;
  2374. children = (
  2375. F7659A311DC0B737004860C4 /* iRate.bundle */,
  2376. F7659A321DC0B737004860C4 /* iRate.h */,
  2377. F7659A331DC0B737004860C4 /* iRate.m */,
  2378. );
  2379. path = iRate;
  2380. sourceTree = "<group>";
  2381. };
  2382. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  2383. isa = PBXGroup;
  2384. children = (
  2385. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  2386. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  2387. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  2388. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  2389. F771E3F620E239B400AFB62D /* FileProviderExtension+Network.swift */,
  2390. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  2391. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  2392. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  2393. );
  2394. path = "File Provider Extension";
  2395. sourceTree = "<group>";
  2396. };
  2397. F771E3DF20E2392E00AFB62D /* File Provider ExtensionUI */ = {
  2398. isa = PBXGroup;
  2399. children = (
  2400. F771E3E020E2392E00AFB62D /* DocumentActionViewController.swift */,
  2401. F771E3E220E2392E00AFB62D /* MainInterface.storyboard */,
  2402. F771E3E520E2392E00AFB62D /* Info.plist */,
  2403. );
  2404. path = "File Provider ExtensionUI";
  2405. sourceTree = "<group>";
  2406. };
  2407. F780711E1EDB135100EAFFF6 /* Photos */ = {
  2408. isa = PBXGroup;
  2409. children = (
  2410. F780711F1EDB135100EAFFF6 /* CCPhotos.h */,
  2411. F78071201EDB135100EAFFF6 /* CCPhotos.m */,
  2412. );
  2413. path = Photos;
  2414. sourceTree = "<group>";
  2415. };
  2416. F78964A61EBB576C00403E13 /* JDStatusBarNotification */ = {
  2417. isa = PBXGroup;
  2418. children = (
  2419. F78964A71EBB576C00403E13 /* JDStatusBarNotification.h */,
  2420. F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */,
  2421. F78964A91EBB576C00403E13 /* JDStatusBarStyle.h */,
  2422. F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */,
  2423. F78964AB1EBB576C00403E13 /* JDStatusBarView.h */,
  2424. F78964AC1EBB576C00403E13 /* JDStatusBarView.m */,
  2425. );
  2426. path = JDStatusBarNotification;
  2427. sourceTree = "<group>";
  2428. };
  2429. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  2430. isa = PBXGroup;
  2431. children = (
  2432. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  2433. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  2434. );
  2435. path = Favorites;
  2436. sourceTree = "<group>";
  2437. };
  2438. F7A321621E9E37960069AD1B /* Activity */ = {
  2439. isa = PBXGroup;
  2440. children = (
  2441. F7A321631E9E37960069AD1B /* CCActivity.h */,
  2442. F7A321641E9E37960069AD1B /* CCActivity.m */,
  2443. );
  2444. path = Activity;
  2445. sourceTree = "<group>";
  2446. };
  2447. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  2448. isa = PBXGroup;
  2449. children = (
  2450. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  2451. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  2452. );
  2453. path = MenuAccount;
  2454. sourceTree = "<group>";
  2455. };
  2456. F7A377131EB2364A002856D3 /* Fabric */ = {
  2457. isa = PBXGroup;
  2458. children = (
  2459. F7A377141EB2364A002856D3 /* Crashlytics.framework */,
  2460. F7A377151EB2364A002856D3 /* Fabric.framework */,
  2461. );
  2462. name = Fabric;
  2463. path = "Libraries external/Fabric";
  2464. sourceTree = SOURCE_ROOT;
  2465. };
  2466. F7A55417204EF8AF008468EC /* TOScrollBar */ = {
  2467. isa = PBXGroup;
  2468. children = (
  2469. F7A55419204EF8AF008468EC /* TOScrollBar.h */,
  2470. F7A5541B204EF8AF008468EC /* TOScrollBar.m */,
  2471. F7A5541C204EF8AF008468EC /* TOScrollBarGestureRecognizer.h */,
  2472. F7A55418204EF8AF008468EC /* TOScrollBarGestureRecognizer.m */,
  2473. F7A5541A204EF8AF008468EC /* UIScrollView+TOScrollBar.h */,
  2474. F7A5541D204EF8AF008468EC /* UIScrollView+TOScrollBar.m */,
  2475. );
  2476. path = TOScrollBar;
  2477. sourceTree = "<group>";
  2478. };
  2479. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2480. isa = PBXGroup;
  2481. children = (
  2482. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2483. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2484. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2485. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  2486. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  2487. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2488. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2489. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  2490. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  2491. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  2492. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  2493. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  2494. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  2495. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  2496. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  2497. );
  2498. path = Settings;
  2499. sourceTree = "<group>";
  2500. };
  2501. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  2502. isa = PBXGroup;
  2503. children = (
  2504. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  2505. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  2506. );
  2507. path = Synchronize;
  2508. sourceTree = "<group>";
  2509. };
  2510. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  2511. isa = PBXGroup;
  2512. children = (
  2513. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  2514. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  2515. );
  2516. path = AutoUpload;
  2517. sourceTree = "<group>";
  2518. };
  2519. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */ = {
  2520. isa = PBXGroup;
  2521. children = (
  2522. F7B1FBB01E72E3D1001781FE /* Resources */,
  2523. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */,
  2524. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */,
  2525. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */,
  2526. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */,
  2527. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */,
  2528. );
  2529. path = SwiftWebVC;
  2530. sourceTree = "<group>";
  2531. };
  2532. F7B1FBB01E72E3D1001781FE /* Resources */ = {
  2533. isa = PBXGroup;
  2534. children = (
  2535. F7B1FBB11E72E3D1001781FE /* Media.xcassets */,
  2536. );
  2537. path = Resources;
  2538. sourceTree = "<group>";
  2539. };
  2540. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */ = {
  2541. isa = PBXGroup;
  2542. children = (
  2543. F7B2DEEC1F976785007CF4D2 /* languages */,
  2544. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */,
  2545. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */,
  2546. );
  2547. path = NYMnemonic;
  2548. sourceTree = "<group>";
  2549. };
  2550. F7B2DEEC1F976785007CF4D2 /* languages */ = {
  2551. isa = PBXGroup;
  2552. children = (
  2553. F7B2DEED1F976785007CF4D2 /* english.txt */,
  2554. );
  2555. path = languages;
  2556. sourceTree = "<group>";
  2557. };
  2558. F7B4F1C51F44356F00B53B42 /* NCUchardet */ = {
  2559. isa = PBXGroup;
  2560. children = (
  2561. F73B4EAC1F470D9100BBEE4B /* src */,
  2562. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */,
  2563. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */,
  2564. );
  2565. path = NCUchardet;
  2566. sourceTree = "<group>";
  2567. };
  2568. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  2569. isa = PBXGroup;
  2570. children = (
  2571. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  2572. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  2573. );
  2574. path = Database;
  2575. sourceTree = "<group>";
  2576. };
  2577. F7BE6E2A1D2D5C3B00106933 /* QuickActions */ = {
  2578. isa = PBXGroup;
  2579. children = (
  2580. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */,
  2581. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */,
  2582. );
  2583. path = QuickActions;
  2584. sourceTree = "<group>";
  2585. };
  2586. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  2587. isa = PBXGroup;
  2588. children = (
  2589. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  2590. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  2591. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  2592. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  2593. );
  2594. path = "ManageLocation+ManageAsset";
  2595. sourceTree = "<group>";
  2596. };
  2597. F7BFFA621A24D7300044ED85 /* Login */ = {
  2598. isa = PBXGroup;
  2599. children = (
  2600. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  2601. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  2602. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  2603. F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */,
  2604. );
  2605. path = Login;
  2606. sourceTree = "<group>";
  2607. };
  2608. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2609. isa = PBXGroup;
  2610. children = (
  2611. F76C3B871C638A4C00DC4301 /* CCError.h */,
  2612. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2613. F76C3B881C638A4C00DC4301 /* CCError.m */,
  2614. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  2615. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  2616. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  2617. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  2618. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  2619. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  2620. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2621. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2622. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  2623. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  2624. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  2625. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  2626. );
  2627. path = Utility;
  2628. sourceTree = "<group>";
  2629. };
  2630. F7C0F46D1C8880540059EC54 /* Share */ = {
  2631. isa = PBXGroup;
  2632. children = (
  2633. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  2634. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  2635. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  2636. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  2637. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  2638. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  2639. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  2640. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  2641. );
  2642. path = Share;
  2643. sourceTree = "<group>";
  2644. };
  2645. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2646. isa = PBXGroup;
  2647. children = (
  2648. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  2649. F710E80C1EF95C9C00DC2427 /* Intro */,
  2650. F700222B1EC479840080073F /* Custom.xcassets */,
  2651. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2652. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2653. F76F23331ED4603700C40023 /* LaunchScreen.xib */,
  2654. );
  2655. path = Brand;
  2656. sourceTree = "<group>";
  2657. };
  2658. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2659. isa = PBXGroup;
  2660. children = (
  2661. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  2662. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  2663. );
  2664. name = Notification;
  2665. sourceTree = "<group>";
  2666. };
  2667. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  2668. isa = PBXGroup;
  2669. children = (
  2670. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  2671. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  2672. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  2673. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  2674. F7496B81208F5651004B299C /* iOSClient.plist */,
  2675. F7496B83208F5652004B299C /* Share.plist */,
  2676. );
  2677. name = "Supporting Files";
  2678. sourceTree = "<group>";
  2679. };
  2680. F7D423151F0596AC009C9782 /* Graphics */ = {
  2681. isa = PBXGroup;
  2682. children = (
  2683. F7D423161F0596AC009C9782 /* AppIcon-076.png */,
  2684. F7D423171F0596AC009C9782 /* AppIcon-120.png */,
  2685. F7D423181F0596AC009C9782 /* AppIcon-152.png */,
  2686. F7D423191F0596AC009C9782 /* AppIcon-167.png */,
  2687. F7D4231A1F0596AC009C9782 /* AppIcon-180.png */,
  2688. F7D4231B1F0596AC009C9782 /* Reader-Button-H.png */,
  2689. F7D4231C1F0596AC009C9782 /* Reader-Button-H@2x.png */,
  2690. F7D4231D1F0596AC009C9782 /* Reader-Button-H@3x.png */,
  2691. F7D4231E1F0596AC009C9782 /* Reader-Button-N.png */,
  2692. F7D4231F1F0596AC009C9782 /* Reader-Button-N@2x.png */,
  2693. F7D423201F0596AC009C9782 /* Reader-Button-N@3x.png */,
  2694. F7D423211F0596AC009C9782 /* Reader-Email.png */,
  2695. F7D423221F0596AC009C9782 /* Reader-Email@2x.png */,
  2696. F7D423231F0596AC009C9782 /* Reader-Email@3x.png */,
  2697. F7D423241F0596AC009C9782 /* Reader-Export.png */,
  2698. F7D423251F0596AC009C9782 /* Reader-Export@2x.png */,
  2699. F7D423261F0596AC009C9782 /* Reader-Export@3x.png */,
  2700. F7D423271F0596AC009C9782 /* Reader-Mark-N.png */,
  2701. F7D423281F0596AC009C9782 /* Reader-Mark-N@2x.png */,
  2702. F7D423291F0596AC009C9782 /* Reader-Mark-N@3x.png */,
  2703. F7D4232A1F0596AC009C9782 /* Reader-Mark-Y.png */,
  2704. F7D4232B1F0596AC009C9782 /* Reader-Mark-Y@2x.png */,
  2705. F7D4232C1F0596AC009C9782 /* Reader-Mark-Y@3x.png */,
  2706. F7D4232D1F0596AC009C9782 /* Reader-Print.png */,
  2707. F7D4232E1F0596AC009C9782 /* Reader-Print@2x.png */,
  2708. F7D4232F1F0596AC009C9782 /* Reader-Print@3x.png */,
  2709. F7D423301F0596AC009C9782 /* Reader-Thumbs.png */,
  2710. F7D423311F0596AC009C9782 /* Reader-Thumbs@2x.png */,
  2711. F7D423321F0596AC009C9782 /* Reader-Thumbs@3x.png */,
  2712. );
  2713. path = Graphics;
  2714. sourceTree = "<group>";
  2715. };
  2716. F7D423501F0596C6009C9782 /* Sources */ = {
  2717. isa = PBXGroup;
  2718. children = (
  2719. F7D423511F0596C6009C9782 /* CGPDFDocument.h */,
  2720. F7D423521F0596C6009C9782 /* CGPDFDocument.m */,
  2721. F7D423531F0596C6009C9782 /* ReaderConstants.h */,
  2722. F7D423541F0596C6009C9782 /* ReaderConstants.m */,
  2723. F7D423551F0596C6009C9782 /* ReaderContentPage.h */,
  2724. F7D423561F0596C6009C9782 /* ReaderContentPage.m */,
  2725. F7D423571F0596C6009C9782 /* ReaderContentTile.h */,
  2726. F7D423581F0596C6009C9782 /* ReaderContentTile.m */,
  2727. F7D423591F0596C6009C9782 /* ReaderContentView.h */,
  2728. F7D4235A1F0596C6009C9782 /* ReaderContentView.m */,
  2729. F7D4235B1F0596C6009C9782 /* ReaderDocument.h */,
  2730. F7D4235C1F0596C6009C9782 /* ReaderDocument.m */,
  2731. F7D4235D1F0596C6009C9782 /* ReaderDocumentOutline.h */,
  2732. F7D4235E1F0596C6009C9782 /* ReaderDocumentOutline.m */,
  2733. F7D4235F1F0596C6009C9782 /* ReaderMainPagebar.h */,
  2734. F7D423601F0596C6009C9782 /* ReaderMainPagebar.m */,
  2735. F7D423611F0596C6009C9782 /* ReaderMainToolbar.h */,
  2736. F7D423621F0596C6009C9782 /* ReaderMainToolbar.m */,
  2737. F7D423631F0596C6009C9782 /* ReaderThumbCache.h */,
  2738. F7D423641F0596C6009C9782 /* ReaderThumbCache.m */,
  2739. F7D423651F0596C6009C9782 /* ReaderThumbFetch.h */,
  2740. F7D423661F0596C6009C9782 /* ReaderThumbFetch.m */,
  2741. F7D423671F0596C6009C9782 /* ReaderThumbQueue.h */,
  2742. F7D423681F0596C6009C9782 /* ReaderThumbQueue.m */,
  2743. F7D423691F0596C6009C9782 /* ReaderThumbRender.h */,
  2744. F7D4236A1F0596C6009C9782 /* ReaderThumbRender.m */,
  2745. F7D4236B1F0596C6009C9782 /* ReaderThumbRequest.h */,
  2746. F7D4236C1F0596C6009C9782 /* ReaderThumbRequest.m */,
  2747. F7D4236D1F0596C6009C9782 /* ReaderThumbsView.h */,
  2748. F7D4236E1F0596C6009C9782 /* ReaderThumbsView.m */,
  2749. F7D4236F1F0596C6009C9782 /* ReaderThumbView.h */,
  2750. F7D423701F0596C6009C9782 /* ReaderThumbView.m */,
  2751. F7D423711F0596C6009C9782 /* ReaderViewController.h */,
  2752. F7D423721F0596C6009C9782 /* ReaderViewController.m */,
  2753. F7D423731F0596C6009C9782 /* ThumbsMainToolbar.h */,
  2754. F7D423741F0596C6009C9782 /* ThumbsMainToolbar.m */,
  2755. F7D423751F0596C6009C9782 /* ThumbsViewController.h */,
  2756. F7D423761F0596C6009C9782 /* ThumbsViewController.m */,
  2757. F7D423771F0596C6009C9782 /* UIXToolbarView.h */,
  2758. F7D423781F0596C6009C9782 /* UIXToolbarView.m */,
  2759. );
  2760. path = Sources;
  2761. sourceTree = "<group>";
  2762. };
  2763. F7D423A31F063B81009C9782 /* CTAssetsPickerController */ = {
  2764. isa = PBXGroup;
  2765. children = (
  2766. F7D423A41F063B81009C9782 /* Categories */,
  2767. F7D423B91F063B81009C9782 /* CTAssetCheckmark.h */,
  2768. F7D423BA1F063B81009C9782 /* CTAssetCheckmark.m */,
  2769. F7D423BB1F063B81009C9782 /* CTAssetCollectionViewCell.h */,
  2770. F7D423BC1F063B81009C9782 /* CTAssetCollectionViewCell.m */,
  2771. F7D423BD1F063B81009C9782 /* CTAssetCollectionViewController.h */,
  2772. F7D423BE1F063B81009C9782 /* CTAssetCollectionViewController.m */,
  2773. F7D423BF1F063B81009C9782 /* CTAssetItemViewController.h */,
  2774. F7D423C01F063B81009C9782 /* CTAssetItemViewController.m */,
  2775. F7D423C11F063B81009C9782 /* CTAssetPlayButton.h */,
  2776. F7D423C21F063B81009C9782 /* CTAssetPlayButton.m */,
  2777. F7D423C31F063B81009C9782 /* CTAssetScrollView.h */,
  2778. F7D423C41F063B81009C9782 /* CTAssetScrollView.m */,
  2779. F7D423C51F063B81009C9782 /* CTAssetSelectionButton.h */,
  2780. F7D423C61F063B81009C9782 /* CTAssetSelectionButton.m */,
  2781. F7D423C71F063B81009C9782 /* CTAssetSelectionLabel.h */,
  2782. F7D423C81F063B81009C9782 /* CTAssetSelectionLabel.m */,
  2783. F7D423C91F063B81009C9782 /* CTAssetsGridSelectedView.h */,
  2784. F7D423CA1F063B81009C9782 /* CTAssetsGridSelectedView.m */,
  2785. F7D423CB1F063B81009C9782 /* CTAssetsGridView.h */,
  2786. F7D423CC1F063B81009C9782 /* CTAssetsGridView.m */,
  2787. F7D423CD1F063B81009C9782 /* CTAssetsGridViewCell.h */,
  2788. F7D423CE1F063B81009C9782 /* CTAssetsGridViewCell.m */,
  2789. F7D423CF1F063B81009C9782 /* CTAssetsGridViewController.h */,
  2790. F7D423D01F063B81009C9782 /* CTAssetsGridViewController.m */,
  2791. F7D423D11F063B81009C9782 /* CTAssetsGridViewFooter.h */,
  2792. F7D423D21F063B81009C9782 /* CTAssetsGridViewFooter.m */,
  2793. F7D423D31F063B81009C9782 /* CTAssetsGridViewLayout.h */,
  2794. F7D423D41F063B81009C9782 /* CTAssetsGridViewLayout.m */,
  2795. F7D423D51F063B81009C9782 /* CTAssetsNavigationController.h */,
  2796. F7D423D61F063B82009C9782 /* CTAssetsNavigationController.m */,
  2797. F7D423D71F063B82009C9782 /* CTAssetsPageView.h */,
  2798. F7D423D81F063B82009C9782 /* CTAssetsPageView.m */,
  2799. F7D423D91F063B82009C9782 /* CTAssetsPageViewController.h */,
  2800. F7D423DA1F063B82009C9782 /* CTAssetsPageViewController.m */,
  2801. F7D423DB1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.h */,
  2802. F7D423DC1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m */,
  2803. F7D423DD1F063B82009C9782 /* CTAssetsPickerController.bundle */,
  2804. F7D423DE1F063B82009C9782 /* CTAssetsPickerController.h */,
  2805. F7D423DF1F063B82009C9782 /* CTAssetsPickerController.m */,
  2806. F7D423E01F063B82009C9782 /* CTAssetsPickerDefines.h */,
  2807. F7D423E11F063B82009C9782 /* CTAssetsPickerNoAssetsView.h */,
  2808. F7D423E21F063B82009C9782 /* CTAssetsPickerNoAssetsView.m */,
  2809. F7D423E31F063B82009C9782 /* CTAssetsViewControllerTransition.h */,
  2810. F7D423E41F063B82009C9782 /* CTAssetsViewControllerTransition.m */,
  2811. F7D423E51F063B82009C9782 /* CTAssetThumbnailOverlay.h */,
  2812. F7D423E61F063B82009C9782 /* CTAssetThumbnailOverlay.m */,
  2813. F7D423E71F063B82009C9782 /* CTAssetThumbnailStacks.h */,
  2814. F7D423E81F063B82009C9782 /* CTAssetThumbnailStacks.m */,
  2815. F7D423E91F063B82009C9782 /* CTAssetThumbnailView.h */,
  2816. F7D423EA1F063B82009C9782 /* CTAssetThumbnailView.m */,
  2817. );
  2818. path = CTAssetsPickerController;
  2819. sourceTree = "<group>";
  2820. };
  2821. F7D423A41F063B81009C9782 /* Categories */ = {
  2822. isa = PBXGroup;
  2823. children = (
  2824. F7D423A51F063B81009C9782 /* CTAssetsPageViewController+Internal.h */,
  2825. F7D423A61F063B81009C9782 /* CTAssetsPickerController+Internal.h */,
  2826. F7D423A71F063B81009C9782 /* NSBundle+CTAssetsPickerController.h */,
  2827. F7D423A81F063B81009C9782 /* NSBundle+CTAssetsPickerController.m */,
  2828. F7D423A91F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.h */,
  2829. F7D423AA1F063B81009C9782 /* NSDateFormatter+CTAssetsPickerController.m */,
  2830. F7D423AB1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.h */,
  2831. F7D423AC1F063B81009C9782 /* NSIndexSet+CTAssetsPickerController.m */,
  2832. F7D423AD1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.h */,
  2833. F7D423AE1F063B81009C9782 /* NSNumberFormatter+CTAssetsPickerController.m */,
  2834. F7D423AF1F063B81009C9782 /* PHAsset+CTAssetsPickerController.h */,
  2835. F7D423B01F063B81009C9782 /* PHAsset+CTAssetsPickerController.m */,
  2836. F7D423B11F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.h */,
  2837. F7D423B21F063B81009C9782 /* PHAssetCollection+CTAssetsPickerController.m */,
  2838. F7D423B31F063B81009C9782 /* PHImageManager+CTAssetsPickerController.h */,
  2839. F7D423B41F063B81009C9782 /* PHImageManager+CTAssetsPickerController.m */,
  2840. F7D423B51F063B81009C9782 /* UICollectionView+CTAssetsPickerController.h */,
  2841. F7D423B61F063B81009C9782 /* UICollectionView+CTAssetsPickerController.m */,
  2842. F7D423B71F063B81009C9782 /* UIImage+CTAssetsPickerController.h */,
  2843. F7D423B81F063B81009C9782 /* UIImage+CTAssetsPickerController.m */,
  2844. );
  2845. path = Categories;
  2846. sourceTree = "<group>";
  2847. };
  2848. F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */ = {
  2849. isa = PBXGroup;
  2850. children = (
  2851. F7DC5FE81F011EB700A903C7 /* MGSwipeButton.h */,
  2852. F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */,
  2853. F7DC5FEA1F011EB700A903C7 /* MGSwipeTableCell.h */,
  2854. F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */,
  2855. );
  2856. path = MGSwipeTableCell;
  2857. sourceTree = "<group>";
  2858. };
  2859. F7DFE24E1EBDC3A400CF5202 /* Realm */ = {
  2860. isa = PBXGroup;
  2861. children = (
  2862. F7DFE24F1EBDC3A400CF5202 /* Realm.framework */,
  2863. F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */,
  2864. );
  2865. path = Realm;
  2866. sourceTree = "<group>";
  2867. };
  2868. F7ECBA6B1E239DCD003E6328 /* Create */ = {
  2869. isa = PBXGroup;
  2870. children = (
  2871. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */,
  2872. );
  2873. path = Create;
  2874. sourceTree = "<group>";
  2875. };
  2876. F7F54CAC1E5B143100E19C62 /* Library */ = {
  2877. isa = PBXGroup;
  2878. children = (
  2879. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  2880. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  2881. F7D423A31F063B81009C9782 /* CTAssetsPickerController */,
  2882. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  2883. F7B4F1C51F44356F00B53B42 /* NCUchardet */,
  2884. F762CB7B1EACB81000B38484 /* REMenu */,
  2885. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */,
  2886. F762CB8B1EACB84400B38484 /* TWMessageBarManager */,
  2887. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */,
  2888. F762CA9F1EACB66200B38484 /* XLForm */,
  2889. );
  2890. path = Library;
  2891. sourceTree = "<group>";
  2892. };
  2893. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  2894. isa = PBXGroup;
  2895. children = (
  2896. F7F54CAE1E5B14C700E19C62 /* Assets */,
  2897. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  2898. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  2899. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  2900. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  2901. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  2902. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  2903. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  2904. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  2905. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  2906. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  2907. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  2908. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  2909. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  2910. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  2911. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  2912. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  2913. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  2914. );
  2915. path = MWPhotoBrowser;
  2916. sourceTree = "<group>";
  2917. };
  2918. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  2919. isa = PBXGroup;
  2920. children = (
  2921. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  2922. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  2923. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  2924. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  2925. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  2926. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  2927. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  2928. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  2929. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  2930. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  2931. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  2932. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  2933. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  2934. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  2935. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  2936. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  2937. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  2938. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  2939. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  2940. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  2941. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  2942. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  2943. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  2944. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  2945. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  2946. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  2947. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  2948. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  2949. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  2950. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  2951. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  2952. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  2953. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  2954. );
  2955. path = Assets;
  2956. sourceTree = "<group>";
  2957. };
  2958. F7F67B9F1A24D27800EE80DA = {
  2959. isa = PBXGroup;
  2960. children = (
  2961. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2962. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2963. F7C0F46D1C8880540059EC54 /* Share */,
  2964. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2965. F771E3DF20E2392E00AFB62D /* File Provider ExtensionUI */,
  2966. F7FC7D651DC1F98700BB2C6A /* Products */,
  2967. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  2968. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  2969. F771E3DE20E2392E00AFB62D /* File Provider ExtensionUI.appex */,
  2970. );
  2971. sourceTree = "<group>";
  2972. };
  2973. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  2974. isa = PBXGroup;
  2975. children = (
  2976. F70F02A81C889183008DAB36 /* Libraries external */,
  2977. F7A377131EB2364A002856D3 /* Fabric */,
  2978. F70022561EC4C9100080073F /* OCCommunicationLib */,
  2979. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  2980. F7A582D61A24DAB500E903D7 /* AppDelegate.m */,
  2981. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  2982. F7C8C1911B482CEA0048180E /* CCGlobal.m */,
  2983. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  2984. F70211F31BAC56E9003FC03E /* Main */,
  2985. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  2986. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  2987. F720E02A1E48C74C001A4B9E /* Actions */,
  2988. F7A321621E9E37960069AD1B /* Activity */,
  2989. F7ECBA6B1E239DCD003E6328 /* Create */,
  2990. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  2991. F7A3214D1E9E2A070069AD1B /* Favorites */,
  2992. F780711E1EDB135100EAFFF6 /* Photos */,
  2993. F7F54CAC1E5B143100E19C62 /* Library */,
  2994. F7BFFA621A24D7300044ED85 /* Login */,
  2995. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  2996. F7A321891E9E42B20069AD1B /* MenuAccount */,
  2997. F7F9E3451BC26B19004B9223 /* Move */,
  2998. F74D3DB81BAC1941000BAE4B /* Networking */,
  2999. F7C5259A1E3B441D00FFE02C /* Notification */,
  3000. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  3001. F7BE6E2A1D2D5C3B00106933 /* QuickActions */,
  3002. F7FE125B1BAC03FB0041924B /* Security */,
  3003. F7ACE4281BAC0268006C0017 /* Settings */,
  3004. F728CE741BF6322C00E69702 /* Share */,
  3005. F7169A161EE590930086BD69 /* Shares */,
  3006. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  3007. F73D71561F26739100E233EB /* Text */,
  3008. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  3009. F7BFFA991A24D7BB0044ED85 /* Utility */,
  3010. );
  3011. path = iOSClient;
  3012. sourceTree = "<group>";
  3013. };
  3014. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  3015. isa = PBXGroup;
  3016. children = (
  3017. F72B60941A24F04E004EF66F /* Localizations */,
  3018. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  3019. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */,
  3020. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */,
  3021. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */,
  3022. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  3023. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  3024. F77D49A71DC238E500CDC568 /* loading@2x.gif */,
  3025. F7F67BAD1A24D27800EE80DA /* main.m */,
  3026. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  3027. F76344751BF259A800188725 /* synchronized.gif */,
  3028. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  3029. );
  3030. name = "Supporting Files";
  3031. path = iOSClient;
  3032. sourceTree = "<group>";
  3033. };
  3034. F7F9E3451BC26B19004B9223 /* Move */ = {
  3035. isa = PBXGroup;
  3036. children = (
  3037. F7D02A461C5F9E4400D6F972 /* CCMove.h */,
  3038. F7D02A471C5F9E4400D6F972 /* CCMove.m */,
  3039. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */,
  3040. );
  3041. path = Move;
  3042. sourceTree = "<group>";
  3043. };
  3044. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  3045. isa = PBXGroup;
  3046. children = (
  3047. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  3048. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  3049. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  3050. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  3051. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  3052. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  3053. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  3054. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  3055. );
  3056. name = Frameworks;
  3057. sourceTree = "<group>";
  3058. };
  3059. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  3060. isa = PBXGroup;
  3061. children = (
  3062. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  3063. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  3064. );
  3065. name = Products;
  3066. sourceTree = "<group>";
  3067. };
  3068. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  3069. isa = PBXGroup;
  3070. children = (
  3071. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  3072. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  3073. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  3074. );
  3075. path = PeekPop;
  3076. sourceTree = "<group>";
  3077. };
  3078. F7FE125B1BAC03FB0041924B /* Security */ = {
  3079. isa = PBXGroup;
  3080. children = (
  3081. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  3082. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  3083. F7F801001D98205A007537BC /* CCCertificate.h */,
  3084. F7F801011D98205A007537BC /* CCCertificate.m */,
  3085. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  3086. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  3087. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  3088. );
  3089. path = Security;
  3090. sourceTree = "<group>";
  3091. };
  3092. /* End PBXGroup section */
  3093. /* Begin PBXNativeTarget section */
  3094. F71459B41D12E3B700CAFEEC /* Share */ = {
  3095. isa = PBXNativeTarget;
  3096. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  3097. buildPhases = (
  3098. F71459B51D12E3B700CAFEEC /* Sources */,
  3099. F7145A141D12E3B700CAFEEC /* Frameworks */,
  3100. F7145A181D12E3B700CAFEEC /* Resources */,
  3101. );
  3102. buildRules = (
  3103. );
  3104. dependencies = (
  3105. );
  3106. name = Share;
  3107. productName = "Share Ext";
  3108. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  3109. productType = "com.apple.product-type.app-extension";
  3110. };
  3111. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  3112. isa = PBXNativeTarget;
  3113. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  3114. buildPhases = (
  3115. F771E3CC20E2392D00AFB62D /* Sources */,
  3116. F771E3CD20E2392D00AFB62D /* Frameworks */,
  3117. F771E3CE20E2392D00AFB62D /* Resources */,
  3118. );
  3119. buildRules = (
  3120. );
  3121. dependencies = (
  3122. );
  3123. name = "File Provider Extension";
  3124. productName = "File Provider Extension";
  3125. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  3126. productType = "com.apple.product-type.app-extension";
  3127. };
  3128. F771E3DD20E2392E00AFB62D /* File Provider ExtensionUI */ = {
  3129. isa = PBXNativeTarget;
  3130. buildConfigurationList = F771E3EC20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider ExtensionUI" */;
  3131. buildPhases = (
  3132. F771E3DA20E2392E00AFB62D /* Sources */,
  3133. F771E3DB20E2392E00AFB62D /* Frameworks */,
  3134. F771E3DC20E2392E00AFB62D /* Resources */,
  3135. );
  3136. buildRules = (
  3137. );
  3138. dependencies = (
  3139. );
  3140. name = "File Provider ExtensionUI";
  3141. productName = "File Provider ExtensionUI";
  3142. productReference = F771E3DE20E2392E00AFB62D /* File Provider ExtensionUI.appex */;
  3143. productType = "com.apple.product-type.app-extension";
  3144. };
  3145. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  3146. isa = PBXNativeTarget;
  3147. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  3148. buildPhases = (
  3149. F77B0DEF1D118A16002130FE /* Sources */,
  3150. F77B0EDC1D118A16002130FE /* Frameworks */,
  3151. F77B0EE91D118A16002130FE /* Resources */,
  3152. F77B0F981D118A16002130FE /* Embed App Extensions */,
  3153. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  3154. F7A377371EB24469002856D3 /* ShellScript */,
  3155. F75A3FFF1EBCB55B00B213E8 /* Embed Frameworks */,
  3156. F75A40001EBCB82B00B213E8 /* ShellScript */,
  3157. );
  3158. buildRules = (
  3159. );
  3160. dependencies = (
  3161. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  3162. F771E3E720E2392E00AFB62D /* PBXTargetDependency */,
  3163. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  3164. );
  3165. name = Nextcloud;
  3166. productName = "Crypto Cloud";
  3167. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  3168. productType = "com.apple.product-type.application";
  3169. };
  3170. /* End PBXNativeTarget section */
  3171. /* Begin PBXProject section */
  3172. F7F67BA01A24D27800EE80DA /* Project object */ = {
  3173. isa = PBXProject;
  3174. attributes = {
  3175. LastSwiftUpdateCheck = 0940;
  3176. LastUpgradeCheck = 0900;
  3177. ORGANIZATIONNAME = TWS;
  3178. TargetAttributes = {
  3179. F71459B41D12E3B700CAFEEC = {
  3180. DevelopmentTeam = 6JLRKY9ZV7;
  3181. LastSwiftMigration = 0900;
  3182. SystemCapabilities = {
  3183. com.apple.ApplicationGroups.iOS = {
  3184. enabled = 1;
  3185. };
  3186. com.apple.iCloud = {
  3187. enabled = 0;
  3188. };
  3189. };
  3190. };
  3191. F771E3CF20E2392D00AFB62D = {
  3192. CreatedOnToolsVersion = 9.4.1;
  3193. DevelopmentTeam = 6JLRKY9ZV7;
  3194. ProvisioningStyle = Automatic;
  3195. };
  3196. F771E3DD20E2392E00AFB62D = {
  3197. CreatedOnToolsVersion = 9.4.1;
  3198. DevelopmentTeam = 6JLRKY9ZV7;
  3199. ProvisioningStyle = Automatic;
  3200. };
  3201. F77B0DEB1D118A16002130FE = {
  3202. DevelopmentTeam = 6JLRKY9ZV7;
  3203. LastSwiftMigration = 0900;
  3204. ProvisioningStyle = Automatic;
  3205. SystemCapabilities = {
  3206. com.apple.Push = {
  3207. enabled = 1;
  3208. };
  3209. com.apple.iCloud = {
  3210. enabled = 1;
  3211. };
  3212. };
  3213. };
  3214. };
  3215. };
  3216. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  3217. compatibilityVersion = "Xcode 3.2";
  3218. developmentRegion = English;
  3219. hasScannedForEncodings = 0;
  3220. knownRegions = (
  3221. en,
  3222. Base,
  3223. de,
  3224. fr,
  3225. "pt-BR",
  3226. ru,
  3227. it,
  3228. tr,
  3229. "es-MX",
  3230. "nb-NO",
  3231. pl,
  3232. sv,
  3233. es,
  3234. is,
  3235. nl,
  3236. "sk-SK",
  3237. "en-GB",
  3238. "zh-Hans",
  3239. "ka-GE",
  3240. hu,
  3241. "zh-Hant-TW",
  3242. sr,
  3243. "es-CL",
  3244. "es-CO",
  3245. "es-CR",
  3246. "es-DO",
  3247. "es-EC",
  3248. "es-GT",
  3249. "es-HN",
  3250. "es-NI",
  3251. "es-PA",
  3252. "es-PE",
  3253. "es-PR",
  3254. "es-PY",
  3255. "es-SV",
  3256. "es-UY",
  3257. "cs-CZ",
  3258. ko,
  3259. "es-419",
  3260. "pt-PT",
  3261. );
  3262. mainGroup = F7F67B9F1A24D27800EE80DA;
  3263. productRefGroup = F7F67B9F1A24D27800EE80DA;
  3264. projectDirPath = "";
  3265. projectRoot = "";
  3266. targets = (
  3267. F77B0DEB1D118A16002130FE /* Nextcloud */,
  3268. F71459B41D12E3B700CAFEEC /* Share */,
  3269. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  3270. F771E3DD20E2392E00AFB62D /* File Provider ExtensionUI */,
  3271. );
  3272. };
  3273. /* End PBXProject section */
  3274. /* Begin PBXResourcesBuildPhase section */
  3275. F7145A181D12E3B700CAFEEC /* Resources */ = {
  3276. isa = PBXResourcesBuildPhase;
  3277. buildActionMask = 2147483647;
  3278. files = (
  3279. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  3280. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  3281. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */,
  3282. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */,
  3283. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */,
  3284. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  3285. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3286. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3287. );
  3288. runOnlyForDeploymentPostprocessing = 0;
  3289. };
  3290. F771E3CE20E2392D00AFB62D /* Resources */ = {
  3291. isa = PBXResourcesBuildPhase;
  3292. buildActionMask = 2147483647;
  3293. files = (
  3294. );
  3295. runOnlyForDeploymentPostprocessing = 0;
  3296. };
  3297. F771E3DC20E2392E00AFB62D /* Resources */ = {
  3298. isa = PBXResourcesBuildPhase;
  3299. buildActionMask = 2147483647;
  3300. files = (
  3301. F771E3E420E2392E00AFB62D /* MainInterface.storyboard in Resources */,
  3302. );
  3303. runOnlyForDeploymentPostprocessing = 0;
  3304. };
  3305. F77B0EE91D118A16002130FE /* Resources */ = {
  3306. isa = PBXResourcesBuildPhase;
  3307. buildActionMask = 2147483647;
  3308. files = (
  3309. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3310. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3311. F7D4234D1F0596AC009C9782 /* Reader-Thumbs.png in Resources */,
  3312. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3313. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3314. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3315. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */,
  3316. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3317. F7D4233D1F0596AC009C9782 /* Reader-Button-N@3x.png in Resources */,
  3318. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */,
  3319. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3320. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3321. F7D4246E1F063B82009C9782 /* CTAssetsPickerController.bundle in Resources */,
  3322. F762CB991EACB84400B38484 /* icon-success.png in Resources */,
  3323. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3324. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */,
  3325. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */,
  3326. F7D4233B1F0596AC009C9782 /* Reader-Button-N.png in Resources */,
  3327. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3328. F7D423441F0596AC009C9782 /* Reader-Mark-N.png in Resources */,
  3329. F77B0F181D118A16002130FE /* Intro.strings in Resources */,
  3330. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3331. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3332. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3333. F7D423371F0596AC009C9782 /* AppIcon-180.png in Resources */,
  3334. F7D423401F0596AC009C9782 /* Reader-Email@3x.png in Resources */,
  3335. F7D423391F0596AC009C9782 /* Reader-Button-H@2x.png in Resources */,
  3336. F7D423351F0596AC009C9782 /* AppIcon-152.png in Resources */,
  3337. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */,
  3338. F7D4234E1F0596AC009C9782 /* Reader-Thumbs@2x.png in Resources */,
  3339. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */,
  3340. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  3341. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  3342. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */,
  3343. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  3344. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  3345. F7D4234B1F0596AC009C9782 /* Reader-Print@2x.png in Resources */,
  3346. F762CB971EACB84400B38484 /* icon-info.png in Resources */,
  3347. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  3348. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */,
  3349. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  3350. F7D423471F0596AC009C9782 /* Reader-Mark-Y.png in Resources */,
  3351. F7D423431F0596AC009C9782 /* Reader-Export@3x.png in Resources */,
  3352. F7D4233C1F0596AC009C9782 /* Reader-Button-N@2x.png in Resources */,
  3353. F7D423411F0596AC009C9782 /* Reader-Export.png in Resources */,
  3354. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  3355. F7D4233E1F0596AC009C9782 /* Reader-Email.png in Resources */,
  3356. F762CB981EACB84400B38484 /* icon-info@2x.png in Resources */,
  3357. F7D423361F0596AC009C9782 /* AppIcon-167.png in Resources */,
  3358. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  3359. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  3360. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */,
  3361. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  3362. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  3363. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */,
  3364. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  3365. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */,
  3366. F762CB9A1EACB84400B38484 /* icon-success@2x.png in Resources */,
  3367. F77B0F551D118A16002130FE /* Error.strings in Resources */,
  3368. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  3369. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  3370. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */,
  3371. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */,
  3372. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  3373. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  3374. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  3375. F7D423461F0596AC009C9782 /* Reader-Mark-N@3x.png in Resources */,
  3376. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  3377. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  3378. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  3379. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */,
  3380. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3381. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3382. F7D4234C1F0596AC009C9782 /* Reader-Print@3x.png in Resources */,
  3383. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  3384. F76F23341ED4603700C40023 /* LaunchScreen.xib in Resources */,
  3385. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */,
  3386. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  3387. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  3388. F762CB951EACB84400B38484 /* icon-error.png in Resources */,
  3389. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  3390. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */,
  3391. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  3392. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */,
  3393. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  3394. F7D4233A1F0596AC009C9782 /* Reader-Button-H@3x.png in Resources */,
  3395. F7D423341F0596AC009C9782 /* AppIcon-120.png in Resources */,
  3396. F7D4234F1F0596AC009C9782 /* Reader-Thumbs@3x.png in Resources */,
  3397. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  3398. F7D423381F0596AC009C9782 /* Reader-Button-H.png in Resources */,
  3399. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  3400. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3401. F7D423491F0596AC009C9782 /* Reader-Mark-Y@3x.png in Resources */,
  3402. F7D423421F0596AC009C9782 /* Reader-Export@2x.png in Resources */,
  3403. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  3404. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  3405. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  3406. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */,
  3407. F7D423451F0596AC009C9782 /* Reader-Mark-N@2x.png in Resources */,
  3408. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */,
  3409. F7D423481F0596AC009C9782 /* Reader-Mark-Y@2x.png in Resources */,
  3410. F7D4233F1F0596AC009C9782 /* Reader-Email@2x.png in Resources */,
  3411. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */,
  3412. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */,
  3413. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */,
  3414. F762CB961EACB84400B38484 /* icon-error@2x.png in Resources */,
  3415. F7D4234A1F0596AC009C9782 /* Reader-Print.png in Resources */,
  3416. F7D423331F0596AC009C9782 /* AppIcon-076.png in Resources */,
  3417. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  3418. );
  3419. runOnlyForDeploymentPostprocessing = 0;
  3420. };
  3421. /* End PBXResourcesBuildPhase section */
  3422. /* Begin PBXShellScriptBuildPhase section */
  3423. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  3424. isa = PBXShellScriptBuildPhase;
  3425. buildActionMask = 2147483647;
  3426. files = (
  3427. );
  3428. inputPaths = (
  3429. );
  3430. outputPaths = (
  3431. );
  3432. runOnlyForDeploymentPostprocessing = 0;
  3433. shellPath = /bin/sh;
  3434. shellScript = "#!/bin/bash\n# buildNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleVersion\" \"$INFOPLIST_FILE\")\n# buildNumber=$(echo $buildNumber | sed 's/0*//')\n# buildNumber=$(($buildNumber + 1))\n# buildNumber=$(printf \"%04d\" $buildNumber)\n# /usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $buildNumber\" \"$INFOPLIST_FILE\"";
  3435. };
  3436. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  3437. isa = PBXShellScriptBuildPhase;
  3438. buildActionMask = 2147483647;
  3439. files = (
  3440. );
  3441. inputPaths = (
  3442. );
  3443. outputPaths = (
  3444. );
  3445. runOnlyForDeploymentPostprocessing = 0;
  3446. shellPath = /bin/sh;
  3447. shellScript = "bash \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework/strip-frameworks.sh\"";
  3448. };
  3449. F7A377371EB24469002856D3 /* ShellScript */ = {
  3450. isa = PBXShellScriptBuildPhase;
  3451. buildActionMask = 2147483647;
  3452. files = (
  3453. );
  3454. inputPaths = (
  3455. );
  3456. outputPaths = (
  3457. );
  3458. runOnlyForDeploymentPostprocessing = 0;
  3459. shellPath = /bin/sh;
  3460. shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
  3461. };
  3462. /* End PBXShellScriptBuildPhase section */
  3463. /* Begin PBXSourcesBuildPhase section */
  3464. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3465. isa = PBXSourcesBuildPhase;
  3466. buildActionMask = 2147483647;
  3467. files = (
  3468. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  3469. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3470. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  3471. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  3472. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  3473. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3474. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */,
  3475. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  3476. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */,
  3477. F70022A21EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  3478. F70022A51EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  3479. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3480. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3481. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3482. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */,
  3483. F734E5891F019D860060CB77 /* UIScrollView+EmptyDataSet.m in Sources */,
  3484. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3485. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3486. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3487. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */,
  3488. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3489. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3490. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3491. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3492. F70022E41EC4C9100080073F /* OCXMLParser.m in Sources */,
  3493. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  3494. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  3495. F70022E11EC4C9100080073F /* OCXMLListParser.m in Sources */,
  3496. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3497. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3498. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3499. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  3500. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  3501. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */,
  3502. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  3503. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */,
  3504. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  3505. F70022B11EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  3506. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  3507. F70022AE1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  3508. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3509. F77EB62A1EC0B50A003F814F /* CCCertificate.m in Sources */,
  3510. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3511. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3512. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3513. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */,
  3514. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */,
  3515. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  3516. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3517. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3518. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3519. F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  3520. F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  3521. F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */,
  3522. F70022B41EC4C9100080073F /* OCActivity.m in Sources */,
  3523. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3524. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3525. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  3526. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3527. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3528. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3529. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
  3530. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3531. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3532. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3533. );
  3534. runOnlyForDeploymentPostprocessing = 0;
  3535. };
  3536. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3537. isa = PBXSourcesBuildPhase;
  3538. buildActionMask = 2147483647;
  3539. files = (
  3540. F7434B4820E2407000417916 /* AFURLRequestSerialization.m in Sources */,
  3541. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */,
  3542. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3543. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */,
  3544. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */,
  3545. F7434B5720E2416800417916 /* UICKeyChainStore.m in Sources */,
  3546. F7434B3A20E2403500417916 /* OCActivity.m in Sources */,
  3547. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */,
  3548. F7434B4A20E2407600417916 /* AFURLSessionManager.m in Sources */,
  3549. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */,
  3550. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */,
  3551. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */,
  3552. F7434B5920E241B600417916 /* OCNetworking.m in Sources */,
  3553. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */,
  3554. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */,
  3555. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3556. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */,
  3557. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */,
  3558. F7434B4320E2405900417916 /* OCShareUser.m in Sources */,
  3559. F771E3F920E239B500AFB62D /* FileProviderExtension+Network.swift in Sources */,
  3560. F7434B4F20E2408E00417916 /* OCXMLListParser.m in Sources */,
  3561. F7434B6120E2445C00417916 /* CCCertificate.m in Sources */,
  3562. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */,
  3563. F7434B3920E2401C00417916 /* CCGlobal.m in Sources */,
  3564. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3565. F7434B4620E2406900417916 /* AFNetworkReachabilityManager.m in Sources */,
  3566. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */,
  3567. F7434B5620E2412900417916 /* CCError.m in Sources */,
  3568. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */,
  3569. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */,
  3570. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */,
  3571. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */,
  3572. F7434B4520E2406400417916 /* AFHTTPSessionManager.m in Sources */,
  3573. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */,
  3574. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3575. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */,
  3576. F7434B5D20E241E800417916 /* CCUtility.m in Sources */,
  3577. F7434B5020E2409100417916 /* OCXMLParser.m in Sources */,
  3578. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */,
  3579. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3580. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3581. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3582. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3583. F7434B4720E2406C00417916 /* AFSecurityPolicy.m in Sources */,
  3584. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */,
  3585. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */,
  3586. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */,
  3587. F7434B4920E2407300417916 /* AFURLResponseSerialization.m in Sources */,
  3588. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */,
  3589. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */,
  3590. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3591. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */,
  3592. F7434B5820E241B100417916 /* CCNetworking.m in Sources */,
  3593. );
  3594. runOnlyForDeploymentPostprocessing = 0;
  3595. };
  3596. F771E3DA20E2392E00AFB62D /* Sources */ = {
  3597. isa = PBXSourcesBuildPhase;
  3598. buildActionMask = 2147483647;
  3599. files = (
  3600. F771E3E120E2392E00AFB62D /* DocumentActionViewController.swift in Sources */,
  3601. );
  3602. runOnlyForDeploymentPostprocessing = 0;
  3603. };
  3604. F77B0DEF1D118A16002130FE /* Sources */ = {
  3605. isa = PBXSourcesBuildPhase;
  3606. buildActionMask = 2147483647;
  3607. files = (
  3608. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3609. F7D424671F063B82009C9782 /* CTAssetsGridViewController.m in Sources */,
  3610. F70022A41EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  3611. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */,
  3612. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  3613. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  3614. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */,
  3615. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3616. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */,
  3617. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  3618. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  3619. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  3620. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */,
  3621. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */,
  3622. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  3623. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  3624. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */,
  3625. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3626. F7D4245C1F063B82009C9782 /* CTAssetCheckmark.m in Sources */,
  3627. F70022A11EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  3628. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */,
  3629. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */,
  3630. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */,
  3631. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  3632. F7D423881F0596C6009C9782 /* ReaderThumbView.m in Sources */,
  3633. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  3634. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */,
  3635. F7D4238A1F0596C6009C9782 /* ThumbsMainToolbar.m in Sources */,
  3636. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3637. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  3638. F7A55420204EF8AF008468EC /* UIScrollView+TOScrollBar.m in Sources */,
  3639. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */,
  3640. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  3641. F70022B01EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  3642. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */,
  3643. F7DC5FEC1F011EB700A903C7 /* MGSwipeButton.m in Sources */,
  3644. F7D423801F0596C6009C9782 /* ReaderMainPagebar.m in Sources */,
  3645. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */,
  3646. F762CB881EACB81000B38484 /* REMenuContainerView.m in Sources */,
  3647. F7D4237F1F0596C6009C9782 /* ReaderDocumentOutline.m in Sources */,
  3648. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  3649. F7D424621F063B82009C9782 /* CTAssetSelectionButton.m in Sources */,
  3650. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */,
  3651. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  3652. F7D424631F063B82009C9782 /* CTAssetSelectionLabel.m in Sources */,
  3653. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */,
  3654. F7A5541F204EF8AF008468EC /* TOScrollBar.m in Sources */,
  3655. F7A321651E9E37960069AD1B /* CCActivity.m in Sources */,
  3656. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */,
  3657. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */,
  3658. F762CB861EACB81000B38484 /* RECommonFunctions.m in Sources */,
  3659. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  3660. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  3661. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */,
  3662. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  3663. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  3664. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */,
  3665. F7D424641F063B82009C9782 /* CTAssetsGridSelectedView.m in Sources */,
  3666. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  3667. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */,
  3668. F7D424711F063B82009C9782 /* CTAssetsViewControllerTransition.m in Sources */,
  3669. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */,
  3670. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  3671. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3672. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */,
  3673. F762CB9B1EACB84400B38484 /* TWMessageBarManager.m in Sources */,
  3674. F7D423871F0596C6009C9782 /* ReaderThumbsView.m in Sources */,
  3675. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */,
  3676. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */,
  3677. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  3678. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */,
  3679. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */,
  3680. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3681. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */,
  3682. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */,
  3683. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */,
  3684. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  3685. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3686. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */,
  3687. F78071211EDB135100EAFFF6 /* CCPhotos.m in Sources */,
  3688. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */,
  3689. F75AE3C71E9D12900088BB09 /* SwiftyAvatar.swift in Sources */,
  3690. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */,
  3691. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */,
  3692. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */,
  3693. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */,
  3694. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */,
  3695. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  3696. F7D423891F0596C6009C9782 /* ReaderViewController.m in Sources */,
  3697. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3698. F7D4246C1F063B82009C9782 /* CTAssetsPageViewController.m in Sources */,
  3699. F7D424601F063B82009C9782 /* CTAssetPlayButton.m in Sources */,
  3700. F70022E31EC4C9100080073F /* OCXMLParser.m in Sources */,
  3701. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  3702. F7D4246B1F063B82009C9782 /* CTAssetsPageView.m in Sources */,
  3703. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */,
  3704. F78964AE1EBB576C00403E13 /* JDStatusBarStyle.m in Sources */,
  3705. F7D423831F0596C6009C9782 /* ReaderThumbFetch.m in Sources */,
  3706. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */,
  3707. F7D424721F063B82009C9782 /* CTAssetThumbnailOverlay.m in Sources */,
  3708. F7D4237A1F0596C6009C9782 /* ReaderConstants.m in Sources */,
  3709. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */,
  3710. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */,
  3711. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3712. F710E8101EF95C9C00DC2427 /* CCIntro.m in Sources */,
  3713. F77B0E411D118A16002130FE /* CCSplit.m in Sources */,
  3714. F7D4245F1F063B82009C9782 /* CTAssetItemViewController.m in Sources */,
  3715. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3716. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  3717. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */,
  3718. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */,
  3719. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */,
  3720. F7F801031D98205A007537BC /* CCCertificate.m in Sources */,
  3721. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3722. F73B4F791E8D3BF800A97F07 /* CCMainTabBarController.swift in Sources */,
  3723. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  3724. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3725. F77B0E541D118A16002130FE /* CCMove.m in Sources */,
  3726. F7A5541E204EF8AF008468EC /* TOScrollBarGestureRecognizer.m in Sources */,
  3727. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3728. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */,
  3729. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3730. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */,
  3731. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */,
  3732. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */,
  3733. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */,
  3734. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */,
  3735. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */,
  3736. F7D4237D1F0596C6009C9782 /* ReaderContentView.m in Sources */,
  3737. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */,
  3738. F7D4245D1F063B82009C9782 /* CTAssetCollectionViewCell.m in Sources */,
  3739. F7D4245E1F063B82009C9782 /* CTAssetCollectionViewController.m in Sources */,
  3740. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */,
  3741. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */,
  3742. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */,
  3743. F7D424691F063B82009C9782 /* CTAssetsGridViewLayout.m in Sources */,
  3744. F7D4237E1F0596C6009C9782 /* ReaderDocument.m in Sources */,
  3745. F7D424661F063B82009C9782 /* CTAssetsGridViewCell.m in Sources */,
  3746. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */,
  3747. F7D4237C1F0596C6009C9782 /* ReaderContentTile.m in Sources */,
  3748. F7D424581F063B82009C9782 /* PHAssetCollection+CTAssetsPickerController.m in Sources */,
  3749. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3750. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  3751. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3752. F7D424611F063B82009C9782 /* CTAssetScrollView.m in Sources */,
  3753. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */,
  3754. F7B3A4EE1E97818A000DACE8 /* CCLoginWeb.swift in Sources */,
  3755. F73D71621F2673C200E233EB /* NCText.swift in Sources */,
  3756. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */,
  3757. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */,
  3758. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */,
  3759. F7D4246F1F063B82009C9782 /* CTAssetsPickerController.m in Sources */,
  3760. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */,
  3761. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  3762. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */,
  3763. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3764. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3765. F7D424571F063B82009C9782 /* PHAsset+CTAssetsPickerController.m in Sources */,
  3766. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3767. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  3768. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */,
  3769. F7D423861F0596C6009C9782 /* ReaderThumbRequest.m in Sources */,
  3770. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */,
  3771. F7D4246A1F063B82009C9782 /* CTAssetsNavigationController.m in Sources */,
  3772. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3773. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3774. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */,
  3775. F762CB8A1EACB81000B38484 /* REMenuItemView.m in Sources */,
  3776. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  3777. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3778. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  3779. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */,
  3780. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */,
  3781. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */,
  3782. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */,
  3783. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  3784. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  3785. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  3786. F7659A391DC0B737004860C4 /* iRate.m in Sources */,
  3787. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */,
  3788. F7D424741F063B82009C9782 /* CTAssetThumbnailView.m in Sources */,
  3789. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3790. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
  3791. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3792. F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  3793. F7D424531F063B82009C9782 /* NSBundle+CTAssetsPickerController.m in Sources */,
  3794. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  3795. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */,
  3796. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  3797. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  3798. F7D424651F063B82009C9782 /* CTAssetsGridView.m in Sources */,
  3799. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */,
  3800. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */,
  3801. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */,
  3802. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3803. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */,
  3804. F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */,
  3805. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3806. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3807. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */,
  3808. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */,
  3809. F70022E01EC4C9100080073F /* OCXMLListParser.m in Sources */,
  3810. F70022B31EC4C9100080073F /* OCActivity.m in Sources */,
  3811. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3812. F7D424731F063B82009C9782 /* CTAssetThumbnailStacks.m in Sources */,
  3813. F78964AD1EBB576C00403E13 /* JDStatusBarNotification.m in Sources */,
  3814. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */,
  3815. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */,
  3816. F7D4246D1F063B82009C9782 /* CTAssetsPickerAccessDeniedView.m in Sources */,
  3817. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */,
  3818. F7D4238C1F0596C6009C9782 /* UIXToolbarView.m in Sources */,
  3819. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3820. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3821. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */,
  3822. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */,
  3823. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */,
  3824. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */,
  3825. F762CB891EACB81000B38484 /* REMenuItem.m in Sources */,
  3826. F7D423791F0596C6009C9782 /* CGPDFDocument.m in Sources */,
  3827. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */,
  3828. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3829. F7D424551F063B82009C9782 /* NSIndexSet+CTAssetsPickerController.m in Sources */,
  3830. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  3831. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */,
  3832. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */,
  3833. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  3834. F7D423821F0596C6009C9782 /* ReaderThumbCache.m in Sources */,
  3835. F70022A71EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  3836. F78964AF1EBB576C00403E13 /* JDStatusBarView.m in Sources */,
  3837. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  3838. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */,
  3839. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  3840. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  3841. F7DC5FED1F011EB700A903C7 /* MGSwipeTableCell.m in Sources */,
  3842. F7D424541F063B82009C9782 /* NSDateFormatter+CTAssetsPickerController.m in Sources */,
  3843. F7D4238B1F0596C6009C9782 /* ThumbsViewController.m in Sources */,
  3844. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */,
  3845. F7D423811F0596C6009C9782 /* ReaderMainToolbar.m in Sources */,
  3846. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */,
  3847. F7D4237B1F0596C6009C9782 /* ReaderContentPage.m in Sources */,
  3848. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */,
  3849. F762CB871EACB81000B38484 /* REMenu.m in Sources */,
  3850. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */,
  3851. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */,
  3852. F7D424681F063B82009C9782 /* CTAssetsGridViewFooter.m in Sources */,
  3853. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3854. F7D424701F063B82009C9782 /* CTAssetsPickerNoAssetsView.m in Sources */,
  3855. F7D424591F063B82009C9782 /* PHImageManager+CTAssetsPickerController.m in Sources */,
  3856. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */,
  3857. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3858. F7D424561F063B82009C9782 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */,
  3859. F70022AA1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  3860. F7D423851F0596C6009C9782 /* ReaderThumbRender.m in Sources */,
  3861. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  3862. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3863. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */,
  3864. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3865. F7D423841F0596C6009C9782 /* ReaderThumbQueue.m in Sources */,
  3866. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3867. F7D4245A1F063B82009C9782 /* UICollectionView+CTAssetsPickerController.m in Sources */,
  3868. F7D4245B1F063B82009C9782 /* UIImage+CTAssetsPickerController.m in Sources */,
  3869. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3870. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  3871. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */,
  3872. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */,
  3873. F77B0ED91D118A16002130FE /* main.m in Sources */,
  3874. );
  3875. runOnlyForDeploymentPostprocessing = 0;
  3876. };
  3877. /* End PBXSourcesBuildPhase section */
  3878. /* Begin PBXTargetDependency section */
  3879. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3880. isa = PBXTargetDependency;
  3881. target = F71459B41D12E3B700CAFEEC /* Share */;
  3882. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3883. };
  3884. F771E3E720E2392E00AFB62D /* PBXTargetDependency */ = {
  3885. isa = PBXTargetDependency;
  3886. target = F771E3DD20E2392E00AFB62D /* File Provider ExtensionUI */;
  3887. targetProxy = F771E3E620E2392E00AFB62D /* PBXContainerItemProxy */;
  3888. };
  3889. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3890. isa = PBXTargetDependency;
  3891. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3892. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3893. };
  3894. /* End PBXTargetDependency section */
  3895. /* Begin PBXVariantGroup section */
  3896. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */ = {
  3897. isa = PBXVariantGroup;
  3898. children = (
  3899. F7151A801D477A4B00E6AF45 /* en */,
  3900. F7B1A7751EBB3C8000BFB6D1 /* de */,
  3901. F75B91E11ECAE17800199C96 /* fr */,
  3902. F75B91F61ECAE26300199C96 /* pt-BR */,
  3903. F75B923C1ECAE55E00199C96 /* ru */,
  3904. F7169A2F1EE59BB70086BD69 /* it */,
  3905. F7169A4B1EE59C640086BD69 /* tr */,
  3906. F78D6F451F0B7CB9002F9619 /* es-MX */,
  3907. F78D6F4C1F0B7CE4002F9619 /* nb-NO */,
  3908. F78D6F531F0B7D47002F9619 /* pl */,
  3909. F7DE9AAF1F482FA5008DFE10 /* sv */,
  3910. F7CC04E51F5AD50D00378CEF /* es */,
  3911. F7D532451F5D4123006568B1 /* is */,
  3912. F7D5324C1F5D4137006568B1 /* nl */,
  3913. F7D532531F5D4155006568B1 /* sk-SK */,
  3914. F7D5328E1F5D443B006568B1 /* en-GB */,
  3915. F7D532A31F5D4461006568B1 /* zh-Hans */,
  3916. F77438EA1FCD694900662C46 /* ka-GE */,
  3917. F77438F11FCD69D200662C46 /* hu */,
  3918. F77438F81FCD6A0D00662C46 /* zh-Hant-TW */,
  3919. F77438FF1FCD6B7F00662C46 /* sr */,
  3920. F77439061FCD6BEF00662C46 /* es-CL */,
  3921. F774390D1FCD6C0C00662C46 /* es-CO */,
  3922. F77439141FCD6C4A00662C46 /* es-CR */,
  3923. F774391B1FCD6C6700662C46 /* es-DO */,
  3924. F77439221FCD6C8600662C46 /* es-EC */,
  3925. F77439291FCD6CAA00662C46 /* es-GT */,
  3926. F77439301FCD6CC400662C46 /* es-HN */,
  3927. F77439371FCD6CDE00662C46 /* es-NI */,
  3928. F774393E1FCD6D0B00662C46 /* es-PA */,
  3929. F77439451FCD6D2300662C46 /* es-PE */,
  3930. F774394C1FCD6D3E00662C46 /* es-PR */,
  3931. F77439531FCD6D6100662C46 /* es-PY */,
  3932. F774395A1FCD6D8200662C46 /* es-SV */,
  3933. F77439611FCD6D9C00662C46 /* es-UY */,
  3934. F7BB04841FD58ACB00BBFD2A /* cs-CZ */,
  3935. F7320933201B812F008A0888 /* ko */,
  3936. F732093A201B81E4008A0888 /* es-419 */,
  3937. F70A07C7205285FB00DC1231 /* pt-PT */,
  3938. );
  3939. name = BKPasscodeView.strings;
  3940. path = "Supporting Files";
  3941. sourceTree = "<group>";
  3942. };
  3943. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */ = {
  3944. isa = PBXVariantGroup;
  3945. children = (
  3946. F732B3361E8045A1002B7D75 /* en */,
  3947. F7B1A7741EBB3C8000BFB6D1 /* de */,
  3948. F75B91E01ECAE17800199C96 /* fr */,
  3949. F75B91F51ECAE26300199C96 /* pt-BR */,
  3950. F75B923B1ECAE55E00199C96 /* ru */,
  3951. F7169A2E1EE59BB70086BD69 /* it */,
  3952. F7169A4A1EE59C640086BD69 /* tr */,
  3953. F78D6F441F0B7CB9002F9619 /* es-MX */,
  3954. F78D6F4B1F0B7CE4002F9619 /* nb-NO */,
  3955. F78D6F521F0B7D47002F9619 /* pl */,
  3956. F7DE9AAE1F482FA5008DFE10 /* sv */,
  3957. F7CC04E41F5AD50D00378CEF /* es */,
  3958. F7D532441F5D4123006568B1 /* is */,
  3959. F7D5324B1F5D4137006568B1 /* nl */,
  3960. F7D532521F5D4155006568B1 /* sk-SK */,
  3961. F7D5328D1F5D443B006568B1 /* en-GB */,
  3962. F7D532A21F5D4461006568B1 /* zh-Hans */,
  3963. F77438E91FCD694900662C46 /* ka-GE */,
  3964. F77438F01FCD69D200662C46 /* hu */,
  3965. F77438F71FCD6A0D00662C46 /* zh-Hant-TW */,
  3966. F77438FE1FCD6B7E00662C46 /* sr */,
  3967. F77439051FCD6BEF00662C46 /* es-CL */,
  3968. F774390C1FCD6C0C00662C46 /* es-CO */,
  3969. F77439131FCD6C4A00662C46 /* es-CR */,
  3970. F774391A1FCD6C6700662C46 /* es-DO */,
  3971. F77439211FCD6C8600662C46 /* es-EC */,
  3972. F77439281FCD6CAA00662C46 /* es-GT */,
  3973. F774392F1FCD6CC400662C46 /* es-HN */,
  3974. F77439361FCD6CDD00662C46 /* es-NI */,
  3975. F774393D1FCD6D0A00662C46 /* es-PA */,
  3976. F77439441FCD6D2200662C46 /* es-PE */,
  3977. F774394B1FCD6D3D00662C46 /* es-PR */,
  3978. F77439521FCD6D6100662C46 /* es-PY */,
  3979. F77439591FCD6D8100662C46 /* es-SV */,
  3980. F77439601FCD6D9C00662C46 /* es-UY */,
  3981. F7BB04831FD58ACA00BBFD2A /* cs-CZ */,
  3982. F7320932201B812F008A0888 /* ko */,
  3983. F7320939201B81E4008A0888 /* es-419 */,
  3984. F70A07C6205285FB00DC1231 /* pt-PT */,
  3985. );
  3986. name = SwiftWebVC.strings;
  3987. path = "Supporting Files";
  3988. sourceTree = "<group>";
  3989. };
  3990. F744BE9F1BEBB69F004FFF66 /* Intro.strings */ = {
  3991. isa = PBXVariantGroup;
  3992. children = (
  3993. F7151A831D477A4B00E6AF45 /* en */,
  3994. F7B1A7781EBB3C8100BFB6D1 /* de */,
  3995. F75B91E41ECAE17800199C96 /* fr */,
  3996. F75B91F91ECAE26400199C96 /* pt-BR */,
  3997. F75B923F1ECAE55F00199C96 /* ru */,
  3998. F7169A321EE59BB70086BD69 /* it */,
  3999. F7169A4E1EE59C640086BD69 /* tr */,
  4000. F78D6F481F0B7CB9002F9619 /* es-MX */,
  4001. F78D6F4F1F0B7CE4002F9619 /* nb-NO */,
  4002. F78D6F561F0B7D47002F9619 /* pl */,
  4003. F7DE9AB21F482FA5008DFE10 /* sv */,
  4004. F7CC04E81F5AD50D00378CEF /* es */,
  4005. F7D532481F5D4123006568B1 /* is */,
  4006. F7D5324F1F5D4137006568B1 /* nl */,
  4007. F7D532561F5D4155006568B1 /* sk-SK */,
  4008. F7D532911F5D443B006568B1 /* en-GB */,
  4009. F7D532A61F5D4462006568B1 /* zh-Hans */,
  4010. F77438ED1FCD694900662C46 /* ka-GE */,
  4011. F77438F41FCD69D300662C46 /* hu */,
  4012. F77438FB1FCD6A0E00662C46 /* zh-Hant-TW */,
  4013. F77439021FCD6B7F00662C46 /* sr */,
  4014. F77439091FCD6BF000662C46 /* es-CL */,
  4015. F77439101FCD6C0D00662C46 /* es-CO */,
  4016. F77439171FCD6C4A00662C46 /* es-CR */,
  4017. F774391E1FCD6C6700662C46 /* es-DO */,
  4018. F77439251FCD6C8700662C46 /* es-EC */,
  4019. F774392C1FCD6CAA00662C46 /* es-GT */,
  4020. F77439331FCD6CC500662C46 /* es-HN */,
  4021. F774393A1FCD6CDE00662C46 /* es-NI */,
  4022. F77439411FCD6D0B00662C46 /* es-PA */,
  4023. F77439481FCD6D2300662C46 /* es-PE */,
  4024. F774394F1FCD6D3E00662C46 /* es-PR */,
  4025. F77439561FCD6D6200662C46 /* es-PY */,
  4026. F774395D1FCD6D8200662C46 /* es-SV */,
  4027. F77439641FCD6D9D00662C46 /* es-UY */,
  4028. F7BB04871FD58ACB00BBFD2A /* cs-CZ */,
  4029. F7320936201B8130008A0888 /* ko */,
  4030. F732093D201B81E5008A0888 /* es-419 */,
  4031. F70A07CA205285FB00DC1231 /* pt-PT */,
  4032. );
  4033. name = Intro.strings;
  4034. path = "Supporting Files";
  4035. sourceTree = "<group>";
  4036. };
  4037. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */ = {
  4038. isa = PBXVariantGroup;
  4039. children = (
  4040. F75797AD1E81356C00187A1B /* en */,
  4041. F7B1A7731EBB3C8000BFB6D1 /* de */,
  4042. F75B91DF1ECAE17800199C96 /* fr */,
  4043. F75B91F41ECAE26300199C96 /* pt-BR */,
  4044. F75B923A1ECAE55E00199C96 /* ru */,
  4045. F7169A2D1EE59BB70086BD69 /* it */,
  4046. F7169A491EE59C630086BD69 /* tr */,
  4047. F78D6F431F0B7CB9002F9619 /* es-MX */,
  4048. F78D6F4A1F0B7CE4002F9619 /* nb-NO */,
  4049. F78D6F511F0B7D47002F9619 /* pl */,
  4050. F7DE9AAD1F482FA5008DFE10 /* sv */,
  4051. F7CC04E31F5AD50D00378CEF /* es */,
  4052. F7D532431F5D4123006568B1 /* is */,
  4053. F7D5324A1F5D4137006568B1 /* nl */,
  4054. F7D532511F5D4155006568B1 /* sk-SK */,
  4055. F7D5328C1F5D443B006568B1 /* en-GB */,
  4056. F7D532A11F5D4461006568B1 /* zh-Hans */,
  4057. F77438E81FCD694900662C46 /* ka-GE */,
  4058. F77438EF1FCD69D200662C46 /* hu */,
  4059. F77438F61FCD6A0D00662C46 /* zh-Hant-TW */,
  4060. F77438FD1FCD6B7E00662C46 /* sr */,
  4061. F77439041FCD6BEF00662C46 /* es-CL */,
  4062. F774390B1FCD6C0C00662C46 /* es-CO */,
  4063. F77439121FCD6C4900662C46 /* es-CR */,
  4064. F77439191FCD6C6700662C46 /* es-DO */,
  4065. F77439201FCD6C8600662C46 /* es-EC */,
  4066. F77439271FCD6CAA00662C46 /* es-GT */,
  4067. F774392E1FCD6CC400662C46 /* es-HN */,
  4068. F77439351FCD6CDD00662C46 /* es-NI */,
  4069. F774393C1FCD6D0A00662C46 /* es-PA */,
  4070. F77439431FCD6D2200662C46 /* es-PE */,
  4071. F774394A1FCD6D3D00662C46 /* es-PR */,
  4072. F77439511FCD6D6100662C46 /* es-PY */,
  4073. F77439581FCD6D8100662C46 /* es-SV */,
  4074. F774395F1FCD6D9C00662C46 /* es-UY */,
  4075. F7BB04821FD58ACA00BBFD2A /* cs-CZ */,
  4076. F7320931201B812F008A0888 /* ko */,
  4077. F7320938201B81E4008A0888 /* es-419 */,
  4078. F70A07C5205285FA00DC1231 /* pt-PT */,
  4079. );
  4080. name = CTAssetsPicker.strings;
  4081. path = "Supporting Files";
  4082. sourceTree = "<group>";
  4083. };
  4084. F771E3E220E2392E00AFB62D /* MainInterface.storyboard */ = {
  4085. isa = PBXVariantGroup;
  4086. children = (
  4087. F771E3E320E2392E00AFB62D /* Base */,
  4088. );
  4089. name = MainInterface.storyboard;
  4090. sourceTree = "<group>";
  4091. };
  4092. F7B381BF1C074E3E004693F8 /* Error.strings */ = {
  4093. isa = PBXVariantGroup;
  4094. children = (
  4095. F7151A841D477A4B00E6AF45 /* en */,
  4096. F7B1A7791EBB3C8100BFB6D1 /* de */,
  4097. F75B91E51ECAE17800199C96 /* fr */,
  4098. F75B91FA1ECAE26400199C96 /* pt-BR */,
  4099. F75B92401ECAE55F00199C96 /* ru */,
  4100. F7169A331EE59BB80086BD69 /* it */,
  4101. F7169A4F1EE59C640086BD69 /* tr */,
  4102. F78D6F491F0B7CB9002F9619 /* es-MX */,
  4103. F78D6F501F0B7CE5002F9619 /* nb-NO */,
  4104. F78D6F571F0B7D48002F9619 /* pl */,
  4105. F7DE9AB31F482FA5008DFE10 /* sv */,
  4106. F7CC04E91F5AD50E00378CEF /* es */,
  4107. F7D532491F5D4124006568B1 /* is */,
  4108. F7D532501F5D4137006568B1 /* nl */,
  4109. F7D532571F5D4156006568B1 /* sk-SK */,
  4110. F7D532921F5D443B006568B1 /* en-GB */,
  4111. F7D532A71F5D4462006568B1 /* zh-Hans */,
  4112. F77438EE1FCD694900662C46 /* ka-GE */,
  4113. F77438F51FCD69D300662C46 /* hu */,
  4114. F77438FC1FCD6A0E00662C46 /* zh-Hant-TW */,
  4115. F77439031FCD6B7F00662C46 /* sr */,
  4116. F774390A1FCD6BF000662C46 /* es-CL */,
  4117. F77439111FCD6C0D00662C46 /* es-CO */,
  4118. F77439181FCD6C4A00662C46 /* es-CR */,
  4119. F774391F1FCD6C6800662C46 /* es-DO */,
  4120. F77439261FCD6C8700662C46 /* es-EC */,
  4121. F774392D1FCD6CAA00662C46 /* es-GT */,
  4122. F77439341FCD6CC500662C46 /* es-HN */,
  4123. F774393B1FCD6CDE00662C46 /* es-NI */,
  4124. F77439421FCD6D0B00662C46 /* es-PA */,
  4125. F77439491FCD6D2300662C46 /* es-PE */,
  4126. F77439501FCD6D3E00662C46 /* es-PR */,
  4127. F77439571FCD6D6200662C46 /* es-PY */,
  4128. F774395E1FCD6D8200662C46 /* es-SV */,
  4129. F77439651FCD6D9D00662C46 /* es-UY */,
  4130. F7BB04881FD58ACB00BBFD2A /* cs-CZ */,
  4131. F7320937201B8130008A0888 /* ko */,
  4132. F732093E201B81E5008A0888 /* es-419 */,
  4133. F70A07CB205285FB00DC1231 /* pt-PT */,
  4134. );
  4135. name = Error.strings;
  4136. path = "Supporting Files";
  4137. sourceTree = "<group>";
  4138. };
  4139. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */ = {
  4140. isa = PBXVariantGroup;
  4141. children = (
  4142. F7151A821D477A4B00E6AF45 /* en */,
  4143. F7B1A7771EBB3C8100BFB6D1 /* de */,
  4144. F75B91E31ECAE17800199C96 /* fr */,
  4145. F75B91F81ECAE26400199C96 /* pt-BR */,
  4146. F75B923E1ECAE55E00199C96 /* ru */,
  4147. F7169A311EE59BB70086BD69 /* it */,
  4148. F7169A4D1EE59C640086BD69 /* tr */,
  4149. F78D6F471F0B7CB9002F9619 /* es-MX */,
  4150. F78D6F4E1F0B7CE4002F9619 /* nb-NO */,
  4151. F78D6F551F0B7D47002F9619 /* pl */,
  4152. F7DE9AB11F482FA5008DFE10 /* sv */,
  4153. F7CC04E71F5AD50D00378CEF /* es */,
  4154. F7D532471F5D4123006568B1 /* is */,
  4155. F7D5324E1F5D4137006568B1 /* nl */,
  4156. F7D532551F5D4155006568B1 /* sk-SK */,
  4157. F7D532901F5D443B006568B1 /* en-GB */,
  4158. F7D532A51F5D4461006568B1 /* zh-Hans */,
  4159. F77438EC1FCD694900662C46 /* ka-GE */,
  4160. F77438F31FCD69D300662C46 /* hu */,
  4161. F77438FA1FCD6A0E00662C46 /* zh-Hant-TW */,
  4162. F77439011FCD6B7F00662C46 /* sr */,
  4163. F77439081FCD6BF000662C46 /* es-CL */,
  4164. F774390F1FCD6C0D00662C46 /* es-CO */,
  4165. F77439161FCD6C4A00662C46 /* es-CR */,
  4166. F774391D1FCD6C6700662C46 /* es-DO */,
  4167. F77439241FCD6C8700662C46 /* es-EC */,
  4168. F774392B1FCD6CAA00662C46 /* es-GT */,
  4169. F77439321FCD6CC400662C46 /* es-HN */,
  4170. F77439391FCD6CDE00662C46 /* es-NI */,
  4171. F77439401FCD6D0B00662C46 /* es-PA */,
  4172. F77439471FCD6D2300662C46 /* es-PE */,
  4173. F774394E1FCD6D3E00662C46 /* es-PR */,
  4174. F77439551FCD6D6100662C46 /* es-PY */,
  4175. F774395C1FCD6D8200662C46 /* es-SV */,
  4176. F77439631FCD6D9C00662C46 /* es-UY */,
  4177. F7BB04861FD58ACB00BBFD2A /* cs-CZ */,
  4178. F7320935201B8130008A0888 /* ko */,
  4179. F732093C201B81E4008A0888 /* es-419 */,
  4180. F70A07C9205285FB00DC1231 /* pt-PT */,
  4181. );
  4182. name = InfoPlist.strings;
  4183. path = "Supporting Files";
  4184. sourceTree = "<group>";
  4185. };
  4186. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  4187. isa = PBXVariantGroup;
  4188. children = (
  4189. F7151A811D477A4B00E6AF45 /* en */,
  4190. F7B1A7761EBB3C8000BFB6D1 /* de */,
  4191. F75B91E21ECAE17800199C96 /* fr */,
  4192. F75B91F71ECAE26300199C96 /* pt-BR */,
  4193. F75B923D1ECAE55E00199C96 /* ru */,
  4194. F7169A301EE59BB70086BD69 /* it */,
  4195. F7169A4C1EE59C640086BD69 /* tr */,
  4196. F78D6F461F0B7CB9002F9619 /* es-MX */,
  4197. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  4198. F78D6F541F0B7D47002F9619 /* pl */,
  4199. F7DE9AB01F482FA5008DFE10 /* sv */,
  4200. F7CC04E61F5AD50D00378CEF /* es */,
  4201. F7D532461F5D4123006568B1 /* is */,
  4202. F7D5324D1F5D4137006568B1 /* nl */,
  4203. F7D532541F5D4155006568B1 /* sk-SK */,
  4204. F7D5328F1F5D443B006568B1 /* en-GB */,
  4205. F7D532A41F5D4461006568B1 /* zh-Hans */,
  4206. F77438EB1FCD694900662C46 /* ka-GE */,
  4207. F77438F21FCD69D300662C46 /* hu */,
  4208. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  4209. F77439001FCD6B7F00662C46 /* sr */,
  4210. F77439071FCD6BF000662C46 /* es-CL */,
  4211. F774390E1FCD6C0C00662C46 /* es-CO */,
  4212. F77439151FCD6C4A00662C46 /* es-CR */,
  4213. F774391C1FCD6C6700662C46 /* es-DO */,
  4214. F77439231FCD6C8700662C46 /* es-EC */,
  4215. F774392A1FCD6CAA00662C46 /* es-GT */,
  4216. F77439311FCD6CC400662C46 /* es-HN */,
  4217. F77439381FCD6CDE00662C46 /* es-NI */,
  4218. F774393F1FCD6D0B00662C46 /* es-PA */,
  4219. F77439461FCD6D2300662C46 /* es-PE */,
  4220. F774394D1FCD6D3E00662C46 /* es-PR */,
  4221. F77439541FCD6D6100662C46 /* es-PY */,
  4222. F774395B1FCD6D8200662C46 /* es-SV */,
  4223. F77439621FCD6D9C00662C46 /* es-UY */,
  4224. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  4225. F7320934201B812F008A0888 /* ko */,
  4226. F732093B201B81E4008A0888 /* es-419 */,
  4227. F70A07C8205285FB00DC1231 /* pt-PT */,
  4228. );
  4229. name = Localizable.strings;
  4230. path = "Supporting Files";
  4231. sourceTree = "<group>";
  4232. };
  4233. /* End PBXVariantGroup section */
  4234. /* Begin XCBuildConfiguration section */
  4235. F7145A261D12E3B700CAFEEC /* Debug */ = {
  4236. isa = XCBuildConfiguration;
  4237. buildSettings = {
  4238. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4239. APPLICATION_EXTENSION_API_ONLY = NO;
  4240. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4241. CLANG_ENABLE_MODULES = YES;
  4242. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4243. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4244. CODE_SIGN_IDENTITY = "iPhone Developer";
  4245. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4246. DEBUG_INFORMATION_FORMAT = dwarf;
  4247. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4248. FRAMEWORK_SEARCH_PATHS = (
  4249. "$(inherited)",
  4250. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4251. );
  4252. GCC_NO_COMMON_BLOCKS = YES;
  4253. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4254. GCC_PREPROCESSOR_DEFINITIONS = (
  4255. "$(inherited)",
  4256. EXTENSION,
  4257. EXTENSION_SHARE,
  4258. NC,
  4259. );
  4260. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4261. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4262. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4263. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4264. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4265. OTHER_LDFLAGS = (
  4266. "-Obj-C",
  4267. "-all_load",
  4268. );
  4269. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4270. PRODUCT_NAME = "$(TARGET_NAME)";
  4271. SKIP_INSTALL = YES;
  4272. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4273. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4274. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4275. SWIFT_VERSION = 4.0;
  4276. TARGETED_DEVICE_FAMILY = "1,2";
  4277. USE_HEADERMAP = YES;
  4278. };
  4279. name = Debug;
  4280. };
  4281. F7145A271D12E3B700CAFEEC /* Release */ = {
  4282. isa = XCBuildConfiguration;
  4283. buildSettings = {
  4284. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4285. APPLICATION_EXTENSION_API_ONLY = NO;
  4286. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4287. CLANG_ENABLE_MODULES = YES;
  4288. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4289. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4290. CODE_SIGN_IDENTITY = "iPhone Developer";
  4291. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4292. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4293. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4294. FRAMEWORK_SEARCH_PATHS = (
  4295. "$(inherited)",
  4296. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4297. );
  4298. GCC_NO_COMMON_BLOCKS = YES;
  4299. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4300. GCC_PREPROCESSOR_DEFINITIONS = (
  4301. "$(inherited)",
  4302. EXTENSION,
  4303. EXTENSION_SHARE,
  4304. NC,
  4305. );
  4306. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4307. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4308. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4309. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4310. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4311. OTHER_LDFLAGS = (
  4312. "-Obj-C",
  4313. "-all_load",
  4314. );
  4315. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4316. PRODUCT_NAME = "$(TARGET_NAME)";
  4317. SKIP_INSTALL = YES;
  4318. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4319. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4320. SWIFT_VERSION = 4.0;
  4321. TARGETED_DEVICE_FAMILY = "1,2";
  4322. USE_HEADERMAP = YES;
  4323. };
  4324. name = Release;
  4325. };
  4326. F771E3ED20E2392E00AFB62D /* Debug */ = {
  4327. isa = XCBuildConfiguration;
  4328. buildSettings = {
  4329. CLANG_ANALYZER_NONNULL = YES;
  4330. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4331. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4332. CLANG_ENABLE_OBJC_WEAK = YES;
  4333. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4334. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4335. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4336. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4337. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4338. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4339. CODE_SIGN_STYLE = Automatic;
  4340. DEBUG_INFORMATION_FORMAT = dwarf;
  4341. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4342. GCC_C_LANGUAGE_STANDARD = gnu11;
  4343. INFOPLIST_FILE = "File Provider ExtensionUI/Info.plist";
  4344. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4345. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4346. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-ExtensionUI";
  4347. PRODUCT_NAME = "$(TARGET_NAME)";
  4348. SKIP_INSTALL = YES;
  4349. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4350. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4351. SWIFT_VERSION = 4.0;
  4352. TARGETED_DEVICE_FAMILY = "1,2";
  4353. };
  4354. name = Debug;
  4355. };
  4356. F771E3EE20E2392E00AFB62D /* Release */ = {
  4357. isa = XCBuildConfiguration;
  4358. buildSettings = {
  4359. CLANG_ANALYZER_NONNULL = YES;
  4360. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4361. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4362. CLANG_ENABLE_OBJC_WEAK = YES;
  4363. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4364. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4365. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4366. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4367. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4368. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4369. CODE_SIGN_STYLE = Automatic;
  4370. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4371. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4372. GCC_C_LANGUAGE_STANDARD = gnu11;
  4373. INFOPLIST_FILE = "File Provider ExtensionUI/Info.plist";
  4374. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4375. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4376. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-ExtensionUI";
  4377. PRODUCT_NAME = "$(TARGET_NAME)";
  4378. SKIP_INSTALL = YES;
  4379. SWIFT_VERSION = 4.0;
  4380. TARGETED_DEVICE_FAMILY = "1,2";
  4381. };
  4382. name = Release;
  4383. };
  4384. F771E3F020E2392E00AFB62D /* Debug */ = {
  4385. isa = XCBuildConfiguration;
  4386. buildSettings = {
  4387. CLANG_ANALYZER_NONNULL = YES;
  4388. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4389. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4390. CLANG_ENABLE_OBJC_WEAK = YES;
  4391. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  4392. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4393. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4394. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4395. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4396. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  4397. CODE_SIGN_IDENTITY = "iPhone Developer";
  4398. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4399. CODE_SIGN_STYLE = Automatic;
  4400. DEBUG_INFORMATION_FORMAT = dwarf;
  4401. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4402. FRAMEWORK_SEARCH_PATHS = (
  4403. "$(inherited)",
  4404. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4405. );
  4406. GCC_C_LANGUAGE_STANDARD = gnu11;
  4407. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4408. GCC_PREPROCESSOR_DEFINITIONS = (
  4409. "$(inherited)",
  4410. EXTENSION,
  4411. EXTENSION_FILE_PROVIDER_EXTENSION,
  4412. NC,
  4413. );
  4414. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4415. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  4416. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4417. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4418. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4419. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4420. PRODUCT_NAME = "$(TARGET_NAME)";
  4421. SKIP_INSTALL = YES;
  4422. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4423. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4424. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4425. SWIFT_VERSION = 4.0;
  4426. TARGETED_DEVICE_FAMILY = "1,2";
  4427. };
  4428. name = Debug;
  4429. };
  4430. F771E3F120E2392E00AFB62D /* Release */ = {
  4431. isa = XCBuildConfiguration;
  4432. buildSettings = {
  4433. CLANG_ANALYZER_NONNULL = YES;
  4434. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4435. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4436. CLANG_ENABLE_OBJC_WEAK = YES;
  4437. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  4438. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4439. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4440. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4441. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4442. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  4443. CODE_SIGN_IDENTITY = "iPhone Developer";
  4444. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4445. CODE_SIGN_STYLE = Automatic;
  4446. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4447. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4448. FRAMEWORK_SEARCH_PATHS = (
  4449. "$(inherited)",
  4450. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4451. );
  4452. GCC_C_LANGUAGE_STANDARD = gnu11;
  4453. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4454. GCC_PREPROCESSOR_DEFINITIONS = (
  4455. EXTENSION,
  4456. EXTENSION_FILE_PROVIDER_EXTENSION,
  4457. NC,
  4458. );
  4459. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4460. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  4461. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  4462. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4463. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4464. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4465. PRODUCT_NAME = "$(TARGET_NAME)";
  4466. SKIP_INSTALL = YES;
  4467. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4468. SWIFT_VERSION = 4.0;
  4469. TARGETED_DEVICE_FAMILY = "1,2";
  4470. };
  4471. name = Release;
  4472. };
  4473. F77B0F9B1D118A16002130FE /* Debug */ = {
  4474. isa = XCBuildConfiguration;
  4475. buildSettings = {
  4476. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4477. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4478. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4479. CLANG_ENABLE_MODULES = YES;
  4480. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4481. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4482. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4483. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4484. CURRENT_PROJECT_VERSION = "";
  4485. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4486. ENABLE_BITCODE = YES;
  4487. FRAMEWORK_SEARCH_PATHS = (
  4488. "$(inherited)",
  4489. "$(PROJECT_DIR)\"/Libraries external/Analytics\"",
  4490. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4491. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4492. );
  4493. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4494. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4495. GCC_PREPROCESSOR_DEFINITIONS = (
  4496. "$(inherited)",
  4497. NC,
  4498. );
  4499. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4500. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4501. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4502. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4503. LIBRARY_SEARCH_PATHS = "\"Libraries external/openssl\"";
  4504. OTHER_LDFLAGS = (
  4505. "-Obj-C",
  4506. "-all_load",
  4507. );
  4508. OTHER_SWIFT_FLAGS = "-DDEBUG";
  4509. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4510. PRODUCT_NAME = "$(TARGET_NAME)";
  4511. PROVISIONING_PROFILE = "";
  4512. PROVISIONING_PROFILE_SPECIFIER = "";
  4513. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4514. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4515. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4516. SWIFT_VERSION = 4.0;
  4517. TARGETED_DEVICE_FAMILY = "1,2";
  4518. USE_HEADERMAP = YES;
  4519. VERSIONING_SYSTEM = "";
  4520. };
  4521. name = Debug;
  4522. };
  4523. F77B0F9C1D118A16002130FE /* Release */ = {
  4524. isa = XCBuildConfiguration;
  4525. buildSettings = {
  4526. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4527. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4528. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4529. CLANG_ENABLE_MODULES = YES;
  4530. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4531. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4532. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4533. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4534. COPY_PHASE_STRIP = NO;
  4535. CURRENT_PROJECT_VERSION = "";
  4536. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4537. ENABLE_BITCODE = YES;
  4538. FRAMEWORK_SEARCH_PATHS = (
  4539. "$(inherited)",
  4540. "$(PROJECT_DIR)\"/Libraries external/Analytics\"",
  4541. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4542. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4543. );
  4544. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4545. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4546. GCC_PREPROCESSOR_DEFINITIONS = (
  4547. "$(inherited)",
  4548. NC,
  4549. );
  4550. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4551. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4552. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4553. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4554. LIBRARY_SEARCH_PATHS = "\"Libraries external/openssl\"";
  4555. OTHER_LDFLAGS = (
  4556. "-Obj-C",
  4557. "-all_load",
  4558. );
  4559. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4560. PRODUCT_NAME = "$(TARGET_NAME)";
  4561. PROVISIONING_PROFILE = "";
  4562. PROVISIONING_PROFILE_SPECIFIER = "";
  4563. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4564. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4565. SWIFT_VERSION = 4.0;
  4566. TARGETED_DEVICE_FAMILY = "1,2";
  4567. USE_HEADERMAP = YES;
  4568. VERSIONING_SYSTEM = "";
  4569. };
  4570. name = Release;
  4571. };
  4572. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4573. isa = XCBuildConfiguration;
  4574. buildSettings = {
  4575. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4576. ALWAYS_SEARCH_USER_PATHS = NO;
  4577. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4578. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4579. CLANG_CXX_LIBRARY = "libc++";
  4580. CLANG_ENABLE_MODULES = YES;
  4581. CLANG_ENABLE_OBJC_ARC = YES;
  4582. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4583. CLANG_WARN_BOOL_CONVERSION = YES;
  4584. CLANG_WARN_COMMA = YES;
  4585. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4586. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4587. CLANG_WARN_EMPTY_BODY = YES;
  4588. CLANG_WARN_ENUM_CONVERSION = YES;
  4589. CLANG_WARN_INFINITE_RECURSION = YES;
  4590. CLANG_WARN_INT_CONVERSION = YES;
  4591. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4592. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4593. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4594. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4595. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4596. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4597. CLANG_WARN_UNREACHABLE_CODE = YES;
  4598. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4599. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4600. COPY_PHASE_STRIP = NO;
  4601. DEFINES_MODULE = YES;
  4602. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4603. ENABLE_TESTABILITY = YES;
  4604. GCC_C_LANGUAGE_STANDARD = gnu99;
  4605. GCC_DYNAMIC_NO_PIC = NO;
  4606. GCC_NO_COMMON_BLOCKS = YES;
  4607. GCC_OPTIMIZATION_LEVEL = 0;
  4608. GCC_PREPROCESSOR_DEFINITIONS = (
  4609. "DEBUG=1",
  4610. "$(inherited)",
  4611. );
  4612. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4613. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4614. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4615. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4616. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4617. GCC_WARN_UNUSED_FUNCTION = YES;
  4618. GCC_WARN_UNUSED_VARIABLE = YES;
  4619. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4620. MTL_ENABLE_DEBUG_INFO = YES;
  4621. ONLY_ACTIVE_ARCH = YES;
  4622. OTHER_LDFLAGS = (
  4623. "-Obj-C",
  4624. "-all_load",
  4625. );
  4626. SDKROOT = iphoneos;
  4627. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4628. };
  4629. name = Debug;
  4630. };
  4631. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4632. isa = XCBuildConfiguration;
  4633. buildSettings = {
  4634. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4635. ALWAYS_SEARCH_USER_PATHS = NO;
  4636. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4637. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4638. CLANG_CXX_LIBRARY = "libc++";
  4639. CLANG_ENABLE_MODULES = YES;
  4640. CLANG_ENABLE_OBJC_ARC = YES;
  4641. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4642. CLANG_WARN_BOOL_CONVERSION = YES;
  4643. CLANG_WARN_COMMA = YES;
  4644. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4645. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4646. CLANG_WARN_EMPTY_BODY = YES;
  4647. CLANG_WARN_ENUM_CONVERSION = YES;
  4648. CLANG_WARN_INFINITE_RECURSION = YES;
  4649. CLANG_WARN_INT_CONVERSION = YES;
  4650. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4651. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4652. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4653. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4654. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4655. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4656. CLANG_WARN_UNREACHABLE_CODE = YES;
  4657. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4658. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4659. COPY_PHASE_STRIP = NO;
  4660. DEFINES_MODULE = YES;
  4661. ENABLE_NS_ASSERTIONS = NO;
  4662. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4663. GCC_C_LANGUAGE_STANDARD = gnu99;
  4664. GCC_NO_COMMON_BLOCKS = YES;
  4665. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4666. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4667. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4668. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4669. GCC_WARN_UNUSED_FUNCTION = YES;
  4670. GCC_WARN_UNUSED_VARIABLE = YES;
  4671. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  4672. MTL_ENABLE_DEBUG_INFO = NO;
  4673. OTHER_LDFLAGS = (
  4674. "-Obj-C",
  4675. "-all_load",
  4676. );
  4677. SDKROOT = iphoneos;
  4678. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  4679. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4680. VALIDATE_PRODUCT = YES;
  4681. };
  4682. name = Release;
  4683. };
  4684. /* End XCBuildConfiguration section */
  4685. /* Begin XCConfigurationList section */
  4686. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4687. isa = XCConfigurationList;
  4688. buildConfigurations = (
  4689. F7145A261D12E3B700CAFEEC /* Debug */,
  4690. F7145A271D12E3B700CAFEEC /* Release */,
  4691. );
  4692. defaultConfigurationIsVisible = 0;
  4693. defaultConfigurationName = Release;
  4694. };
  4695. F771E3EC20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider ExtensionUI" */ = {
  4696. isa = XCConfigurationList;
  4697. buildConfigurations = (
  4698. F771E3ED20E2392E00AFB62D /* Debug */,
  4699. F771E3EE20E2392E00AFB62D /* Release */,
  4700. );
  4701. defaultConfigurationIsVisible = 0;
  4702. defaultConfigurationName = Release;
  4703. };
  4704. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4705. isa = XCConfigurationList;
  4706. buildConfigurations = (
  4707. F771E3F020E2392E00AFB62D /* Debug */,
  4708. F771E3F120E2392E00AFB62D /* Release */,
  4709. );
  4710. defaultConfigurationIsVisible = 0;
  4711. defaultConfigurationName = Release;
  4712. };
  4713. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4714. isa = XCConfigurationList;
  4715. buildConfigurations = (
  4716. F77B0F9B1D118A16002130FE /* Debug */,
  4717. F77B0F9C1D118A16002130FE /* Release */,
  4718. );
  4719. defaultConfigurationIsVisible = 0;
  4720. defaultConfigurationName = Release;
  4721. };
  4722. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4723. isa = XCConfigurationList;
  4724. buildConfigurations = (
  4725. F7F67BC91A24D27800EE80DA /* Debug */,
  4726. F7F67BCA1A24D27800EE80DA /* Release */,
  4727. );
  4728. defaultConfigurationIsVisible = 0;
  4729. defaultConfigurationName = Release;
  4730. };
  4731. /* End XCConfigurationList section */
  4732. };
  4733. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4734. }