project.pbxproj 404 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. F708CF6D1E56E8CC00271D8B /* TableMetadata+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF4E1E56E8CB00271D8B /* TableMetadata+CoreDataClass.m */; };
  10. F708CF6E1E56E8CC00271D8B /* TableMetadata+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF4E1E56E8CB00271D8B /* TableMetadata+CoreDataClass.m */; };
  11. F708CF6F1E56E8CC00271D8B /* TableMetadata+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF4E1E56E8CB00271D8B /* TableMetadata+CoreDataClass.m */; };
  12. F708CF701E56E8CC00271D8B /* TableMetadata+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF501E56E8CB00271D8B /* TableMetadata+CoreDataProperties.m */; };
  13. F708CF711E56E8CC00271D8B /* TableMetadata+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF501E56E8CB00271D8B /* TableMetadata+CoreDataProperties.m */; };
  14. F708CF721E56E8CC00271D8B /* TableMetadata+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF501E56E8CB00271D8B /* TableMetadata+CoreDataProperties.m */; };
  15. F708CF731E56E8CC00271D8B /* TableLocalFile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF521E56E8CB00271D8B /* TableLocalFile+CoreDataClass.m */; };
  16. F708CF741E56E8CC00271D8B /* TableLocalFile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF521E56E8CB00271D8B /* TableLocalFile+CoreDataClass.m */; };
  17. F708CF751E56E8CC00271D8B /* TableLocalFile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF521E56E8CB00271D8B /* TableLocalFile+CoreDataClass.m */; };
  18. F708CF761E56E8CC00271D8B /* TableLocalFile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF541E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.m */; };
  19. F708CF771E56E8CC00271D8B /* TableLocalFile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF541E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.m */; };
  20. F708CF781E56E8CC00271D8B /* TableLocalFile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF541E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.m */; };
  21. F708CF791E56E8CC00271D8B /* TableGPS+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF561E56E8CB00271D8B /* TableGPS+CoreDataClass.m */; };
  22. F708CF7A1E56E8CC00271D8B /* TableGPS+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF561E56E8CB00271D8B /* TableGPS+CoreDataClass.m */; };
  23. F708CF7B1E56E8CC00271D8B /* TableGPS+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF561E56E8CB00271D8B /* TableGPS+CoreDataClass.m */; };
  24. F708CF7C1E56E8CC00271D8B /* TableGPS+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF581E56E8CC00271D8B /* TableGPS+CoreDataProperties.m */; };
  25. F708CF7D1E56E8CC00271D8B /* TableGPS+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF581E56E8CC00271D8B /* TableGPS+CoreDataProperties.m */; };
  26. F708CF7E1E56E8CC00271D8B /* TableGPS+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF581E56E8CC00271D8B /* TableGPS+CoreDataProperties.m */; };
  27. F708CF7F1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5A1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m */; };
  28. F708CF801E56E8CC00271D8B /* TableDirectory+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5A1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m */; };
  29. F708CF811E56E8CC00271D8B /* TableDirectory+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5A1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m */; };
  30. F708CF821E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5C1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m */; };
  31. F708CF831E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5C1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m */; };
  32. F708CF841E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5C1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m */; };
  33. F708CF851E56E8CC00271D8B /* TableShare+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5E1E56E8CC00271D8B /* TableShare+CoreDataClass.m */; };
  34. F708CF861E56E8CC00271D8B /* TableShare+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5E1E56E8CC00271D8B /* TableShare+CoreDataClass.m */; };
  35. F708CF871E56E8CC00271D8B /* TableShare+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF5E1E56E8CC00271D8B /* TableShare+CoreDataClass.m */; };
  36. F708CF881E56E8CC00271D8B /* TableShare+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF601E56E8CC00271D8B /* TableShare+CoreDataProperties.m */; };
  37. F708CF891E56E8CC00271D8B /* TableShare+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF601E56E8CC00271D8B /* TableShare+CoreDataProperties.m */; };
  38. F708CF8A1E56E8CC00271D8B /* TableShare+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF601E56E8CC00271D8B /* TableShare+CoreDataProperties.m */; };
  39. F708CF8B1E56E8CC00271D8B /* TableCertificates+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF621E56E8CC00271D8B /* TableCertificates+CoreDataClass.m */; };
  40. F708CF8C1E56E8CC00271D8B /* TableCertificates+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF621E56E8CC00271D8B /* TableCertificates+CoreDataClass.m */; };
  41. F708CF8D1E56E8CC00271D8B /* TableCertificates+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF621E56E8CC00271D8B /* TableCertificates+CoreDataClass.m */; };
  42. F708CF8E1E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF641E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m */; };
  43. F708CF8F1E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF641E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m */; };
  44. F708CF901E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF641E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m */; };
  45. F708CF911E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF661E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m */; };
  46. F708CF921E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF661E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m */; };
  47. F708CF931E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF661E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m */; };
  48. F708CF941E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF681E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m */; };
  49. F708CF951E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF681E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m */; };
  50. F708CF961E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF681E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m */; };
  51. F708CF971E56E8CC00271D8B /* TableAccount+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF6A1E56E8CC00271D8B /* TableAccount+CoreDataClass.m */; };
  52. F708CF981E56E8CC00271D8B /* TableAccount+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF6A1E56E8CC00271D8B /* TableAccount+CoreDataClass.m */; };
  53. F708CF991E56E8CC00271D8B /* TableAccount+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF6A1E56E8CC00271D8B /* TableAccount+CoreDataClass.m */; };
  54. F708CF9A1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF6C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m */; };
  55. F708CF9B1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF6C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m */; };
  56. F708CF9C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F708CF6C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m */; };
  57. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  58. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  59. F70FD1C71E67552700C0FDA6 /* CCControlCenterTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70FD1C61E67552700C0FDA6 /* CCControlCenterTransfer.m */; };
  60. F70FD1CB1E675F1500C0FDA6 /* CCControlCenterActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70FD1CA1E675F1500C0FDA6 /* CCControlCenterActivity.m */; };
  61. F714526D1DC1523B0006A5D4 /* libMagicalRecord.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */; };
  62. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  63. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  64. F71459BB1D12E3B700CAFEEC /* NYXProgressiveImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */; };
  65. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  66. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  67. F71459BE1D12E3B700CAFEEC /* UIImage+Reflection.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C81C889184008DAB36 /* UIImage+Reflection.m */; };
  68. F71459BF1D12E3B700CAFEEC /* RNEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F053B1C889184008DAB36 /* RNEncryptor.m */; };
  69. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  70. F71459C31D12E3B700CAFEEC /* UIImage+Filtering.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C41C889184008DAB36 /* UIImage+Filtering.m */; };
  71. F71459C41D12E3B700CAFEEC /* UIImage+Saving.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CE1C889184008DAB36 /* UIImage+Saving.m */; };
  72. F71459C51D12E3B700CAFEEC /* UIImage+Rotating.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */; };
  73. F71459C61D12E3B700CAFEEC /* CCMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1731B482A920048180E /* CCMetadata.m */; };
  74. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  75. F71459CC1D12E3B700CAFEEC /* RNCryptorEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05371C889184008DAB36 /* RNCryptorEngine.m */; };
  76. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  77. F71459CE1D12E3B700CAFEEC /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */; };
  78. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  79. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  80. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  81. F71459D91D12E3B700CAFEEC /* CCCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125F1BAC03FB0041924B /* CCCrypto.m */; };
  82. F71459DD1D12E3B700CAFEEC /* CCCoreData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B81D801C64E77F006D02DF /* CCCoreData.m */; };
  83. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  84. F71459E41D12E3B700CAFEEC /* RNDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05391C889184008DAB36 /* RNDecryptor.m */; };
  85. F71459E61D12E3B700CAFEEC /* NYXImagesHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D41C889184008DAB36 /* NYXImagesHelper.m */; };
  86. F71459E91D12E3B700CAFEEC /* UIImage+Enhancing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */; };
  87. F71459EA1D12E3B700CAFEEC /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7296A611C8880C9001A7809 /* CCCellShareExt.m */; };
  88. F71459ED1D12E3B700CAFEEC /* UIImage+Masking.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C61C889184008DAB36 /* UIImage+Masking.m */; };
  89. F71459F01D12E3B700CAFEEC /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B11C889183008DAB36 /* NSString+Base64.m */; };
  90. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  91. F71459F31D12E3B700CAFEEC /* UIImage+Resizing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */; };
  92. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  93. F71459FB1D12E3B700CAFEEC /* PPImageScrollingCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */; };
  94. F71459FE1D12E3B700CAFEEC /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  95. F71459FF1D12E3B700CAFEEC /* RNCryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05351C889184008DAB36 /* RNCryptor.m */; };
  96. F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  97. F7145A011D12E3B700CAFEEC /* UIImage+Blurring.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C01C889184008DAB36 /* UIImage+Blurring.m */; };
  98. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  99. F7145A081D12E3B700CAFEEC /* PPCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */; };
  100. F7145A0D1D12E3B700CAFEEC /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AD1C889183008DAB36 /* NSData+Base64.m */; };
  101. F7145A0E1D12E3B700CAFEEC /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AB1C889183008DAB36 /* AESCrypt.m */; };
  102. F7145A111D12E3B700CAFEEC /* PPImageScrollingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */; };
  103. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  104. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  105. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  106. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  107. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  108. F7145A241D12E3B700CAFEEC /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7296A621C8880C9001A7809 /* CCCellShareExt.xib */; };
  109. F71E68001DC1F792003BA52B /* libownCloudiOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F71E67FC1DC1F76F003BA52B /* libownCloudiOS.a */; };
  110. F71E68021DC1F79D003BA52B /* libownCloudiOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F71E67FC1DC1F76F003BA52B /* libownCloudiOS.a */; };
  111. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F720E01E1E48C73E001A4B9E /* CCActions.swift */; };
  112. F7253FCA1E38BAF20084135B /* JSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7253FC91E38BAF20084135B /* JSAlertView.m */; };
  113. F725437C1E12A44A009BF4C2 /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  114. F7274FED1E6EB6F400C241B6 /* Constant.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7274FEC1E6EB6F400C241B6 /* Constant.swift */; };
  115. F7274FEE1E6EB6F400C241B6 /* Constant.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7274FEC1E6EB6F400C241B6 /* Constant.swift */; };
  116. F7274FEF1E6EB6F400C241B6 /* Constant.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7274FEC1E6EB6F400C241B6 /* Constant.swift */; };
  117. F7274FF01E6EB6F400C241B6 /* Constant.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7274FEC1E6EB6F400C241B6 /* Constant.swift */; };
  118. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  119. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  120. F72AAECC1E5C60C700BB17E1 /* UIImage+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC71E5C60C700BB17E1 /* UIImage+AHKAdditions.m */; };
  121. F72AAECD1E5C60C700BB17E1 /* UIWindow+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC91E5C60C700BB17E1 /* UIWindow+AHKAdditions.m */; };
  122. F72AE40B1E67246200B3E477 /* ControlCenter.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F72AE40A1E67246200B3E477 /* ControlCenter.storyboard */; };
  123. F72C63891DC14B0400FA5ED5 /* libMagicalRecord.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */; };
  124. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */ = {isa = PBXBuildFile; fileRef = F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */; };
  125. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  126. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  127. F73C002F1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m in Sources */ = {isa = PBXBuildFile; fileRef = F73C002E1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m */; };
  128. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  129. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  130. F73CC06B1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  131. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  132. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  133. F73CC06E1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  134. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  135. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  136. F73CC0711E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  137. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  138. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  139. F73CC0741E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  140. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  141. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  142. F73CC0771E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  143. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  144. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  145. F73CC07A1E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  146. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  147. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  148. F73CC07D1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  149. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  150. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  151. F73CC0801E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  152. F73CCDD91DC13776007E38D8 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD841DC13775007E38D8 /* XLFormBaseCell.m */; };
  153. F73CCDDB1DC13776007E38D8 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD861DC13775007E38D8 /* XLFormButtonCell.m */; };
  154. F73CCDDD1DC13776007E38D8 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD881DC13775007E38D8 /* XLFormCheckCell.m */; };
  155. F73CCDDF1DC13776007E38D8 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD8A1DC13775007E38D8 /* XLFormDateCell.m */; };
  156. F73CCDE11DC13776007E38D8 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD8C1DC13775007E38D8 /* XLFormDatePickerCell.m */; };
  157. F73CCDE31DC13776007E38D8 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD8F1DC13776007E38D8 /* XLFormImageCell.m */; };
  158. F73CCDE51DC13776007E38D8 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD921DC13776007E38D8 /* XLFormInlineSelectorCell.m */; };
  159. F73CCDE71DC13776007E38D8 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD941DC13776007E38D8 /* XLFormLeftRightSelectorCell.m */; };
  160. F73CCDE91DC13776007E38D8 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD961DC13776007E38D8 /* XLFormPickerCell.m */; };
  161. F73CCDEB1DC13776007E38D8 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD981DC13776007E38D8 /* XLFormSegmentedCell.m */; };
  162. F73CCDED1DC13776007E38D8 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD9A1DC13776007E38D8 /* XLFormSelectorCell.m */; };
  163. F73CCDEF1DC13776007E38D8 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD9C1DC13776007E38D8 /* XLFormSliderCell.m */; };
  164. F73CCDF11DC13776007E38D8 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCD9E1DC13776007E38D8 /* XLFormStepCounterCell.m */; };
  165. F73CCDF31DC13776007E38D8 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDA01DC13776007E38D8 /* XLFormSwitchCell.m */; };
  166. F73CCDF51DC13776007E38D8 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDA21DC13776007E38D8 /* XLFormTextFieldCell.m */; };
  167. F73CCDF71DC13776007E38D8 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDA41DC13776007E38D8 /* XLFormTextViewCell.m */; };
  168. F73CCDF91DC13776007E38D8 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDA71DC13776007E38D8 /* XLFormOptionsObject.m */; };
  169. F73CCDFB1DC13776007E38D8 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDA91DC13776007E38D8 /* XLFormOptionsViewController.m */; };
  170. F73CCDFD1DC13776007E38D8 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDAC1DC13776007E38D8 /* XLFormViewController.m */; };
  171. F73CCDFF1DC13776007E38D8 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDAF1DC13776007E38D8 /* XLFormDescriptor.m */; };
  172. F73CCE011DC13776007E38D8 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDB21DC13776007E38D8 /* XLFormRowDescriptor.m */; };
  173. F73CCE031DC13776007E38D8 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDB41DC13776007E38D8 /* XLFormSectionDescriptor.m */; };
  174. F73CCE051DC13776007E38D8 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDB71DC13776007E38D8 /* NSArray+XLFormAdditions.m */; };
  175. F73CCE071DC13776007E38D8 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDB91DC13776007E38D8 /* NSExpression+XLFormAdditions.m */; };
  176. F73CCE091DC13776007E38D8 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDBB1DC13776007E38D8 /* NSObject+XLFormAdditions.m */; };
  177. F73CCE0B1DC13776007E38D8 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDBD1DC13776007E38D8 /* NSPredicate+XLFormAdditions.m */; };
  178. F73CCE0D1DC13776007E38D8 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDBF1DC13776007E38D8 /* NSString+XLFormAdditions.m */; };
  179. F73CCE0F1DC13776007E38D8 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDC11DC13776007E38D8 /* UIView+XLFormAdditions.m */; };
  180. F73CCE111DC13776007E38D8 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDC41DC13776007E38D8 /* XLFormRightDetailCell.m */; };
  181. F73CCE131DC13776007E38D8 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDC61DC13776007E38D8 /* XLFormRightImageButton.m */; };
  182. F73CCE151DC13776007E38D8 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDC81DC13776007E38D8 /* XLFormRowNavigationAccessoryView.m */; };
  183. F73CCE171DC13776007E38D8 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDCA1DC13776007E38D8 /* XLFormTextView.m */; };
  184. F73CCE191DC13776007E38D8 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDCD1DC13776007E38D8 /* XLFormRegexValidator.m */; };
  185. F73CCE1B1DC13776007E38D8 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDCF1DC13776007E38D8 /* XLFormValidationStatus.m */; };
  186. F73CCE1D1DC13776007E38D8 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDD11DC13776007E38D8 /* XLFormValidator.m */; };
  187. F73CCE1F1DC13776007E38D8 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCDD41DC13776007E38D8 /* XLForm.m */; };
  188. F73CCE211DC13776007E38D8 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F73CCDD51DC13776007E38D8 /* XLForm.bundle */; };
  189. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  190. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  191. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  192. F74344171E1264EE001CC831 /* DocumentPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74344161E1264EE001CC831 /* DocumentPickerViewController.swift */; };
  193. F74344251E1264EE001CC831 /* FileProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74344241E1264EE001CC831 /* FileProvider.swift */; };
  194. F743444A1E126B4D001CC831 /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  195. F743444B1E126B69001CC831 /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  196. F74344541E1277D8001CC831 /* libownCloudiOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F71E67FC1DC1F76F003BA52B /* libownCloudiOS.a */; };
  197. F74344551E1277E2001CC831 /* libMagicalRecord.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */; };
  198. F74344561E12784A001CC831 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  199. F74344591E12786C001CC831 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  200. F74344631E127D79001CC831 /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  201. F74344641E127DE6001CC831 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  202. F74344651E127DE9001CC831 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  203. F74344661E127E35001CC831 /* CCCoreData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B81D801C64E77F006D02DF /* CCCoreData.m */; };
  204. F74344671E127E38001CC831 /* CCMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1731B482A920048180E /* CCMetadata.m */; };
  205. F74344781E127E9E001CC831 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  206. F74344791E127EA1001CC831 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  207. F743447A1E127EA6001CC831 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  208. F743447B1E127EAC001CC831 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  209. F743447C1E127EB2001CC831 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  210. F743447D1E127ECB001CC831 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AB1C889183008DAB36 /* AESCrypt.m */; };
  211. F743447E1E127ECE001CC831 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AD1C889183008DAB36 /* NSData+Base64.m */; };
  212. F743447F1E127ED1001CC831 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */; };
  213. F74344801E127ED3001CC831 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B11C889183008DAB36 /* NSString+Base64.m */; };
  214. F74344811E127F49001CC831 /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  215. F74344821E127F68001CC831 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  216. F74344831E127F80001CC831 /* RNCryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05351C889184008DAB36 /* RNCryptor.m */; };
  217. F74344841E127F84001CC831 /* RNCryptorEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05371C889184008DAB36 /* RNCryptorEngine.m */; };
  218. F74344851E127F86001CC831 /* RNDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05391C889184008DAB36 /* RNDecryptor.m */; };
  219. F74344861E127F89001CC831 /* RNEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F053B1C889184008DAB36 /* RNEncryptor.m */; };
  220. F74344871E127F95001CC831 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  221. F74344881E127F9C001CC831 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  222. F74344891E127FC3001CC831 /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  223. F743448A1E127FF2001CC831 /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  224. F743448B1E12800D001CC831 /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  225. F743448C1E128010001CC831 /* CCCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125F1BAC03FB0041924B /* CCCrypto.m */; };
  226. F74344921E128EB0001CC831 /* Picker.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F74344901E128E8F001CC831 /* Picker.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  227. F74344931E128EB4001CC831 /* PickerFileProvider.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F74344911E128E96001CC831 /* PickerFileProvider.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  228. F744FA7E1E57333C00BFAB34 /* APAvatarImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F744FA7D1E57333C00BFAB34 /* APAvatarImageView.m */; };
  229. F744FA7F1E57333C00BFAB34 /* APAvatarImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F744FA7D1E57333C00BFAB34 /* APAvatarImageView.m */; };
  230. F744FA801E57333C00BFAB34 /* APAvatarImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F744FA7D1E57333C00BFAB34 /* APAvatarImageView.m */; };
  231. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  232. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  233. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  234. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  235. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */ = {isa = PBXBuildFile; fileRef = F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */; };
  236. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  237. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A231DC0B726004860C4 /* EAIntroPage.m */; };
  238. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A251DC0B726004860C4 /* EAIntroView.m */; };
  239. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */; };
  240. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7659A311DC0B737004860C4 /* iRate.bundle */; };
  241. F7659A391DC0B737004860C4 /* iRate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A331DC0B737004860C4 /* iRate.m */; };
  242. F7659A581DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A3C1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m */; };
  243. F7659A5A1DC0B760004860C4 /* PSTCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A3E1DC0B760004860C4 /* PSTCollectionView.m */; };
  244. F7659A5C1DC0B760004860C4 /* PSTCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A401DC0B760004860C4 /* PSTCollectionViewCell.m */; };
  245. F7659A5E1DC0B760004860C4 /* PSTCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A431DC0B760004860C4 /* PSTCollectionViewController.m */; };
  246. F7659A601DC0B760004860C4 /* PSTCollectionViewData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A451DC0B760004860C4 /* PSTCollectionViewData.m */; };
  247. F7659A621DC0B760004860C4 /* PSTCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A471DC0B760004860C4 /* PSTCollectionViewFlowLayout.m */; };
  248. F7659A641DC0B760004860C4 /* PSTCollectionViewItemKey.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A491DC0B760004860C4 /* PSTCollectionViewItemKey.m */; };
  249. F7659A661DC0B760004860C4 /* PSTCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A4C1DC0B760004860C4 /* PSTCollectionViewLayout.m */; };
  250. F7659A681DC0B760004860C4 /* PSTCollectionViewUpdateItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A4E1DC0B760004860C4 /* PSTCollectionViewUpdateItem.m */; };
  251. F7659A6A1DC0B760004860C4 /* PSTGridLayoutInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A501DC0B760004860C4 /* PSTGridLayoutInfo.m */; };
  252. F7659A6C1DC0B760004860C4 /* PSTGridLayoutItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A521DC0B760004860C4 /* PSTGridLayoutItem.m */; };
  253. F7659A6E1DC0B760004860C4 /* PSTGridLayoutRow.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A541DC0B760004860C4 /* PSTGridLayoutRow.m */; };
  254. F7659A701DC0B760004860C4 /* PSTGridLayoutSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A561DC0B760004860C4 /* PSTGridLayoutSection.m */; };
  255. F7676A641D5CB1B900DF734C /* TWMessageBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7676A621D5CB1B900DF734C /* TWMessageBarManager.m */; };
  256. F7676A791D5CB2A400DF734C /* icon-error.png in Resources */ = {isa = PBXBuildFile; fileRef = F7676A721D5CB2A300DF734C /* icon-error.png */; };
  257. F7676A7B1D5CB2A400DF734C /* icon-error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7676A731D5CB2A300DF734C /* icon-error@2x.png */; };
  258. F7676A7D1D5CB2A400DF734C /* icon-info.png in Resources */ = {isa = PBXBuildFile; fileRef = F7676A741D5CB2A300DF734C /* icon-info.png */; };
  259. F7676A7F1D5CB2A400DF734C /* icon-info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7676A751D5CB2A400DF734C /* icon-info@2x.png */; };
  260. F7676A811D5CB2A400DF734C /* icon-success.png in Resources */ = {isa = PBXBuildFile; fileRef = F7676A761D5CB2A400DF734C /* icon-success.png */; };
  261. F7676A831D5CB2A400DF734C /* icon-success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7676A771D5CB2A400DF734C /* icon-success@2x.png */; };
  262. F77B0DF01D118A16002130FE /* UIImage+Resizing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */; };
  263. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  264. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  265. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  266. F77B0DF71D118A16002130FE /* UIXToolbarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EDC1C889317008DAB36 /* UIXToolbarView.m */; };
  267. F77B0DFB1D118A16002130FE /* NYXProgressiveImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */; };
  268. F77B0DFC1D118A16002130FE /* ReaderDocumentOutline.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EC21C889317008DAB36 /* ReaderDocumentOutline.m */; };
  269. F77B0DFE1D118A16002130FE /* REMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0C571C8892C5008DAB36 /* REMenuItem.m */; };
  270. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  271. F77B0E011D118A16002130FE /* RNCryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05351C889184008DAB36 /* RNCryptor.m */; };
  272. F77B0E021D118A16002130FE /* CCPhotosCameraUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F719FDB21CF06645004895D0 /* CCPhotosCameraUpload.m */; };
  273. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */; };
  274. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  275. F77B0E051D118A16002130FE /* ReaderDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EC01C889317008DAB36 /* ReaderDocument.m */; };
  276. F77B0E071D118A16002130FE /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F951C889487008DAB36 /* ioapi.c */; };
  277. F77B0E0E1D118A16002130FE /* REMenuItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0C591C8892C5008DAB36 /* REMenuItemView.m */; };
  278. F77B0E111D118A16002130FE /* UIImage+Reflection.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C81C889184008DAB36 /* UIImage+Reflection.m */; };
  279. F77B0E121D118A16002130FE /* CCPatenteGuida.m in Sources */ = {isa = PBXBuildFile; fileRef = F721372E1BAFF0920012B613 /* CCPatenteGuida.m */; };
  280. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A582D61A24DAB500E903D7 /* AppDelegate.m */; };
  281. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  282. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  283. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  284. F77B0E1D1D118A16002130FE /* ReaderThumbQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ECC1C889317008DAB36 /* ReaderThumbQueue.m */; };
  285. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F78316871C0CB3CA00C43975 /* CCShareUserOC.m */; };
  286. F77B0E211D118A16002130FE /* ThumbsMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ED81C889317008DAB36 /* ThumbsMainToolbar.m */; };
  287. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  288. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */; };
  289. F77B0E241D118A16002130FE /* HRColorCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE51C889300008DAB36 /* HRColorCursor.m */; };
  290. F77B0E261D118A16002130FE /* ZSSTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DF31C889300008DAB36 /* ZSSTextView.m */; };
  291. F77B0E271D118A16002130FE /* CYRLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DD91C889300008DAB36 /* CYRLayoutManager.m */; };
  292. F77B0E291D118A16002130FE /* NSArray+LMMediaPlayerShuffle.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F2E1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle.m */; };
  293. F77B0E2A1D118A16002130FE /* REMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0C531C8892C5008DAB36 /* REMenu.m */; };
  294. F77B0E2D1D118A16002130FE /* CYRTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DDD1C889300008DAB36 /* CYRTextView.m */; };
  295. F77B0E2F1D118A16002130FE /* LMMediaItemStreamingCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F3B1C889339008DAB36 /* LMMediaItemStreamingCache.m */; };
  296. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  297. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  298. F77B0E321D118A16002130FE /* HRCgUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE31C889300008DAB36 /* HRCgUtil.m */; };
  299. F77B0E351D118A16002130FE /* NYXImagesHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D41C889184008DAB36 /* NYXImagesHelper.m */; };
  300. F77B0E361D118A16002130FE /* ZSSBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DEE1C889300008DAB36 /* ZSSBarButtonItem.m */; };
  301. F77B0E391D118A16002130FE /* CCContoCorrente.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137281BAFF0920012B613 /* CCContoCorrente.m */; };
  302. F77B0E3A1D118A16002130FE /* RNCryptorEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05371C889184008DAB36 /* RNCryptorEngine.m */; };
  303. F77B0E3C1D118A16002130FE /* CCCartaIdentita.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137261BAFF0920012B613 /* CCCartaIdentita.m */; };
  304. F77B0E411D118A16002130FE /* CCSplit.m in Sources */ = {isa = PBXBuildFile; fileRef = F792A77C1BC7C45400C9388E /* CCSplit.m */; };
  305. F77B0E421D118A16002130FE /* ReaderMainPagebar.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EC41C889317008DAB36 /* ReaderMainPagebar.m */; };
  306. F77B0E431D118A16002130FE /* ReaderThumbsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ED21C889317008DAB36 /* ReaderThumbsView.m */; };
  307. F77B0E441D118A16002130FE /* CCIntro.m in Sources */ = {isa = PBXBuildFile; fileRef = F744BE931BEBB2EE004FFF66 /* CCIntro.m */; };
  308. F77B0E451D118A16002130FE /* ReaderThumbRender.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ECE1C889317008DAB36 /* ReaderThumbRender.m */; };
  309. F77B0E481D118A16002130FE /* CCCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125F1BAC03FB0041924B /* CCCrypto.m */; };
  310. F77B0E491D118A16002130FE /* UIImage+Saving.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CE1C889184008DAB36 /* UIImage+Saving.m */; };
  311. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E65F1BC5042E008D989A /* CCDetail.m */; };
  312. F77B0E4D1D118A16002130FE /* CCCoreData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B81D801C64E77F006D02DF /* CCCoreData.m */; };
  313. F77B0E4F1D118A16002130FE /* CCManageCameraUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageCameraUpload.m */; };
  314. F77B0E511D118A16002130FE /* UIImage+Filtering.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C41C889184008DAB36 /* UIImage+Filtering.m */; };
  315. F77B0E541D118A16002130FE /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  316. F77B0E551D118A16002130FE /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F9E1C889487008DAB36 /* SSZipArchive.m */; };
  317. F77B0E581D118A16002130FE /* ReaderThumbView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ED41C889317008DAB36 /* ReaderThumbView.m */; };
  318. F77B0E5A1D118A16002130FE /* ReaderContentTile.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EBC1C889317008DAB36 /* ReaderContentTile.m */; };
  319. F77B0E5B1D118A16002130FE /* UIImage+Rotating.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */; };
  320. F77B0E5D1D118A16002130FE /* UIImage+Blurring.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C01C889184008DAB36 /* UIImage+Blurring.m */; };
  321. F77B0E5E1D118A16002130FE /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F991C889487008DAB36 /* unzip.c */; };
  322. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  323. F77B0E601D118A16002130FE /* CGPDFDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EB61C889317008DAB36 /* CGPDFDocument.m */; };
  324. F77B0E621D118A16002130FE /* REMenuContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0C551C8892C5008DAB36 /* REMenuContainerView.m */; };
  325. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */; };
  326. F77B0E651D118A16002130FE /* LMMediaPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F411C889339008DAB36 /* LMMediaPlayerView.m */; };
  327. F77B0E661D118A16002130FE /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B11C889183008DAB36 /* NSString+Base64.m */; };
  328. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  329. F77B0E6A1D118A16002130FE /* RNDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05391C889184008DAB36 /* RNDecryptor.m */; };
  330. F77B0E6B1D118A16002130FE /* ReaderThumbCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EC81C889317008DAB36 /* ReaderThumbCache.m */; };
  331. F77B0E6C1D118A16002130FE /* ReaderContentPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EBA1C889317008DAB36 /* ReaderContentPage.m */; };
  332. F77B0E711D118A16002130FE /* LMMediaItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F351C889339008DAB36 /* LMMediaItem.m */; };
  333. F77B0E731D118A16002130FE /* PPImageScrollingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */; };
  334. F77B0E741D118A16002130FE /* CCBancomat.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137221BAFF0920012B613 /* CCBancomat.m */; };
  335. F77B0E761D118A16002130FE /* ReaderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ED61C889317008DAB36 /* ReaderViewController.m */; };
  336. F77B0E781D118A16002130FE /* ReaderThumbFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ECA1C889317008DAB36 /* ReaderThumbFetch.m */; };
  337. F77B0E7B1D118A16002130FE /* CCPassaporto.m in Sources */ = {isa = PBXBuildFile; fileRef = F721372C1BAFF0920012B613 /* CCPassaporto.m */; };
  338. F77B0E7D1D118A16002130FE /* CYRTextStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DDB1C889300008DAB36 /* CYRTextStorage.m */; };
  339. F77B0E7E1D118A16002130FE /* ThumbsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EDA1C889317008DAB36 /* ThumbsViewController.m */; };
  340. F77B0E801D118A16002130FE /* ZSSRichTextEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DF11C889300008DAB36 /* ZSSRichTextEditor.m */; };
  341. F77B0E871D118A16002130FE /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AD1C889183008DAB36 /* NSData+Base64.m */; };
  342. F77B0E8A1D118A16002130FE /* CCCartaDiCredito.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137241BAFF0920012B613 /* CCCartaDiCredito.m */; };
  343. F77B0E8C1D118A16002130FE /* ReaderConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EB81C889317008DAB36 /* ReaderConstants.m */; };
  344. F77B0E8D1D118A16002130FE /* LMMediaPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F3E1C889339008DAB36 /* LMMediaPlayer.m */; };
  345. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  346. F77B0E901D118A16002130FE /* CCManageHelp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FEB6CF1BECADC100E7C415 /* CCManageHelp.m */; };
  347. F77B0E911D118A16002130FE /* CCTemplates.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137301BAFF0920012B613 /* CCTemplates.m */; };
  348. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  349. F77B0E951D118A16002130FE /* CCManageAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCBF1B68C21900548E76 /* CCManageAsset.m */; };
  350. F77B0E961D118A16002130FE /* ReaderContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EBE1C889317008DAB36 /* ReaderContentView.m */; };
  351. F77B0E971D118A16002130FE /* LMMediaItemQueueManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F381C889339008DAB36 /* LMMediaItemQueueManager.m */; };
  352. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  353. F77B0E991D118A16002130FE /* PPCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */; };
  354. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  355. F77B0E9D1D118A16002130FE /* HRColorPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE81C889300008DAB36 /* HRColorPickerView.m */; };
  356. F77B0E9F1D118A16002130FE /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F971C889487008DAB36 /* mztools.c */; };
  357. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  358. F77B0EAA1D118A16002130FE /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F9B1C889487008DAB36 /* zip.c */; };
  359. F77B0EAB1D118A16002130FE /* HRColorPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DEA1C889300008DAB36 /* HRColorPickerViewController.m */; };
  360. F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  361. F77B0EB11D118A16002130FE /* CCMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1731B482A920048180E /* CCMetadata.m */; };
  362. F77B0EB21D118A16002130FE /* ReaderMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0EC61C889317008DAB36 /* ReaderMainToolbar.m */; };
  363. F77B0EB51D118A16002130FE /* RECommonFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0C511C8892C5008DAB36 /* RECommonFunctions.m */; };
  364. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  365. F77B0EB71D118A16002130FE /* ReaderThumbRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0ED01C889317008DAB36 /* ReaderThumbRequest.m */; };
  366. F77B0EB81D118A16002130FE /* CCAccountWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = F721371E1BAFF0920012B613 /* CCAccountWeb.m */; };
  367. F77B0EB91D118A16002130FE /* HRColorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DEC1C889300008DAB36 /* HRColorUtil.m */; };
  368. F77B0EBE1D118A16002130FE /* CCNote.m in Sources */ = {isa = PBXBuildFile; fileRef = F721372A1BAFF0920012B613 /* CCNote.m */; };
  369. F77B0EBF1D118A16002130FE /* RNEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F053B1C889184008DAB36 /* RNEncryptor.m */; };
  370. F77B0EC21D118A16002130FE /* CCManageOptimizations.m in Sources */ = {isa = PBXBuildFile; fileRef = F7AB79F01BB1A3AD00A82F32 /* CCManageOptimizations.m */; };
  371. F77B0EC31D118A16002130FE /* UIImage+Enhancing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */; };
  372. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  373. F77B0EC71D118A16002130FE /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AB1C889183008DAB36 /* AESCrypt.m */; };
  374. F77B0ECB1D118A16002130FE /* HRBrightnessCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE11C889300008DAB36 /* HRBrightnessCursor.m */; };
  375. F77B0ECC1D118A16002130FE /* UIImage+Masking.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C61C889184008DAB36 /* UIImage+Masking.m */; };
  376. F77B0ECE1D118A16002130FE /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */; };
  377. F77B0ECF1D118A16002130FE /* CYRToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DDF1C889300008DAB36 /* CYRToken.m */; };
  378. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  379. F77B0ED31D118A16002130FE /* PPImageScrollingCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */; };
  380. F77B0ED41D118A16002130FE /* LMMediaPlayerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0F311C889339008DAB36 /* LMMediaPlayerHelper.m */; };
  381. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  382. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  383. F77B0EEA1D118A16002130FE /* ZSSbold@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D921C889300008DAB36 /* ZSSbold@2x.png */; };
  384. F77B0EEB1D118A16002130FE /* ZSSrightjustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC21C889300008DAB36 /* ZSSrightjustify@2x.png */; };
  385. F77B0EEC1D118A16002130FE /* ZSSindent@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAA1C889300008DAB36 /* ZSSindent@2x.png */; };
  386. F77B0EED1D118A16002130FE /* Reader-Mark-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EAD1C889317008DAB36 /* Reader-Mark-N@2x.png */; };
  387. F77B0EF01D118A16002130FE /* ZSSh4@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA01C889300008DAB36 /* ZSSh4@2x.png */; };
  388. F77B0EF21D118A16002130FE /* ZSSunderline.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCD1C889300008DAB36 /* ZSSunderline.png */; };
  389. F77B0EF51D118A16002130FE /* ZSSbgcolor.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D8F1C889300008DAB36 /* ZSSbgcolor.png */; };
  390. F77B0EF61D118A16002130FE /* ZSSstrikethrough@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC41C889300008DAB36 /* ZSSstrikethrough@2x.png */; };
  391. F77B0EF71D118A16002130FE /* ZSSinsertkeyword@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAC1C889300008DAB36 /* ZSSinsertkeyword@2x.png */; };
  392. F77B0EF91D118A16002130FE /* Reader-Mark-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EAC1C889317008DAB36 /* Reader-Mark-N.png */; };
  393. F77B0EFA1D118A16002130FE /* ZSShorizontalrule.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA51C889300008DAB36 /* ZSShorizontalrule.png */; };
  394. F77B0EFB1D118A16002130FE /* ZSSh3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9E1C889300008DAB36 /* ZSSh3@2x.png */; };
  395. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  396. F77B0EFF1D118A16002130FE /* ZSSinsertkeyword.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAB1C889300008DAB36 /* ZSSinsertkeyword.png */; };
  397. F77B0F041D118A16002130FE /* ZSSoutdent@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB81C889300008DAB36 /* ZSSoutdent@2x.png */; };
  398. F77B0F051D118A16002130FE /* ZSSindent.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA91C889300008DAB36 /* ZSSindent.png */; };
  399. F77B0F071D118A16002130FE /* ZSSpicker.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBB1C889300008DAB36 /* ZSSpicker.png */; };
  400. F77B0F081D118A16002130FE /* ZSSunderline@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCE1C889300008DAB36 /* ZSSunderline@2x.png */; };
  401. F77B0F0A1D118A16002130FE /* Reader-Mark-Y.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EAE1C889317008DAB36 /* Reader-Mark-Y.png */; };
  402. F77B0F0C1D118A16002130FE /* Reader-Mark-Y@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EAF1C889317008DAB36 /* Reader-Mark-Y@2x.png */; };
  403. F77B0F0D1D118A16002130FE /* ZSSundo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD01C889300008DAB36 /* ZSSundo@2x.png */; };
  404. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  405. F77B0F111D118A16002130FE /* ZSSparagraph.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB91C889300008DAB36 /* ZSSparagraph.png */; };
  406. F77B0F121D118A16002130FE /* ZSSorderedlist@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB61C889300008DAB36 /* ZSSorderedlist@2x.png */; };
  407. F77B0F131D118A16002130FE /* ZSSitalic@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAE1C889300008DAB36 /* ZSSitalic@2x.png */; };
  408. F77B0F141D118A16002130FE /* ZSSviewsource.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD51C889300008DAB36 /* ZSSviewsource.png */; };
  409. F77B0F151D118A16002130FE /* ZSSforcejustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D981C889300008DAB36 /* ZSSforcejustify@2x.png */; };
  410. F77B0F171D118A16002130FE /* ZSSh1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9A1C889300008DAB36 /* ZSSh1@2x.png */; };
  411. F77B0F181D118A16002130FE /* Intro.strings in Resources */ = {isa = PBXBuildFile; fileRef = F744BE9F1BEBB69F004FFF66 /* Intro.strings */; };
  412. F77B0F191D118A16002130FE /* ZSSitalic.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAD1C889300008DAB36 /* ZSSitalic.png */; };
  413. F77B0F1C1D118A16002130FE /* Reader-Email@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EA91C889317008DAB36 /* Reader-Email@2x.png */; };
  414. F77B0F1D1D118A16002130FE /* ZSSh2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9C1C889300008DAB36 /* ZSSh2@2x.png */; };
  415. F77B0F1E1D118A16002130FE /* ZSSstrikethrough.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC31C889300008DAB36 /* ZSSstrikethrough.png */; };
  416. F77B0F211D118A16002130FE /* ZSSh6.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA31C889300008DAB36 /* ZSSh6.png */; };
  417. F77B0F231D118A16002130FE /* ZSSh3.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9D1C889300008DAB36 /* ZSSh3.png */; };
  418. F77B0F241D118A16002130FE /* Reader-Button-H.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EA41C889317008DAB36 /* Reader-Button-H.png */; };
  419. F77B0F251D118A16002130FE /* ZSSh1.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D991C889300008DAB36 /* ZSSh1.png */; };
  420. F77B0F281D118A16002130FE /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F787E5581BC503ED00AFBFE1 /* Main.storyboard */; };
  421. F77B0F291D118A16002130FE /* ZSSleftjustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB11C889300008DAB36 /* ZSSleftjustify.png */; };
  422. F77B0F2B1D118A16002130FE /* ZSSclearstyle@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D961C889300008DAB36 /* ZSSclearstyle@2x.png */; };
  423. F77B0F2C1D118A16002130FE /* ZSSlink.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB31C889300008DAB36 /* ZSSlink.png */; };
  424. F77B0F2D1D118A16002130FE /* ZSSsuperscript@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC81C889300008DAB36 /* ZSSsuperscript@2x.png */; };
  425. F77B0F2E1D118A16002130FE /* ZSScenterjustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D931C889300008DAB36 /* ZSScenterjustify.png */; };
  426. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  427. F77B0F311D118A16002130FE /* Reader-Thumbs.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EB21C889317008DAB36 /* Reader-Thumbs.png */; };
  428. F77B0F321D118A16002130FE /* ZSSkeyboard@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB01C889300008DAB36 /* ZSSkeyboard@2x.png */; };
  429. F77B0F341D118A16002130FE /* ZSSorderedlist.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB51C889300008DAB36 /* ZSSorderedlist.png */; };
  430. F77B0F351D118A16002130FE /* ZSSsubscript@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC61C889300008DAB36 /* ZSSsubscript@2x.png */; };
  431. F77B0F361D118A16002130FE /* editor.html in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D8D1C889300008DAB36 /* editor.html */; };
  432. F77B0F381D118A16002130FE /* ZSSkeyboard.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAF1C889300008DAB36 /* ZSSkeyboard.png */; };
  433. F77B0F391D118A16002130FE /* ZSStable@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCA1C889300008DAB36 /* ZSStable@2x.png */; };
  434. F77B0F3B1D118A16002130FE /* ZSSredo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC01C889300008DAB36 /* ZSSredo@2x.png */; };
  435. F77B0F3D1D118A16002130FE /* ZSSh5.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA11C889300008DAB36 /* ZSSh5.png */; };
  436. F77B0F3E1D118A16002130FE /* ZSSquicklink@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBE1C889300008DAB36 /* ZSSquicklink@2x.png */; };
  437. F77B0F3F1D118A16002130FE /* Reader-Export.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EAA1C889317008DAB36 /* Reader-Export.png */; };
  438. F77B0F411D118A16002130FE /* ZSStextcolor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCC1C889300008DAB36 /* ZSStextcolor@2x.png */; };
  439. F77B0F441D118A16002130FE /* Reader-Button-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EA71C889317008DAB36 /* Reader-Button-N@2x.png */; };
  440. F77B0F461D118A16002130FE /* Reader-Button-H@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EA51C889317008DAB36 /* Reader-Button-H@2x.png */; };
  441. F77B0F471D118A16002130FE /* ZSSbgcolor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D901C889300008DAB36 /* ZSSbgcolor@2x.png */; };
  442. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  443. F77B0F491D118A16002130FE /* ZSSoutdent.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB71C889300008DAB36 /* ZSSoutdent.png */; };
  444. F77B0F4A1D118A16002130FE /* ZSStextcolor.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCB1C889300008DAB36 /* ZSStextcolor.png */; };
  445. F77B0F4B1D118A16002130FE /* ZSSimage.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA71C889300008DAB36 /* ZSSimage.png */; };
  446. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F768EB021BFB7EA900B6E341 /* CCShare.storyboard */; };
  447. F77B0F4E1D118A16002130FE /* Reader-Thumbs@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EB31C889317008DAB36 /* Reader-Thumbs@2x.png */; };
  448. F77B0F4F1D118A16002130FE /* ZSSquicklink.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBD1C889300008DAB36 /* ZSSquicklink.png */; };
  449. F77B0F511D118A16002130FE /* ZSSh2.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9B1C889300008DAB36 /* ZSSh2.png */; };
  450. F77B0F531D118A16002130FE /* ZSSbold.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D911C889300008DAB36 /* ZSSbold.png */; };
  451. F77B0F541D118A16002130FE /* Reader-Button-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EA61C889317008DAB36 /* Reader-Button-N.png */; };
  452. F77B0F551D118A16002130FE /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  453. F77B0F561D118A16002130FE /* ZSStable.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC91C889300008DAB36 /* ZSStable.png */; };
  454. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  455. F77B0F591D118A16002130FE /* ZSSRichTextEditor.js in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DF01C889300008DAB36 /* ZSSRichTextEditor.js */; };
  456. F77B0F5B1D118A16002130FE /* ZSSclearstyle.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D951C889300008DAB36 /* ZSSclearstyle.png */; };
  457. F77B0F5C1D118A16002130FE /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F744BE961BEBB31E004FFF66 /* ImagesIntro.xcassets */; };
  458. F77B0F5D1D118A16002130FE /* Reader-Print.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EB01C889317008DAB36 /* Reader-Print.png */; };
  459. F77B0F5E1D118A16002130FE /* ZSSlink@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB41C889300008DAB36 /* ZSSlink@2x.png */; };
  460. F77B0F5F1D118A16002130FE /* Reader-Email.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EA81C889317008DAB36 /* Reader-Email.png */; };
  461. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  462. F77B0F621D118A16002130FE /* ZSSunorderedlist.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD31C889300008DAB36 /* ZSSunorderedlist.png */; };
  463. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  464. F77B0F641D118A16002130FE /* ZSSh4.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9F1C889300008DAB36 /* ZSSh4.png */; };
  465. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */; };
  466. F77B0F6B1D118A16002130FE /* ZSSundo.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCF1C889300008DAB36 /* ZSSundo.png */; };
  467. F77B0F6C1D118A16002130FE /* ZSSsubscript.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC51C889300008DAB36 /* ZSSsubscript.png */; };
  468. F77B0F6E1D118A16002130FE /* ZSShorizontalrule@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA61C889300008DAB36 /* ZSShorizontalrule@2x.png */; };
  469. F77B0F6F1D118A16002130FE /* ZSSforcejustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D971C889300008DAB36 /* ZSSforcejustify.png */; };
  470. F77B0F741D118A16002130FE /* ZSSunorderedlist@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD41C889300008DAB36 /* ZSSunorderedlist@2x.png */; };
  471. F77B0F751D118A16002130FE /* ZSSleftjustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB21C889300008DAB36 /* ZSSleftjustify@2x.png */; };
  472. F77B0F771D118A16002130FE /* ZSSimage@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA81C889300008DAB36 /* ZSSimage@2x.png */; };
  473. F77B0F791D118A16002130FE /* ZSSunlink.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD11C889300008DAB36 /* ZSSunlink.png */; };
  474. F77B0F7A1D118A16002130FE /* ZSSredo.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBF1C889300008DAB36 /* ZSSredo.png */; };
  475. F77B0F7B1D118A16002130FE /* ZSSrightjustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC11C889300008DAB36 /* ZSSrightjustify.png */; };
  476. F77B0F7C1D118A16002130FE /* ZSSviewsource@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD61C889300008DAB36 /* ZSSviewsource@2x.png */; };
  477. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  478. F77B0F7F1D118A16002130FE /* ZSScenterjustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D941C889300008DAB36 /* ZSScenterjustify@2x.png */; };
  479. F77B0F811D118A16002130FE /* ZSSparagraph@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBA1C889300008DAB36 /* ZSSparagraph@2x.png */; };
  480. F77B0F821D118A16002130FE /* ZSSsuperscript.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC71C889300008DAB36 /* ZSSsuperscript.png */; };
  481. F77B0F831D118A16002130FE /* ZSSh5@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA21C889300008DAB36 /* ZSSh5@2x.png */; };
  482. F77B0F841D118A16002130FE /* Reader-Print@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EB11C889317008DAB36 /* Reader-Print@2x.png */; };
  483. F77B0F851D118A16002130FE /* Reader-Export@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0EAB1C889317008DAB36 /* Reader-Export@2x.png */; };
  484. F77B0F861D118A16002130FE /* LMMediaPlayerView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F70F0F281C889339008DAB36 /* LMMediaPlayerView.bundle */; };
  485. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  486. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  487. F77B0F8E1D118A16002130FE /* LMMediaPlayerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70F0F291C889339008DAB36 /* LMMediaPlayerView.xib */; };
  488. F77B0F8F1D118A16002130FE /* ZSSunlink@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD21C889300008DAB36 /* ZSSunlink@2x.png */; };
  489. F77B0F901D118A16002130FE /* ZSSpicker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBC1C889300008DAB36 /* ZSSpicker@2x.png */; };
  490. F77B0F941D118A16002130FE /* ZSSh6@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA41C889300008DAB36 /* ZSSh6@2x.png */; };
  491. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading@2x.gif */; };
  492. F78088EA1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */; };
  493. F78088EB1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */; };
  494. F78BFED41D3111B800E513CF /* LaunchScreenNextcloud.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78BFECA1D3111B800E513CF /* LaunchScreenNextcloud.xib */; };
  495. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  496. F7A13A031E7F3D5D00016680 /* CCProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A13A001E7F3D5D00016680 /* CCProgressView.m */; };
  497. F7A13A041E7F3D5D00016680 /* UINavigationController+CCProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A13A021E7F3D5D00016680 /* UINavigationController+CCProgress.m */; };
  498. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7B1FBB11E72E3D1001781FE /* Media.xcassets */; };
  499. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */; };
  500. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */; };
  501. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */; };
  502. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */; };
  503. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */; };
  504. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  505. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  506. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */; };
  507. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  508. F7C00D471E2D0D0F0032160B /* CCCellOffline.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C00D431E2D0D0F0032160B /* CCCellOffline.m */; };
  509. F7C00D481E2D0D0F0032160B /* CCCellOffline.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7C00D441E2D0D0F0032160B /* CCCellOffline.xib */; };
  510. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  511. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  512. F7C742D81E7BD5C900D9C973 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C742D71E7BD5C900D9C973 /* MainInterface.storyboard */; };
  513. F7D2677C1E157053005ACB7E /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  514. F7D6A0911D82DBFA0045AD1A /* CCControlCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D6A08A1D82DBFA0045AD1A /* CCControlCenter.m */; };
  515. F7D6A0931D82DBFA0045AD1A /* CCControlCenterTransferCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D6A08C1D82DBFA0045AD1A /* CCControlCenterTransferCell.m */; };
  516. F7D6A0951D82DBFA0045AD1A /* CCControlCenterTransferCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7D6A08D1D82DBFA0045AD1A /* CCControlCenterTransferCell.xib */; };
  517. F7D6A0971D82DBFA0045AD1A /* CCMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D6A08F1D82DBFA0045AD1A /* CCMenu.m */; };
  518. F7DA62AE1E41E666003E1740 /* CCOfflinePageContent.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DA62AD1E41E666003E1740 /* CCOfflinePageContent.m */; };
  519. F7EC147B1E5D9C0B0046F351 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7EC147A1E5D9C0B0046F351 /* CCSynchronize.m */; };
  520. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */; };
  521. F7EF0CAF1D9E95F400A9D15E /* CCSharedDBSession.m in Sources */ = {isa = PBXBuildFile; fileRef = F7EF0CAD1D9E95F400A9D15E /* CCSharedDBSession.m */; };
  522. F7F06E8D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E2E1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m */; };
  523. F7F06E8F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E301DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m */; };
  524. F7F06E911DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E321DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m */; };
  525. F7F06E931DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E341DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m */; };
  526. F7F06E951DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E361DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m */; };
  527. F7F06E971DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E381DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m */; };
  528. F7F06E991DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E3A1DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m */; };
  529. F7F06E9B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E3C1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m */; };
  530. F7F06E9D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E3E1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m */; };
  531. F7F06E9F1DBFACC600099AE9 /* CTAssetCheckmark.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E401DBFACC600099AE9 /* CTAssetCheckmark.m */; };
  532. F7F06EA11DBFACC600099AE9 /* CTAssetCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E421DBFACC600099AE9 /* CTAssetCollectionViewCell.m */; };
  533. F7F06EA31DBFACC600099AE9 /* CTAssetCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E441DBFACC600099AE9 /* CTAssetCollectionViewController.m */; };
  534. F7F06EA51DBFACC600099AE9 /* CTAssetItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E461DBFACC600099AE9 /* CTAssetItemViewController.m */; };
  535. F7F06EA71DBFACC600099AE9 /* CTAssetPlayButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E481DBFACC600099AE9 /* CTAssetPlayButton.m */; };
  536. F7F06EA91DBFACC600099AE9 /* CTAssetScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E4A1DBFACC600099AE9 /* CTAssetScrollView.m */; };
  537. F7F06EAB1DBFACC600099AE9 /* CTAssetSelectionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E4C1DBFACC600099AE9 /* CTAssetSelectionButton.m */; };
  538. F7F06EAD1DBFACC600099AE9 /* CTAssetSelectionLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E4E1DBFACC600099AE9 /* CTAssetSelectionLabel.m */; };
  539. F7F06EAF1DBFACC600099AE9 /* CTAssetsGridSelectedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E501DBFACC600099AE9 /* CTAssetsGridSelectedView.m */; };
  540. F7F06EB11DBFACC600099AE9 /* CTAssetsGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E521DBFACC600099AE9 /* CTAssetsGridView.m */; };
  541. F7F06EB31DBFACC600099AE9 /* CTAssetsGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E541DBFACC600099AE9 /* CTAssetsGridViewCell.m */; };
  542. F7F06EB51DBFACC600099AE9 /* CTAssetsGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E561DBFACC600099AE9 /* CTAssetsGridViewController.m */; };
  543. F7F06EB71DBFACC600099AE9 /* CTAssetsGridViewFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E581DBFACC600099AE9 /* CTAssetsGridViewFooter.m */; };
  544. F7F06EB91DBFACC600099AE9 /* CTAssetsGridViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E5A1DBFACC600099AE9 /* CTAssetsGridViewLayout.m */; };
  545. F7F06EBB1DBFACC600099AE9 /* CTAssetsNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E5C1DBFACC600099AE9 /* CTAssetsNavigationController.m */; };
  546. F7F06EBD1DBFACC600099AE9 /* CTAssetsPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E5E1DBFACC600099AE9 /* CTAssetsPageView.m */; };
  547. F7F06EBF1DBFACC600099AE9 /* CTAssetsPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E601DBFACC600099AE9 /* CTAssetsPageViewController.m */; };
  548. F7F06EC11DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E621DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m */; };
  549. F7F06EC31DBFACC600099AE9 /* CTAssetsPickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7F06E631DBFACC600099AE9 /* CTAssetsPickerController.bundle */; };
  550. F7F06EC51DBFACC600099AE9 /* CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E651DBFACC600099AE9 /* CTAssetsPickerController.m */; };
  551. F7F06EC71DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E681DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m */; };
  552. F7F06EC91DBFACC600099AE9 /* CTAssetsViewControllerTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E6A1DBFACC600099AE9 /* CTAssetsViewControllerTransition.m */; };
  553. F7F06ECB1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E6C1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m */; };
  554. F7F06ECD1DBFACC600099AE9 /* CTAssetThumbnailStacks.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E6E1DBFACC600099AE9 /* CTAssetThumbnailStacks.m */; };
  555. F7F06ECF1DBFACC600099AE9 /* CTAssetThumbnailView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E701DBFACC600099AE9 /* CTAssetThumbnailView.m */; };
  556. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  557. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  558. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  559. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  560. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  561. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  562. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  563. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  564. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  565. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  566. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  567. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  568. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  569. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  570. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  571. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  572. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  573. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  574. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  575. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  576. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  577. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  578. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  579. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  580. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  581. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  582. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  583. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  584. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  585. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  586. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  587. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  588. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  589. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  590. F7F54D071E5B14C800E19C62 /* MWGridCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD41E5B14C700E19C62 /* MWGridCell.m */; };
  591. F7F54D081E5B14C800E19C62 /* MWGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD61E5B14C700E19C62 /* MWGridViewController.m */; };
  592. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  593. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  594. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  595. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  596. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  597. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  598. F7F6AC4E1E525AD300E8EB45 /* CCManageCryptoCloud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F6AC4D1E525AD300E8EB45 /* CCManageCryptoCloud.m */; };
  599. F7F7638C1E783EF6009FED20 /* DevicePushKey-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = F7F7638B1E783EF6009FED20 /* DevicePushKey-Info.plist */; };
  600. F7F801031D98205A007537BC /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  601. F7F801051D98205A007537BC /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  602. F7FB5F131E66CDCB00389481 /* CCOfflineContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F121E66CDCB00389481 /* CCOfflineContainer.m */; };
  603. F7FB5F1C1E66EB7200389481 /* TableActivity+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F191E66EB7200389481 /* TableActivity+CoreDataClass.m */; };
  604. F7FB5F1E1E66EB7200389481 /* TableActivity+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F1B1E66EB7200389481 /* TableActivity+CoreDataProperties.m */; };
  605. F7FB5F201E66F0A400389481 /* TableActivity+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F191E66EB7200389481 /* TableActivity+CoreDataClass.m */; };
  606. F7FB5F211E66F0A400389481 /* TableActivity+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F191E66EB7200389481 /* TableActivity+CoreDataClass.m */; };
  607. F7FB5F241E66F0AA00389481 /* TableActivity+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F1B1E66EB7200389481 /* TableActivity+CoreDataProperties.m */; };
  608. F7FB5F251E66F0AA00389481 /* TableActivity+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FB5F1B1E66EB7200389481 /* TableActivity+CoreDataProperties.m */; };
  609. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  610. F7FC88FA1E140558006D0506 /* cryptocloud.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */; };
  611. F7FC88FB1E141A34006D0506 /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  612. F7FC88FC1E141A39006D0506 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  613. F7FC88FD1E141A3F006D0506 /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  614. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  615. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  616. /* End PBXBuildFile section */
  617. /* Begin PBXContainerItemProxy section */
  618. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  619. isa = PBXContainerItemProxy;
  620. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  621. proxyType = 1;
  622. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  623. remoteInfo = "Share Ext Nextcloud";
  624. };
  625. F71E67FB1DC1F76F003BA52B /* PBXContainerItemProxy */ = {
  626. isa = PBXContainerItemProxy;
  627. containerPortal = F71E67F61DC1F76F003BA52B /* ownCloud iOS library.xcodeproj */;
  628. proxyType = 2;
  629. remoteGlobalIDString = EA7CC897183E11E600B6A4B4;
  630. remoteInfo = "ownCloud iOS library";
  631. };
  632. F71E67FD1DC1F76F003BA52B /* PBXContainerItemProxy */ = {
  633. isa = PBXContainerItemProxy;
  634. containerPortal = F71E67F61DC1F76F003BA52B /* ownCloud iOS library.xcodeproj */;
  635. proxyType = 2;
  636. remoteGlobalIDString = EA7CC8A7183E11E600B6A4B4;
  637. remoteInfo = "ownCloud iOS libraryTests";
  638. };
  639. F74344271E1264EE001CC831 /* PBXContainerItemProxy */ = {
  640. isa = PBXContainerItemProxy;
  641. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  642. proxyType = 1;
  643. remoteGlobalIDString = F743441F1E1264EE001CC831;
  644. remoteInfo = PickerFileProvider;
  645. };
  646. F743442A1E1264EE001CC831 /* PBXContainerItemProxy */ = {
  647. isa = PBXContainerItemProxy;
  648. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  649. proxyType = 1;
  650. remoteGlobalIDString = F74344111E1264ED001CC831;
  651. remoteInfo = Picker;
  652. };
  653. F7B61E921DC13C20009E938F /* PBXContainerItemProxy */ = {
  654. isa = PBXContainerItemProxy;
  655. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  656. proxyType = 2;
  657. remoteGlobalIDString = 905D07181A63DE190076B54E;
  658. remoteInfo = "MagicalRecord for iOS";
  659. };
  660. F7B61E941DC13C20009E938F /* PBXContainerItemProxy */ = {
  661. isa = PBXContainerItemProxy;
  662. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  663. proxyType = 2;
  664. remoteGlobalIDString = 9004F5211A94CBCF00A61312;
  665. remoteInfo = "MagicalRecord for iOS Tests";
  666. };
  667. F7B61E961DC13C20009E938F /* PBXContainerItemProxy */ = {
  668. isa = PBXContainerItemProxy;
  669. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  670. proxyType = 2;
  671. remoteGlobalIDString = 905D073B1A63DE690076B54E;
  672. remoteInfo = "MagicalRecord for OS X";
  673. };
  674. F7B61E981DC13C20009E938F /* PBXContainerItemProxy */ = {
  675. isa = PBXContainerItemProxy;
  676. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  677. proxyType = 2;
  678. remoteGlobalIDString = 9004F5661A94CBF900A61312;
  679. remoteInfo = "MagicalRecord for OS X Tests";
  680. };
  681. F7B61E9A1DC13C20009E938F /* PBXContainerItemProxy */ = {
  682. isa = PBXContainerItemProxy;
  683. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  684. proxyType = 2;
  685. remoteGlobalIDString = C7CF97AB17498414008D9D13;
  686. remoteInfo = "libMagicalRecord for iOS";
  687. };
  688. F7B61E9C1DC13C20009E938F /* PBXContainerItemProxy */ = {
  689. isa = PBXContainerItemProxy;
  690. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  691. proxyType = 2;
  692. remoteGlobalIDString = C7CF97FF174984CA008D9D13;
  693. remoteInfo = "libMagicalRecord for iOS Tests";
  694. };
  695. F7B61E9E1DC13C20009E938F /* PBXContainerItemProxy */ = {
  696. isa = PBXContainerItemProxy;
  697. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  698. proxyType = 2;
  699. remoteGlobalIDString = C7CF97BB1749843F008D9D13;
  700. remoteInfo = "libMagicalRecord for OS X";
  701. };
  702. F7B61EA01DC13C20009E938F /* PBXContainerItemProxy */ = {
  703. isa = PBXContainerItemProxy;
  704. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  705. proxyType = 2;
  706. remoteGlobalIDString = C7CF9816174984E4008D9D13;
  707. remoteInfo = "libMagicalRecord for OS X Tests";
  708. };
  709. /* End PBXContainerItemProxy section */
  710. /* Begin PBXCopyFilesBuildPhase section */
  711. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  712. isa = PBXCopyFilesBuildPhase;
  713. buildActionMask = 2147483647;
  714. dstPath = "";
  715. dstSubfolderSpec = 13;
  716. files = (
  717. F74344921E128EB0001CC831 /* Picker.appex in Embed App Extensions */,
  718. F74344931E128EB4001CC831 /* PickerFileProvider.appex in Embed App Extensions */,
  719. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  720. );
  721. name = "Embed App Extensions";
  722. runOnlyForDeploymentPostprocessing = 0;
  723. };
  724. /* End PBXCopyFilesBuildPhase section */
  725. /* Begin PBXFileReference section */
  726. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  727. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  728. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  729. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  730. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  731. F70211F41BAC56E9003FC03E /* CCCellMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  732. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  733. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  734. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  735. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  736. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  737. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  738. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMain.m; sourceTree = "<group>"; };
  739. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  740. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  741. F708CF4D1E56E8CB00271D8B /* TableMetadata+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableMetadata+CoreDataClass.h"; sourceTree = "<group>"; };
  742. F708CF4E1E56E8CB00271D8B /* TableMetadata+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableMetadata+CoreDataClass.m"; sourceTree = "<group>"; };
  743. F708CF4F1E56E8CB00271D8B /* TableMetadata+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableMetadata+CoreDataProperties.h"; sourceTree = "<group>"; };
  744. F708CF501E56E8CB00271D8B /* TableMetadata+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableMetadata+CoreDataProperties.m"; sourceTree = "<group>"; };
  745. F708CF511E56E8CB00271D8B /* TableLocalFile+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableLocalFile+CoreDataClass.h"; sourceTree = "<group>"; };
  746. F708CF521E56E8CB00271D8B /* TableLocalFile+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableLocalFile+CoreDataClass.m"; sourceTree = "<group>"; };
  747. F708CF531E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableLocalFile+CoreDataProperties.h"; sourceTree = "<group>"; };
  748. F708CF541E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableLocalFile+CoreDataProperties.m"; sourceTree = "<group>"; };
  749. F708CF551E56E8CB00271D8B /* TableGPS+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableGPS+CoreDataClass.h"; sourceTree = "<group>"; };
  750. F708CF561E56E8CB00271D8B /* TableGPS+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableGPS+CoreDataClass.m"; sourceTree = "<group>"; };
  751. F708CF571E56E8CC00271D8B /* TableGPS+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableGPS+CoreDataProperties.h"; sourceTree = "<group>"; };
  752. F708CF581E56E8CC00271D8B /* TableGPS+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableGPS+CoreDataProperties.m"; sourceTree = "<group>"; };
  753. F708CF591E56E8CC00271D8B /* TableDirectory+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableDirectory+CoreDataClass.h"; sourceTree = "<group>"; };
  754. F708CF5A1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableDirectory+CoreDataClass.m"; sourceTree = "<group>"; };
  755. F708CF5B1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableDirectory+CoreDataProperties.h"; sourceTree = "<group>"; };
  756. F708CF5C1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableDirectory+CoreDataProperties.m"; sourceTree = "<group>"; };
  757. F708CF5D1E56E8CC00271D8B /* TableShare+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableShare+CoreDataClass.h"; sourceTree = "<group>"; };
  758. F708CF5E1E56E8CC00271D8B /* TableShare+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableShare+CoreDataClass.m"; sourceTree = "<group>"; };
  759. F708CF5F1E56E8CC00271D8B /* TableShare+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableShare+CoreDataProperties.h"; sourceTree = "<group>"; };
  760. F708CF601E56E8CC00271D8B /* TableShare+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableShare+CoreDataProperties.m"; sourceTree = "<group>"; };
  761. F708CF611E56E8CC00271D8B /* TableCertificates+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableCertificates+CoreDataClass.h"; sourceTree = "<group>"; };
  762. F708CF621E56E8CC00271D8B /* TableCertificates+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableCertificates+CoreDataClass.m"; sourceTree = "<group>"; };
  763. F708CF631E56E8CC00271D8B /* TableCertificates+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableCertificates+CoreDataProperties.h"; sourceTree = "<group>"; };
  764. F708CF641E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableCertificates+CoreDataProperties.m"; sourceTree = "<group>"; };
  765. F708CF651E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableAutomaticUpload+CoreDataClass.h"; sourceTree = "<group>"; };
  766. F708CF661E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableAutomaticUpload+CoreDataClass.m"; sourceTree = "<group>"; };
  767. F708CF671E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableAutomaticUpload+CoreDataProperties.h"; sourceTree = "<group>"; };
  768. F708CF681E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableAutomaticUpload+CoreDataProperties.m"; sourceTree = "<group>"; };
  769. F708CF691E56E8CC00271D8B /* TableAccount+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableAccount+CoreDataClass.h"; sourceTree = "<group>"; };
  770. F708CF6A1E56E8CC00271D8B /* TableAccount+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableAccount+CoreDataClass.m"; sourceTree = "<group>"; };
  771. F708CF6B1E56E8CC00271D8B /* TableAccount+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableAccount+CoreDataProperties.h"; sourceTree = "<group>"; };
  772. F708CF6C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableAccount+CoreDataProperties.m"; sourceTree = "<group>"; };
  773. F70A63061D5B3467004E2AA5 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
  774. F70A63071D5B3467004E2AA5 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
  775. F70F02AA1C889183008DAB36 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AESCrypt.h; sourceTree = "<group>"; };
  776. F70F02AB1C889183008DAB36 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AESCrypt.m; sourceTree = "<group>"; };
  777. F70F02AC1C889183008DAB36 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+Base64.h"; sourceTree = "<group>"; };
  778. F70F02AD1C889183008DAB36 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+Base64.m"; sourceTree = "<group>"; };
  779. F70F02AE1C889183008DAB36 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+CommonCrypto.h"; sourceTree = "<group>"; };
  780. F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+CommonCrypto.m"; sourceTree = "<group>"; };
  781. F70F02B01C889183008DAB36 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Base64.h"; sourceTree = "<group>"; };
  782. F70F02B11C889183008DAB36 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Base64.m"; sourceTree = "<group>"; };
  783. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  784. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  785. F70F04831C889183008DAB36 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  786. F70F04841C889183008DAB36 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  787. F70F04BF1C889184008DAB36 /* UIImage+Blurring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Blurring.h"; sourceTree = "<group>"; };
  788. F70F04C01C889184008DAB36 /* UIImage+Blurring.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Blurring.m"; sourceTree = "<group>"; };
  789. F70F04C11C889184008DAB36 /* UIImage+Enhancing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Enhancing.h"; sourceTree = "<group>"; };
  790. F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Enhancing.m"; sourceTree = "<group>"; };
  791. F70F04C31C889184008DAB36 /* UIImage+Filtering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Filtering.h"; sourceTree = "<group>"; };
  792. F70F04C41C889184008DAB36 /* UIImage+Filtering.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Filtering.m"; sourceTree = "<group>"; };
  793. F70F04C51C889184008DAB36 /* UIImage+Masking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Masking.h"; sourceTree = "<group>"; };
  794. F70F04C61C889184008DAB36 /* UIImage+Masking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Masking.m"; sourceTree = "<group>"; };
  795. F70F04C71C889184008DAB36 /* UIImage+Reflection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Reflection.h"; sourceTree = "<group>"; };
  796. F70F04C81C889184008DAB36 /* UIImage+Reflection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Reflection.m"; sourceTree = "<group>"; };
  797. F70F04C91C889184008DAB36 /* UIImage+Resizing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resizing.h"; sourceTree = "<group>"; };
  798. F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resizing.m"; sourceTree = "<group>"; };
  799. F70F04CB1C889184008DAB36 /* UIImage+Rotating.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Rotating.h"; sourceTree = "<group>"; };
  800. F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Rotating.m"; sourceTree = "<group>"; };
  801. F70F04CD1C889184008DAB36 /* UIImage+Saving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Saving.h"; sourceTree = "<group>"; };
  802. F70F04CE1C889184008DAB36 /* UIImage+Saving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Saving.m"; sourceTree = "<group>"; };
  803. F70F04D01C889184008DAB36 /* NYXProgressiveImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYXProgressiveImageView.h; sourceTree = "<group>"; };
  804. F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYXProgressiveImageView.m; sourceTree = "<group>"; };
  805. F70F04D31C889184008DAB36 /* NYXImagesHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYXImagesHelper.h; sourceTree = "<group>"; };
  806. F70F04D41C889184008DAB36 /* NYXImagesHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYXImagesHelper.m; sourceTree = "<group>"; };
  807. F70F04D51C889184008DAB36 /* NYXImagesKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYXImagesKit.h; sourceTree = "<group>"; };
  808. F70F051E1C889184008DAB36 /* PPCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCollectionViewCell.h; sourceTree = "<group>"; };
  809. F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPCollectionViewCell.m; sourceTree = "<group>"; };
  810. F70F05201C889184008DAB36 /* PPImageScrollingCellView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPImageScrollingCellView.h; sourceTree = "<group>"; };
  811. F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPImageScrollingCellView.m; sourceTree = "<group>"; };
  812. F70F05221C889184008DAB36 /* PPImageScrollingTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPImageScrollingTableViewCell.h; sourceTree = "<group>"; };
  813. F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPImageScrollingTableViewCell.m; sourceTree = "<group>"; };
  814. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  815. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  816. F70F05331C889184008DAB36 /* RNCryptor+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RNCryptor+Private.h"; sourceTree = "<group>"; };
  817. F70F05341C889184008DAB36 /* RNCryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNCryptor.h; sourceTree = "<group>"; };
  818. F70F05351C889184008DAB36 /* RNCryptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNCryptor.m; sourceTree = "<group>"; };
  819. F70F05361C889184008DAB36 /* RNCryptorEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNCryptorEngine.h; sourceTree = "<group>"; };
  820. F70F05371C889184008DAB36 /* RNCryptorEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNCryptorEngine.m; sourceTree = "<group>"; };
  821. F70F05381C889184008DAB36 /* RNDecryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDecryptor.h; sourceTree = "<group>"; };
  822. F70F05391C889184008DAB36 /* RNDecryptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDecryptor.m; sourceTree = "<group>"; };
  823. F70F053A1C889184008DAB36 /* RNEncryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNEncryptor.h; sourceTree = "<group>"; };
  824. F70F053B1C889184008DAB36 /* RNEncryptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNEncryptor.m; sourceTree = "<group>"; };
  825. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  826. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  827. F70F0C501C8892C5008DAB36 /* RECommonFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RECommonFunctions.h; sourceTree = "<group>"; };
  828. F70F0C511C8892C5008DAB36 /* RECommonFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RECommonFunctions.m; sourceTree = "<group>"; };
  829. F70F0C521C8892C5008DAB36 /* REMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenu.h; sourceTree = "<group>"; };
  830. F70F0C531C8892C5008DAB36 /* REMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenu.m; sourceTree = "<group>"; };
  831. F70F0C541C8892C5008DAB36 /* REMenuContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuContainerView.h; sourceTree = "<group>"; };
  832. F70F0C551C8892C5008DAB36 /* REMenuContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuContainerView.m; sourceTree = "<group>"; };
  833. F70F0C561C8892C5008DAB36 /* REMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItem.h; sourceTree = "<group>"; };
  834. F70F0C571C8892C5008DAB36 /* REMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItem.m; sourceTree = "<group>"; };
  835. F70F0C581C8892C5008DAB36 /* REMenuItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItemView.h; sourceTree = "<group>"; };
  836. F70F0C591C8892C5008DAB36 /* REMenuItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItemView.m; sourceTree = "<group>"; };
  837. F70F0D8D1C889300008DAB36 /* editor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = editor.html; sourceTree = "<group>"; };
  838. F70F0D8F1C889300008DAB36 /* ZSSbgcolor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSbgcolor.png; sourceTree = "<group>"; };
  839. F70F0D901C889300008DAB36 /* ZSSbgcolor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSbgcolor@2x.png"; sourceTree = "<group>"; };
  840. F70F0D911C889300008DAB36 /* ZSSbold.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSbold.png; sourceTree = "<group>"; };
  841. F70F0D921C889300008DAB36 /* ZSSbold@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSbold@2x.png"; sourceTree = "<group>"; };
  842. F70F0D931C889300008DAB36 /* ZSScenterjustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSScenterjustify.png; sourceTree = "<group>"; };
  843. F70F0D941C889300008DAB36 /* ZSScenterjustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSScenterjustify@2x.png"; sourceTree = "<group>"; };
  844. F70F0D951C889300008DAB36 /* ZSSclearstyle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSclearstyle.png; sourceTree = "<group>"; };
  845. F70F0D961C889300008DAB36 /* ZSSclearstyle@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSclearstyle@2x.png"; sourceTree = "<group>"; };
  846. F70F0D971C889300008DAB36 /* ZSSforcejustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSforcejustify.png; sourceTree = "<group>"; };
  847. F70F0D981C889300008DAB36 /* ZSSforcejustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSforcejustify@2x.png"; sourceTree = "<group>"; };
  848. F70F0D991C889300008DAB36 /* ZSSh1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh1.png; sourceTree = "<group>"; };
  849. F70F0D9A1C889300008DAB36 /* ZSSh1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh1@2x.png"; sourceTree = "<group>"; };
  850. F70F0D9B1C889300008DAB36 /* ZSSh2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh2.png; sourceTree = "<group>"; };
  851. F70F0D9C1C889300008DAB36 /* ZSSh2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh2@2x.png"; sourceTree = "<group>"; };
  852. F70F0D9D1C889300008DAB36 /* ZSSh3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh3.png; sourceTree = "<group>"; };
  853. F70F0D9E1C889300008DAB36 /* ZSSh3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh3@2x.png"; sourceTree = "<group>"; };
  854. F70F0D9F1C889300008DAB36 /* ZSSh4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh4.png; sourceTree = "<group>"; };
  855. F70F0DA01C889300008DAB36 /* ZSSh4@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh4@2x.png"; sourceTree = "<group>"; };
  856. F70F0DA11C889300008DAB36 /* ZSSh5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh5.png; sourceTree = "<group>"; };
  857. F70F0DA21C889300008DAB36 /* ZSSh5@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh5@2x.png"; sourceTree = "<group>"; };
  858. F70F0DA31C889300008DAB36 /* ZSSh6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh6.png; sourceTree = "<group>"; };
  859. F70F0DA41C889300008DAB36 /* ZSSh6@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh6@2x.png"; sourceTree = "<group>"; };
  860. F70F0DA51C889300008DAB36 /* ZSShorizontalrule.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSShorizontalrule.png; sourceTree = "<group>"; };
  861. F70F0DA61C889300008DAB36 /* ZSShorizontalrule@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSShorizontalrule@2x.png"; sourceTree = "<group>"; };
  862. F70F0DA71C889300008DAB36 /* ZSSimage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSimage.png; sourceTree = "<group>"; };
  863. F70F0DA81C889300008DAB36 /* ZSSimage@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSimage@2x.png"; sourceTree = "<group>"; };
  864. F70F0DA91C889300008DAB36 /* ZSSindent.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSindent.png; sourceTree = "<group>"; };
  865. F70F0DAA1C889300008DAB36 /* ZSSindent@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSindent@2x.png"; sourceTree = "<group>"; };
  866. F70F0DAB1C889300008DAB36 /* ZSSinsertkeyword.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSinsertkeyword.png; sourceTree = "<group>"; };
  867. F70F0DAC1C889300008DAB36 /* ZSSinsertkeyword@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSinsertkeyword@2x.png"; sourceTree = "<group>"; };
  868. F70F0DAD1C889300008DAB36 /* ZSSitalic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSitalic.png; sourceTree = "<group>"; };
  869. F70F0DAE1C889300008DAB36 /* ZSSitalic@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSitalic@2x.png"; sourceTree = "<group>"; };
  870. F70F0DAF1C889300008DAB36 /* ZSSkeyboard.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSkeyboard.png; sourceTree = "<group>"; };
  871. F70F0DB01C889300008DAB36 /* ZSSkeyboard@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSkeyboard@2x.png"; sourceTree = "<group>"; };
  872. F70F0DB11C889300008DAB36 /* ZSSleftjustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSleftjustify.png; sourceTree = "<group>"; };
  873. F70F0DB21C889300008DAB36 /* ZSSleftjustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSleftjustify@2x.png"; sourceTree = "<group>"; };
  874. F70F0DB31C889300008DAB36 /* ZSSlink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSlink.png; sourceTree = "<group>"; };
  875. F70F0DB41C889300008DAB36 /* ZSSlink@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSlink@2x.png"; sourceTree = "<group>"; };
  876. F70F0DB51C889300008DAB36 /* ZSSorderedlist.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSorderedlist.png; sourceTree = "<group>"; };
  877. F70F0DB61C889300008DAB36 /* ZSSorderedlist@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSorderedlist@2x.png"; sourceTree = "<group>"; };
  878. F70F0DB71C889300008DAB36 /* ZSSoutdent.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSoutdent.png; sourceTree = "<group>"; };
  879. F70F0DB81C889300008DAB36 /* ZSSoutdent@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSoutdent@2x.png"; sourceTree = "<group>"; };
  880. F70F0DB91C889300008DAB36 /* ZSSparagraph.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSparagraph.png; sourceTree = "<group>"; };
  881. F70F0DBA1C889300008DAB36 /* ZSSparagraph@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSparagraph@2x.png"; sourceTree = "<group>"; };
  882. F70F0DBB1C889300008DAB36 /* ZSSpicker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSpicker.png; sourceTree = "<group>"; };
  883. F70F0DBC1C889300008DAB36 /* ZSSpicker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSpicker@2x.png"; sourceTree = "<group>"; };
  884. F70F0DBD1C889300008DAB36 /* ZSSquicklink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSquicklink.png; sourceTree = "<group>"; };
  885. F70F0DBE1C889300008DAB36 /* ZSSquicklink@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSquicklink@2x.png"; sourceTree = "<group>"; };
  886. F70F0DBF1C889300008DAB36 /* ZSSredo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSredo.png; sourceTree = "<group>"; };
  887. F70F0DC01C889300008DAB36 /* ZSSredo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSredo@2x.png"; sourceTree = "<group>"; };
  888. F70F0DC11C889300008DAB36 /* ZSSrightjustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSrightjustify.png; sourceTree = "<group>"; };
  889. F70F0DC21C889300008DAB36 /* ZSSrightjustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSrightjustify@2x.png"; sourceTree = "<group>"; };
  890. F70F0DC31C889300008DAB36 /* ZSSstrikethrough.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSstrikethrough.png; sourceTree = "<group>"; };
  891. F70F0DC41C889300008DAB36 /* ZSSstrikethrough@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSstrikethrough@2x.png"; sourceTree = "<group>"; };
  892. F70F0DC51C889300008DAB36 /* ZSSsubscript.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSsubscript.png; sourceTree = "<group>"; };
  893. F70F0DC61C889300008DAB36 /* ZSSsubscript@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSsubscript@2x.png"; sourceTree = "<group>"; };
  894. F70F0DC71C889300008DAB36 /* ZSSsuperscript.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSsuperscript.png; sourceTree = "<group>"; };
  895. F70F0DC81C889300008DAB36 /* ZSSsuperscript@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSsuperscript@2x.png"; sourceTree = "<group>"; };
  896. F70F0DC91C889300008DAB36 /* ZSStable.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSStable.png; sourceTree = "<group>"; };
  897. F70F0DCA1C889300008DAB36 /* ZSStable@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSStable@2x.png"; sourceTree = "<group>"; };
  898. F70F0DCB1C889300008DAB36 /* ZSStextcolor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSStextcolor.png; sourceTree = "<group>"; };
  899. F70F0DCC1C889300008DAB36 /* ZSStextcolor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSStextcolor@2x.png"; sourceTree = "<group>"; };
  900. F70F0DCD1C889300008DAB36 /* ZSSunderline.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSunderline.png; sourceTree = "<group>"; };
  901. F70F0DCE1C889300008DAB36 /* ZSSunderline@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSunderline@2x.png"; sourceTree = "<group>"; };
  902. F70F0DCF1C889300008DAB36 /* ZSSundo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSundo.png; sourceTree = "<group>"; };
  903. F70F0DD01C889300008DAB36 /* ZSSundo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSundo@2x.png"; sourceTree = "<group>"; };
  904. F70F0DD11C889300008DAB36 /* ZSSunlink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSunlink.png; sourceTree = "<group>"; };
  905. F70F0DD21C889300008DAB36 /* ZSSunlink@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSunlink@2x.png"; sourceTree = "<group>"; };
  906. F70F0DD31C889300008DAB36 /* ZSSunorderedlist.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSunorderedlist.png; sourceTree = "<group>"; };
  907. F70F0DD41C889300008DAB36 /* ZSSunorderedlist@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSunorderedlist@2x.png"; sourceTree = "<group>"; };
  908. F70F0DD51C889300008DAB36 /* ZSSviewsource.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSviewsource.png; sourceTree = "<group>"; };
  909. F70F0DD61C889300008DAB36 /* ZSSviewsource@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSviewsource@2x.png"; sourceTree = "<group>"; };
  910. F70F0DD81C889300008DAB36 /* CYRLayoutManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRLayoutManager.h; sourceTree = "<group>"; };
  911. F70F0DD91C889300008DAB36 /* CYRLayoutManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRLayoutManager.m; sourceTree = "<group>"; };
  912. F70F0DDA1C889300008DAB36 /* CYRTextStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRTextStorage.h; sourceTree = "<group>"; };
  913. F70F0DDB1C889300008DAB36 /* CYRTextStorage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRTextStorage.m; sourceTree = "<group>"; };
  914. F70F0DDC1C889300008DAB36 /* CYRTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRTextView.h; sourceTree = "<group>"; };
  915. F70F0DDD1C889300008DAB36 /* CYRTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRTextView.m; sourceTree = "<group>"; };
  916. F70F0DDE1C889300008DAB36 /* CYRToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRToken.h; sourceTree = "<group>"; };
  917. F70F0DDF1C889300008DAB36 /* CYRToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRToken.m; sourceTree = "<group>"; };
  918. F70F0DE01C889300008DAB36 /* HRBrightnessCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRBrightnessCursor.h; sourceTree = "<group>"; };
  919. F70F0DE11C889300008DAB36 /* HRBrightnessCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRBrightnessCursor.m; sourceTree = "<group>"; };
  920. F70F0DE21C889300008DAB36 /* HRCgUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRCgUtil.h; sourceTree = "<group>"; };
  921. F70F0DE31C889300008DAB36 /* HRCgUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRCgUtil.m; sourceTree = "<group>"; };
  922. F70F0DE41C889300008DAB36 /* HRColorCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorCursor.h; sourceTree = "<group>"; };
  923. F70F0DE51C889300008DAB36 /* HRColorCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorCursor.m; sourceTree = "<group>"; };
  924. F70F0DE61C889300008DAB36 /* HRColorPickerMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerMacros.h; sourceTree = "<group>"; };
  925. F70F0DE71C889300008DAB36 /* HRColorPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerView.h; sourceTree = "<group>"; };
  926. F70F0DE81C889300008DAB36 /* HRColorPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorPickerView.m; sourceTree = "<group>"; };
  927. F70F0DE91C889300008DAB36 /* HRColorPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerViewController.h; sourceTree = "<group>"; };
  928. F70F0DEA1C889300008DAB36 /* HRColorPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorPickerViewController.m; sourceTree = "<group>"; };
  929. F70F0DEB1C889300008DAB36 /* HRColorUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorUtil.h; sourceTree = "<group>"; };
  930. F70F0DEC1C889300008DAB36 /* HRColorUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorUtil.m; sourceTree = "<group>"; };
  931. F70F0DED1C889300008DAB36 /* ZSSBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZSSBarButtonItem.h; sourceTree = "<group>"; };
  932. F70F0DEE1C889300008DAB36 /* ZSSBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZSSBarButtonItem.m; sourceTree = "<group>"; };
  933. F70F0DEF1C889300008DAB36 /* ZSSRichTextEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZSSRichTextEditor.h; sourceTree = "<group>"; };
  934. F70F0DF01C889300008DAB36 /* ZSSRichTextEditor.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = ZSSRichTextEditor.js; sourceTree = "<group>"; };
  935. F70F0DF11C889300008DAB36 /* ZSSRichTextEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZSSRichTextEditor.m; sourceTree = "<group>"; };
  936. F70F0DF21C889300008DAB36 /* ZSSTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZSSTextView.h; sourceTree = "<group>"; };
  937. F70F0DF31C889300008DAB36 /* ZSSTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZSSTextView.m; sourceTree = "<group>"; };
  938. F70F0EA41C889317008DAB36 /* Reader-Button-H.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H.png"; sourceTree = "<group>"; };
  939. F70F0EA51C889317008DAB36 /* Reader-Button-H@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@2x.png"; sourceTree = "<group>"; };
  940. F70F0EA61C889317008DAB36 /* Reader-Button-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N.png"; sourceTree = "<group>"; };
  941. F70F0EA71C889317008DAB36 /* Reader-Button-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@2x.png"; sourceTree = "<group>"; };
  942. F70F0EA81C889317008DAB36 /* Reader-Email.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email.png"; sourceTree = "<group>"; };
  943. F70F0EA91C889317008DAB36 /* Reader-Email@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@2x.png"; sourceTree = "<group>"; };
  944. F70F0EAA1C889317008DAB36 /* Reader-Export.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export.png"; sourceTree = "<group>"; };
  945. F70F0EAB1C889317008DAB36 /* Reader-Export@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@2x.png"; sourceTree = "<group>"; };
  946. F70F0EAC1C889317008DAB36 /* Reader-Mark-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N.png"; sourceTree = "<group>"; };
  947. F70F0EAD1C889317008DAB36 /* Reader-Mark-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@2x.png"; sourceTree = "<group>"; };
  948. F70F0EAE1C889317008DAB36 /* Reader-Mark-Y.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y.png"; sourceTree = "<group>"; };
  949. F70F0EAF1C889317008DAB36 /* Reader-Mark-Y@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@2x.png"; sourceTree = "<group>"; };
  950. F70F0EB01C889317008DAB36 /* Reader-Print.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print.png"; sourceTree = "<group>"; };
  951. F70F0EB11C889317008DAB36 /* Reader-Print@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@2x.png"; sourceTree = "<group>"; };
  952. F70F0EB21C889317008DAB36 /* Reader-Thumbs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs.png"; sourceTree = "<group>"; };
  953. F70F0EB31C889317008DAB36 /* Reader-Thumbs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@2x.png"; sourceTree = "<group>"; };
  954. F70F0EB51C889317008DAB36 /* CGPDFDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPDFDocument.h; sourceTree = "<group>"; };
  955. F70F0EB61C889317008DAB36 /* CGPDFDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPDFDocument.m; sourceTree = "<group>"; };
  956. F70F0EB71C889317008DAB36 /* ReaderConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderConstants.h; sourceTree = "<group>"; };
  957. F70F0EB81C889317008DAB36 /* ReaderConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderConstants.m; sourceTree = "<group>"; };
  958. F70F0EB91C889317008DAB36 /* ReaderContentPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentPage.h; sourceTree = "<group>"; };
  959. F70F0EBA1C889317008DAB36 /* ReaderContentPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentPage.m; sourceTree = "<group>"; };
  960. F70F0EBB1C889317008DAB36 /* ReaderContentTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentTile.h; sourceTree = "<group>"; };
  961. F70F0EBC1C889317008DAB36 /* ReaderContentTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentTile.m; sourceTree = "<group>"; };
  962. F70F0EBD1C889317008DAB36 /* ReaderContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentView.h; sourceTree = "<group>"; };
  963. F70F0EBE1C889317008DAB36 /* ReaderContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentView.m; sourceTree = "<group>"; };
  964. F70F0EBF1C889317008DAB36 /* ReaderDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocument.h; sourceTree = "<group>"; };
  965. F70F0EC01C889317008DAB36 /* ReaderDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocument.m; sourceTree = "<group>"; };
  966. F70F0EC11C889317008DAB36 /* ReaderDocumentOutline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocumentOutline.h; sourceTree = "<group>"; };
  967. F70F0EC21C889317008DAB36 /* ReaderDocumentOutline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocumentOutline.m; sourceTree = "<group>"; };
  968. F70F0EC31C889317008DAB36 /* ReaderMainPagebar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainPagebar.h; sourceTree = "<group>"; };
  969. F70F0EC41C889317008DAB36 /* ReaderMainPagebar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainPagebar.m; sourceTree = "<group>"; };
  970. F70F0EC51C889317008DAB36 /* ReaderMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainToolbar.h; sourceTree = "<group>"; };
  971. F70F0EC61C889317008DAB36 /* ReaderMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainToolbar.m; sourceTree = "<group>"; };
  972. F70F0EC71C889317008DAB36 /* ReaderThumbCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbCache.h; sourceTree = "<group>"; };
  973. F70F0EC81C889317008DAB36 /* ReaderThumbCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbCache.m; sourceTree = "<group>"; };
  974. F70F0EC91C889317008DAB36 /* ReaderThumbFetch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbFetch.h; sourceTree = "<group>"; };
  975. F70F0ECA1C889317008DAB36 /* ReaderThumbFetch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbFetch.m; sourceTree = "<group>"; };
  976. F70F0ECB1C889317008DAB36 /* ReaderThumbQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbQueue.h; sourceTree = "<group>"; };
  977. F70F0ECC1C889317008DAB36 /* ReaderThumbQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbQueue.m; sourceTree = "<group>"; };
  978. F70F0ECD1C889317008DAB36 /* ReaderThumbRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRender.h; sourceTree = "<group>"; };
  979. F70F0ECE1C889317008DAB36 /* ReaderThumbRender.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRender.m; sourceTree = "<group>"; };
  980. F70F0ECF1C889317008DAB36 /* ReaderThumbRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRequest.h; sourceTree = "<group>"; };
  981. F70F0ED01C889317008DAB36 /* ReaderThumbRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRequest.m; sourceTree = "<group>"; };
  982. F70F0ED11C889317008DAB36 /* ReaderThumbsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbsView.h; sourceTree = "<group>"; };
  983. F70F0ED21C889317008DAB36 /* ReaderThumbsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbsView.m; sourceTree = "<group>"; };
  984. F70F0ED31C889317008DAB36 /* ReaderThumbView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbView.h; sourceTree = "<group>"; };
  985. F70F0ED41C889317008DAB36 /* ReaderThumbView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbView.m; sourceTree = "<group>"; };
  986. F70F0ED51C889317008DAB36 /* ReaderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderViewController.h; sourceTree = "<group>"; };
  987. F70F0ED61C889317008DAB36 /* ReaderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderViewController.m; sourceTree = "<group>"; };
  988. F70F0ED71C889317008DAB36 /* ThumbsMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsMainToolbar.h; sourceTree = "<group>"; };
  989. F70F0ED81C889317008DAB36 /* ThumbsMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsMainToolbar.m; sourceTree = "<group>"; };
  990. F70F0ED91C889317008DAB36 /* ThumbsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsViewController.h; sourceTree = "<group>"; };
  991. F70F0EDA1C889317008DAB36 /* ThumbsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsViewController.m; sourceTree = "<group>"; };
  992. F70F0EDB1C889317008DAB36 /* UIXToolbarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIXToolbarView.h; sourceTree = "<group>"; };
  993. F70F0EDC1C889317008DAB36 /* UIXToolbarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIXToolbarView.m; sourceTree = "<group>"; };
  994. F70F0F281C889339008DAB36 /* LMMediaPlayerView.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = LMMediaPlayerView.bundle; sourceTree = "<group>"; };
  995. F70F0F291C889339008DAB36 /* LMMediaPlayerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMMediaPlayerView.xib; sourceTree = "<group>"; };
  996. F70F0F2D1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+LMMediaPlayerShuffle.h"; sourceTree = "<group>"; };
  997. F70F0F2E1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+LMMediaPlayerShuffle.m"; sourceTree = "<group>"; };
  998. F70F0F301C889339008DAB36 /* LMMediaPlayerHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaPlayerHelper.h; sourceTree = "<group>"; };
  999. F70F0F311C889339008DAB36 /* LMMediaPlayerHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaPlayerHelper.m; sourceTree = "<group>"; };
  1000. F70F0F341C889339008DAB36 /* LMMediaItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaItem.h; sourceTree = "<group>"; };
  1001. F70F0F351C889339008DAB36 /* LMMediaItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaItem.m; sourceTree = "<group>"; };
  1002. F70F0F371C889339008DAB36 /* LMMediaItemQueueManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaItemQueueManager.h; sourceTree = "<group>"; };
  1003. F70F0F381C889339008DAB36 /* LMMediaItemQueueManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaItemQueueManager.m; sourceTree = "<group>"; };
  1004. F70F0F3A1C889339008DAB36 /* LMMediaItemStreamingCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaItemStreamingCache.h; sourceTree = "<group>"; };
  1005. F70F0F3B1C889339008DAB36 /* LMMediaItemStreamingCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaItemStreamingCache.m; sourceTree = "<group>"; };
  1006. F70F0F3D1C889339008DAB36 /* LMMediaPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaPlayer.h; sourceTree = "<group>"; };
  1007. F70F0F3E1C889339008DAB36 /* LMMediaPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaPlayer.m; sourceTree = "<group>"; };
  1008. F70F0F401C889339008DAB36 /* LMMediaPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaPlayerView.h; sourceTree = "<group>"; };
  1009. F70F0F411C889339008DAB36 /* LMMediaPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaPlayerView.m; sourceTree = "<group>"; };
  1010. F70F0F941C889487008DAB36 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypt.h; sourceTree = "<group>"; };
  1011. F70F0F951C889487008DAB36 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ioapi.c; sourceTree = "<group>"; };
  1012. F70F0F961C889487008DAB36 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ioapi.h; sourceTree = "<group>"; };
  1013. F70F0F971C889487008DAB36 /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mztools.c; sourceTree = "<group>"; };
  1014. F70F0F981C889487008DAB36 /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mztools.h; sourceTree = "<group>"; };
  1015. F70F0F991C889487008DAB36 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unzip.c; sourceTree = "<group>"; };
  1016. F70F0F9A1C889487008DAB36 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = "<group>"; };
  1017. F70F0F9B1C889487008DAB36 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zip.c; sourceTree = "<group>"; };
  1018. F70F0F9C1C889487008DAB36 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zip.h; sourceTree = "<group>"; };
  1019. F70F0F9D1C889487008DAB36 /* SSZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSZipArchive.h; sourceTree = "<group>"; };
  1020. F70F0F9E1C889487008DAB36 /* SSZipArchive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSZipArchive.m; sourceTree = "<group>"; };
  1021. F70FD1C51E67552700C0FDA6 /* CCControlCenterTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCControlCenterTransfer.h; sourceTree = "<group>"; };
  1022. F70FD1C61E67552700C0FDA6 /* CCControlCenterTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCControlCenterTransfer.m; sourceTree = "<group>"; };
  1023. F70FD1C91E675F1500C0FDA6 /* CCControlCenterActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCControlCenterActivity.h; sourceTree = "<group>"; };
  1024. F70FD1CA1E675F1500C0FDA6 /* CCControlCenterActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCControlCenterActivity.m; sourceTree = "<group>"; };
  1025. F7151A801D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1026. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  1027. F7151A821D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1028. F7151A831D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intro.strings; sourceTree = "<group>"; };
  1029. F7151A841D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Error.strings; sourceTree = "<group>"; };
  1030. F7151A861D477A5400E6AF45 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1031. F7151A871D477A5400E6AF45 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  1032. F7151A881D477A5400E6AF45 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1033. F7151A891D477A5500E6AF45 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intro.strings; sourceTree = "<group>"; };
  1034. F7151A8A1D477A5500E6AF45 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Error.strings; sourceTree = "<group>"; };
  1035. F719FDB11CF06645004895D0 /* CCPhotosCameraUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPhotosCameraUpload.h; sourceTree = "<group>"; };
  1036. F719FDB21CF06645004895D0 /* CCPhotosCameraUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPhotosCameraUpload.m; sourceTree = "<group>"; };
  1037. F71E67F61DC1F76F003BA52B /* ownCloud iOS library.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "ownCloud iOS library.xcodeproj"; path = "Libraries external/OCCommunicationLib/ownCloud iOS library.xcodeproj"; sourceTree = SOURCE_ROOT; };
  1038. F7202C8E1E68171900C6D9AD /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1039. F7202C8F1E68171900C6D9AD /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  1040. F7202C901E68171900C6D9AD /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1041. F7202C911E68171900C6D9AD /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intro.strings; sourceTree = "<group>"; };
  1042. F7202C921E68171A00C6D9AD /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Error.strings; sourceTree = "<group>"; };
  1043. F7202C961E6817A400C6D9AD /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1044. F7202C971E6817A500C6D9AD /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1045. F7202C981E6817A500C6D9AD /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1046. F7202C991E6817A500C6D9AD /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intro.strings; sourceTree = "<group>"; };
  1047. F7202C9A1E6817A500C6D9AD /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Error.strings; sourceTree = "<group>"; };
  1048. F7202C9C1E6818B700C6D9AD /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1049. F7202C9D1E6818B700C6D9AD /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1050. F7202C9E1E6818B700C6D9AD /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1051. F7202C9F1E6818B700C6D9AD /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intro.strings; sourceTree = "<group>"; };
  1052. F7202CA01E6818B700C6D9AD /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Error.strings; sourceTree = "<group>"; };
  1053. F720E01E1E48C73E001A4B9E /* CCActions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCActions.swift; path = Actions/CCActions.swift; sourceTree = "<group>"; };
  1054. F721371D1BAFF0920012B613 /* CCAccountWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAccountWeb.h; sourceTree = "<group>"; };
  1055. F721371E1BAFF0920012B613 /* CCAccountWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAccountWeb.m; sourceTree = "<group>"; };
  1056. F72137211BAFF0920012B613 /* CCBancomat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBancomat.h; sourceTree = "<group>"; };
  1057. F72137221BAFF0920012B613 /* CCBancomat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBancomat.m; sourceTree = "<group>"; };
  1058. F72137231BAFF0920012B613 /* CCCartaDiCredito.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCartaDiCredito.h; sourceTree = "<group>"; };
  1059. F72137241BAFF0920012B613 /* CCCartaDiCredito.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCartaDiCredito.m; sourceTree = "<group>"; };
  1060. F72137251BAFF0920012B613 /* CCCartaIdentita.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCartaIdentita.h; sourceTree = "<group>"; };
  1061. F72137261BAFF0920012B613 /* CCCartaIdentita.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCartaIdentita.m; sourceTree = "<group>"; };
  1062. F72137271BAFF0920012B613 /* CCContoCorrente.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCContoCorrente.h; sourceTree = "<group>"; };
  1063. F72137281BAFF0920012B613 /* CCContoCorrente.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCContoCorrente.m; sourceTree = "<group>"; };
  1064. F72137291BAFF0920012B613 /* CCNote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNote.h; sourceTree = "<group>"; };
  1065. F721372A1BAFF0920012B613 /* CCNote.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNote.m; sourceTree = "<group>"; };
  1066. F721372B1BAFF0920012B613 /* CCPassaporto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPassaporto.h; sourceTree = "<group>"; };
  1067. F721372C1BAFF0920012B613 /* CCPassaporto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPassaporto.m; sourceTree = "<group>"; };
  1068. F721372D1BAFF0920012B613 /* CCPatenteGuida.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPatenteGuida.h; sourceTree = "<group>"; };
  1069. F721372E1BAFF0920012B613 /* CCPatenteGuida.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPatenteGuida.m; sourceTree = "<group>"; };
  1070. F721372F1BAFF0920012B613 /* CCTemplates.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTemplates.h; sourceTree = "<group>"; };
  1071. F72137301BAFF0920012B613 /* CCTemplates.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTemplates.m; sourceTree = "<group>"; };
  1072. F7229B461DF71BA800E8C4E7 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = SOURCE_ROOT; };
  1073. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  1074. F7253FC81E38BAF20084135B /* JSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSAlertView.h; sourceTree = "<group>"; };
  1075. F7253FC91E38BAF20084135B /* JSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSAlertView.m; sourceTree = "<group>"; };
  1076. F7274FEC1E6EB6F400C241B6 /* Constant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Constant.swift; sourceTree = "<group>"; };
  1077. F7296A601C8880C9001A7809 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1078. F7296A611C8880C9001A7809 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1079. F7296A621C8880C9001A7809 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1080. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  1081. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  1082. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  1083. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  1084. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  1085. F72AAEC61E5C60C700BB17E1 /* UIImage+AHKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+AHKAdditions.h"; sourceTree = "<group>"; };
  1086. F72AAEC71E5C60C700BB17E1 /* UIImage+AHKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+AHKAdditions.m"; sourceTree = "<group>"; };
  1087. F72AAEC81E5C60C700BB17E1 /* UIWindow+AHKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+AHKAdditions.h"; sourceTree = "<group>"; };
  1088. F72AAEC91E5C60C700BB17E1 /* UIWindow+AHKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+AHKAdditions.m"; sourceTree = "<group>"; };
  1089. F72AE40A1E67246200B3E477 /* ControlCenter.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = ControlCenter.storyboard; sourceTree = "<group>"; };
  1090. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  1091. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  1092. F732B2D71E802B71002B7D75 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1093. F732B2D81E802B71002B7D75 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1094. F732B2D91E802B72002B7D75 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1095. F732B2DA1E802B72002B7D75 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1096. F732B2DB1E802B72002B7D75 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Error.strings"; sourceTree = "<group>"; };
  1097. F732B3361E8045A1002B7D75 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1098. F732B3381E8045CB002B7D75 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1099. F732B3391E8045CF002B7D75 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1100. F732B33A1E8045D0002B7D75 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1101. F732B33B1E8045D4002B7D75 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1102. F732B33C1E8045D7002B7D75 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1103. F732B33D1E8045D8002B7D75 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1104. F732B33E1E8045DA002B7D75 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1105. F732B33F1E8045DC002B7D75 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1106. F732B3401E8045DF002B7D75 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1107. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  1108. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  1109. F73814271E65A52C0011A45E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1110. F73814281E65A52D0011A45E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1111. F73814291E65A52D0011A45E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1112. F738142A1E65A52D0011A45E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intro.strings; sourceTree = "<group>"; };
  1113. F738142B1E65A52D0011A45E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Error.strings; sourceTree = "<group>"; };
  1114. F73C002D1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageCryptoCloudSecurity.h; sourceTree = "<group>"; };
  1115. F73C002E1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageCryptoCloudSecurity.m; sourceTree = "<group>"; };
  1116. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  1117. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  1118. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  1119. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  1120. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  1121. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  1122. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  1123. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  1124. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  1125. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  1126. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  1127. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  1128. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  1129. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  1130. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  1131. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  1132. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  1133. F73CCD801DC13775007E38D8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1134. F73CCD831DC13775007E38D8 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  1135. F73CCD841DC13775007E38D8 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  1136. F73CCD851DC13775007E38D8 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  1137. F73CCD861DC13775007E38D8 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  1138. F73CCD871DC13775007E38D8 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  1139. F73CCD881DC13775007E38D8 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  1140. F73CCD891DC13775007E38D8 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  1141. F73CCD8A1DC13775007E38D8 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  1142. F73CCD8B1DC13775007E38D8 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  1143. F73CCD8C1DC13775007E38D8 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  1144. F73CCD8D1DC13775007E38D8 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  1145. F73CCD8E1DC13776007E38D8 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  1146. F73CCD8F1DC13776007E38D8 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  1147. F73CCD901DC13776007E38D8 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  1148. F73CCD911DC13776007E38D8 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  1149. F73CCD921DC13776007E38D8 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  1150. F73CCD931DC13776007E38D8 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  1151. F73CCD941DC13776007E38D8 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  1152. F73CCD951DC13776007E38D8 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  1153. F73CCD961DC13776007E38D8 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  1154. F73CCD971DC13776007E38D8 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  1155. F73CCD981DC13776007E38D8 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  1156. F73CCD991DC13776007E38D8 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  1157. F73CCD9A1DC13776007E38D8 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  1158. F73CCD9B1DC13776007E38D8 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  1159. F73CCD9C1DC13776007E38D8 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  1160. F73CCD9D1DC13776007E38D8 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  1161. F73CCD9E1DC13776007E38D8 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  1162. F73CCD9F1DC13776007E38D8 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  1163. F73CCDA01DC13776007E38D8 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  1164. F73CCDA11DC13776007E38D8 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  1165. F73CCDA21DC13776007E38D8 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  1166. F73CCDA31DC13776007E38D8 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  1167. F73CCDA41DC13776007E38D8 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  1168. F73CCDA61DC13776007E38D8 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  1169. F73CCDA71DC13776007E38D8 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  1170. F73CCDA81DC13776007E38D8 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  1171. F73CCDA91DC13776007E38D8 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  1172. F73CCDAA1DC13776007E38D8 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  1173. F73CCDAB1DC13776007E38D8 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  1174. F73CCDAC1DC13776007E38D8 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  1175. F73CCDAE1DC13776007E38D8 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  1176. F73CCDAF1DC13776007E38D8 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  1177. F73CCDB01DC13776007E38D8 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  1178. F73CCDB11DC13776007E38D8 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  1179. F73CCDB21DC13776007E38D8 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  1180. F73CCDB31DC13776007E38D8 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  1181. F73CCDB41DC13776007E38D8 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  1182. F73CCDB61DC13776007E38D8 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  1183. F73CCDB71DC13776007E38D8 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  1184. F73CCDB81DC13776007E38D8 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  1185. F73CCDB91DC13776007E38D8 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  1186. F73CCDBA1DC13776007E38D8 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  1187. F73CCDBB1DC13776007E38D8 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  1188. F73CCDBC1DC13776007E38D8 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  1189. F73CCDBD1DC13776007E38D8 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  1190. F73CCDBE1DC13776007E38D8 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  1191. F73CCDBF1DC13776007E38D8 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1192. F73CCDC01DC13776007E38D8 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1193. F73CCDC11DC13776007E38D8 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1194. F73CCDC31DC13776007E38D8 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1195. F73CCDC41DC13776007E38D8 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1196. F73CCDC51DC13776007E38D8 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1197. F73CCDC61DC13776007E38D8 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1198. F73CCDC71DC13776007E38D8 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1199. F73CCDC81DC13776007E38D8 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1200. F73CCDC91DC13776007E38D8 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1201. F73CCDCA1DC13776007E38D8 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1202. F73CCDCC1DC13776007E38D8 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1203. F73CCDCD1DC13776007E38D8 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1204. F73CCDCE1DC13776007E38D8 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1205. F73CCDCF1DC13776007E38D8 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1206. F73CCDD01DC13776007E38D8 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1207. F73CCDD11DC13776007E38D8 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1208. F73CCDD21DC13776007E38D8 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1209. F73CCDD31DC13776007E38D8 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1210. F73CCDD41DC13776007E38D8 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1211. F73CCDD51DC13776007E38D8 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1212. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
  1213. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
  1214. F73CCE281DC13798007E38D8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1215. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICKeyChainStore.h; sourceTree = "<group>"; };
  1216. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICKeyChainStore.m; sourceTree = "<group>"; };
  1217. F74344161E1264EE001CC831 /* DocumentPickerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DocumentPickerViewController.swift; sourceTree = "<group>"; };
  1218. F74344241E1264EE001CC831 /* FileProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProvider.swift; sourceTree = "<group>"; };
  1219. F74344521E126D06001CC831 /* Picker-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Picker-Bridging-Header.h"; sourceTree = "<group>"; };
  1220. F74344901E128E8F001CC831 /* Picker.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Picker.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1221. F74344911E128E96001CC831 /* PickerFileProvider.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = PickerFileProvider.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1222. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareInfoCMOC.h; sourceTree = "<group>"; };
  1223. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareInfoCMOC.m; sourceTree = "<group>"; };
  1224. F744BE921BEBB2EE004FFF66 /* CCIntro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCIntro.h; sourceTree = "<group>"; };
  1225. F744BE931BEBB2EE004FFF66 /* CCIntro.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCIntro.m; sourceTree = "<group>"; };
  1226. F744BE961BEBB31E004FFF66 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  1227. F744FA7C1E57333C00BFAB34 /* APAvatarImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APAvatarImageView.h; sourceTree = "<group>"; };
  1228. F744FA7D1E57333C00BFAB34 /* APAvatarImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APAvatarImageView.m; sourceTree = "<group>"; };
  1229. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  1230. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  1231. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  1232. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  1233. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  1234. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  1235. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  1236. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  1237. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  1238. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  1239. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  1240. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  1241. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  1242. F7540EE21D5B238600C3FFA8 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
  1243. F7540EE31D5B238600C3FFA8 /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
  1244. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
  1245. F7540EE51D5B238600C3FFA8 /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
  1246. F7540EE61D5B238600C3FFA8 /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
  1247. F7540EE71D5B238600C3FFA8 /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
  1248. F7540EE81D5B238600C3FFA8 /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
  1249. F7540EE91D5B238600C3FFA8 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
  1250. F7540EEA1D5B238600C3FFA8 /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
  1251. F7540EEB1D5B238600C3FFA8 /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
  1252. F7540EEC1D5B238600C3FFA8 /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
  1253. F7540EED1D5B238600C3FFA8 /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
  1254. F7540EEE1D5B238600C3FFA8 /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
  1255. F7540EEF1D5B238600C3FFA8 /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
  1256. F7540EF01D5B238600C3FFA8 /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
  1257. F7540EF11D5B238600C3FFA8 /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
  1258. F7540EF21D5B238600C3FFA8 /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
  1259. F7540EF31D5B238600C3FFA8 /* des_old.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des_old.h; sourceTree = "<group>"; };
  1260. F7540EF41D5B238600C3FFA8 /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
  1261. F7540EF51D5B238600C3FFA8 /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
  1262. F7540EF61D5B238600C3FFA8 /* dso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dso.h; sourceTree = "<group>"; };
  1263. F7540EF71D5B238600C3FFA8 /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
  1264. F7540EF81D5B238600C3FFA8 /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
  1265. F7540EF91D5B238600C3FFA8 /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
  1266. F7540EFA1D5B238600C3FFA8 /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
  1267. F7540EFB1D5B238600C3FFA8 /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
  1268. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
  1269. F7540EFD1D5B238600C3FFA8 /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
  1270. F7540EFE1D5B238600C3FFA8 /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
  1271. F7540EFF1D5B238600C3FFA8 /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
  1272. F7540F001D5B238600C3FFA8 /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
  1273. F7540F011D5B238600C3FFA8 /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
  1274. F7540F021D5B238600C3FFA8 /* krb5_asn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = krb5_asn.h; sourceTree = "<group>"; };
  1275. F7540F031D5B238600C3FFA8 /* kssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kssl.h; sourceTree = "<group>"; };
  1276. F7540F041D5B238600C3FFA8 /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
  1277. F7540F051D5B238600C3FFA8 /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
  1278. F7540F061D5B238600C3FFA8 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
  1279. F7540F071D5B238600C3FFA8 /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
  1280. F7540F081D5B238600C3FFA8 /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
  1281. F7540F091D5B238600C3FFA8 /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
  1282. F7540F0A1D5B238600C3FFA8 /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
  1283. F7540F0B1D5B238600C3FFA8 /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
  1284. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
  1285. F7540F0D1D5B238600C3FFA8 /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
  1286. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
  1287. F7540F0F1D5B238600C3FFA8 /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
  1288. F7540F101D5B238600C3FFA8 /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
  1289. F7540F111D5B238600C3FFA8 /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
  1290. F7540F121D5B238600C3FFA8 /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
  1291. F7540F131D5B238600C3FFA8 /* pqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = "<group>"; };
  1292. F7540F141D5B238600C3FFA8 /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
  1293. F7540F151D5B238600C3FFA8 /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
  1294. F7540F161D5B238600C3FFA8 /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
  1295. F7540F171D5B238600C3FFA8 /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
  1296. F7540F181D5B238600C3FFA8 /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
  1297. F7540F191D5B238600C3FFA8 /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
  1298. F7540F1A1D5B238600C3FFA8 /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
  1299. F7540F1B1D5B238600C3FFA8 /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
  1300. F7540F1C1D5B238600C3FFA8 /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
  1301. F7540F1D1D5B238600C3FFA8 /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
  1302. F7540F1E1D5B238600C3FFA8 /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
  1303. F7540F1F1D5B238600C3FFA8 /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
  1304. F7540F201D5B238600C3FFA8 /* ssl23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl23.h; sourceTree = "<group>"; };
  1305. F7540F211D5B238600C3FFA8 /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
  1306. F7540F221D5B238600C3FFA8 /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
  1307. F7540F231D5B238600C3FFA8 /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
  1308. F7540F241D5B238600C3FFA8 /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
  1309. F7540F251D5B238600C3FFA8 /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
  1310. F7540F261D5B238600C3FFA8 /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
  1311. F7540F271D5B238600C3FFA8 /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
  1312. F7540F281D5B238600C3FFA8 /* ui_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_compat.h; sourceTree = "<group>"; };
  1313. F7540F291D5B238600C3FFA8 /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
  1314. F7540F2A1D5B238600C3FFA8 /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
  1315. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
  1316. F7540F2C1D5B238600C3FFA8 /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
  1317. F75797AD1E81356C00187A1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1318. F75797AF1E81359500187A1B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1319. F75797B01E8135AB00187A1B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1320. F75797B11E81363C00187A1B /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1321. F75797B21E81363F00187A1B /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1322. F75797B31E81364100187A1B /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1323. F75797B41E81364400187A1B /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1324. F75797B51E81364700187A1B /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1325. F75797B61E81364A00187A1B /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1326. F75797B71E81364C00187A1B /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1327. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  1328. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  1329. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1330. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1331. F7659A221DC0B726004860C4 /* EAIntroPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroPage.h; sourceTree = "<group>"; };
  1332. F7659A231DC0B726004860C4 /* EAIntroPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroPage.m; sourceTree = "<group>"; };
  1333. F7659A241DC0B726004860C4 /* EAIntroView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroView.h; sourceTree = "<group>"; };
  1334. F7659A251DC0B726004860C4 /* EAIntroView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroView.m; sourceTree = "<group>"; };
  1335. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EARestrictedScrollView.h; sourceTree = "<group>"; };
  1336. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EARestrictedScrollView.m; sourceTree = "<group>"; };
  1337. F7659A301DC0B737004860C4 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1338. F7659A311DC0B737004860C4 /* iRate.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = iRate.bundle; sourceTree = "<group>"; };
  1339. F7659A321DC0B737004860C4 /* iRate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iRate.h; sourceTree = "<group>"; };
  1340. F7659A331DC0B737004860C4 /* iRate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iRate.m; sourceTree = "<group>"; };
  1341. F7659A3B1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexPath+PSTCollectionViewAdditions.h"; sourceTree = "<group>"; };
  1342. F7659A3C1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexPath+PSTCollectionViewAdditions.m"; sourceTree = "<group>"; };
  1343. F7659A3D1DC0B760004860C4 /* PSTCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionView.h; sourceTree = "<group>"; };
  1344. F7659A3E1DC0B760004860C4 /* PSTCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionView.m; sourceTree = "<group>"; };
  1345. F7659A3F1DC0B760004860C4 /* PSTCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewCell.h; sourceTree = "<group>"; };
  1346. F7659A401DC0B760004860C4 /* PSTCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewCell.m; sourceTree = "<group>"; };
  1347. F7659A411DC0B760004860C4 /* PSTCollectionViewCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewCommon.h; sourceTree = "<group>"; };
  1348. F7659A421DC0B760004860C4 /* PSTCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewController.h; sourceTree = "<group>"; };
  1349. F7659A431DC0B760004860C4 /* PSTCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewController.m; sourceTree = "<group>"; };
  1350. F7659A441DC0B760004860C4 /* PSTCollectionViewData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewData.h; sourceTree = "<group>"; };
  1351. F7659A451DC0B760004860C4 /* PSTCollectionViewData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewData.m; sourceTree = "<group>"; };
  1352. F7659A461DC0B760004860C4 /* PSTCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewFlowLayout.h; sourceTree = "<group>"; };
  1353. F7659A471DC0B760004860C4 /* PSTCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewFlowLayout.m; sourceTree = "<group>"; };
  1354. F7659A481DC0B760004860C4 /* PSTCollectionViewItemKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewItemKey.h; sourceTree = "<group>"; };
  1355. F7659A491DC0B760004860C4 /* PSTCollectionViewItemKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewItemKey.m; sourceTree = "<group>"; };
  1356. F7659A4A1DC0B760004860C4 /* PSTCollectionViewLayout+Internals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PSTCollectionViewLayout+Internals.h"; sourceTree = "<group>"; };
  1357. F7659A4B1DC0B760004860C4 /* PSTCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewLayout.h; sourceTree = "<group>"; };
  1358. F7659A4C1DC0B760004860C4 /* PSTCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewLayout.m; sourceTree = "<group>"; };
  1359. F7659A4D1DC0B760004860C4 /* PSTCollectionViewUpdateItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewUpdateItem.h; sourceTree = "<group>"; };
  1360. F7659A4E1DC0B760004860C4 /* PSTCollectionViewUpdateItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewUpdateItem.m; sourceTree = "<group>"; };
  1361. F7659A4F1DC0B760004860C4 /* PSTGridLayoutInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutInfo.h; sourceTree = "<group>"; };
  1362. F7659A501DC0B760004860C4 /* PSTGridLayoutInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutInfo.m; sourceTree = "<group>"; };
  1363. F7659A511DC0B760004860C4 /* PSTGridLayoutItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutItem.h; sourceTree = "<group>"; };
  1364. F7659A521DC0B760004860C4 /* PSTGridLayoutItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutItem.m; sourceTree = "<group>"; };
  1365. F7659A531DC0B760004860C4 /* PSTGridLayoutRow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutRow.h; sourceTree = "<group>"; };
  1366. F7659A541DC0B760004860C4 /* PSTGridLayoutRow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutRow.m; sourceTree = "<group>"; };
  1367. F7659A551DC0B760004860C4 /* PSTGridLayoutSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutSection.h; sourceTree = "<group>"; };
  1368. F7659A561DC0B760004860C4 /* PSTGridLayoutSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutSection.m; sourceTree = "<group>"; };
  1369. F7676A611D5CB1B900DF734C /* TWMessageBarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWMessageBarManager.h; sourceTree = "<group>"; };
  1370. F7676A621D5CB1B900DF734C /* TWMessageBarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWMessageBarManager.m; sourceTree = "<group>"; };
  1371. F7676A721D5CB2A300DF734C /* icon-error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error.png"; sourceTree = "<group>"; };
  1372. F7676A731D5CB2A300DF734C /* icon-error@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error@2x.png"; sourceTree = "<group>"; };
  1373. F7676A741D5CB2A300DF734C /* icon-info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info.png"; sourceTree = "<group>"; };
  1374. F7676A751D5CB2A400DF734C /* icon-info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info@2x.png"; sourceTree = "<group>"; };
  1375. F7676A761D5CB2A400DF734C /* icon-success.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success.png"; sourceTree = "<group>"; };
  1376. F7676A771D5CB2A400DF734C /* icon-success@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success@2x.png"; sourceTree = "<group>"; };
  1377. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareOC.h; sourceTree = "<group>"; };
  1378. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareOC.m; sourceTree = "<group>"; };
  1379. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCShare.storyboard; sourceTree = "<group>"; };
  1380. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1381. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1382. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1383. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1384. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1385. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1386. F77D49A71DC238E500CDC568 /* loading@2x.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = "loading@2x.gif"; sourceTree = "<group>"; };
  1387. F78088E61DD3A1DB005C5A7C /* cryptocloud 2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 2.xcdatamodel"; sourceTree = "<group>"; };
  1388. F78088E71DD3A1DB005C5A7C /* cryptocloud 3.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 3.xcdatamodel"; sourceTree = "<group>"; };
  1389. F78088E81DD3A1DB005C5A7C /* cryptocloud 4.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 4.xcdatamodel"; sourceTree = "<group>"; };
  1390. F78088E91DD3A1DB005C5A7C /* cryptocloud.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = cryptocloud.xcdatamodel; sourceTree = "<group>"; };
  1391. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareUserOC.h; sourceTree = "<group>"; };
  1392. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareUserOC.m; sourceTree = "<group>"; };
  1393. F787E5581BC503ED00AFBFE1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  1394. F78BFECA1D3111B800E513CF /* LaunchScreenNextcloud.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreenNextcloud.xib; sourceTree = "<group>"; };
  1395. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1396. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1397. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1398. F792A77B1BC7C45400C9388E /* CCSplit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSplit.h; sourceTree = "<group>"; };
  1399. F792A77C1BC7C45400C9388E /* CCSplit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSplit.m; sourceTree = "<group>"; };
  1400. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1401. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1402. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1403. F7A139FF1E7F3D5D00016680 /* CCProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProgressView.h; sourceTree = "<group>"; };
  1404. F7A13A001E7F3D5D00016680 /* CCProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCProgressView.m; sourceTree = "<group>"; };
  1405. F7A13A011E7F3D5D00016680 /* UINavigationController+CCProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+CCProgress.h"; sourceTree = "<group>"; };
  1406. F7A13A021E7F3D5D00016680 /* UINavigationController+CCProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+CCProgress.m"; sourceTree = "<group>"; };
  1407. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1408. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1409. F7A582D61A24DAB500E903D7 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AppDelegate.m; sourceTree = "<group>"; };
  1410. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1411. F7AB79EF1BB1A3AD00A82F32 /* CCManageOptimizations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageOptimizations.h; sourceTree = "<group>"; };
  1412. F7AB79F01BB1A3AD00A82F32 /* CCManageOptimizations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageOptimizations.m; sourceTree = "<group>"; };
  1413. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1414. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1415. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1416. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1417. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1418. F7ACE42E1BAC0268006C0017 /* CCManageCameraUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageCameraUpload.h; sourceTree = "<group>"; };
  1419. F7ACE42F1BAC0268006C0017 /* CCManageCameraUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageCameraUpload.m; sourceTree = "<group>"; };
  1420. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1421. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1422. F7B1FBB11E72E3D1001781FE /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
  1423. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftModalWebVC.swift; sourceTree = "<group>"; };
  1424. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVC.swift; sourceTree = "<group>"; };
  1425. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivity.swift; sourceTree = "<group>"; };
  1426. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivityChrome.swift; sourceTree = "<group>"; };
  1427. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivitySafari.swift; sourceTree = "<group>"; };
  1428. F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = MagicalRecord.xcodeproj; path = "Libraries external/MagicalRecord/MagicalRecord.xcodeproj"; sourceTree = SOURCE_ROOT; };
  1429. F7B81D7F1C64E77F006D02DF /* CCCoreData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCoreData.h; sourceTree = "<group>"; };
  1430. F7B81D801C64E77F006D02DF /* CCCoreData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCoreData.m; sourceTree = "<group>"; };
  1431. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCQuickActions.h; sourceTree = "<group>"; };
  1432. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCQuickActions.m; sourceTree = "<group>"; };
  1433. F7BEC53E1E7981720048500A /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1434. F7BEC53F1E7981720048500A /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1435. F7BEC5401E7981720048500A /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1436. F7BEC5411E7981720048500A /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intro.strings; sourceTree = "<group>"; };
  1437. F7BEC5421E7981720048500A /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Error.strings; sourceTree = "<group>"; };
  1438. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1439. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1440. F7BFA4541E0693EE0010E44C /* cryptocloud 5.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 5.xcdatamodel"; sourceTree = "<group>"; };
  1441. F7BFCCBE1B68C21900548E76 /* CCManageAsset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAsset.h; sourceTree = "<group>"; };
  1442. F7BFCCBF1B68C21900548E76 /* CCManageAsset.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAsset.m; sourceTree = "<group>"; };
  1443. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1444. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1445. F7C00D421E2D0D0F0032160B /* CCCellOffline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellOffline.h; sourceTree = "<group>"; };
  1446. F7C00D431E2D0D0F0032160B /* CCCellOffline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellOffline.m; sourceTree = "<group>"; };
  1447. F7C00D441E2D0D0F0032160B /* CCCellOffline.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellOffline.xib; sourceTree = "<group>"; };
  1448. F7C00D4A1E2D10BB0032160B /* cryptocloud 7.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 7.xcdatamodel"; sourceTree = "<group>"; };
  1449. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1450. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1451. F7C1CDCE1E6DFAD1005D92BE /* CCStandardImages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCStandardImages.h; sourceTree = "<group>"; };
  1452. F7C1CDDA1E6DFC6F005D92BE /* CCNextcloudConstant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNextcloudConstant.h; sourceTree = "<group>"; };
  1453. F7C1CDDB1E6DFC6F005D92BE /* CCNextcloudImages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNextcloudImages.h; sourceTree = "<group>"; };
  1454. F7C1D8BB1D47781C00B89DEA /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1455. F7C1D8BC1D47781C00B89DEA /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1456. F7C1D8BD1D47781C00B89DEA /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1457. F7C1D8BE1D47781D00B89DEA /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intro.strings; sourceTree = "<group>"; };
  1458. F7C1D8BF1D47781D00B89DEA /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Error.strings; sourceTree = "<group>"; };
  1459. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1460. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1461. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1462. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1463. F7C742D41E7BD44400D9C973 /* Picker.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Picker.entitlements; sourceTree = "<group>"; };
  1464. F7C742D71E7BD5C900D9C973 /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1465. F7C742E61E7BD71A00D9C973 /* PickerFileProvider.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = PickerFileProvider.entitlements; sourceTree = "<group>"; };
  1466. F7C8C1721B482A920048180E /* CCMetadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCMetadata.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1467. F7C8C1731B482A920048180E /* CCMetadata.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMetadata.m; sourceTree = "<group>"; };
  1468. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1469. F7C8C1911B482CEA0048180E /* CCGlobal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGlobal.m; sourceTree = "<group>"; };
  1470. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSharePermissionOC.h; sourceTree = "<group>"; };
  1471. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSharePermissionOC.m; sourceTree = "<group>"; };
  1472. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1473. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1474. F7D02A461C5F9E4400D6F972 /* CCMove.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMove.h; sourceTree = "<group>"; };
  1475. F7D02A471C5F9E4400D6F972 /* CCMove.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMove.m; sourceTree = "<group>"; };
  1476. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCMove.storyboard; sourceTree = "<group>"; };
  1477. F7D0E65E1BC5042E008D989A /* CCDetail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDetail.h; sourceTree = "<group>"; };
  1478. F7D0E65F1BC5042E008D989A /* CCDetail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCDetail.m; sourceTree = "<group>"; };
  1479. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1480. F7D6A0891D82DBFA0045AD1A /* CCControlCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCControlCenter.h; sourceTree = "<group>"; };
  1481. F7D6A08A1D82DBFA0045AD1A /* CCControlCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCControlCenter.m; sourceTree = "<group>"; };
  1482. F7D6A08B1D82DBFA0045AD1A /* CCControlCenterTransferCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCControlCenterTransferCell.h; sourceTree = "<group>"; };
  1483. F7D6A08C1D82DBFA0045AD1A /* CCControlCenterTransferCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCControlCenterTransferCell.m; sourceTree = "<group>"; };
  1484. F7D6A08D1D82DBFA0045AD1A /* CCControlCenterTransferCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCControlCenterTransferCell.xib; sourceTree = "<group>"; };
  1485. F7D6A08E1D82DBFA0045AD1A /* CCMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenu.h; sourceTree = "<group>"; };
  1486. F7D6A08F1D82DBFA0045AD1A /* CCMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenu.m; sourceTree = "<group>"; };
  1487. F7D96F0B1D99498600A587A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1488. F7D96F0C1D99498600A587A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1489. F7D96F0D1D99498600A587A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1490. F7D96F0E1D99498700A587A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intro.strings; sourceTree = "<group>"; };
  1491. F7D96F0F1D99498700A587A5 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Error.strings; sourceTree = "<group>"; };
  1492. F7DA62AC1E41E666003E1740 /* CCOfflinePageContent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCOfflinePageContent.h; sourceTree = "<group>"; };
  1493. F7DA62AD1E41E666003E1740 /* CCOfflinePageContent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCOfflinePageContent.m; sourceTree = "<group>"; };
  1494. F7E456D41C89D54A00BD63F0 /* Share Ext-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share Ext-Bridging-Header.h"; sourceTree = "<group>"; };
  1495. F7EC14791E5D9C0B0046F351 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1496. F7EC147A1E5D9C0B0046F351 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1497. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCCreateCloud.swift; sourceTree = "<group>"; };
  1498. F7EF0CAC1D9E95EC00A9D15E /* CCSharedDBSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCSharedDBSession.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1499. F7EF0CAD1D9E95F400A9D15E /* CCSharedDBSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCSharedDBSession.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1500. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1501. F7F06E2B1DBFACC600099AE9 /* CTAssetsPageViewController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPageViewController+Internal.h"; sourceTree = "<group>"; };
  1502. F7F06E2C1DBFACC600099AE9 /* CTAssetsPickerController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPickerController+Internal.h"; sourceTree = "<group>"; };
  1503. F7F06E2D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1504. F7F06E2E1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1505. F7F06E2F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDateFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1506. F7F06E301DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDateFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1507. F7F06E311DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1508. F7F06E321DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1509. F7F06E331DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumberFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1510. F7F06E341DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumberFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1511. F7F06E351DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1512. F7F06E361DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1513. F7F06E371DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAssetCollection+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1514. F7F06E381DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAssetCollection+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1515. F7F06E391DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHImageManager+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1516. F7F06E3A1DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHImageManager+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1517. F7F06E3B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1518. F7F06E3C1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1519. F7F06E3D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1520. F7F06E3E1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1521. F7F06E3F1DBFACC600099AE9 /* CTAssetCheckmark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCheckmark.h; sourceTree = "<group>"; };
  1522. F7F06E401DBFACC600099AE9 /* CTAssetCheckmark.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCheckmark.m; sourceTree = "<group>"; };
  1523. F7F06E411DBFACC600099AE9 /* CTAssetCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewCell.h; sourceTree = "<group>"; };
  1524. F7F06E421DBFACC600099AE9 /* CTAssetCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewCell.m; sourceTree = "<group>"; };
  1525. F7F06E431DBFACC600099AE9 /* CTAssetCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewController.h; sourceTree = "<group>"; };
  1526. F7F06E441DBFACC600099AE9 /* CTAssetCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewController.m; sourceTree = "<group>"; };
  1527. F7F06E451DBFACC600099AE9 /* CTAssetItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetItemViewController.h; sourceTree = "<group>"; };
  1528. F7F06E461DBFACC600099AE9 /* CTAssetItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetItemViewController.m; sourceTree = "<group>"; };
  1529. F7F06E471DBFACC600099AE9 /* CTAssetPlayButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetPlayButton.h; sourceTree = "<group>"; };
  1530. F7F06E481DBFACC600099AE9 /* CTAssetPlayButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetPlayButton.m; sourceTree = "<group>"; };
  1531. F7F06E491DBFACC600099AE9 /* CTAssetScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetScrollView.h; sourceTree = "<group>"; };
  1532. F7F06E4A1DBFACC600099AE9 /* CTAssetScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetScrollView.m; sourceTree = "<group>"; };
  1533. F7F06E4B1DBFACC600099AE9 /* CTAssetSelectionButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionButton.h; sourceTree = "<group>"; };
  1534. F7F06E4C1DBFACC600099AE9 /* CTAssetSelectionButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionButton.m; sourceTree = "<group>"; };
  1535. F7F06E4D1DBFACC600099AE9 /* CTAssetSelectionLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionLabel.h; sourceTree = "<group>"; };
  1536. F7F06E4E1DBFACC600099AE9 /* CTAssetSelectionLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionLabel.m; sourceTree = "<group>"; };
  1537. F7F06E4F1DBFACC600099AE9 /* CTAssetsGridSelectedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridSelectedView.h; sourceTree = "<group>"; };
  1538. F7F06E501DBFACC600099AE9 /* CTAssetsGridSelectedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridSelectedView.m; sourceTree = "<group>"; };
  1539. F7F06E511DBFACC600099AE9 /* CTAssetsGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridView.h; sourceTree = "<group>"; };
  1540. F7F06E521DBFACC600099AE9 /* CTAssetsGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridView.m; sourceTree = "<group>"; };
  1541. F7F06E531DBFACC600099AE9 /* CTAssetsGridViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewCell.h; sourceTree = "<group>"; };
  1542. F7F06E541DBFACC600099AE9 /* CTAssetsGridViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewCell.m; sourceTree = "<group>"; };
  1543. F7F06E551DBFACC600099AE9 /* CTAssetsGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewController.h; sourceTree = "<group>"; };
  1544. F7F06E561DBFACC600099AE9 /* CTAssetsGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewController.m; sourceTree = "<group>"; };
  1545. F7F06E571DBFACC600099AE9 /* CTAssetsGridViewFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewFooter.h; sourceTree = "<group>"; };
  1546. F7F06E581DBFACC600099AE9 /* CTAssetsGridViewFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewFooter.m; sourceTree = "<group>"; };
  1547. F7F06E591DBFACC600099AE9 /* CTAssetsGridViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewLayout.h; sourceTree = "<group>"; };
  1548. F7F06E5A1DBFACC600099AE9 /* CTAssetsGridViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewLayout.m; sourceTree = "<group>"; };
  1549. F7F06E5B1DBFACC600099AE9 /* CTAssetsNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsNavigationController.h; sourceTree = "<group>"; };
  1550. F7F06E5C1DBFACC600099AE9 /* CTAssetsNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsNavigationController.m; sourceTree = "<group>"; };
  1551. F7F06E5D1DBFACC600099AE9 /* CTAssetsPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageView.h; sourceTree = "<group>"; };
  1552. F7F06E5E1DBFACC600099AE9 /* CTAssetsPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageView.m; sourceTree = "<group>"; };
  1553. F7F06E5F1DBFACC600099AE9 /* CTAssetsPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageViewController.h; sourceTree = "<group>"; };
  1554. F7F06E601DBFACC600099AE9 /* CTAssetsPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageViewController.m; sourceTree = "<group>"; };
  1555. F7F06E611DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerAccessDeniedView.h; sourceTree = "<group>"; };
  1556. F7F06E621DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerAccessDeniedView.m; sourceTree = "<group>"; };
  1557. F7F06E631DBFACC600099AE9 /* CTAssetsPickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CTAssetsPickerController.bundle; sourceTree = "<group>"; };
  1558. F7F06E641DBFACC600099AE9 /* CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerController.h; sourceTree = "<group>"; };
  1559. F7F06E651DBFACC600099AE9 /* CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerController.m; sourceTree = "<group>"; };
  1560. F7F06E661DBFACC600099AE9 /* CTAssetsPickerDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerDefines.h; sourceTree = "<group>"; };
  1561. F7F06E671DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerNoAssetsView.h; sourceTree = "<group>"; };
  1562. F7F06E681DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerNoAssetsView.m; sourceTree = "<group>"; };
  1563. F7F06E691DBFACC600099AE9 /* CTAssetsViewControllerTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsViewControllerTransition.h; sourceTree = "<group>"; };
  1564. F7F06E6A1DBFACC600099AE9 /* CTAssetsViewControllerTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsViewControllerTransition.m; sourceTree = "<group>"; };
  1565. F7F06E6B1DBFACC600099AE9 /* CTAssetThumbnailOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailOverlay.h; sourceTree = "<group>"; };
  1566. F7F06E6C1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailOverlay.m; sourceTree = "<group>"; };
  1567. F7F06E6D1DBFACC600099AE9 /* CTAssetThumbnailStacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailStacks.h; sourceTree = "<group>"; };
  1568. F7F06E6E1DBFACC600099AE9 /* CTAssetThumbnailStacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailStacks.m; sourceTree = "<group>"; };
  1569. F7F06E6F1DBFACC600099AE9 /* CTAssetThumbnailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailView.h; sourceTree = "<group>"; };
  1570. F7F06E701DBFACC600099AE9 /* CTAssetThumbnailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailView.m; sourceTree = "<group>"; };
  1571. F7F54CAB1E5AFF1E00E19C62 /* PickerFileProvider-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PickerFileProvider-Bridging-Header.h"; sourceTree = "<group>"; };
  1572. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1573. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1574. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1575. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1576. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1577. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1578. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1579. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1580. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1581. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1582. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1583. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1584. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1585. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1586. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1587. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1588. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1589. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1590. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1591. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1592. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1593. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1594. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1595. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1596. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1597. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1598. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1599. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1600. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1601. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1602. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1603. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1604. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1605. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1606. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1607. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1608. F7F54CD31E5B14C700E19C62 /* MWGridCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridCell.h; sourceTree = "<group>"; };
  1609. F7F54CD41E5B14C700E19C62 /* MWGridCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridCell.m; sourceTree = "<group>"; };
  1610. F7F54CD51E5B14C700E19C62 /* MWGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridViewController.h; sourceTree = "<group>"; };
  1611. F7F54CD61E5B14C700E19C62 /* MWGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridViewController.m; sourceTree = "<group>"; };
  1612. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1613. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1614. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1615. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1616. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1617. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1618. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1619. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1620. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1621. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1622. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1623. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1624. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1625. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1626. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1627. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1628. F7F6AC4C1E525AD300E8EB45 /* CCManageCryptoCloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageCryptoCloud.h; sourceTree = "<group>"; };
  1629. F7F6AC4D1E525AD300E8EB45 /* CCManageCryptoCloud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageCryptoCloud.m; sourceTree = "<group>"; };
  1630. F7F7638B1E783EF6009FED20 /* DevicePushKey-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "DevicePushKey-Info.plist"; sourceTree = "<group>"; };
  1631. F7F801001D98205A007537BC /* CCCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
  1632. F7F801011D98205A007537BC /* CCCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
  1633. F7FB5F111E66CDCB00389481 /* CCOfflineContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCOfflineContainer.h; sourceTree = "<group>"; };
  1634. F7FB5F121E66CDCB00389481 /* CCOfflineContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCOfflineContainer.m; sourceTree = "<group>"; };
  1635. F7FB5F181E66EB7200389481 /* TableActivity+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableActivity+CoreDataClass.h"; sourceTree = "<group>"; };
  1636. F7FB5F191E66EB7200389481 /* TableActivity+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableActivity+CoreDataClass.m"; sourceTree = "<group>"; };
  1637. F7FB5F1A1E66EB7200389481 /* TableActivity+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableActivity+CoreDataProperties.h"; sourceTree = "<group>"; };
  1638. F7FB5F1B1E66EB7200389481 /* TableActivity+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableActivity+CoreDataProperties.m"; sourceTree = "<group>"; };
  1639. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1640. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1641. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1642. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1643. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1644. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1645. F7FE125E1BAC03FB0041924B /* CCCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCrypto.h; sourceTree = "<group>"; };
  1646. F7FE125F1BAC03FB0041924B /* CCCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCrypto.m; sourceTree = "<group>"; };
  1647. F7FEB6CE1BECADC100E7C415 /* CCManageHelp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageHelp.h; sourceTree = "<group>"; };
  1648. F7FEB6CF1BECADC100E7C415 /* CCManageHelp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageHelp.m; sourceTree = "<group>"; };
  1649. /* End PBXFileReference section */
  1650. /* Begin PBXFrameworksBuildPhase section */
  1651. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1652. isa = PBXFrameworksBuildPhase;
  1653. buildActionMask = 2147483647;
  1654. files = (
  1655. F71E68021DC1F79D003BA52B /* libownCloudiOS.a in Frameworks */,
  1656. F72C63891DC14B0400FA5ED5 /* libMagicalRecord.a in Frameworks */,
  1657. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */,
  1658. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */,
  1659. );
  1660. runOnlyForDeploymentPostprocessing = 0;
  1661. };
  1662. F743440F1E1264ED001CC831 /* Frameworks */ = {
  1663. isa = PBXFrameworksBuildPhase;
  1664. buildActionMask = 2147483647;
  1665. files = (
  1666. F74344541E1277D8001CC831 /* libownCloudiOS.a in Frameworks */,
  1667. F74344551E1277E2001CC831 /* libMagicalRecord.a in Frameworks */,
  1668. F74344591E12786C001CC831 /* libssl.a in Frameworks */,
  1669. F74344561E12784A001CC831 /* libcrypto.a in Frameworks */,
  1670. );
  1671. runOnlyForDeploymentPostprocessing = 0;
  1672. };
  1673. F743441D1E1264EE001CC831 /* Frameworks */ = {
  1674. isa = PBXFrameworksBuildPhase;
  1675. buildActionMask = 2147483647;
  1676. files = (
  1677. );
  1678. runOnlyForDeploymentPostprocessing = 0;
  1679. };
  1680. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1681. isa = PBXFrameworksBuildPhase;
  1682. buildActionMask = 2147483647;
  1683. files = (
  1684. F71E68001DC1F792003BA52B /* libownCloudiOS.a in Frameworks */,
  1685. F714526D1DC1523B0006A5D4 /* libMagicalRecord.a in Frameworks */,
  1686. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1687. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */,
  1688. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */,
  1689. );
  1690. runOnlyForDeploymentPostprocessing = 0;
  1691. };
  1692. /* End PBXFrameworksBuildPhase section */
  1693. /* Begin PBXGroup section */
  1694. F70211F31BAC56E9003FC03E /* Main */ = {
  1695. isa = PBXGroup;
  1696. children = (
  1697. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  1698. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  1699. F70211F41BAC56E9003FC03E /* CCCellMain.h */,
  1700. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  1701. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  1702. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  1703. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1704. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1705. F7D0E65E1BC5042E008D989A /* CCDetail.h */,
  1706. F7D0E65F1BC5042E008D989A /* CCDetail.m */,
  1707. F787E5581BC503ED00AFBFE1 /* Main.storyboard */,
  1708. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1709. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1710. F792A77B1BC7C45400C9388E /* CCSplit.h */,
  1711. F792A77C1BC7C45400C9388E /* CCSplit.m */,
  1712. );
  1713. path = Main;
  1714. sourceTree = "<group>";
  1715. };
  1716. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1717. isa = PBXGroup;
  1718. children = (
  1719. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1720. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1721. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1722. );
  1723. path = UploadFromOtherUpp;
  1724. sourceTree = "<group>";
  1725. };
  1726. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1727. isa = PBXGroup;
  1728. children = (
  1729. F70F02A91C889183008DAB36 /* AESCrypt-ObjC */,
  1730. F70F02B21C889183008DAB36 /* AFViewShaker */,
  1731. F744FA7B1E57333C00BFAB34 /* APAvatarImageView */,
  1732. F7F06E291DBFACC600099AE9 /* CTAssetsPickerController */,
  1733. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */,
  1734. F7659A211DC0B726004860C4 /* EAIntroView */,
  1735. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */,
  1736. F7253FC71E38BAF20084135B /* JSAlertView */,
  1737. F7659A2F1DC0B737004860C4 /* iRate */,
  1738. F70F0F251C889339008DAB36 /* LMMediaPlayer */,
  1739. F70F04821C889183008DAB36 /* MBProgressHUD */,
  1740. F70F04BD1C889184008DAB36 /* NYXImagesKit */,
  1741. F7540EE11D5B238600C3FFA8 /* openssl */,
  1742. F70F051D1C889184008DAB36 /* PPImageScrollingTableViewCell */,
  1743. F75037421DBFA91A008FB480 /* PureLayout */,
  1744. F70F05241C889184008DAB36 /* Reachability */,
  1745. F7659A3A1DC0B760004860C4 /* PSTCollectionView */,
  1746. F70F0C4F1C8892C5008DAB36 /* REMenu */,
  1747. F70F05321C889184008DAB36 /* RNCryptor */,
  1748. F70F0F921C889487008DAB36 /* SSZipArchive */,
  1749. F7676A601D5CB1B900DF734C /* TWMessageBarManager */,
  1750. F73CCE271DC13798007E38D8 /* UICKeyChainStore */,
  1751. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  1752. F70F0EA21C889316008DAB36 /* VFR Pdf Reader */,
  1753. F73CCD7F1DC13775007E38D8 /* XLForm */,
  1754. F70F0D8C1C8892FF008DAB36 /* ZSSRichTextEditor */,
  1755. );
  1756. path = "Libraries external";
  1757. sourceTree = SOURCE_ROOT;
  1758. };
  1759. F70F02A91C889183008DAB36 /* AESCrypt-ObjC */ = {
  1760. isa = PBXGroup;
  1761. children = (
  1762. F70F02AA1C889183008DAB36 /* AESCrypt.h */,
  1763. F70F02AB1C889183008DAB36 /* AESCrypt.m */,
  1764. F70F02AC1C889183008DAB36 /* NSData+Base64.h */,
  1765. F70F02AD1C889183008DAB36 /* NSData+Base64.m */,
  1766. F70F02AE1C889183008DAB36 /* NSData+CommonCrypto.h */,
  1767. F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */,
  1768. F70F02B01C889183008DAB36 /* NSString+Base64.h */,
  1769. F70F02B11C889183008DAB36 /* NSString+Base64.m */,
  1770. );
  1771. path = "AESCrypt-ObjC";
  1772. sourceTree = "<group>";
  1773. };
  1774. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  1775. isa = PBXGroup;
  1776. children = (
  1777. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  1778. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  1779. );
  1780. path = AFViewShaker;
  1781. sourceTree = "<group>";
  1782. };
  1783. F70F04821C889183008DAB36 /* MBProgressHUD */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. F70F04831C889183008DAB36 /* MBProgressHUD.h */,
  1787. F70F04841C889183008DAB36 /* MBProgressHUD.m */,
  1788. );
  1789. path = MBProgressHUD;
  1790. sourceTree = "<group>";
  1791. };
  1792. F70F04BD1C889184008DAB36 /* NYXImagesKit */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. F70F04BE1C889184008DAB36 /* Categories */,
  1796. F70F04CF1C889184008DAB36 /* Classes */,
  1797. F70F04D21C889184008DAB36 /* Helper */,
  1798. );
  1799. path = NYXImagesKit;
  1800. sourceTree = "<group>";
  1801. };
  1802. F70F04BE1C889184008DAB36 /* Categories */ = {
  1803. isa = PBXGroup;
  1804. children = (
  1805. F70F04BF1C889184008DAB36 /* UIImage+Blurring.h */,
  1806. F70F04C01C889184008DAB36 /* UIImage+Blurring.m */,
  1807. F70F04C11C889184008DAB36 /* UIImage+Enhancing.h */,
  1808. F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */,
  1809. F70F04C31C889184008DAB36 /* UIImage+Filtering.h */,
  1810. F70F04C41C889184008DAB36 /* UIImage+Filtering.m */,
  1811. F70F04C51C889184008DAB36 /* UIImage+Masking.h */,
  1812. F70F04C61C889184008DAB36 /* UIImage+Masking.m */,
  1813. F70F04C71C889184008DAB36 /* UIImage+Reflection.h */,
  1814. F70F04C81C889184008DAB36 /* UIImage+Reflection.m */,
  1815. F70F04C91C889184008DAB36 /* UIImage+Resizing.h */,
  1816. F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */,
  1817. F70F04CB1C889184008DAB36 /* UIImage+Rotating.h */,
  1818. F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */,
  1819. F70F04CD1C889184008DAB36 /* UIImage+Saving.h */,
  1820. F70F04CE1C889184008DAB36 /* UIImage+Saving.m */,
  1821. );
  1822. path = Categories;
  1823. sourceTree = "<group>";
  1824. };
  1825. F70F04CF1C889184008DAB36 /* Classes */ = {
  1826. isa = PBXGroup;
  1827. children = (
  1828. F70F04D01C889184008DAB36 /* NYXProgressiveImageView.h */,
  1829. F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */,
  1830. );
  1831. path = Classes;
  1832. sourceTree = "<group>";
  1833. };
  1834. F70F04D21C889184008DAB36 /* Helper */ = {
  1835. isa = PBXGroup;
  1836. children = (
  1837. F70F04D31C889184008DAB36 /* NYXImagesHelper.h */,
  1838. F70F04D41C889184008DAB36 /* NYXImagesHelper.m */,
  1839. F70F04D51C889184008DAB36 /* NYXImagesKit.h */,
  1840. );
  1841. path = Helper;
  1842. sourceTree = "<group>";
  1843. };
  1844. F70F051D1C889184008DAB36 /* PPImageScrollingTableViewCell */ = {
  1845. isa = PBXGroup;
  1846. children = (
  1847. F70F051E1C889184008DAB36 /* PPCollectionViewCell.h */,
  1848. F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */,
  1849. F70F05201C889184008DAB36 /* PPImageScrollingCellView.h */,
  1850. F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */,
  1851. F70F05221C889184008DAB36 /* PPImageScrollingTableViewCell.h */,
  1852. F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */,
  1853. );
  1854. path = PPImageScrollingTableViewCell;
  1855. sourceTree = "<group>";
  1856. };
  1857. F70F05241C889184008DAB36 /* Reachability */ = {
  1858. isa = PBXGroup;
  1859. children = (
  1860. F70F05251C889184008DAB36 /* Reachability.h */,
  1861. F70F05261C889184008DAB36 /* Reachability.m */,
  1862. );
  1863. path = Reachability;
  1864. sourceTree = "<group>";
  1865. };
  1866. F70F05321C889184008DAB36 /* RNCryptor */ = {
  1867. isa = PBXGroup;
  1868. children = (
  1869. F70F05331C889184008DAB36 /* RNCryptor+Private.h */,
  1870. F70F05341C889184008DAB36 /* RNCryptor.h */,
  1871. F70F05351C889184008DAB36 /* RNCryptor.m */,
  1872. F70F05361C889184008DAB36 /* RNCryptorEngine.h */,
  1873. F70F05371C889184008DAB36 /* RNCryptorEngine.m */,
  1874. F70F05381C889184008DAB36 /* RNDecryptor.h */,
  1875. F70F05391C889184008DAB36 /* RNDecryptor.m */,
  1876. F70F053A1C889184008DAB36 /* RNEncryptor.h */,
  1877. F70F053B1C889184008DAB36 /* RNEncryptor.m */,
  1878. );
  1879. path = RNCryptor;
  1880. sourceTree = "<group>";
  1881. };
  1882. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  1883. isa = PBXGroup;
  1884. children = (
  1885. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  1886. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  1887. );
  1888. path = "UIImage+animatedGIF";
  1889. sourceTree = "<group>";
  1890. };
  1891. F70F0C4F1C8892C5008DAB36 /* REMenu */ = {
  1892. isa = PBXGroup;
  1893. children = (
  1894. F70F0C501C8892C5008DAB36 /* RECommonFunctions.h */,
  1895. F70F0C511C8892C5008DAB36 /* RECommonFunctions.m */,
  1896. F70F0C521C8892C5008DAB36 /* REMenu.h */,
  1897. F70F0C531C8892C5008DAB36 /* REMenu.m */,
  1898. F70F0C541C8892C5008DAB36 /* REMenuContainerView.h */,
  1899. F70F0C551C8892C5008DAB36 /* REMenuContainerView.m */,
  1900. F70F0C561C8892C5008DAB36 /* REMenuItem.h */,
  1901. F70F0C571C8892C5008DAB36 /* REMenuItem.m */,
  1902. F70F0C581C8892C5008DAB36 /* REMenuItemView.h */,
  1903. F70F0C591C8892C5008DAB36 /* REMenuItemView.m */,
  1904. );
  1905. path = REMenu;
  1906. sourceTree = "<group>";
  1907. };
  1908. F70F0D8C1C8892FF008DAB36 /* ZSSRichTextEditor */ = {
  1909. isa = PBXGroup;
  1910. children = (
  1911. F70F0D8D1C889300008DAB36 /* editor.html */,
  1912. F70F0D8E1C889300008DAB36 /* Images */,
  1913. F70F0DD71C889300008DAB36 /* Third Party */,
  1914. F70F0DED1C889300008DAB36 /* ZSSBarButtonItem.h */,
  1915. F70F0DEE1C889300008DAB36 /* ZSSBarButtonItem.m */,
  1916. F70F0DEF1C889300008DAB36 /* ZSSRichTextEditor.h */,
  1917. F70F0DF01C889300008DAB36 /* ZSSRichTextEditor.js */,
  1918. F70F0DF11C889300008DAB36 /* ZSSRichTextEditor.m */,
  1919. F70F0DF21C889300008DAB36 /* ZSSTextView.h */,
  1920. F70F0DF31C889300008DAB36 /* ZSSTextView.m */,
  1921. );
  1922. path = ZSSRichTextEditor;
  1923. sourceTree = "<group>";
  1924. };
  1925. F70F0D8E1C889300008DAB36 /* Images */ = {
  1926. isa = PBXGroup;
  1927. children = (
  1928. F70F0D8F1C889300008DAB36 /* ZSSbgcolor.png */,
  1929. F70F0D901C889300008DAB36 /* ZSSbgcolor@2x.png */,
  1930. F70F0D911C889300008DAB36 /* ZSSbold.png */,
  1931. F70F0D921C889300008DAB36 /* ZSSbold@2x.png */,
  1932. F70F0D931C889300008DAB36 /* ZSScenterjustify.png */,
  1933. F70F0D941C889300008DAB36 /* ZSScenterjustify@2x.png */,
  1934. F70F0D951C889300008DAB36 /* ZSSclearstyle.png */,
  1935. F70F0D961C889300008DAB36 /* ZSSclearstyle@2x.png */,
  1936. F70F0D971C889300008DAB36 /* ZSSforcejustify.png */,
  1937. F70F0D981C889300008DAB36 /* ZSSforcejustify@2x.png */,
  1938. F70F0D991C889300008DAB36 /* ZSSh1.png */,
  1939. F70F0D9A1C889300008DAB36 /* ZSSh1@2x.png */,
  1940. F70F0D9B1C889300008DAB36 /* ZSSh2.png */,
  1941. F70F0D9C1C889300008DAB36 /* ZSSh2@2x.png */,
  1942. F70F0D9D1C889300008DAB36 /* ZSSh3.png */,
  1943. F70F0D9E1C889300008DAB36 /* ZSSh3@2x.png */,
  1944. F70F0D9F1C889300008DAB36 /* ZSSh4.png */,
  1945. F70F0DA01C889300008DAB36 /* ZSSh4@2x.png */,
  1946. F70F0DA11C889300008DAB36 /* ZSSh5.png */,
  1947. F70F0DA21C889300008DAB36 /* ZSSh5@2x.png */,
  1948. F70F0DA31C889300008DAB36 /* ZSSh6.png */,
  1949. F70F0DA41C889300008DAB36 /* ZSSh6@2x.png */,
  1950. F70F0DA51C889300008DAB36 /* ZSShorizontalrule.png */,
  1951. F70F0DA61C889300008DAB36 /* ZSShorizontalrule@2x.png */,
  1952. F70F0DA71C889300008DAB36 /* ZSSimage.png */,
  1953. F70F0DA81C889300008DAB36 /* ZSSimage@2x.png */,
  1954. F70F0DA91C889300008DAB36 /* ZSSindent.png */,
  1955. F70F0DAA1C889300008DAB36 /* ZSSindent@2x.png */,
  1956. F70F0DAB1C889300008DAB36 /* ZSSinsertkeyword.png */,
  1957. F70F0DAC1C889300008DAB36 /* ZSSinsertkeyword@2x.png */,
  1958. F70F0DAD1C889300008DAB36 /* ZSSitalic.png */,
  1959. F70F0DAE1C889300008DAB36 /* ZSSitalic@2x.png */,
  1960. F70F0DAF1C889300008DAB36 /* ZSSkeyboard.png */,
  1961. F70F0DB01C889300008DAB36 /* ZSSkeyboard@2x.png */,
  1962. F70F0DB11C889300008DAB36 /* ZSSleftjustify.png */,
  1963. F70F0DB21C889300008DAB36 /* ZSSleftjustify@2x.png */,
  1964. F70F0DB31C889300008DAB36 /* ZSSlink.png */,
  1965. F70F0DB41C889300008DAB36 /* ZSSlink@2x.png */,
  1966. F70F0DB51C889300008DAB36 /* ZSSorderedlist.png */,
  1967. F70F0DB61C889300008DAB36 /* ZSSorderedlist@2x.png */,
  1968. F70F0DB71C889300008DAB36 /* ZSSoutdent.png */,
  1969. F70F0DB81C889300008DAB36 /* ZSSoutdent@2x.png */,
  1970. F70F0DB91C889300008DAB36 /* ZSSparagraph.png */,
  1971. F70F0DBA1C889300008DAB36 /* ZSSparagraph@2x.png */,
  1972. F70F0DBB1C889300008DAB36 /* ZSSpicker.png */,
  1973. F70F0DBC1C889300008DAB36 /* ZSSpicker@2x.png */,
  1974. F70F0DBD1C889300008DAB36 /* ZSSquicklink.png */,
  1975. F70F0DBE1C889300008DAB36 /* ZSSquicklink@2x.png */,
  1976. F70F0DBF1C889300008DAB36 /* ZSSredo.png */,
  1977. F70F0DC01C889300008DAB36 /* ZSSredo@2x.png */,
  1978. F70F0DC11C889300008DAB36 /* ZSSrightjustify.png */,
  1979. F70F0DC21C889300008DAB36 /* ZSSrightjustify@2x.png */,
  1980. F70F0DC31C889300008DAB36 /* ZSSstrikethrough.png */,
  1981. F70F0DC41C889300008DAB36 /* ZSSstrikethrough@2x.png */,
  1982. F70F0DC51C889300008DAB36 /* ZSSsubscript.png */,
  1983. F70F0DC61C889300008DAB36 /* ZSSsubscript@2x.png */,
  1984. F70F0DC71C889300008DAB36 /* ZSSsuperscript.png */,
  1985. F70F0DC81C889300008DAB36 /* ZSSsuperscript@2x.png */,
  1986. F70F0DC91C889300008DAB36 /* ZSStable.png */,
  1987. F70F0DCA1C889300008DAB36 /* ZSStable@2x.png */,
  1988. F70F0DCB1C889300008DAB36 /* ZSStextcolor.png */,
  1989. F70F0DCC1C889300008DAB36 /* ZSStextcolor@2x.png */,
  1990. F70F0DCD1C889300008DAB36 /* ZSSunderline.png */,
  1991. F70F0DCE1C889300008DAB36 /* ZSSunderline@2x.png */,
  1992. F70F0DCF1C889300008DAB36 /* ZSSundo.png */,
  1993. F70F0DD01C889300008DAB36 /* ZSSundo@2x.png */,
  1994. F70F0DD11C889300008DAB36 /* ZSSunlink.png */,
  1995. F70F0DD21C889300008DAB36 /* ZSSunlink@2x.png */,
  1996. F70F0DD31C889300008DAB36 /* ZSSunorderedlist.png */,
  1997. F70F0DD41C889300008DAB36 /* ZSSunorderedlist@2x.png */,
  1998. F70F0DD51C889300008DAB36 /* ZSSviewsource.png */,
  1999. F70F0DD61C889300008DAB36 /* ZSSviewsource@2x.png */,
  2000. );
  2001. path = Images;
  2002. sourceTree = "<group>";
  2003. };
  2004. F70F0DD71C889300008DAB36 /* Third Party */ = {
  2005. isa = PBXGroup;
  2006. children = (
  2007. F70F0DD81C889300008DAB36 /* CYRLayoutManager.h */,
  2008. F70F0DD91C889300008DAB36 /* CYRLayoutManager.m */,
  2009. F70F0DDA1C889300008DAB36 /* CYRTextStorage.h */,
  2010. F70F0DDB1C889300008DAB36 /* CYRTextStorage.m */,
  2011. F70F0DDC1C889300008DAB36 /* CYRTextView.h */,
  2012. F70F0DDD1C889300008DAB36 /* CYRTextView.m */,
  2013. F70F0DDE1C889300008DAB36 /* CYRToken.h */,
  2014. F70F0DDF1C889300008DAB36 /* CYRToken.m */,
  2015. F70F0DE01C889300008DAB36 /* HRBrightnessCursor.h */,
  2016. F70F0DE11C889300008DAB36 /* HRBrightnessCursor.m */,
  2017. F70F0DE21C889300008DAB36 /* HRCgUtil.h */,
  2018. F70F0DE31C889300008DAB36 /* HRCgUtil.m */,
  2019. F70F0DE41C889300008DAB36 /* HRColorCursor.h */,
  2020. F70F0DE51C889300008DAB36 /* HRColorCursor.m */,
  2021. F70F0DE61C889300008DAB36 /* HRColorPickerMacros.h */,
  2022. F70F0DE71C889300008DAB36 /* HRColorPickerView.h */,
  2023. F70F0DE81C889300008DAB36 /* HRColorPickerView.m */,
  2024. F70F0DE91C889300008DAB36 /* HRColorPickerViewController.h */,
  2025. F70F0DEA1C889300008DAB36 /* HRColorPickerViewController.m */,
  2026. F70F0DEB1C889300008DAB36 /* HRColorUtil.h */,
  2027. F70F0DEC1C889300008DAB36 /* HRColorUtil.m */,
  2028. );
  2029. path = "Third Party";
  2030. sourceTree = "<group>";
  2031. };
  2032. F70F0EA21C889316008DAB36 /* VFR Pdf Reader */ = {
  2033. isa = PBXGroup;
  2034. children = (
  2035. F70F0EA31C889317008DAB36 /* Graphics */,
  2036. F70F0EB41C889317008DAB36 /* Sources */,
  2037. );
  2038. path = "VFR Pdf Reader";
  2039. sourceTree = "<group>";
  2040. };
  2041. F70F0EA31C889317008DAB36 /* Graphics */ = {
  2042. isa = PBXGroup;
  2043. children = (
  2044. F70F0EA41C889317008DAB36 /* Reader-Button-H.png */,
  2045. F70F0EA51C889317008DAB36 /* Reader-Button-H@2x.png */,
  2046. F70F0EA61C889317008DAB36 /* Reader-Button-N.png */,
  2047. F70F0EA71C889317008DAB36 /* Reader-Button-N@2x.png */,
  2048. F70F0EA81C889317008DAB36 /* Reader-Email.png */,
  2049. F70F0EA91C889317008DAB36 /* Reader-Email@2x.png */,
  2050. F70F0EAA1C889317008DAB36 /* Reader-Export.png */,
  2051. F70F0EAB1C889317008DAB36 /* Reader-Export@2x.png */,
  2052. F70F0EAC1C889317008DAB36 /* Reader-Mark-N.png */,
  2053. F70F0EAD1C889317008DAB36 /* Reader-Mark-N@2x.png */,
  2054. F70F0EAE1C889317008DAB36 /* Reader-Mark-Y.png */,
  2055. F70F0EAF1C889317008DAB36 /* Reader-Mark-Y@2x.png */,
  2056. F70F0EB01C889317008DAB36 /* Reader-Print.png */,
  2057. F70F0EB11C889317008DAB36 /* Reader-Print@2x.png */,
  2058. F70F0EB21C889317008DAB36 /* Reader-Thumbs.png */,
  2059. F70F0EB31C889317008DAB36 /* Reader-Thumbs@2x.png */,
  2060. );
  2061. path = Graphics;
  2062. sourceTree = "<group>";
  2063. };
  2064. F70F0EB41C889317008DAB36 /* Sources */ = {
  2065. isa = PBXGroup;
  2066. children = (
  2067. F70F0EB51C889317008DAB36 /* CGPDFDocument.h */,
  2068. F70F0EB61C889317008DAB36 /* CGPDFDocument.m */,
  2069. F70F0EB71C889317008DAB36 /* ReaderConstants.h */,
  2070. F70F0EB81C889317008DAB36 /* ReaderConstants.m */,
  2071. F70F0EB91C889317008DAB36 /* ReaderContentPage.h */,
  2072. F70F0EBA1C889317008DAB36 /* ReaderContentPage.m */,
  2073. F70F0EBB1C889317008DAB36 /* ReaderContentTile.h */,
  2074. F70F0EBC1C889317008DAB36 /* ReaderContentTile.m */,
  2075. F70F0EBD1C889317008DAB36 /* ReaderContentView.h */,
  2076. F70F0EBE1C889317008DAB36 /* ReaderContentView.m */,
  2077. F70F0EBF1C889317008DAB36 /* ReaderDocument.h */,
  2078. F70F0EC01C889317008DAB36 /* ReaderDocument.m */,
  2079. F70F0EC11C889317008DAB36 /* ReaderDocumentOutline.h */,
  2080. F70F0EC21C889317008DAB36 /* ReaderDocumentOutline.m */,
  2081. F70F0EC31C889317008DAB36 /* ReaderMainPagebar.h */,
  2082. F70F0EC41C889317008DAB36 /* ReaderMainPagebar.m */,
  2083. F70F0EC51C889317008DAB36 /* ReaderMainToolbar.h */,
  2084. F70F0EC61C889317008DAB36 /* ReaderMainToolbar.m */,
  2085. F70F0EC71C889317008DAB36 /* ReaderThumbCache.h */,
  2086. F70F0EC81C889317008DAB36 /* ReaderThumbCache.m */,
  2087. F70F0EC91C889317008DAB36 /* ReaderThumbFetch.h */,
  2088. F70F0ECA1C889317008DAB36 /* ReaderThumbFetch.m */,
  2089. F70F0ECB1C889317008DAB36 /* ReaderThumbQueue.h */,
  2090. F70F0ECC1C889317008DAB36 /* ReaderThumbQueue.m */,
  2091. F70F0ECD1C889317008DAB36 /* ReaderThumbRender.h */,
  2092. F70F0ECE1C889317008DAB36 /* ReaderThumbRender.m */,
  2093. F70F0ECF1C889317008DAB36 /* ReaderThumbRequest.h */,
  2094. F70F0ED01C889317008DAB36 /* ReaderThumbRequest.m */,
  2095. F70F0ED11C889317008DAB36 /* ReaderThumbsView.h */,
  2096. F70F0ED21C889317008DAB36 /* ReaderThumbsView.m */,
  2097. F70F0ED31C889317008DAB36 /* ReaderThumbView.h */,
  2098. F70F0ED41C889317008DAB36 /* ReaderThumbView.m */,
  2099. F70F0ED51C889317008DAB36 /* ReaderViewController.h */,
  2100. F70F0ED61C889317008DAB36 /* ReaderViewController.m */,
  2101. F70F0ED71C889317008DAB36 /* ThumbsMainToolbar.h */,
  2102. F70F0ED81C889317008DAB36 /* ThumbsMainToolbar.m */,
  2103. F70F0ED91C889317008DAB36 /* ThumbsViewController.h */,
  2104. F70F0EDA1C889317008DAB36 /* ThumbsViewController.m */,
  2105. F70F0EDB1C889317008DAB36 /* UIXToolbarView.h */,
  2106. F70F0EDC1C889317008DAB36 /* UIXToolbarView.m */,
  2107. );
  2108. path = Sources;
  2109. sourceTree = "<group>";
  2110. };
  2111. F70F0F251C889339008DAB36 /* LMMediaPlayer */ = {
  2112. isa = PBXGroup;
  2113. children = (
  2114. F70F0F261C889339008DAB36 /* Pod */,
  2115. );
  2116. path = LMMediaPlayer;
  2117. sourceTree = "<group>";
  2118. };
  2119. F70F0F261C889339008DAB36 /* Pod */ = {
  2120. isa = PBXGroup;
  2121. children = (
  2122. F70F0F271C889339008DAB36 /* Assets */,
  2123. F70F0F2A1C889339008DAB36 /* Classes */,
  2124. );
  2125. path = Pod;
  2126. sourceTree = "<group>";
  2127. };
  2128. F70F0F271C889339008DAB36 /* Assets */ = {
  2129. isa = PBXGroup;
  2130. children = (
  2131. F70F0F281C889339008DAB36 /* LMMediaPlayerView.bundle */,
  2132. F70F0F291C889339008DAB36 /* LMMediaPlayerView.xib */,
  2133. );
  2134. path = Assets;
  2135. sourceTree = "<group>";
  2136. };
  2137. F70F0F2A1C889339008DAB36 /* Classes */ = {
  2138. isa = PBXGroup;
  2139. children = (
  2140. F70F0F2B1C889339008DAB36 /* Category */,
  2141. F70F0F2F1C889339008DAB36 /* Hepler */,
  2142. F70F0F321C889339008DAB36 /* MediaPlayer */,
  2143. F70F0F3F1C889339008DAB36 /* MediaPlayerView */,
  2144. );
  2145. path = Classes;
  2146. sourceTree = "<group>";
  2147. };
  2148. F70F0F2B1C889339008DAB36 /* Category */ = {
  2149. isa = PBXGroup;
  2150. children = (
  2151. F70F0F2C1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle */,
  2152. );
  2153. path = Category;
  2154. sourceTree = "<group>";
  2155. };
  2156. F70F0F2C1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle */ = {
  2157. isa = PBXGroup;
  2158. children = (
  2159. F70F0F2D1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle.h */,
  2160. F70F0F2E1C889339008DAB36 /* NSArray+LMMediaPlayerShuffle.m */,
  2161. );
  2162. path = "NSArray+LMMediaPlayerShuffle";
  2163. sourceTree = "<group>";
  2164. };
  2165. F70F0F2F1C889339008DAB36 /* Hepler */ = {
  2166. isa = PBXGroup;
  2167. children = (
  2168. F70F0F301C889339008DAB36 /* LMMediaPlayerHelper.h */,
  2169. F70F0F311C889339008DAB36 /* LMMediaPlayerHelper.m */,
  2170. );
  2171. path = Hepler;
  2172. sourceTree = "<group>";
  2173. };
  2174. F70F0F321C889339008DAB36 /* MediaPlayer */ = {
  2175. isa = PBXGroup;
  2176. children = (
  2177. F70F0F331C889339008DAB36 /* LMMediaItem */,
  2178. F70F0F361C889339008DAB36 /* LMMediaItemQueueManager */,
  2179. F70F0F391C889339008DAB36 /* LMMediaItemStreamingCache */,
  2180. F70F0F3C1C889339008DAB36 /* LMMediaPlayer */,
  2181. );
  2182. path = MediaPlayer;
  2183. sourceTree = "<group>";
  2184. };
  2185. F70F0F331C889339008DAB36 /* LMMediaItem */ = {
  2186. isa = PBXGroup;
  2187. children = (
  2188. F70F0F341C889339008DAB36 /* LMMediaItem.h */,
  2189. F70F0F351C889339008DAB36 /* LMMediaItem.m */,
  2190. );
  2191. path = LMMediaItem;
  2192. sourceTree = "<group>";
  2193. };
  2194. F70F0F361C889339008DAB36 /* LMMediaItemQueueManager */ = {
  2195. isa = PBXGroup;
  2196. children = (
  2197. F70F0F371C889339008DAB36 /* LMMediaItemQueueManager.h */,
  2198. F70F0F381C889339008DAB36 /* LMMediaItemQueueManager.m */,
  2199. );
  2200. path = LMMediaItemQueueManager;
  2201. sourceTree = "<group>";
  2202. };
  2203. F70F0F391C889339008DAB36 /* LMMediaItemStreamingCache */ = {
  2204. isa = PBXGroup;
  2205. children = (
  2206. F70F0F3A1C889339008DAB36 /* LMMediaItemStreamingCache.h */,
  2207. F70F0F3B1C889339008DAB36 /* LMMediaItemStreamingCache.m */,
  2208. );
  2209. path = LMMediaItemStreamingCache;
  2210. sourceTree = "<group>";
  2211. };
  2212. F70F0F3C1C889339008DAB36 /* LMMediaPlayer */ = {
  2213. isa = PBXGroup;
  2214. children = (
  2215. F70F0F3D1C889339008DAB36 /* LMMediaPlayer.h */,
  2216. F70F0F3E1C889339008DAB36 /* LMMediaPlayer.m */,
  2217. );
  2218. path = LMMediaPlayer;
  2219. sourceTree = "<group>";
  2220. };
  2221. F70F0F3F1C889339008DAB36 /* MediaPlayerView */ = {
  2222. isa = PBXGroup;
  2223. children = (
  2224. F70F0F401C889339008DAB36 /* LMMediaPlayerView.h */,
  2225. F70F0F411C889339008DAB36 /* LMMediaPlayerView.m */,
  2226. );
  2227. path = MediaPlayerView;
  2228. sourceTree = "<group>";
  2229. };
  2230. F70F0F921C889487008DAB36 /* SSZipArchive */ = {
  2231. isa = PBXGroup;
  2232. children = (
  2233. F70F0F931C889487008DAB36 /* minizip */,
  2234. F70F0F9D1C889487008DAB36 /* SSZipArchive.h */,
  2235. F70F0F9E1C889487008DAB36 /* SSZipArchive.m */,
  2236. );
  2237. path = SSZipArchive;
  2238. sourceTree = "<group>";
  2239. };
  2240. F70F0F931C889487008DAB36 /* minizip */ = {
  2241. isa = PBXGroup;
  2242. children = (
  2243. F70F0F941C889487008DAB36 /* crypt.h */,
  2244. F70F0F951C889487008DAB36 /* ioapi.c */,
  2245. F70F0F961C889487008DAB36 /* ioapi.h */,
  2246. F70F0F971C889487008DAB36 /* mztools.c */,
  2247. F70F0F981C889487008DAB36 /* mztools.h */,
  2248. F70F0F991C889487008DAB36 /* unzip.c */,
  2249. F70F0F9A1C889487008DAB36 /* unzip.h */,
  2250. F70F0F9B1C889487008DAB36 /* zip.c */,
  2251. F70F0F9C1C889487008DAB36 /* zip.h */,
  2252. );
  2253. path = minizip;
  2254. sourceTree = "<group>";
  2255. };
  2256. F719FDAE1CF06645004895D0 /* PhotosCameraUpload */ = {
  2257. isa = PBXGroup;
  2258. children = (
  2259. F719FDB11CF06645004895D0 /* CCPhotosCameraUpload.h */,
  2260. F719FDB21CF06645004895D0 /* CCPhotosCameraUpload.m */,
  2261. );
  2262. path = PhotosCameraUpload;
  2263. sourceTree = "<group>";
  2264. };
  2265. F71E67F71DC1F76F003BA52B /* Products */ = {
  2266. isa = PBXGroup;
  2267. children = (
  2268. F71E67FC1DC1F76F003BA52B /* libownCloudiOS.a */,
  2269. F71E67FE1DC1F76F003BA52B /* ownCloud iOS libraryTests.xctest */,
  2270. );
  2271. name = Products;
  2272. sourceTree = "<group>";
  2273. };
  2274. F720E02A1E48C74C001A4B9E /* Actions */ = {
  2275. isa = PBXGroup;
  2276. children = (
  2277. F720E01E1E48C73E001A4B9E /* CCActions.swift */,
  2278. );
  2279. name = Actions;
  2280. sourceTree = "<group>";
  2281. };
  2282. F721371B1BAFF0920012B613 /* Templates */ = {
  2283. isa = PBXGroup;
  2284. children = (
  2285. F721371D1BAFF0920012B613 /* CCAccountWeb.h */,
  2286. F721371E1BAFF0920012B613 /* CCAccountWeb.m */,
  2287. F72137211BAFF0920012B613 /* CCBancomat.h */,
  2288. F72137221BAFF0920012B613 /* CCBancomat.m */,
  2289. F72137231BAFF0920012B613 /* CCCartaDiCredito.h */,
  2290. F72137241BAFF0920012B613 /* CCCartaDiCredito.m */,
  2291. F72137251BAFF0920012B613 /* CCCartaIdentita.h */,
  2292. F72137261BAFF0920012B613 /* CCCartaIdentita.m */,
  2293. F72137271BAFF0920012B613 /* CCContoCorrente.h */,
  2294. F72137281BAFF0920012B613 /* CCContoCorrente.m */,
  2295. F72137291BAFF0920012B613 /* CCNote.h */,
  2296. F721372A1BAFF0920012B613 /* CCNote.m */,
  2297. F721372B1BAFF0920012B613 /* CCPassaporto.h */,
  2298. F721372C1BAFF0920012B613 /* CCPassaporto.m */,
  2299. F721372D1BAFF0920012B613 /* CCPatenteGuida.h */,
  2300. F721372E1BAFF0920012B613 /* CCPatenteGuida.m */,
  2301. F721372F1BAFF0920012B613 /* CCTemplates.h */,
  2302. F72137301BAFF0920012B613 /* CCTemplates.m */,
  2303. );
  2304. path = Templates;
  2305. sourceTree = "<group>";
  2306. };
  2307. F7253FC71E38BAF20084135B /* JSAlertView */ = {
  2308. isa = PBXGroup;
  2309. children = (
  2310. F7253FC81E38BAF20084135B /* JSAlertView.h */,
  2311. F7253FC91E38BAF20084135B /* JSAlertView.m */,
  2312. );
  2313. path = JSAlertView;
  2314. sourceTree = "<group>";
  2315. };
  2316. F728CE741BF6322C00E69702 /* Share */ = {
  2317. isa = PBXGroup;
  2318. children = (
  2319. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */,
  2320. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */,
  2321. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */,
  2322. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */,
  2323. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */,
  2324. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */,
  2325. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */,
  2326. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */,
  2327. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */,
  2328. );
  2329. path = Share;
  2330. sourceTree = "<group>";
  2331. };
  2332. F7296A5F1C8880C9001A7809 /* Cell */ = {
  2333. isa = PBXGroup;
  2334. children = (
  2335. F7296A601C8880C9001A7809 /* CCCellShareExt.h */,
  2336. F7296A611C8880C9001A7809 /* CCCellShareExt.m */,
  2337. F7296A621C8880C9001A7809 /* CCCellShareExt.xib */,
  2338. );
  2339. path = Cell;
  2340. sourceTree = "<group>";
  2341. };
  2342. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  2343. isa = PBXGroup;
  2344. children = (
  2345. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  2346. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  2347. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  2348. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  2349. F72AAEC61E5C60C700BB17E1 /* UIImage+AHKAdditions.h */,
  2350. F72AAEC71E5C60C700BB17E1 /* UIImage+AHKAdditions.m */,
  2351. F72AAEC81E5C60C700BB17E1 /* UIWindow+AHKAdditions.h */,
  2352. F72AAEC91E5C60C700BB17E1 /* UIWindow+AHKAdditions.m */,
  2353. );
  2354. path = AHKActionSheet;
  2355. sourceTree = "<group>";
  2356. };
  2357. F72B60941A24F04E004EF66F /* Localizations */ = {
  2358. isa = PBXGroup;
  2359. children = (
  2360. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */,
  2361. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */,
  2362. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */,
  2363. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  2364. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */,
  2365. F744BE9F1BEBB69F004FFF66 /* Intro.strings */,
  2366. F7B381BF1C074E3E004693F8 /* Error.strings */,
  2367. );
  2368. name = Localizations;
  2369. sourceTree = "<group>";
  2370. };
  2371. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  2372. isa = PBXGroup;
  2373. children = (
  2374. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  2375. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  2376. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  2377. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  2378. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  2379. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  2380. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  2381. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  2382. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  2383. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  2384. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  2385. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  2386. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  2387. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  2388. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  2389. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  2390. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  2391. );
  2392. path = BKPasscodeView;
  2393. sourceTree = "<group>";
  2394. };
  2395. F73CCD7F1DC13775007E38D8 /* XLForm */ = {
  2396. isa = PBXGroup;
  2397. children = (
  2398. F73CCD801DC13775007E38D8 /* Info.plist */,
  2399. F73CCD811DC13775007E38D8 /* XL */,
  2400. F73CCDD51DC13776007E38D8 /* XLForm.bundle */,
  2401. );
  2402. path = XLForm;
  2403. sourceTree = "<group>";
  2404. };
  2405. F73CCD811DC13775007E38D8 /* XL */ = {
  2406. isa = PBXGroup;
  2407. children = (
  2408. F73CCD821DC13775007E38D8 /* Cell */,
  2409. F73CCDA51DC13776007E38D8 /* Controllers */,
  2410. F73CCDAD1DC13776007E38D8 /* Descriptors */,
  2411. F73CCDB51DC13776007E38D8 /* Helpers */,
  2412. F73CCDCB1DC13776007E38D8 /* Validation */,
  2413. F73CCDD31DC13776007E38D8 /* XLForm.h */,
  2414. F73CCDD41DC13776007E38D8 /* XLForm.m */,
  2415. );
  2416. path = XL;
  2417. sourceTree = "<group>";
  2418. };
  2419. F73CCD821DC13775007E38D8 /* Cell */ = {
  2420. isa = PBXGroup;
  2421. children = (
  2422. F73CCD831DC13775007E38D8 /* XLFormBaseCell.h */,
  2423. F73CCD841DC13775007E38D8 /* XLFormBaseCell.m */,
  2424. F73CCD851DC13775007E38D8 /* XLFormButtonCell.h */,
  2425. F73CCD861DC13775007E38D8 /* XLFormButtonCell.m */,
  2426. F73CCD871DC13775007E38D8 /* XLFormCheckCell.h */,
  2427. F73CCD881DC13775007E38D8 /* XLFormCheckCell.m */,
  2428. F73CCD891DC13775007E38D8 /* XLFormDateCell.h */,
  2429. F73CCD8A1DC13775007E38D8 /* XLFormDateCell.m */,
  2430. F73CCD8B1DC13775007E38D8 /* XLFormDatePickerCell.h */,
  2431. F73CCD8C1DC13775007E38D8 /* XLFormDatePickerCell.m */,
  2432. F73CCD8D1DC13775007E38D8 /* XLFormDescriptorCell.h */,
  2433. F73CCD8E1DC13776007E38D8 /* XLFormImageCell.h */,
  2434. F73CCD8F1DC13776007E38D8 /* XLFormImageCell.m */,
  2435. F73CCD901DC13776007E38D8 /* XLFormInlineRowDescriptorCell.h */,
  2436. F73CCD911DC13776007E38D8 /* XLFormInlineSelectorCell.h */,
  2437. F73CCD921DC13776007E38D8 /* XLFormInlineSelectorCell.m */,
  2438. F73CCD931DC13776007E38D8 /* XLFormLeftRightSelectorCell.h */,
  2439. F73CCD941DC13776007E38D8 /* XLFormLeftRightSelectorCell.m */,
  2440. F73CCD951DC13776007E38D8 /* XLFormPickerCell.h */,
  2441. F73CCD961DC13776007E38D8 /* XLFormPickerCell.m */,
  2442. F73CCD971DC13776007E38D8 /* XLFormSegmentedCell.h */,
  2443. F73CCD981DC13776007E38D8 /* XLFormSegmentedCell.m */,
  2444. F73CCD991DC13776007E38D8 /* XLFormSelectorCell.h */,
  2445. F73CCD9A1DC13776007E38D8 /* XLFormSelectorCell.m */,
  2446. F73CCD9B1DC13776007E38D8 /* XLFormSliderCell.h */,
  2447. F73CCD9C1DC13776007E38D8 /* XLFormSliderCell.m */,
  2448. F73CCD9D1DC13776007E38D8 /* XLFormStepCounterCell.h */,
  2449. F73CCD9E1DC13776007E38D8 /* XLFormStepCounterCell.m */,
  2450. F73CCD9F1DC13776007E38D8 /* XLFormSwitchCell.h */,
  2451. F73CCDA01DC13776007E38D8 /* XLFormSwitchCell.m */,
  2452. F73CCDA11DC13776007E38D8 /* XLFormTextFieldCell.h */,
  2453. F73CCDA21DC13776007E38D8 /* XLFormTextFieldCell.m */,
  2454. F73CCDA31DC13776007E38D8 /* XLFormTextViewCell.h */,
  2455. F73CCDA41DC13776007E38D8 /* XLFormTextViewCell.m */,
  2456. );
  2457. path = Cell;
  2458. sourceTree = "<group>";
  2459. };
  2460. F73CCDA51DC13776007E38D8 /* Controllers */ = {
  2461. isa = PBXGroup;
  2462. children = (
  2463. F73CCDA61DC13776007E38D8 /* XLFormOptionsObject.h */,
  2464. F73CCDA71DC13776007E38D8 /* XLFormOptionsObject.m */,
  2465. F73CCDA81DC13776007E38D8 /* XLFormOptionsViewController.h */,
  2466. F73CCDA91DC13776007E38D8 /* XLFormOptionsViewController.m */,
  2467. F73CCDAA1DC13776007E38D8 /* XLFormRowDescriptorViewController.h */,
  2468. F73CCDAB1DC13776007E38D8 /* XLFormViewController.h */,
  2469. F73CCDAC1DC13776007E38D8 /* XLFormViewController.m */,
  2470. );
  2471. path = Controllers;
  2472. sourceTree = "<group>";
  2473. };
  2474. F73CCDAD1DC13776007E38D8 /* Descriptors */ = {
  2475. isa = PBXGroup;
  2476. children = (
  2477. F73CCDAE1DC13776007E38D8 /* XLFormDescriptor.h */,
  2478. F73CCDAF1DC13776007E38D8 /* XLFormDescriptor.m */,
  2479. F73CCDB01DC13776007E38D8 /* XLFormDescriptorDelegate.h */,
  2480. F73CCDB11DC13776007E38D8 /* XLFormRowDescriptor.h */,
  2481. F73CCDB21DC13776007E38D8 /* XLFormRowDescriptor.m */,
  2482. F73CCDB31DC13776007E38D8 /* XLFormSectionDescriptor.h */,
  2483. F73CCDB41DC13776007E38D8 /* XLFormSectionDescriptor.m */,
  2484. );
  2485. path = Descriptors;
  2486. sourceTree = "<group>";
  2487. };
  2488. F73CCDB51DC13776007E38D8 /* Helpers */ = {
  2489. isa = PBXGroup;
  2490. children = (
  2491. F73CCDB61DC13776007E38D8 /* NSArray+XLFormAdditions.h */,
  2492. F73CCDB71DC13776007E38D8 /* NSArray+XLFormAdditions.m */,
  2493. F73CCDB81DC13776007E38D8 /* NSExpression+XLFormAdditions.h */,
  2494. F73CCDB91DC13776007E38D8 /* NSExpression+XLFormAdditions.m */,
  2495. F73CCDBA1DC13776007E38D8 /* NSObject+XLFormAdditions.h */,
  2496. F73CCDBB1DC13776007E38D8 /* NSObject+XLFormAdditions.m */,
  2497. F73CCDBC1DC13776007E38D8 /* NSPredicate+XLFormAdditions.h */,
  2498. F73CCDBD1DC13776007E38D8 /* NSPredicate+XLFormAdditions.m */,
  2499. F73CCDBE1DC13776007E38D8 /* NSString+XLFormAdditions.h */,
  2500. F73CCDBF1DC13776007E38D8 /* NSString+XLFormAdditions.m */,
  2501. F73CCDC01DC13776007E38D8 /* UIView+XLFormAdditions.h */,
  2502. F73CCDC11DC13776007E38D8 /* UIView+XLFormAdditions.m */,
  2503. F73CCDC21DC13776007E38D8 /* Views */,
  2504. );
  2505. path = Helpers;
  2506. sourceTree = "<group>";
  2507. };
  2508. F73CCDC21DC13776007E38D8 /* Views */ = {
  2509. isa = PBXGroup;
  2510. children = (
  2511. F73CCDC31DC13776007E38D8 /* XLFormRightDetailCell.h */,
  2512. F73CCDC41DC13776007E38D8 /* XLFormRightDetailCell.m */,
  2513. F73CCDC51DC13776007E38D8 /* XLFormRightImageButton.h */,
  2514. F73CCDC61DC13776007E38D8 /* XLFormRightImageButton.m */,
  2515. F73CCDC71DC13776007E38D8 /* XLFormRowNavigationAccessoryView.h */,
  2516. F73CCDC81DC13776007E38D8 /* XLFormRowNavigationAccessoryView.m */,
  2517. F73CCDC91DC13776007E38D8 /* XLFormTextView.h */,
  2518. F73CCDCA1DC13776007E38D8 /* XLFormTextView.m */,
  2519. );
  2520. path = Views;
  2521. sourceTree = "<group>";
  2522. };
  2523. F73CCDCB1DC13776007E38D8 /* Validation */ = {
  2524. isa = PBXGroup;
  2525. children = (
  2526. F73CCDCC1DC13776007E38D8 /* XLFormRegexValidator.h */,
  2527. F73CCDCD1DC13776007E38D8 /* XLFormRegexValidator.m */,
  2528. F73CCDCE1DC13776007E38D8 /* XLFormValidationStatus.h */,
  2529. F73CCDCF1DC13776007E38D8 /* XLFormValidationStatus.m */,
  2530. F73CCDD01DC13776007E38D8 /* XLFormValidator.h */,
  2531. F73CCDD11DC13776007E38D8 /* XLFormValidator.m */,
  2532. F73CCDD21DC13776007E38D8 /* XLFormValidatorProtocol.h */,
  2533. );
  2534. path = Validation;
  2535. sourceTree = "<group>";
  2536. };
  2537. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */ = {
  2538. isa = PBXGroup;
  2539. children = (
  2540. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */,
  2541. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */,
  2542. );
  2543. path = DZNEmptyDataSet;
  2544. sourceTree = "<group>";
  2545. };
  2546. F73CCE271DC13798007E38D8 /* UICKeyChainStore */ = {
  2547. isa = PBXGroup;
  2548. children = (
  2549. F73CCE281DC13798007E38D8 /* Info.plist */,
  2550. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */,
  2551. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */,
  2552. );
  2553. path = UICKeyChainStore;
  2554. sourceTree = "<group>";
  2555. };
  2556. F74344131E1264EE001CC831 /* Picker */ = {
  2557. isa = PBXGroup;
  2558. children = (
  2559. F7C742D71E7BD5C900D9C973 /* MainInterface.storyboard */,
  2560. F74344161E1264EE001CC831 /* DocumentPickerViewController.swift */,
  2561. F74344521E126D06001CC831 /* Picker-Bridging-Header.h */,
  2562. );
  2563. path = Picker;
  2564. sourceTree = "<group>";
  2565. };
  2566. F74344211E1264EE001CC831 /* PickerFileProvider */ = {
  2567. isa = PBXGroup;
  2568. children = (
  2569. F7F54CAB1E5AFF1E00E19C62 /* PickerFileProvider-Bridging-Header.h */,
  2570. F74344241E1264EE001CC831 /* FileProvider.swift */,
  2571. );
  2572. path = PickerFileProvider;
  2573. sourceTree = "<group>";
  2574. };
  2575. F744BE911BEBB2EE004FFF66 /* Intro */ = {
  2576. isa = PBXGroup;
  2577. children = (
  2578. F744BE961BEBB31E004FFF66 /* ImagesIntro.xcassets */,
  2579. F744BE921BEBB2EE004FFF66 /* CCIntro.h */,
  2580. F744BE931BEBB2EE004FFF66 /* CCIntro.m */,
  2581. );
  2582. path = Intro;
  2583. sourceTree = "<group>";
  2584. };
  2585. F744FA7B1E57333C00BFAB34 /* APAvatarImageView */ = {
  2586. isa = PBXGroup;
  2587. children = (
  2588. F744FA7C1E57333C00BFAB34 /* APAvatarImageView.h */,
  2589. F744FA7D1E57333C00BFAB34 /* APAvatarImageView.m */,
  2590. );
  2591. path = APAvatarImageView;
  2592. sourceTree = "<group>";
  2593. };
  2594. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  2595. isa = PBXGroup;
  2596. children = (
  2597. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  2598. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  2599. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  2600. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  2601. );
  2602. path = Networking;
  2603. sourceTree = "<group>";
  2604. };
  2605. F75037421DBFA91A008FB480 /* PureLayout */ = {
  2606. isa = PBXGroup;
  2607. children = (
  2608. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  2609. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  2610. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  2611. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  2612. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  2613. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  2614. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  2615. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  2616. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  2617. );
  2618. path = PureLayout;
  2619. sourceTree = "<group>";
  2620. };
  2621. F7540EE11D5B238600C3FFA8 /* openssl */ = {
  2622. isa = PBXGroup;
  2623. children = (
  2624. F70A63061D5B3467004E2AA5 /* libcrypto.a */,
  2625. F70A63071D5B3467004E2AA5 /* libssl.a */,
  2626. F7540EE21D5B238600C3FFA8 /* aes.h */,
  2627. F7540EE31D5B238600C3FFA8 /* asn1.h */,
  2628. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */,
  2629. F7540EE51D5B238600C3FFA8 /* asn1t.h */,
  2630. F7540EE61D5B238600C3FFA8 /* bio.h */,
  2631. F7540EE71D5B238600C3FFA8 /* blowfish.h */,
  2632. F7540EE81D5B238600C3FFA8 /* bn.h */,
  2633. F7540EE91D5B238600C3FFA8 /* buffer.h */,
  2634. F7540EEA1D5B238600C3FFA8 /* camellia.h */,
  2635. F7540EEB1D5B238600C3FFA8 /* cast.h */,
  2636. F7540EEC1D5B238600C3FFA8 /* cmac.h */,
  2637. F7540EED1D5B238600C3FFA8 /* cms.h */,
  2638. F7540EEE1D5B238600C3FFA8 /* comp.h */,
  2639. F7540EEF1D5B238600C3FFA8 /* conf.h */,
  2640. F7540EF01D5B238600C3FFA8 /* conf_api.h */,
  2641. F7540EF11D5B238600C3FFA8 /* crypto.h */,
  2642. F7540EF21D5B238600C3FFA8 /* des.h */,
  2643. F7540EF31D5B238600C3FFA8 /* des_old.h */,
  2644. F7540EF41D5B238600C3FFA8 /* dh.h */,
  2645. F7540EF51D5B238600C3FFA8 /* dsa.h */,
  2646. F7540EF61D5B238600C3FFA8 /* dso.h */,
  2647. F7540EF71D5B238600C3FFA8 /* dtls1.h */,
  2648. F7540EF81D5B238600C3FFA8 /* e_os2.h */,
  2649. F7540EF91D5B238600C3FFA8 /* ebcdic.h */,
  2650. F7540EFA1D5B238600C3FFA8 /* ec.h */,
  2651. F7540EFB1D5B238600C3FFA8 /* ecdh.h */,
  2652. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */,
  2653. F7540EFD1D5B238600C3FFA8 /* engine.h */,
  2654. F7540EFE1D5B238600C3FFA8 /* err.h */,
  2655. F7540EFF1D5B238600C3FFA8 /* evp.h */,
  2656. F7540F001D5B238600C3FFA8 /* hmac.h */,
  2657. F7540F011D5B238600C3FFA8 /* idea.h */,
  2658. F7540F021D5B238600C3FFA8 /* krb5_asn.h */,
  2659. F7540F031D5B238600C3FFA8 /* kssl.h */,
  2660. F7540F041D5B238600C3FFA8 /* lhash.h */,
  2661. F7540F051D5B238600C3FFA8 /* md4.h */,
  2662. F7540F061D5B238600C3FFA8 /* md5.h */,
  2663. F7540F071D5B238600C3FFA8 /* mdc2.h */,
  2664. F7540F081D5B238600C3FFA8 /* modes.h */,
  2665. F7540F091D5B238600C3FFA8 /* obj_mac.h */,
  2666. F7540F0A1D5B238600C3FFA8 /* objects.h */,
  2667. F7540F0B1D5B238600C3FFA8 /* ocsp.h */,
  2668. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */,
  2669. F7540F0D1D5B238600C3FFA8 /* opensslv.h */,
  2670. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */,
  2671. F7540F0F1D5B238600C3FFA8 /* pem.h */,
  2672. F7540F101D5B238600C3FFA8 /* pem2.h */,
  2673. F7540F111D5B238600C3FFA8 /* pkcs12.h */,
  2674. F7540F121D5B238600C3FFA8 /* pkcs7.h */,
  2675. F7540F131D5B238600C3FFA8 /* pqueue.h */,
  2676. F7540F141D5B238600C3FFA8 /* rand.h */,
  2677. F7540F151D5B238600C3FFA8 /* rc2.h */,
  2678. F7540F161D5B238600C3FFA8 /* rc4.h */,
  2679. F7540F171D5B238600C3FFA8 /* ripemd.h */,
  2680. F7540F181D5B238600C3FFA8 /* rsa.h */,
  2681. F7540F191D5B238600C3FFA8 /* safestack.h */,
  2682. F7540F1A1D5B238600C3FFA8 /* seed.h */,
  2683. F7540F1B1D5B238600C3FFA8 /* sha.h */,
  2684. F7540F1C1D5B238600C3FFA8 /* srp.h */,
  2685. F7540F1D1D5B238600C3FFA8 /* srtp.h */,
  2686. F7540F1E1D5B238600C3FFA8 /* ssl.h */,
  2687. F7540F1F1D5B238600C3FFA8 /* ssl2.h */,
  2688. F7540F201D5B238600C3FFA8 /* ssl23.h */,
  2689. F7540F211D5B238600C3FFA8 /* ssl3.h */,
  2690. F7540F221D5B238600C3FFA8 /* stack.h */,
  2691. F7540F231D5B238600C3FFA8 /* symhacks.h */,
  2692. F7540F241D5B238600C3FFA8 /* tls1.h */,
  2693. F7540F251D5B238600C3FFA8 /* ts.h */,
  2694. F7540F261D5B238600C3FFA8 /* txt_db.h */,
  2695. F7540F271D5B238600C3FFA8 /* ui.h */,
  2696. F7540F281D5B238600C3FFA8 /* ui_compat.h */,
  2697. F7540F291D5B238600C3FFA8 /* whrlpool.h */,
  2698. F7540F2A1D5B238600C3FFA8 /* x509.h */,
  2699. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */,
  2700. F7540F2C1D5B238600C3FFA8 /* x509v3.h */,
  2701. );
  2702. path = openssl;
  2703. sourceTree = "<group>";
  2704. };
  2705. F7659A211DC0B726004860C4 /* EAIntroView */ = {
  2706. isa = PBXGroup;
  2707. children = (
  2708. F7659A221DC0B726004860C4 /* EAIntroPage.h */,
  2709. F7659A231DC0B726004860C4 /* EAIntroPage.m */,
  2710. F7659A241DC0B726004860C4 /* EAIntroView.h */,
  2711. F7659A251DC0B726004860C4 /* EAIntroView.m */,
  2712. );
  2713. path = EAIntroView;
  2714. sourceTree = "<group>";
  2715. };
  2716. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */ = {
  2717. isa = PBXGroup;
  2718. children = (
  2719. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */,
  2720. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */,
  2721. );
  2722. path = EARestrictedScrollView;
  2723. sourceTree = "<group>";
  2724. };
  2725. F7659A2F1DC0B737004860C4 /* iRate */ = {
  2726. isa = PBXGroup;
  2727. children = (
  2728. F7659A301DC0B737004860C4 /* Info.plist */,
  2729. F7659A311DC0B737004860C4 /* iRate.bundle */,
  2730. F7659A321DC0B737004860C4 /* iRate.h */,
  2731. F7659A331DC0B737004860C4 /* iRate.m */,
  2732. );
  2733. path = iRate;
  2734. sourceTree = "<group>";
  2735. };
  2736. F7659A3A1DC0B760004860C4 /* PSTCollectionView */ = {
  2737. isa = PBXGroup;
  2738. children = (
  2739. F7659A3B1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.h */,
  2740. F7659A3C1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m */,
  2741. F7659A3D1DC0B760004860C4 /* PSTCollectionView.h */,
  2742. F7659A3E1DC0B760004860C4 /* PSTCollectionView.m */,
  2743. F7659A3F1DC0B760004860C4 /* PSTCollectionViewCell.h */,
  2744. F7659A401DC0B760004860C4 /* PSTCollectionViewCell.m */,
  2745. F7659A411DC0B760004860C4 /* PSTCollectionViewCommon.h */,
  2746. F7659A421DC0B760004860C4 /* PSTCollectionViewController.h */,
  2747. F7659A431DC0B760004860C4 /* PSTCollectionViewController.m */,
  2748. F7659A441DC0B760004860C4 /* PSTCollectionViewData.h */,
  2749. F7659A451DC0B760004860C4 /* PSTCollectionViewData.m */,
  2750. F7659A461DC0B760004860C4 /* PSTCollectionViewFlowLayout.h */,
  2751. F7659A471DC0B760004860C4 /* PSTCollectionViewFlowLayout.m */,
  2752. F7659A481DC0B760004860C4 /* PSTCollectionViewItemKey.h */,
  2753. F7659A491DC0B760004860C4 /* PSTCollectionViewItemKey.m */,
  2754. F7659A4A1DC0B760004860C4 /* PSTCollectionViewLayout+Internals.h */,
  2755. F7659A4B1DC0B760004860C4 /* PSTCollectionViewLayout.h */,
  2756. F7659A4C1DC0B760004860C4 /* PSTCollectionViewLayout.m */,
  2757. F7659A4D1DC0B760004860C4 /* PSTCollectionViewUpdateItem.h */,
  2758. F7659A4E1DC0B760004860C4 /* PSTCollectionViewUpdateItem.m */,
  2759. F7659A4F1DC0B760004860C4 /* PSTGridLayoutInfo.h */,
  2760. F7659A501DC0B760004860C4 /* PSTGridLayoutInfo.m */,
  2761. F7659A511DC0B760004860C4 /* PSTGridLayoutItem.h */,
  2762. F7659A521DC0B760004860C4 /* PSTGridLayoutItem.m */,
  2763. F7659A531DC0B760004860C4 /* PSTGridLayoutRow.h */,
  2764. F7659A541DC0B760004860C4 /* PSTGridLayoutRow.m */,
  2765. F7659A551DC0B760004860C4 /* PSTGridLayoutSection.h */,
  2766. F7659A561DC0B760004860C4 /* PSTGridLayoutSection.m */,
  2767. );
  2768. path = PSTCollectionView;
  2769. sourceTree = "<group>";
  2770. };
  2771. F7676A601D5CB1B900DF734C /* TWMessageBarManager */ = {
  2772. isa = PBXGroup;
  2773. children = (
  2774. F7676A711D5CB2A300DF734C /* Icons */,
  2775. F7676A611D5CB1B900DF734C /* TWMessageBarManager.h */,
  2776. F7676A621D5CB1B900DF734C /* TWMessageBarManager.m */,
  2777. );
  2778. path = TWMessageBarManager;
  2779. sourceTree = "<group>";
  2780. };
  2781. F7676A711D5CB2A300DF734C /* Icons */ = {
  2782. isa = PBXGroup;
  2783. children = (
  2784. F7676A721D5CB2A300DF734C /* icon-error.png */,
  2785. F7676A731D5CB2A300DF734C /* icon-error@2x.png */,
  2786. F7676A741D5CB2A300DF734C /* icon-info.png */,
  2787. F7676A751D5CB2A400DF734C /* icon-info@2x.png */,
  2788. F7676A761D5CB2A400DF734C /* icon-success.png */,
  2789. F7676A771D5CB2A400DF734C /* icon-success@2x.png */,
  2790. );
  2791. path = Icons;
  2792. sourceTree = "<group>";
  2793. };
  2794. F77F86401B4ABF6D009F0A10 /* Table */ = {
  2795. isa = PBXGroup;
  2796. children = (
  2797. F7FB5F181E66EB7200389481 /* TableActivity+CoreDataClass.h */,
  2798. F7FB5F191E66EB7200389481 /* TableActivity+CoreDataClass.m */,
  2799. F7FB5F1A1E66EB7200389481 /* TableActivity+CoreDataProperties.h */,
  2800. F7FB5F1B1E66EB7200389481 /* TableActivity+CoreDataProperties.m */,
  2801. F708CF4D1E56E8CB00271D8B /* TableMetadata+CoreDataClass.h */,
  2802. F708CF4E1E56E8CB00271D8B /* TableMetadata+CoreDataClass.m */,
  2803. F708CF4F1E56E8CB00271D8B /* TableMetadata+CoreDataProperties.h */,
  2804. F708CF501E56E8CB00271D8B /* TableMetadata+CoreDataProperties.m */,
  2805. F708CF511E56E8CB00271D8B /* TableLocalFile+CoreDataClass.h */,
  2806. F708CF521E56E8CB00271D8B /* TableLocalFile+CoreDataClass.m */,
  2807. F708CF531E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.h */,
  2808. F708CF541E56E8CB00271D8B /* TableLocalFile+CoreDataProperties.m */,
  2809. F708CF551E56E8CB00271D8B /* TableGPS+CoreDataClass.h */,
  2810. F708CF561E56E8CB00271D8B /* TableGPS+CoreDataClass.m */,
  2811. F708CF571E56E8CC00271D8B /* TableGPS+CoreDataProperties.h */,
  2812. F708CF581E56E8CC00271D8B /* TableGPS+CoreDataProperties.m */,
  2813. F708CF591E56E8CC00271D8B /* TableDirectory+CoreDataClass.h */,
  2814. F708CF5A1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m */,
  2815. F708CF5B1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.h */,
  2816. F708CF5C1E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m */,
  2817. F708CF5D1E56E8CC00271D8B /* TableShare+CoreDataClass.h */,
  2818. F708CF5E1E56E8CC00271D8B /* TableShare+CoreDataClass.m */,
  2819. F708CF5F1E56E8CC00271D8B /* TableShare+CoreDataProperties.h */,
  2820. F708CF601E56E8CC00271D8B /* TableShare+CoreDataProperties.m */,
  2821. F708CF611E56E8CC00271D8B /* TableCertificates+CoreDataClass.h */,
  2822. F708CF621E56E8CC00271D8B /* TableCertificates+CoreDataClass.m */,
  2823. F708CF631E56E8CC00271D8B /* TableCertificates+CoreDataProperties.h */,
  2824. F708CF641E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m */,
  2825. F708CF651E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.h */,
  2826. F708CF661E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m */,
  2827. F708CF671E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.h */,
  2828. F708CF681E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m */,
  2829. F708CF691E56E8CC00271D8B /* TableAccount+CoreDataClass.h */,
  2830. F708CF6A1E56E8CC00271D8B /* TableAccount+CoreDataClass.m */,
  2831. F708CF6B1E56E8CC00271D8B /* TableAccount+CoreDataProperties.h */,
  2832. F708CF6C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m */,
  2833. );
  2834. name = Table;
  2835. sourceTree = "<group>";
  2836. };
  2837. F7A139FE1E7F3D5D00016680 /* CCProgress */ = {
  2838. isa = PBXGroup;
  2839. children = (
  2840. F7A139FF1E7F3D5D00016680 /* CCProgressView.h */,
  2841. F7A13A001E7F3D5D00016680 /* CCProgressView.m */,
  2842. F7A13A011E7F3D5D00016680 /* UINavigationController+CCProgress.h */,
  2843. F7A13A021E7F3D5D00016680 /* UINavigationController+CCProgress.m */,
  2844. );
  2845. path = CCProgress;
  2846. sourceTree = "<group>";
  2847. };
  2848. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2849. isa = PBXGroup;
  2850. children = (
  2851. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2852. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2853. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2854. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2855. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2856. F7ACE42E1BAC0268006C0017 /* CCManageCameraUpload.h */,
  2857. F7ACE42F1BAC0268006C0017 /* CCManageCameraUpload.m */,
  2858. F7F6AC4C1E525AD300E8EB45 /* CCManageCryptoCloud.h */,
  2859. F7F6AC4D1E525AD300E8EB45 /* CCManageCryptoCloud.m */,
  2860. F73C002D1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.h */,
  2861. F73C002E1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m */,
  2862. F7FEB6CE1BECADC100E7C415 /* CCManageHelp.h */,
  2863. F7FEB6CF1BECADC100E7C415 /* CCManageHelp.m */,
  2864. F7AB79EF1BB1A3AD00A82F32 /* CCManageOptimizations.h */,
  2865. F7AB79F01BB1A3AD00A82F32 /* CCManageOptimizations.m */,
  2866. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  2867. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  2868. );
  2869. path = Settings;
  2870. sourceTree = "<group>";
  2871. };
  2872. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */ = {
  2873. isa = PBXGroup;
  2874. children = (
  2875. F7B1FBB01E72E3D1001781FE /* Resources */,
  2876. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */,
  2877. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */,
  2878. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */,
  2879. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */,
  2880. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */,
  2881. );
  2882. path = SwiftWebVC;
  2883. sourceTree = "<group>";
  2884. };
  2885. F7B1FBB01E72E3D1001781FE /* Resources */ = {
  2886. isa = PBXGroup;
  2887. children = (
  2888. F7B1FBB11E72E3D1001781FE /* Media.xcassets */,
  2889. );
  2890. path = Resources;
  2891. sourceTree = "<group>";
  2892. };
  2893. F7B61E871DC13C20009E938F /* Products */ = {
  2894. isa = PBXGroup;
  2895. children = (
  2896. F7B61E931DC13C20009E938F /* MagicalRecord.framework */,
  2897. F7B61E951DC13C20009E938F /* MagicalRecord for iOS Tests.xctest */,
  2898. F7B61E971DC13C20009E938F /* MagicalRecord.framework */,
  2899. F7B61E991DC13C20009E938F /* MagicalRecord for OS X Tests.xctest */,
  2900. F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */,
  2901. F7B61E9D1DC13C20009E938F /* libMagicalRecord for iOS Tests.xctest */,
  2902. F7B61E9F1DC13C20009E938F /* libMagicalRecord.dylib */,
  2903. F7B61EA11DC13C20009E938F /* libMagicalRecord for OS X Tests.xctest */,
  2904. );
  2905. name = Products;
  2906. sourceTree = "<group>";
  2907. };
  2908. F7BE6E2A1D2D5C3B00106933 /* QuickActions */ = {
  2909. isa = PBXGroup;
  2910. children = (
  2911. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */,
  2912. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */,
  2913. );
  2914. path = QuickActions;
  2915. sourceTree = "<group>";
  2916. };
  2917. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  2918. isa = PBXGroup;
  2919. children = (
  2920. F7BFCCBE1B68C21900548E76 /* CCManageAsset.h */,
  2921. F7BFCCBF1B68C21900548E76 /* CCManageAsset.m */,
  2922. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  2923. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  2924. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  2925. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  2926. );
  2927. path = "ManageLocation+ManageAsset";
  2928. sourceTree = "<group>";
  2929. };
  2930. F7BFFA621A24D7300044ED85 /* Login */ = {
  2931. isa = PBXGroup;
  2932. children = (
  2933. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  2934. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  2935. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  2936. );
  2937. path = Login;
  2938. sourceTree = "<group>";
  2939. };
  2940. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2941. isa = PBXGroup;
  2942. children = (
  2943. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  2944. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  2945. F76C3B871C638A4C00DC4301 /* CCError.h */,
  2946. F76C3B881C638A4C00DC4301 /* CCError.m */,
  2947. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  2948. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  2949. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  2950. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  2951. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2952. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2953. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  2954. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  2955. );
  2956. path = Utility;
  2957. sourceTree = "<group>";
  2958. };
  2959. F7C00D411E2D0D0F0032160B /* Favorite+Offline+Synchronize */ = {
  2960. isa = PBXGroup;
  2961. children = (
  2962. F7C00D421E2D0D0F0032160B /* CCCellOffline.h */,
  2963. F7C00D431E2D0D0F0032160B /* CCCellOffline.m */,
  2964. F7C00D441E2D0D0F0032160B /* CCCellOffline.xib */,
  2965. F7FB5F111E66CDCB00389481 /* CCOfflineContainer.h */,
  2966. F7FB5F121E66CDCB00389481 /* CCOfflineContainer.m */,
  2967. F7DA62AC1E41E666003E1740 /* CCOfflinePageContent.h */,
  2968. F7DA62AD1E41E666003E1740 /* CCOfflinePageContent.m */,
  2969. F7EC14791E5D9C0B0046F351 /* CCSynchronize.h */,
  2970. F7EC147A1E5D9C0B0046F351 /* CCSynchronize.m */,
  2971. );
  2972. name = "Favorite+Offline+Synchronize";
  2973. path = Offline;
  2974. sourceTree = "<group>";
  2975. };
  2976. F7C0F46D1C8880540059EC54 /* Share */ = {
  2977. isa = PBXGroup;
  2978. children = (
  2979. F7296A5F1C8880C9001A7809 /* Cell */,
  2980. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  2981. F7EF0CAC1D9E95EC00A9D15E /* CCSharedDBSession.h */,
  2982. F7EF0CAD1D9E95F400A9D15E /* CCSharedDBSession.m */,
  2983. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  2984. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  2985. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  2986. F7E456D41C89D54A00BD63F0 /* Share Ext-Bridging-Header.h */,
  2987. );
  2988. name = Share;
  2989. path = "Share Ext";
  2990. sourceTree = "<group>";
  2991. };
  2992. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2993. isa = PBXGroup;
  2994. children = (
  2995. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  2996. F7F7638B1E783EF6009FED20 /* DevicePushKey-Info.plist */,
  2997. F7274FEC1E6EB6F400C241B6 /* Constant.swift */,
  2998. F7C1CDDA1E6DFC6F005D92BE /* CCNextcloudConstant.h */,
  2999. F7C1CDDB1E6DFC6F005D92BE /* CCNextcloudImages.h */,
  3000. );
  3001. path = Brand;
  3002. sourceTree = "<group>";
  3003. };
  3004. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  3005. isa = PBXGroup;
  3006. children = (
  3007. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  3008. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  3009. );
  3010. name = Notification;
  3011. sourceTree = "<group>";
  3012. };
  3013. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  3014. isa = PBXGroup;
  3015. children = (
  3016. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  3017. F7C742E61E7BD71A00D9C973 /* PickerFileProvider.entitlements */,
  3018. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  3019. F7C742D41E7BD44400D9C973 /* Picker.entitlements */,
  3020. );
  3021. name = "Supporting Files";
  3022. sourceTree = "<group>";
  3023. };
  3024. F7D6A0881D82DBFA0045AD1A /* ControlCenter+MenuAccount */ = {
  3025. isa = PBXGroup;
  3026. children = (
  3027. F72AE40A1E67246200B3E477 /* ControlCenter.storyboard */,
  3028. F7D6A0891D82DBFA0045AD1A /* CCControlCenter.h */,
  3029. F7D6A08A1D82DBFA0045AD1A /* CCControlCenter.m */,
  3030. F7D6A08B1D82DBFA0045AD1A /* CCControlCenterTransferCell.h */,
  3031. F7D6A08C1D82DBFA0045AD1A /* CCControlCenterTransferCell.m */,
  3032. F7D6A08D1D82DBFA0045AD1A /* CCControlCenterTransferCell.xib */,
  3033. F70FD1C51E67552700C0FDA6 /* CCControlCenterTransfer.h */,
  3034. F70FD1C61E67552700C0FDA6 /* CCControlCenterTransfer.m */,
  3035. F70FD1C91E675F1500C0FDA6 /* CCControlCenterActivity.h */,
  3036. F70FD1CA1E675F1500C0FDA6 /* CCControlCenterActivity.m */,
  3037. F7D6A08E1D82DBFA0045AD1A /* CCMenu.h */,
  3038. F7D6A08F1D82DBFA0045AD1A /* CCMenu.m */,
  3039. );
  3040. name = "ControlCenter+MenuAccount";
  3041. path = "MenuAccount+ControlCenter";
  3042. sourceTree = "<group>";
  3043. };
  3044. F7E95CEC1AC40BA40060D08E /* FileSystem */ = {
  3045. isa = PBXGroup;
  3046. children = (
  3047. F77F86401B4ABF6D009F0A10 /* Table */,
  3048. F7B81D7F1C64E77F006D02DF /* CCCoreData.h */,
  3049. F7B81D801C64E77F006D02DF /* CCCoreData.m */,
  3050. F7C8C1721B482A920048180E /* CCMetadata.h */,
  3051. F7C8C1731B482A920048180E /* CCMetadata.m */,
  3052. );
  3053. path = FileSystem;
  3054. sourceTree = "<group>";
  3055. };
  3056. F7ECBA6B1E239DCD003E6328 /* Create */ = {
  3057. isa = PBXGroup;
  3058. children = (
  3059. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */,
  3060. );
  3061. path = Create;
  3062. sourceTree = "<group>";
  3063. };
  3064. F7F06E291DBFACC600099AE9 /* CTAssetsPickerController */ = {
  3065. isa = PBXGroup;
  3066. children = (
  3067. F7F06E2A1DBFACC600099AE9 /* Categories */,
  3068. F7F06E3F1DBFACC600099AE9 /* CTAssetCheckmark.h */,
  3069. F7F06E401DBFACC600099AE9 /* CTAssetCheckmark.m */,
  3070. F7F06E411DBFACC600099AE9 /* CTAssetCollectionViewCell.h */,
  3071. F7F06E421DBFACC600099AE9 /* CTAssetCollectionViewCell.m */,
  3072. F7F06E431DBFACC600099AE9 /* CTAssetCollectionViewController.h */,
  3073. F7F06E441DBFACC600099AE9 /* CTAssetCollectionViewController.m */,
  3074. F7F06E451DBFACC600099AE9 /* CTAssetItemViewController.h */,
  3075. F7F06E461DBFACC600099AE9 /* CTAssetItemViewController.m */,
  3076. F7F06E471DBFACC600099AE9 /* CTAssetPlayButton.h */,
  3077. F7F06E481DBFACC600099AE9 /* CTAssetPlayButton.m */,
  3078. F7F06E491DBFACC600099AE9 /* CTAssetScrollView.h */,
  3079. F7F06E4A1DBFACC600099AE9 /* CTAssetScrollView.m */,
  3080. F7F06E4B1DBFACC600099AE9 /* CTAssetSelectionButton.h */,
  3081. F7F06E4C1DBFACC600099AE9 /* CTAssetSelectionButton.m */,
  3082. F7F06E4D1DBFACC600099AE9 /* CTAssetSelectionLabel.h */,
  3083. F7F06E4E1DBFACC600099AE9 /* CTAssetSelectionLabel.m */,
  3084. F7F06E4F1DBFACC600099AE9 /* CTAssetsGridSelectedView.h */,
  3085. F7F06E501DBFACC600099AE9 /* CTAssetsGridSelectedView.m */,
  3086. F7F06E511DBFACC600099AE9 /* CTAssetsGridView.h */,
  3087. F7F06E521DBFACC600099AE9 /* CTAssetsGridView.m */,
  3088. F7F06E531DBFACC600099AE9 /* CTAssetsGridViewCell.h */,
  3089. F7F06E541DBFACC600099AE9 /* CTAssetsGridViewCell.m */,
  3090. F7F06E551DBFACC600099AE9 /* CTAssetsGridViewController.h */,
  3091. F7F06E561DBFACC600099AE9 /* CTAssetsGridViewController.m */,
  3092. F7F06E571DBFACC600099AE9 /* CTAssetsGridViewFooter.h */,
  3093. F7F06E581DBFACC600099AE9 /* CTAssetsGridViewFooter.m */,
  3094. F7F06E591DBFACC600099AE9 /* CTAssetsGridViewLayout.h */,
  3095. F7F06E5A1DBFACC600099AE9 /* CTAssetsGridViewLayout.m */,
  3096. F7F06E5B1DBFACC600099AE9 /* CTAssetsNavigationController.h */,
  3097. F7F06E5C1DBFACC600099AE9 /* CTAssetsNavigationController.m */,
  3098. F7F06E5D1DBFACC600099AE9 /* CTAssetsPageView.h */,
  3099. F7F06E5E1DBFACC600099AE9 /* CTAssetsPageView.m */,
  3100. F7F06E5F1DBFACC600099AE9 /* CTAssetsPageViewController.h */,
  3101. F7F06E601DBFACC600099AE9 /* CTAssetsPageViewController.m */,
  3102. F7F06E611DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.h */,
  3103. F7F06E621DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m */,
  3104. F7F06E631DBFACC600099AE9 /* CTAssetsPickerController.bundle */,
  3105. F7F06E641DBFACC600099AE9 /* CTAssetsPickerController.h */,
  3106. F7F06E651DBFACC600099AE9 /* CTAssetsPickerController.m */,
  3107. F7F06E661DBFACC600099AE9 /* CTAssetsPickerDefines.h */,
  3108. F7F06E671DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.h */,
  3109. F7F06E681DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m */,
  3110. F7F06E691DBFACC600099AE9 /* CTAssetsViewControllerTransition.h */,
  3111. F7F06E6A1DBFACC600099AE9 /* CTAssetsViewControllerTransition.m */,
  3112. F7F06E6B1DBFACC600099AE9 /* CTAssetThumbnailOverlay.h */,
  3113. F7F06E6C1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m */,
  3114. F7F06E6D1DBFACC600099AE9 /* CTAssetThumbnailStacks.h */,
  3115. F7F06E6E1DBFACC600099AE9 /* CTAssetThumbnailStacks.m */,
  3116. F7F06E6F1DBFACC600099AE9 /* CTAssetThumbnailView.h */,
  3117. F7F06E701DBFACC600099AE9 /* CTAssetThumbnailView.m */,
  3118. );
  3119. path = CTAssetsPickerController;
  3120. sourceTree = "<group>";
  3121. };
  3122. F7F06E2A1DBFACC600099AE9 /* Categories */ = {
  3123. isa = PBXGroup;
  3124. children = (
  3125. F7F06E2B1DBFACC600099AE9 /* CTAssetsPageViewController+Internal.h */,
  3126. F7F06E2C1DBFACC600099AE9 /* CTAssetsPickerController+Internal.h */,
  3127. F7F06E2D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.h */,
  3128. F7F06E2E1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m */,
  3129. F7F06E2F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.h */,
  3130. F7F06E301DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m */,
  3131. F7F06E311DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.h */,
  3132. F7F06E321DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m */,
  3133. F7F06E331DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.h */,
  3134. F7F06E341DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m */,
  3135. F7F06E351DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.h */,
  3136. F7F06E361DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m */,
  3137. F7F06E371DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.h */,
  3138. F7F06E381DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m */,
  3139. F7F06E391DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.h */,
  3140. F7F06E3A1DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m */,
  3141. F7F06E3B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.h */,
  3142. F7F06E3C1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m */,
  3143. F7F06E3D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.h */,
  3144. F7F06E3E1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m */,
  3145. );
  3146. path = Categories;
  3147. sourceTree = "<group>";
  3148. };
  3149. F7F54CAC1E5B143100E19C62 /* Library */ = {
  3150. isa = PBXGroup;
  3151. children = (
  3152. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  3153. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  3154. F7A139FE1E7F3D5D00016680 /* CCProgress */,
  3155. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */,
  3156. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  3157. );
  3158. path = Library;
  3159. sourceTree = "<group>";
  3160. };
  3161. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  3162. isa = PBXGroup;
  3163. children = (
  3164. F7F54CAE1E5B14C700E19C62 /* Assets */,
  3165. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  3166. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  3167. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  3168. F7F54CD31E5B14C700E19C62 /* MWGridCell.h */,
  3169. F7F54CD41E5B14C700E19C62 /* MWGridCell.m */,
  3170. F7F54CD51E5B14C700E19C62 /* MWGridViewController.h */,
  3171. F7F54CD61E5B14C700E19C62 /* MWGridViewController.m */,
  3172. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  3173. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  3174. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  3175. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  3176. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  3177. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  3178. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  3179. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  3180. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  3181. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  3182. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  3183. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  3184. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  3185. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  3186. );
  3187. path = MWPhotoBrowser;
  3188. sourceTree = "<group>";
  3189. };
  3190. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  3191. isa = PBXGroup;
  3192. children = (
  3193. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  3194. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  3195. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  3196. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  3197. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  3198. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  3199. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  3200. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  3201. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  3202. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  3203. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  3204. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  3205. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  3206. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  3207. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  3208. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  3209. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  3210. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  3211. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  3212. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  3213. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  3214. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  3215. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  3216. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  3217. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  3218. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  3219. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  3220. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  3221. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  3222. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  3223. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  3224. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  3225. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  3226. );
  3227. path = Assets;
  3228. sourceTree = "<group>";
  3229. };
  3230. F7F67B9F1A24D27800EE80DA = {
  3231. isa = PBXGroup;
  3232. children = (
  3233. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  3234. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  3235. F7C0F46D1C8880540059EC54 /* Share */,
  3236. F74344131E1264EE001CC831 /* Picker */,
  3237. F74344211E1264EE001CC831 /* PickerFileProvider */,
  3238. F7FC7D651DC1F98700BB2C6A /* Products */,
  3239. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  3240. );
  3241. sourceTree = "<group>";
  3242. };
  3243. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  3244. isa = PBXGroup;
  3245. children = (
  3246. F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */,
  3247. F71E67F61DC1F76F003BA52B /* ownCloud iOS library.xcodeproj */,
  3248. F70F02A81C889183008DAB36 /* Libraries external */,
  3249. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  3250. F7A582D61A24DAB500E903D7 /* AppDelegate.m */,
  3251. F7C1CDCE1E6DFAD1005D92BE /* CCStandardImages.h */,
  3252. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  3253. F7C8C1911B482CEA0048180E /* CCGlobal.m */,
  3254. F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */,
  3255. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  3256. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  3257. F70211F31BAC56E9003FC03E /* Main */,
  3258. F720E02A1E48C74C001A4B9E /* Actions */,
  3259. F7ECBA6B1E239DCD003E6328 /* Create */,
  3260. F7E95CEC1AC40BA40060D08E /* FileSystem */,
  3261. F744BE911BEBB2EE004FFF66 /* Intro */,
  3262. F7F54CAC1E5B143100E19C62 /* Library */,
  3263. F7BFFA621A24D7300044ED85 /* Login */,
  3264. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  3265. F7D6A0881D82DBFA0045AD1A /* ControlCenter+MenuAccount */,
  3266. F7F9E3451BC26B19004B9223 /* Move */,
  3267. F74D3DB81BAC1941000BAE4B /* Networking */,
  3268. F7C5259A1E3B441D00FFE02C /* Notification */,
  3269. F7C00D411E2D0D0F0032160B /* Favorite+Offline+Synchronize */,
  3270. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  3271. F719FDAE1CF06645004895D0 /* PhotosCameraUpload */,
  3272. F7BE6E2A1D2D5C3B00106933 /* QuickActions */,
  3273. F7FE125B1BAC03FB0041924B /* Security */,
  3274. F7ACE4281BAC0268006C0017 /* Settings */,
  3275. F728CE741BF6322C00E69702 /* Share */,
  3276. F721371B1BAFF0920012B613 /* Templates */,
  3277. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  3278. F7BFFA991A24D7BB0044ED85 /* Utility */,
  3279. );
  3280. path = iOSClient;
  3281. sourceTree = "<group>";
  3282. };
  3283. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  3284. isa = PBXGroup;
  3285. children = (
  3286. F76344751BF259A800188725 /* synchronized.gif */,
  3287. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  3288. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  3289. F7229B461DF71BA800E8C4E7 /* ChangeLog */,
  3290. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  3291. F78BFECA1D3111B800E513CF /* LaunchScreenNextcloud.xib */,
  3292. F77D49A71DC238E500CDC568 /* loading@2x.gif */,
  3293. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  3294. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  3295. F7F67BAD1A24D27800EE80DA /* main.m */,
  3296. F72B60941A24F04E004EF66F /* Localizations */,
  3297. );
  3298. name = "Supporting Files";
  3299. path = iOSClient;
  3300. sourceTree = "<group>";
  3301. };
  3302. F7F9E3451BC26B19004B9223 /* Move */ = {
  3303. isa = PBXGroup;
  3304. children = (
  3305. F7D02A461C5F9E4400D6F972 /* CCMove.h */,
  3306. F7D02A471C5F9E4400D6F972 /* CCMove.m */,
  3307. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */,
  3308. );
  3309. path = Move;
  3310. sourceTree = "<group>";
  3311. };
  3312. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  3313. isa = PBXGroup;
  3314. children = (
  3315. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  3316. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  3317. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  3318. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  3319. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  3320. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  3321. );
  3322. name = Frameworks;
  3323. sourceTree = "<group>";
  3324. };
  3325. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  3326. isa = PBXGroup;
  3327. children = (
  3328. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  3329. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  3330. F74344901E128E8F001CC831 /* Picker.appex */,
  3331. F74344911E128E96001CC831 /* PickerFileProvider.appex */,
  3332. );
  3333. name = Products;
  3334. sourceTree = "<group>";
  3335. };
  3336. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  3337. isa = PBXGroup;
  3338. children = (
  3339. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  3340. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  3341. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  3342. );
  3343. path = PeekPop;
  3344. sourceTree = "<group>";
  3345. };
  3346. F7FE125B1BAC03FB0041924B /* Security */ = {
  3347. isa = PBXGroup;
  3348. children = (
  3349. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  3350. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  3351. F7F801001D98205A007537BC /* CCCertificate.h */,
  3352. F7F801011D98205A007537BC /* CCCertificate.m */,
  3353. F7FE125E1BAC03FB0041924B /* CCCrypto.h */,
  3354. F7FE125F1BAC03FB0041924B /* CCCrypto.m */,
  3355. );
  3356. path = Security;
  3357. sourceTree = "<group>";
  3358. };
  3359. /* End PBXGroup section */
  3360. /* Begin PBXNativeTarget section */
  3361. F71459B41D12E3B700CAFEEC /* Share */ = {
  3362. isa = PBXNativeTarget;
  3363. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  3364. buildPhases = (
  3365. F71459B51D12E3B700CAFEEC /* Sources */,
  3366. F7145A141D12E3B700CAFEEC /* Frameworks */,
  3367. F7145A181D12E3B700CAFEEC /* Resources */,
  3368. );
  3369. buildRules = (
  3370. );
  3371. dependencies = (
  3372. );
  3373. name = Share;
  3374. productName = "Share Ext";
  3375. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  3376. productType = "com.apple.product-type.app-extension";
  3377. };
  3378. F74344111E1264ED001CC831 /* Picker */ = {
  3379. isa = PBXNativeTarget;
  3380. buildConfigurationList = F743443C1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "Picker" */;
  3381. buildPhases = (
  3382. F743440E1E1264ED001CC831 /* Sources */,
  3383. F743440F1E1264ED001CC831 /* Frameworks */,
  3384. F74344101E1264ED001CC831 /* Resources */,
  3385. );
  3386. buildRules = (
  3387. );
  3388. dependencies = (
  3389. );
  3390. name = Picker;
  3391. productName = Picker;
  3392. productReference = F74344901E128E8F001CC831 /* Picker.appex */;
  3393. productType = "com.apple.product-type.app-extension";
  3394. };
  3395. F743441F1E1264EE001CC831 /* PickerFileProvider */ = {
  3396. isa = PBXNativeTarget;
  3397. buildConfigurationList = F743443B1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "PickerFileProvider" */;
  3398. buildPhases = (
  3399. F743441C1E1264EE001CC831 /* Sources */,
  3400. F743441D1E1264EE001CC831 /* Frameworks */,
  3401. F743441E1E1264EE001CC831 /* Resources */,
  3402. );
  3403. buildRules = (
  3404. );
  3405. dependencies = (
  3406. );
  3407. name = PickerFileProvider;
  3408. productName = PickerFileProvider;
  3409. productReference = F74344911E128E96001CC831 /* PickerFileProvider.appex */;
  3410. productType = "com.apple.product-type.app-extension";
  3411. };
  3412. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  3413. isa = PBXNativeTarget;
  3414. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  3415. buildPhases = (
  3416. F77B0DEF1D118A16002130FE /* Sources */,
  3417. F77B0EDC1D118A16002130FE /* Frameworks */,
  3418. F77B0EE91D118A16002130FE /* Resources */,
  3419. F77B0F981D118A16002130FE /* Embed App Extensions */,
  3420. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  3421. );
  3422. buildRules = (
  3423. );
  3424. dependencies = (
  3425. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  3426. F74344281E1264EE001CC831 /* PBXTargetDependency */,
  3427. F743442B1E1264EE001CC831 /* PBXTargetDependency */,
  3428. );
  3429. name = Nextcloud;
  3430. productName = "Crypto Cloud";
  3431. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  3432. productType = "com.apple.product-type.application";
  3433. };
  3434. /* End PBXNativeTarget section */
  3435. /* Begin PBXProject section */
  3436. F7F67BA01A24D27800EE80DA /* Project object */ = {
  3437. isa = PBXProject;
  3438. attributes = {
  3439. LastSwiftUpdateCheck = 0820;
  3440. LastUpgradeCheck = 0820;
  3441. ORGANIZATIONNAME = TWS;
  3442. TargetAttributes = {
  3443. F71459B41D12E3B700CAFEEC = {
  3444. DevelopmentTeam = 6JLRKY9ZV7;
  3445. SystemCapabilities = {
  3446. com.apple.ApplicationGroups.iOS = {
  3447. enabled = 1;
  3448. };
  3449. com.apple.iCloud = {
  3450. enabled = 0;
  3451. };
  3452. };
  3453. };
  3454. F74344111E1264ED001CC831 = {
  3455. CreatedOnToolsVersion = 8.2.1;
  3456. DevelopmentTeam = 6JLRKY9ZV7;
  3457. ProvisioningStyle = Automatic;
  3458. SystemCapabilities = {
  3459. com.apple.ApplicationGroups.iOS = {
  3460. enabled = 1;
  3461. };
  3462. com.apple.Keychain = {
  3463. enabled = 1;
  3464. };
  3465. };
  3466. };
  3467. F743441F1E1264EE001CC831 = {
  3468. CreatedOnToolsVersion = 8.2.1;
  3469. DevelopmentTeam = 6JLRKY9ZV7;
  3470. LastSwiftMigration = 0820;
  3471. ProvisioningStyle = Automatic;
  3472. SystemCapabilities = {
  3473. com.apple.Keychain = {
  3474. enabled = 1;
  3475. };
  3476. };
  3477. };
  3478. F77B0DEB1D118A16002130FE = {
  3479. DevelopmentTeam = 6JLRKY9ZV7;
  3480. LastSwiftMigration = 0820;
  3481. ProvisioningStyle = Automatic;
  3482. SystemCapabilities = {
  3483. com.apple.Push = {
  3484. enabled = 1;
  3485. };
  3486. com.apple.iCloud = {
  3487. enabled = 1;
  3488. };
  3489. };
  3490. };
  3491. };
  3492. };
  3493. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  3494. compatibilityVersion = "Xcode 3.2";
  3495. developmentRegion = English;
  3496. hasScannedForEncodings = 0;
  3497. knownRegions = (
  3498. nl,
  3499. en,
  3500. it,
  3501. de,
  3502. fr,
  3503. Base,
  3504. ru,
  3505. pl,
  3506. es,
  3507. is,
  3508. "pt-BR",
  3509. );
  3510. mainGroup = F7F67B9F1A24D27800EE80DA;
  3511. productRefGroup = F7F67B9F1A24D27800EE80DA;
  3512. projectDirPath = "";
  3513. projectReferences = (
  3514. {
  3515. ProductGroup = F7B61E871DC13C20009E938F /* Products */;
  3516. ProjectRef = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  3517. },
  3518. {
  3519. ProductGroup = F71E67F71DC1F76F003BA52B /* Products */;
  3520. ProjectRef = F71E67F61DC1F76F003BA52B /* ownCloud iOS library.xcodeproj */;
  3521. },
  3522. );
  3523. projectRoot = "";
  3524. targets = (
  3525. F77B0DEB1D118A16002130FE /* Nextcloud */,
  3526. F71459B41D12E3B700CAFEEC /* Share */,
  3527. F74344111E1264ED001CC831 /* Picker */,
  3528. F743441F1E1264EE001CC831 /* PickerFileProvider */,
  3529. );
  3530. };
  3531. /* End PBXProject section */
  3532. /* Begin PBXReferenceProxy section */
  3533. F71E67FC1DC1F76F003BA52B /* libownCloudiOS.a */ = {
  3534. isa = PBXReferenceProxy;
  3535. fileType = archive.ar;
  3536. path = libownCloudiOS.a;
  3537. remoteRef = F71E67FB1DC1F76F003BA52B /* PBXContainerItemProxy */;
  3538. sourceTree = BUILT_PRODUCTS_DIR;
  3539. };
  3540. F71E67FE1DC1F76F003BA52B /* ownCloud iOS libraryTests.xctest */ = {
  3541. isa = PBXReferenceProxy;
  3542. fileType = wrapper.cfbundle;
  3543. path = "ownCloud iOS libraryTests.xctest";
  3544. remoteRef = F71E67FD1DC1F76F003BA52B /* PBXContainerItemProxy */;
  3545. sourceTree = BUILT_PRODUCTS_DIR;
  3546. };
  3547. F7B61E931DC13C20009E938F /* MagicalRecord.framework */ = {
  3548. isa = PBXReferenceProxy;
  3549. fileType = wrapper.framework;
  3550. path = MagicalRecord.framework;
  3551. remoteRef = F7B61E921DC13C20009E938F /* PBXContainerItemProxy */;
  3552. sourceTree = BUILT_PRODUCTS_DIR;
  3553. };
  3554. F7B61E951DC13C20009E938F /* MagicalRecord for iOS Tests.xctest */ = {
  3555. isa = PBXReferenceProxy;
  3556. fileType = wrapper.cfbundle;
  3557. path = "MagicalRecord for iOS Tests.xctest";
  3558. remoteRef = F7B61E941DC13C20009E938F /* PBXContainerItemProxy */;
  3559. sourceTree = BUILT_PRODUCTS_DIR;
  3560. };
  3561. F7B61E971DC13C20009E938F /* MagicalRecord.framework */ = {
  3562. isa = PBXReferenceProxy;
  3563. fileType = wrapper.framework;
  3564. path = MagicalRecord.framework;
  3565. remoteRef = F7B61E961DC13C20009E938F /* PBXContainerItemProxy */;
  3566. sourceTree = BUILT_PRODUCTS_DIR;
  3567. };
  3568. F7B61E991DC13C20009E938F /* MagicalRecord for OS X Tests.xctest */ = {
  3569. isa = PBXReferenceProxy;
  3570. fileType = wrapper.cfbundle;
  3571. path = "MagicalRecord for OS X Tests.xctest";
  3572. remoteRef = F7B61E981DC13C20009E938F /* PBXContainerItemProxy */;
  3573. sourceTree = BUILT_PRODUCTS_DIR;
  3574. };
  3575. F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */ = {
  3576. isa = PBXReferenceProxy;
  3577. fileType = archive.ar;
  3578. path = libMagicalRecord.a;
  3579. remoteRef = F7B61E9A1DC13C20009E938F /* PBXContainerItemProxy */;
  3580. sourceTree = BUILT_PRODUCTS_DIR;
  3581. };
  3582. F7B61E9D1DC13C20009E938F /* libMagicalRecord for iOS Tests.xctest */ = {
  3583. isa = PBXReferenceProxy;
  3584. fileType = wrapper.cfbundle;
  3585. path = "libMagicalRecord for iOS Tests.xctest";
  3586. remoteRef = F7B61E9C1DC13C20009E938F /* PBXContainerItemProxy */;
  3587. sourceTree = BUILT_PRODUCTS_DIR;
  3588. };
  3589. F7B61E9F1DC13C20009E938F /* libMagicalRecord.dylib */ = {
  3590. isa = PBXReferenceProxy;
  3591. fileType = "compiled.mach-o.dylib";
  3592. path = libMagicalRecord.dylib;
  3593. remoteRef = F7B61E9E1DC13C20009E938F /* PBXContainerItemProxy */;
  3594. sourceTree = BUILT_PRODUCTS_DIR;
  3595. };
  3596. F7B61EA11DC13C20009E938F /* libMagicalRecord for OS X Tests.xctest */ = {
  3597. isa = PBXReferenceProxy;
  3598. fileType = wrapper.cfbundle;
  3599. path = "libMagicalRecord for OS X Tests.xctest";
  3600. remoteRef = F7B61EA01DC13C20009E938F /* PBXContainerItemProxy */;
  3601. sourceTree = BUILT_PRODUCTS_DIR;
  3602. };
  3603. /* End PBXReferenceProxy section */
  3604. /* Begin PBXResourcesBuildPhase section */
  3605. F7145A181D12E3B700CAFEEC /* Resources */ = {
  3606. isa = PBXResourcesBuildPhase;
  3607. buildActionMask = 2147483647;
  3608. files = (
  3609. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  3610. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  3611. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */,
  3612. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */,
  3613. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */,
  3614. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3615. F7145A241D12E3B700CAFEEC /* CCCellShareExt.xib in Resources */,
  3616. );
  3617. runOnlyForDeploymentPostprocessing = 0;
  3618. };
  3619. F74344101E1264ED001CC831 /* Resources */ = {
  3620. isa = PBXResourcesBuildPhase;
  3621. buildActionMask = 2147483647;
  3622. files = (
  3623. F7C742D81E7BD5C900D9C973 /* MainInterface.storyboard in Resources */,
  3624. F7FC88FD1E141A3F006D0506 /* Error.strings in Resources */,
  3625. F7FC88FB1E141A34006D0506 /* BKPasscodeView.strings in Resources */,
  3626. F7FC88FC1E141A39006D0506 /* Localizable.strings in Resources */,
  3627. F7D2677C1E157053005ACB7E /* Images.xcassets in Resources */,
  3628. F743444B1E126B69001CC831 /* CCMove.storyboard in Resources */,
  3629. );
  3630. runOnlyForDeploymentPostprocessing = 0;
  3631. };
  3632. F743441E1E1264EE001CC831 /* Resources */ = {
  3633. isa = PBXResourcesBuildPhase;
  3634. buildActionMask = 2147483647;
  3635. files = (
  3636. );
  3637. runOnlyForDeploymentPostprocessing = 0;
  3638. };
  3639. F77B0EE91D118A16002130FE /* Resources */ = {
  3640. isa = PBXResourcesBuildPhase;
  3641. buildActionMask = 2147483647;
  3642. files = (
  3643. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3644. F77B0EEA1D118A16002130FE /* ZSSbold@2x.png in Resources */,
  3645. F77B0EEB1D118A16002130FE /* ZSSrightjustify@2x.png in Resources */,
  3646. F7C00D481E2D0D0F0032160B /* CCCellOffline.xib in Resources */,
  3647. F77B0EEC1D118A16002130FE /* ZSSindent@2x.png in Resources */,
  3648. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3649. F77B0EED1D118A16002130FE /* Reader-Mark-N@2x.png in Resources */,
  3650. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3651. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3652. F77B0EF01D118A16002130FE /* ZSSh4@2x.png in Resources */,
  3653. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3654. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */,
  3655. F77B0EF21D118A16002130FE /* ZSSunderline.png in Resources */,
  3656. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3657. F77B0EF51D118A16002130FE /* ZSSbgcolor.png in Resources */,
  3658. F77B0EF61D118A16002130FE /* ZSSstrikethrough@2x.png in Resources */,
  3659. F73CCE211DC13776007E38D8 /* XLForm.bundle in Resources */,
  3660. F77B0EF71D118A16002130FE /* ZSSinsertkeyword@2x.png in Resources */,
  3661. F77B0EF91D118A16002130FE /* Reader-Mark-N.png in Resources */,
  3662. F77B0EFA1D118A16002130FE /* ZSShorizontalrule.png in Resources */,
  3663. F77B0EFB1D118A16002130FE /* ZSSh3@2x.png in Resources */,
  3664. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3665. F77B0EFF1D118A16002130FE /* ZSSinsertkeyword.png in Resources */,
  3666. F7676A7B1D5CB2A400DF734C /* icon-error@2x.png in Resources */,
  3667. F78BFED41D3111B800E513CF /* LaunchScreenNextcloud.xib in Resources */,
  3668. F77B0F041D118A16002130FE /* ZSSoutdent@2x.png in Resources */,
  3669. F77B0F051D118A16002130FE /* ZSSindent.png in Resources */,
  3670. F77B0F071D118A16002130FE /* ZSSpicker.png in Resources */,
  3671. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3672. F77B0F081D118A16002130FE /* ZSSunderline@2x.png in Resources */,
  3673. F77B0F0A1D118A16002130FE /* Reader-Mark-Y.png in Resources */,
  3674. F77B0F0C1D118A16002130FE /* Reader-Mark-Y@2x.png in Resources */,
  3675. F72AE40B1E67246200B3E477 /* ControlCenter.storyboard in Resources */,
  3676. F77B0F0D1D118A16002130FE /* ZSSundo@2x.png in Resources */,
  3677. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */,
  3678. F77B0F111D118A16002130FE /* ZSSparagraph.png in Resources */,
  3679. F77B0F121D118A16002130FE /* ZSSorderedlist@2x.png in Resources */,
  3680. F77B0F131D118A16002130FE /* ZSSitalic@2x.png in Resources */,
  3681. F77B0F141D118A16002130FE /* ZSSviewsource.png in Resources */,
  3682. F77B0F151D118A16002130FE /* ZSSforcejustify@2x.png in Resources */,
  3683. F77B0F171D118A16002130FE /* ZSSh1@2x.png in Resources */,
  3684. F7D6A0951D82DBFA0045AD1A /* CCControlCenterTransferCell.xib in Resources */,
  3685. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3686. F77B0F181D118A16002130FE /* Intro.strings in Resources */,
  3687. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3688. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3689. F77B0F191D118A16002130FE /* ZSSitalic.png in Resources */,
  3690. F77B0F1C1D118A16002130FE /* Reader-Email@2x.png in Resources */,
  3691. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3692. F77B0F1D1D118A16002130FE /* ZSSh2@2x.png in Resources */,
  3693. F77B0F1E1D118A16002130FE /* ZSSstrikethrough.png in Resources */,
  3694. F77B0F211D118A16002130FE /* ZSSh6.png in Resources */,
  3695. F77B0F231D118A16002130FE /* ZSSh3.png in Resources */,
  3696. F77B0F241D118A16002130FE /* Reader-Button-H.png in Resources */,
  3697. F77B0F251D118A16002130FE /* ZSSh1.png in Resources */,
  3698. F7676A7D1D5CB2A400DF734C /* icon-info.png in Resources */,
  3699. F77B0F281D118A16002130FE /* Main.storyboard in Resources */,
  3700. F77B0F291D118A16002130FE /* ZSSleftjustify.png in Resources */,
  3701. F77B0F2B1D118A16002130FE /* ZSSclearstyle@2x.png in Resources */,
  3702. F77B0F2C1D118A16002130FE /* ZSSlink.png in Resources */,
  3703. F77B0F2D1D118A16002130FE /* ZSSsuperscript@2x.png in Resources */,
  3704. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */,
  3705. F77B0F2E1D118A16002130FE /* ZSScenterjustify.png in Resources */,
  3706. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */,
  3707. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  3708. F77B0F311D118A16002130FE /* Reader-Thumbs.png in Resources */,
  3709. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  3710. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */,
  3711. F77B0F321D118A16002130FE /* ZSSkeyboard@2x.png in Resources */,
  3712. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  3713. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  3714. F77B0F341D118A16002130FE /* ZSSorderedlist.png in Resources */,
  3715. F77B0F351D118A16002130FE /* ZSSsubscript@2x.png in Resources */,
  3716. F77B0F361D118A16002130FE /* editor.html in Resources */,
  3717. F7676A7F1D5CB2A400DF734C /* icon-info@2x.png in Resources */,
  3718. F77B0F381D118A16002130FE /* ZSSkeyboard.png in Resources */,
  3719. F7676A791D5CB2A400DF734C /* icon-error.png in Resources */,
  3720. F77B0F391D118A16002130FE /* ZSStable@2x.png in Resources */,
  3721. F77B0F3B1D118A16002130FE /* ZSSredo@2x.png in Resources */,
  3722. F77B0F3D1D118A16002130FE /* ZSSh5.png in Resources */,
  3723. F77B0F3E1D118A16002130FE /* ZSSquicklink@2x.png in Resources */,
  3724. F77B0F3F1D118A16002130FE /* Reader-Export.png in Resources */,
  3725. F77B0F411D118A16002130FE /* ZSStextcolor@2x.png in Resources */,
  3726. F77B0F441D118A16002130FE /* Reader-Button-N@2x.png in Resources */,
  3727. F77B0F461D118A16002130FE /* Reader-Button-H@2x.png in Resources */,
  3728. F77B0F471D118A16002130FE /* ZSSbgcolor@2x.png in Resources */,
  3729. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  3730. F77B0F491D118A16002130FE /* ZSSoutdent.png in Resources */,
  3731. F77B0F4A1D118A16002130FE /* ZSStextcolor.png in Resources */,
  3732. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  3733. F77B0F4B1D118A16002130FE /* ZSSimage.png in Resources */,
  3734. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */,
  3735. F77B0F4E1D118A16002130FE /* Reader-Thumbs@2x.png in Resources */,
  3736. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  3737. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  3738. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */,
  3739. F77B0F4F1D118A16002130FE /* ZSSquicklink.png in Resources */,
  3740. F77B0F511D118A16002130FE /* ZSSh2.png in Resources */,
  3741. F77B0F531D118A16002130FE /* ZSSbold.png in Resources */,
  3742. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  3743. F77B0F541D118A16002130FE /* Reader-Button-N.png in Resources */,
  3744. F77B0F551D118A16002130FE /* Error.strings in Resources */,
  3745. F77B0F561D118A16002130FE /* ZSStable.png in Resources */,
  3746. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  3747. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  3748. F77B0F591D118A16002130FE /* ZSSRichTextEditor.js in Resources */,
  3749. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  3750. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  3751. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  3752. F77B0F5B1D118A16002130FE /* ZSSclearstyle.png in Resources */,
  3753. F77B0F5C1D118A16002130FE /* ImagesIntro.xcassets in Resources */,
  3754. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  3755. F77B0F5D1D118A16002130FE /* Reader-Print.png in Resources */,
  3756. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  3757. F77B0F5E1D118A16002130FE /* ZSSlink@2x.png in Resources */,
  3758. F77B0F5F1D118A16002130FE /* Reader-Email.png in Resources */,
  3759. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  3760. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3761. F77B0F621D118A16002130FE /* ZSSunorderedlist.png in Resources */,
  3762. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3763. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  3764. F77B0F641D118A16002130FE /* ZSSh4.png in Resources */,
  3765. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */,
  3766. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  3767. F77B0F6B1D118A16002130FE /* ZSSundo.png in Resources */,
  3768. F77B0F6C1D118A16002130FE /* ZSSsubscript.png in Resources */,
  3769. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  3770. F7F06EC31DBFACC600099AE9 /* CTAssetsPickerController.bundle in Resources */,
  3771. F77B0F6E1D118A16002130FE /* ZSShorizontalrule@2x.png in Resources */,
  3772. F77B0F6F1D118A16002130FE /* ZSSforcejustify.png in Resources */,
  3773. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  3774. F77B0F741D118A16002130FE /* ZSSunorderedlist@2x.png in Resources */,
  3775. F77B0F751D118A16002130FE /* ZSSleftjustify@2x.png in Resources */,
  3776. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  3777. F7676A811D5CB2A400DF734C /* icon-success.png in Resources */,
  3778. F77B0F771D118A16002130FE /* ZSSimage@2x.png in Resources */,
  3779. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  3780. F77B0F791D118A16002130FE /* ZSSunlink.png in Resources */,
  3781. F77B0F7A1D118A16002130FE /* ZSSredo.png in Resources */,
  3782. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  3783. F77B0F7B1D118A16002130FE /* ZSSrightjustify.png in Resources */,
  3784. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  3785. F77B0F7C1D118A16002130FE /* ZSSviewsource@2x.png in Resources */,
  3786. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3787. F77B0F7F1D118A16002130FE /* ZSScenterjustify@2x.png in Resources */,
  3788. F77B0F811D118A16002130FE /* ZSSparagraph@2x.png in Resources */,
  3789. F77B0F821D118A16002130FE /* ZSSsuperscript.png in Resources */,
  3790. F77B0F831D118A16002130FE /* ZSSh5@2x.png in Resources */,
  3791. F77B0F841D118A16002130FE /* Reader-Print@2x.png in Resources */,
  3792. F7676A831D5CB2A400DF734C /* icon-success@2x.png in Resources */,
  3793. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  3794. F77B0F851D118A16002130FE /* Reader-Export@2x.png in Resources */,
  3795. F77B0F861D118A16002130FE /* LMMediaPlayerView.bundle in Resources */,
  3796. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  3797. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  3798. F77B0F8E1D118A16002130FE /* LMMediaPlayerView.xib in Resources */,
  3799. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */,
  3800. F77B0F8F1D118A16002130FE /* ZSSunlink@2x.png in Resources */,
  3801. F7F7638C1E783EF6009FED20 /* DevicePushKey-Info.plist in Resources */,
  3802. F77B0F901D118A16002130FE /* ZSSpicker@2x.png in Resources */,
  3803. F77B0F941D118A16002130FE /* ZSSh6@2x.png in Resources */,
  3804. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  3805. );
  3806. runOnlyForDeploymentPostprocessing = 0;
  3807. };
  3808. /* End PBXResourcesBuildPhase section */
  3809. /* Begin PBXShellScriptBuildPhase section */
  3810. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  3811. isa = PBXShellScriptBuildPhase;
  3812. buildActionMask = 2147483647;
  3813. files = (
  3814. );
  3815. inputPaths = (
  3816. );
  3817. outputPaths = (
  3818. );
  3819. runOnlyForDeploymentPostprocessing = 0;
  3820. shellPath = /bin/sh;
  3821. 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\"";
  3822. };
  3823. /* End PBXShellScriptBuildPhase section */
  3824. /* Begin PBXSourcesBuildPhase section */
  3825. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3826. isa = PBXSourcesBuildPhase;
  3827. buildActionMask = 2147483647;
  3828. files = (
  3829. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  3830. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3831. F708CF7A1E56E8CC00271D8B /* TableGPS+CoreDataClass.m in Sources */,
  3832. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  3833. F708CF9B1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m in Sources */,
  3834. F71459BB1D12E3B700CAFEEC /* NYXProgressiveImageView.m in Sources */,
  3835. F7274FEE1E6EB6F400C241B6 /* Constant.swift in Sources */,
  3836. F708CF981E56E8CC00271D8B /* TableAccount+CoreDataClass.m in Sources */,
  3837. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  3838. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  3839. F708CF6E1E56E8CC00271D8B /* TableMetadata+CoreDataClass.m in Sources */,
  3840. F71459BE1D12E3B700CAFEEC /* UIImage+Reflection.m in Sources */,
  3841. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3842. F71459BF1D12E3B700CAFEEC /* RNEncryptor.m in Sources */,
  3843. F708CF891E56E8CC00271D8B /* TableShare+CoreDataProperties.m in Sources */,
  3844. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  3845. F71459C31D12E3B700CAFEEC /* UIImage+Filtering.m in Sources */,
  3846. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3847. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3848. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3849. F71459C41D12E3B700CAFEEC /* UIImage+Saving.m in Sources */,
  3850. F71459C51D12E3B700CAFEEC /* UIImage+Rotating.m in Sources */,
  3851. F7FB5F201E66F0A400389481 /* TableActivity+CoreDataClass.m in Sources */,
  3852. F71459C61D12E3B700CAFEEC /* CCMetadata.m in Sources */,
  3853. F708CF771E56E8CC00271D8B /* TableLocalFile+CoreDataProperties.m in Sources */,
  3854. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  3855. F71459CC1D12E3B700CAFEEC /* RNCryptorEngine.m in Sources */,
  3856. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  3857. F71459CE1D12E3B700CAFEEC /* NSData+CommonCrypto.m in Sources */,
  3858. F708CF741E56E8CC00271D8B /* TableLocalFile+CoreDataClass.m in Sources */,
  3859. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3860. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3861. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  3862. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */,
  3863. F744FA7F1E57333C00BFAB34 /* APAvatarImageView.m in Sources */,
  3864. F708CF801E56E8CC00271D8B /* TableDirectory+CoreDataClass.m in Sources */,
  3865. F71459D91D12E3B700CAFEEC /* CCCrypto.m in Sources */,
  3866. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  3867. F708CF8C1E56E8CC00271D8B /* TableCertificates+CoreDataClass.m in Sources */,
  3868. F71459DD1D12E3B700CAFEEC /* CCCoreData.m in Sources */,
  3869. F708CF8F1E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m in Sources */,
  3870. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  3871. F708CF921E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m in Sources */,
  3872. F71459E41D12E3B700CAFEEC /* RNDecryptor.m in Sources */,
  3873. F71459E61D12E3B700CAFEEC /* NYXImagesHelper.m in Sources */,
  3874. F71459E91D12E3B700CAFEEC /* UIImage+Enhancing.m in Sources */,
  3875. F71459EA1D12E3B700CAFEEC /* CCCellShareExt.m in Sources */,
  3876. F7FB5F241E66F0AA00389481 /* TableActivity+CoreDataProperties.m in Sources */,
  3877. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  3878. F708CF831E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m in Sources */,
  3879. F71459ED1D12E3B700CAFEEC /* UIImage+Masking.m in Sources */,
  3880. F71459F01D12E3B700CAFEEC /* NSString+Base64.m in Sources */,
  3881. F7EF0CAF1D9E95F400A9D15E /* CCSharedDBSession.m in Sources */,
  3882. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */,
  3883. F71459F31D12E3B700CAFEEC /* UIImage+Resizing.m in Sources */,
  3884. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  3885. F7F801051D98205A007537BC /* CCCertificate.m in Sources */,
  3886. F71459FB1D12E3B700CAFEEC /* PPImageScrollingCellView.m in Sources */,
  3887. F708CF7D1E56E8CC00271D8B /* TableGPS+CoreDataProperties.m in Sources */,
  3888. F71459FE1D12E3B700CAFEEC /* CCExifGeo.m in Sources */,
  3889. F708CF861E56E8CC00271D8B /* TableShare+CoreDataClass.m in Sources */,
  3890. F71459FF1D12E3B700CAFEEC /* RNCryptor.m in Sources */,
  3891. F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */,
  3892. F7145A011D12E3B700CAFEEC /* UIImage+Blurring.m in Sources */,
  3893. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  3894. F708CF951E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m in Sources */,
  3895. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3896. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3897. F7145A081D12E3B700CAFEEC /* PPCollectionViewCell.m in Sources */,
  3898. F7145A0D1D12E3B700CAFEEC /* NSData+Base64.m in Sources */,
  3899. F78088EB1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */,
  3900. F7145A0E1D12E3B700CAFEEC /* AESCrypt.m in Sources */,
  3901. F7145A111D12E3B700CAFEEC /* PPImageScrollingTableViewCell.m in Sources */,
  3902. F708CF711E56E8CC00271D8B /* TableMetadata+CoreDataProperties.m in Sources */,
  3903. );
  3904. runOnlyForDeploymentPostprocessing = 0;
  3905. };
  3906. F743440E1E1264ED001CC831 /* Sources */ = {
  3907. isa = PBXSourcesBuildPhase;
  3908. buildActionMask = 2147483647;
  3909. files = (
  3910. F708CF781E56E8CC00271D8B /* TableLocalFile+CoreDataProperties.m in Sources */,
  3911. F708CF931E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m in Sources */,
  3912. F74344801E127ED3001CC831 /* NSString+Base64.m in Sources */,
  3913. F708CF871E56E8CC00271D8B /* TableShare+CoreDataClass.m in Sources */,
  3914. F743447A1E127EA6001CC831 /* CCGraphics.m in Sources */,
  3915. F708CF9C1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m in Sources */,
  3916. F708CF811E56E8CC00271D8B /* TableDirectory+CoreDataClass.m in Sources */,
  3917. F708CF901E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m in Sources */,
  3918. F743448C1E128010001CC831 /* CCCrypto.m in Sources */,
  3919. F725437C1E12A44A009BF4C2 /* CCSection.m in Sources */,
  3920. F74344651E127DE9001CC831 /* CCNetworking.m in Sources */,
  3921. F74344641E127DE6001CC831 /* OCNetworking.m in Sources */,
  3922. F73CC07A1E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3923. F708CF841E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m in Sources */,
  3924. F74344821E127F68001CC831 /* MBProgressHUD.m in Sources */,
  3925. F708CF7B1E56E8CC00271D8B /* TableGPS+CoreDataClass.m in Sources */,
  3926. F743444A1E126B4D001CC831 /* CCMove.m in Sources */,
  3927. F743448B1E12800D001CC831 /* CCCertificate.m in Sources */,
  3928. F743447D1E127ECB001CC831 /* AESCrypt.m in Sources */,
  3929. F743447E1E127ECE001CC831 /* NSData+Base64.m in Sources */,
  3930. F74344671E127E38001CC831 /* CCMetadata.m in Sources */,
  3931. F73CC0741E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3932. F74344781E127E9E001CC831 /* CCExifGeo.m in Sources */,
  3933. F74344171E1264EE001CC831 /* DocumentPickerViewController.swift in Sources */,
  3934. F74344811E127F49001CC831 /* AFViewShaker.m in Sources */,
  3935. F74344791E127EA1001CC831 /* CCError.m in Sources */,
  3936. F708CF6F1E56E8CC00271D8B /* TableMetadata+CoreDataClass.m in Sources */,
  3937. F743447B1E127EAC001CC831 /* CCUtility.m in Sources */,
  3938. F74344871E127F95001CC831 /* UICKeyChainStore.m in Sources */,
  3939. F73CC0711E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3940. F73CC07D1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3941. F743447F1E127ED1001CC831 /* NSData+CommonCrypto.m in Sources */,
  3942. F708CF8D1E56E8CC00271D8B /* TableCertificates+CoreDataClass.m in Sources */,
  3943. F74344891E127FC3001CC831 /* CCGlobal.m in Sources */,
  3944. F73CC06E1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3945. F74344841E127F84001CC831 /* RNCryptorEngine.m in Sources */,
  3946. F74344851E127F86001CC831 /* RNDecryptor.m in Sources */,
  3947. F74344881E127F9C001CC831 /* UIImage+animatedGIF.m in Sources */,
  3948. F708CF7E1E56E8CC00271D8B /* TableGPS+CoreDataProperties.m in Sources */,
  3949. F73CC0771E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3950. F7274FEF1E6EB6F400C241B6 /* Constant.swift in Sources */,
  3951. F743448A1E127FF2001CC831 /* CCHud.m in Sources */,
  3952. F74344861E127F89001CC831 /* RNEncryptor.m in Sources */,
  3953. F73CC06B1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3954. F708CF991E56E8CC00271D8B /* TableAccount+CoreDataClass.m in Sources */,
  3955. F7FC88FA1E140558006D0506 /* cryptocloud.xcdatamodeld in Sources */,
  3956. F744FA801E57333C00BFAB34 /* APAvatarImageView.m in Sources */,
  3957. F708CF721E56E8CC00271D8B /* TableMetadata+CoreDataProperties.m in Sources */,
  3958. F74344631E127D79001CC831 /* CCBKPasscode.m in Sources */,
  3959. F708CF8A1E56E8CC00271D8B /* TableShare+CoreDataProperties.m in Sources */,
  3960. F74344661E127E35001CC831 /* CCCoreData.m in Sources */,
  3961. F73CC0801E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3962. F743447C1E127EB2001CC831 /* NSString+TruncateToWidth.m in Sources */,
  3963. F708CF751E56E8CC00271D8B /* TableLocalFile+CoreDataClass.m in Sources */,
  3964. F7FB5F211E66F0A400389481 /* TableActivity+CoreDataClass.m in Sources */,
  3965. F74344831E127F80001CC831 /* RNCryptor.m in Sources */,
  3966. F708CF961E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m in Sources */,
  3967. F7FB5F251E66F0AA00389481 /* TableActivity+CoreDataProperties.m in Sources */,
  3968. );
  3969. runOnlyForDeploymentPostprocessing = 0;
  3970. };
  3971. F743441C1E1264EE001CC831 /* Sources */ = {
  3972. isa = PBXSourcesBuildPhase;
  3973. buildActionMask = 2147483647;
  3974. files = (
  3975. F74344251E1264EE001CC831 /* FileProvider.swift in Sources */,
  3976. F7274FF01E6EB6F400C241B6 /* Constant.swift in Sources */,
  3977. );
  3978. runOnlyForDeploymentPostprocessing = 0;
  3979. };
  3980. F77B0DEF1D118A16002130FE /* Sources */ = {
  3981. isa = PBXSourcesBuildPhase;
  3982. buildActionMask = 2147483647;
  3983. files = (
  3984. F7F06EC51DBFACC600099AE9 /* CTAssetsPickerController.m in Sources */,
  3985. F77B0DF01D118A16002130FE /* UIImage+Resizing.m in Sources */,
  3986. F7F06EAB1DBFACC600099AE9 /* CTAssetSelectionButton.m in Sources */,
  3987. F73CCDE91DC13776007E38D8 /* XLFormPickerCell.m in Sources */,
  3988. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  3989. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  3990. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3991. F7F06EA91DBFACC600099AE9 /* CTAssetScrollView.m in Sources */,
  3992. F73CCDED1DC13776007E38D8 /* XLFormSelectorCell.m in Sources */,
  3993. F7F06E931DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */,
  3994. F72AAECC1E5C60C700BB17E1 /* UIImage+AHKAdditions.m in Sources */,
  3995. F77B0DF71D118A16002130FE /* UIXToolbarView.m in Sources */,
  3996. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  3997. F77B0DFB1D118A16002130FE /* NYXProgressiveImageView.m in Sources */,
  3998. F708CF701E56E8CC00271D8B /* TableMetadata+CoreDataProperties.m in Sources */,
  3999. F77B0DFC1D118A16002130FE /* ReaderDocumentOutline.m in Sources */,
  4000. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  4001. F77B0DFE1D118A16002130FE /* REMenuItem.m in Sources */,
  4002. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  4003. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  4004. F77B0E011D118A16002130FE /* RNCryptor.m in Sources */,
  4005. F77B0E021D118A16002130FE /* CCPhotosCameraUpload.m in Sources */,
  4006. F708CF6D1E56E8CC00271D8B /* TableMetadata+CoreDataClass.m in Sources */,
  4007. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */,
  4008. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  4009. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  4010. F77B0E051D118A16002130FE /* ReaderDocument.m in Sources */,
  4011. F7F06ECD1DBFACC600099AE9 /* CTAssetThumbnailStacks.m in Sources */,
  4012. F7659A581DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m in Sources */,
  4013. F7659A681DC0B760004860C4 /* PSTCollectionViewUpdateItem.m in Sources */,
  4014. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  4015. F7C00D471E2D0D0F0032160B /* CCCellOffline.m in Sources */,
  4016. F77B0E071D118A16002130FE /* ioapi.c in Sources */,
  4017. F73CCDF11DC13776007E38D8 /* XLFormStepCounterCell.m in Sources */,
  4018. F73CCE1F1DC13776007E38D8 /* XLForm.m in Sources */,
  4019. F77B0E0E1D118A16002130FE /* REMenuItemView.m in Sources */,
  4020. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  4021. F73CCDFF1DC13776007E38D8 /* XLFormDescriptor.m in Sources */,
  4022. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */,
  4023. F77B0E111D118A16002130FE /* UIImage+Reflection.m in Sources */,
  4024. F708CF8B1E56E8CC00271D8B /* TableCertificates+CoreDataClass.m in Sources */,
  4025. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  4026. F708CF7C1E56E8CC00271D8B /* TableGPS+CoreDataProperties.m in Sources */,
  4027. F708CF821E56E8CC00271D8B /* TableDirectory+CoreDataProperties.m in Sources */,
  4028. F77B0E121D118A16002130FE /* CCPatenteGuida.m in Sources */,
  4029. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */,
  4030. F7D6A0971D82DBFA0045AD1A /* CCMenu.m in Sources */,
  4031. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */,
  4032. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  4033. F7A13A031E7F3D5D00016680 /* CCProgressView.m in Sources */,
  4034. F7F06EAF1DBFACC600099AE9 /* CTAssetsGridSelectedView.m in Sources */,
  4035. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  4036. F73CCE191DC13776007E38D8 /* XLFormRegexValidator.m in Sources */,
  4037. F7F06E951DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m in Sources */,
  4038. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  4039. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  4040. F73CCE071DC13776007E38D8 /* NSExpression+XLFormAdditions.m in Sources */,
  4041. F70FD1CB1E675F1500C0FDA6 /* CCControlCenterActivity.m in Sources */,
  4042. F77B0E1D1D118A16002130FE /* ReaderThumbQueue.m in Sources */,
  4043. F7274FED1E6EB6F400C241B6 /* Constant.swift in Sources */,
  4044. F7659A6E1DC0B760004860C4 /* PSTGridLayoutRow.m in Sources */,
  4045. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */,
  4046. F77B0E211D118A16002130FE /* ThumbsMainToolbar.m in Sources */,
  4047. F708CF791E56E8CC00271D8B /* TableGPS+CoreDataClass.m in Sources */,
  4048. F73CCDF31DC13776007E38D8 /* XLFormSwitchCell.m in Sources */,
  4049. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */,
  4050. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  4051. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */,
  4052. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  4053. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  4054. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */,
  4055. F77B0E241D118A16002130FE /* HRColorCursor.m in Sources */,
  4056. F708CF851E56E8CC00271D8B /* TableShare+CoreDataClass.m in Sources */,
  4057. F708CF9A1E56E8CC00271D8B /* TableAccount+CoreDataProperties.m in Sources */,
  4058. F77B0E261D118A16002130FE /* ZSSTextView.m in Sources */,
  4059. F7253FCA1E38BAF20084135B /* JSAlertView.m in Sources */,
  4060. F77B0E271D118A16002130FE /* CYRLayoutManager.m in Sources */,
  4061. F77B0E291D118A16002130FE /* NSArray+LMMediaPlayerShuffle.m in Sources */,
  4062. F77B0E2A1D118A16002130FE /* REMenu.m in Sources */,
  4063. F73CCDDB1DC13776007E38D8 /* XLFormButtonCell.m in Sources */,
  4064. F7F06E9B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m in Sources */,
  4065. F77B0E2D1D118A16002130FE /* CYRTextView.m in Sources */,
  4066. F77B0E2F1D118A16002130FE /* LMMediaItemStreamingCache.m in Sources */,
  4067. F73CCDE51DC13776007E38D8 /* XLFormInlineSelectorCell.m in Sources */,
  4068. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  4069. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  4070. F77B0E321D118A16002130FE /* HRCgUtil.m in Sources */,
  4071. F7F06EB71DBFACC600099AE9 /* CTAssetsGridViewFooter.m in Sources */,
  4072. F7F06EB91DBFACC600099AE9 /* CTAssetsGridViewLayout.m in Sources */,
  4073. F7DA62AE1E41E666003E1740 /* CCOfflinePageContent.m in Sources */,
  4074. F7FB5F131E66CDCB00389481 /* CCOfflineContainer.m in Sources */,
  4075. F77B0E351D118A16002130FE /* NYXImagesHelper.m in Sources */,
  4076. F73CCE171DC13776007E38D8 /* XLFormTextView.m in Sources */,
  4077. F77B0E361D118A16002130FE /* ZSSBarButtonItem.m in Sources */,
  4078. F77B0E391D118A16002130FE /* CCContoCorrente.m in Sources */,
  4079. F77B0E3A1D118A16002130FE /* RNCryptorEngine.m in Sources */,
  4080. F77B0E3C1D118A16002130FE /* CCCartaIdentita.m in Sources */,
  4081. F7659A6C1DC0B760004860C4 /* PSTGridLayoutItem.m in Sources */,
  4082. F7F06EA31DBFACC600099AE9 /* CTAssetCollectionViewController.m in Sources */,
  4083. F77B0E411D118A16002130FE /* CCSplit.m in Sources */,
  4084. F77B0E421D118A16002130FE /* ReaderMainPagebar.m in Sources */,
  4085. F77B0E431D118A16002130FE /* ReaderThumbsView.m in Sources */,
  4086. F73CCDFD1DC13776007E38D8 /* XLFormViewController.m in Sources */,
  4087. F73CCDDF1DC13776007E38D8 /* XLFormDateCell.m in Sources */,
  4088. F73CCE1B1DC13776007E38D8 /* XLFormValidationStatus.m in Sources */,
  4089. F77B0E441D118A16002130FE /* CCIntro.m in Sources */,
  4090. F77B0E451D118A16002130FE /* ReaderThumbRender.m in Sources */,
  4091. F77B0E481D118A16002130FE /* CCCrypto.m in Sources */,
  4092. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  4093. F7D6A0911D82DBFA0045AD1A /* CCControlCenter.m in Sources */,
  4094. F708CF761E56E8CC00271D8B /* TableLocalFile+CoreDataProperties.m in Sources */,
  4095. F7659A6A1DC0B760004860C4 /* PSTGridLayoutInfo.m in Sources */,
  4096. F73CCE1D1DC13776007E38D8 /* XLFormValidator.m in Sources */,
  4097. F77B0E491D118A16002130FE /* UIImage+Saving.m in Sources */,
  4098. F73CCE011DC13776007E38D8 /* XLFormRowDescriptor.m in Sources */,
  4099. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */,
  4100. F77B0E4D1D118A16002130FE /* CCCoreData.m in Sources */,
  4101. F7659A5E1DC0B760004860C4 /* PSTCollectionViewController.m in Sources */,
  4102. F7F801031D98205A007537BC /* CCCertificate.m in Sources */,
  4103. F77B0E4F1D118A16002130FE /* CCManageCameraUpload.m in Sources */,
  4104. F77B0E511D118A16002130FE /* UIImage+Filtering.m in Sources */,
  4105. F73CCDEB1DC13776007E38D8 /* XLFormSegmentedCell.m in Sources */,
  4106. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  4107. F7F06E911DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m in Sources */,
  4108. F77B0E541D118A16002130FE /* CCMove.m in Sources */,
  4109. F73CCE051DC13776007E38D8 /* NSArray+XLFormAdditions.m in Sources */,
  4110. F77B0E551D118A16002130FE /* SSZipArchive.m in Sources */,
  4111. F77B0E581D118A16002130FE /* ReaderThumbView.m in Sources */,
  4112. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  4113. F77B0E5A1D118A16002130FE /* ReaderContentTile.m in Sources */,
  4114. F77B0E5B1D118A16002130FE /* UIImage+Rotating.m in Sources */,
  4115. F7F06E8D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m in Sources */,
  4116. F73CCDDD1DC13776007E38D8 /* XLFormCheckCell.m in Sources */,
  4117. F73CCE0B1DC13776007E38D8 /* NSPredicate+XLFormAdditions.m in Sources */,
  4118. F73CCE131DC13776007E38D8 /* XLFormRightImageButton.m in Sources */,
  4119. F77B0E5D1D118A16002130FE /* UIImage+Blurring.m in Sources */,
  4120. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */,
  4121. F77B0E5E1D118A16002130FE /* unzip.c in Sources */,
  4122. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */,
  4123. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  4124. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  4125. F77B0E601D118A16002130FE /* CGPDFDocument.m in Sources */,
  4126. F77B0E621D118A16002130FE /* REMenuContainerView.m in Sources */,
  4127. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */,
  4128. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */,
  4129. F70FD1C71E67552700C0FDA6 /* CCControlCenterTransfer.m in Sources */,
  4130. F7F54D071E5B14C800E19C62 /* MWGridCell.m in Sources */,
  4131. F77B0E651D118A16002130FE /* LMMediaPlayerView.m in Sources */,
  4132. F708CF731E56E8CC00271D8B /* TableLocalFile+CoreDataClass.m in Sources */,
  4133. F77B0E661D118A16002130FE /* NSString+Base64.m in Sources */,
  4134. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  4135. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  4136. F77B0E6A1D118A16002130FE /* RNDecryptor.m in Sources */,
  4137. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  4138. F73CCDF91DC13776007E38D8 /* XLFormOptionsObject.m in Sources */,
  4139. F77B0E6B1D118A16002130FE /* ReaderThumbCache.m in Sources */,
  4140. F77B0E6C1D118A16002130FE /* ReaderContentPage.m in Sources */,
  4141. F708CF941E56E8CC00271D8B /* TableAutomaticUpload+CoreDataProperties.m in Sources */,
  4142. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  4143. F7F06E8F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m in Sources */,
  4144. F73CCDF51DC13776007E38D8 /* XLFormTextFieldCell.m in Sources */,
  4145. F77B0E711D118A16002130FE /* LMMediaItem.m in Sources */,
  4146. F7F6AC4E1E525AD300E8EB45 /* CCManageCryptoCloud.m in Sources */,
  4147. F77B0E731D118A16002130FE /* PPImageScrollingTableViewCell.m in Sources */,
  4148. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */,
  4149. F77B0E741D118A16002130FE /* CCBancomat.m in Sources */,
  4150. F77B0E761D118A16002130FE /* ReaderViewController.m in Sources */,
  4151. F77B0E781D118A16002130FE /* ReaderThumbFetch.m in Sources */,
  4152. F77B0E7B1D118A16002130FE /* CCPassaporto.m in Sources */,
  4153. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */,
  4154. F7F06EA51DBFACC600099AE9 /* CTAssetItemViewController.m in Sources */,
  4155. F7659A5A1DC0B760004860C4 /* PSTCollectionView.m in Sources */,
  4156. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  4157. F77B0E7D1D118A16002130FE /* CYRTextStorage.m in Sources */,
  4158. F77B0E7E1D118A16002130FE /* ThumbsViewController.m in Sources */,
  4159. F77B0E801D118A16002130FE /* ZSSRichTextEditor.m in Sources */,
  4160. F7F06EC91DBFACC600099AE9 /* CTAssetsViewControllerTransition.m in Sources */,
  4161. F7659A661DC0B760004860C4 /* PSTCollectionViewLayout.m in Sources */,
  4162. F708CF911E56E8CC00271D8B /* TableAutomaticUpload+CoreDataClass.m in Sources */,
  4163. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  4164. F73CCE151DC13776007E38D8 /* XLFormRowNavigationAccessoryView.m in Sources */,
  4165. F73CCDFB1DC13776007E38D8 /* XLFormOptionsViewController.m in Sources */,
  4166. F77B0E871D118A16002130FE /* NSData+Base64.m in Sources */,
  4167. F77B0E8A1D118A16002130FE /* CCCartaDiCredito.m in Sources */,
  4168. F77B0E8C1D118A16002130FE /* ReaderConstants.m in Sources */,
  4169. F7FB5F1C1E66EB7200389481 /* TableActivity+CoreDataClass.m in Sources */,
  4170. F7FB5F1E1E66EB7200389481 /* TableActivity+CoreDataProperties.m in Sources */,
  4171. F77B0E8D1D118A16002130FE /* LMMediaPlayer.m in Sources */,
  4172. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  4173. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  4174. F77B0E901D118A16002130FE /* CCManageHelp.m in Sources */,
  4175. F77B0E911D118A16002130FE /* CCTemplates.m in Sources */,
  4176. F73CCDE11DC13776007E38D8 /* XLFormDatePickerCell.m in Sources */,
  4177. F72AAECD1E5C60C700BB17E1 /* UIWindow+AHKAdditions.m in Sources */,
  4178. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  4179. F73CCDE31DC13776007E38D8 /* XLFormImageCell.m in Sources */,
  4180. F7659A5C1DC0B760004860C4 /* PSTCollectionViewCell.m in Sources */,
  4181. F77B0E951D118A16002130FE /* CCManageAsset.m in Sources */,
  4182. F7659A391DC0B737004860C4 /* iRate.m in Sources */,
  4183. F77B0E961D118A16002130FE /* ReaderContentView.m in Sources */,
  4184. F77B0E971D118A16002130FE /* LMMediaItemQueueManager.m in Sources */,
  4185. F73CCE0D1DC13776007E38D8 /* NSString+XLFormAdditions.m in Sources */,
  4186. F73CCE0F1DC13776007E38D8 /* UIView+XLFormAdditions.m in Sources */,
  4187. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */,
  4188. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  4189. F77B0E991D118A16002130FE /* PPCollectionViewCell.m in Sources */,
  4190. F7F06EC11DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m in Sources */,
  4191. F7F06ECB1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m in Sources */,
  4192. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  4193. F77B0E9D1D118A16002130FE /* HRColorPickerView.m in Sources */,
  4194. F77B0E9F1D118A16002130FE /* mztools.c in Sources */,
  4195. F7F06EC71DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m in Sources */,
  4196. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */,
  4197. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  4198. F73CCDF71DC13776007E38D8 /* XLFormTextViewCell.m in Sources */,
  4199. F78088EA1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */,
  4200. F7659A601DC0B760004860C4 /* PSTCollectionViewData.m in Sources */,
  4201. F77B0EAA1D118A16002130FE /* zip.c in Sources */,
  4202. F77B0EAB1D118A16002130FE /* HRColorPickerViewController.m in Sources */,
  4203. F7A13A041E7F3D5D00016680 /* UINavigationController+CCProgress.m in Sources */,
  4204. F7F06EB51DBFACC600099AE9 /* CTAssetsGridViewController.m in Sources */,
  4205. F73C002F1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m in Sources */,
  4206. F7659A621DC0B760004860C4 /* PSTCollectionViewFlowLayout.m in Sources */,
  4207. F7F06EBD1DBFACC600099AE9 /* CTAssetsPageView.m in Sources */,
  4208. F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */,
  4209. F7659A641DC0B760004860C4 /* PSTCollectionViewItemKey.m in Sources */,
  4210. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  4211. F7F06ECF1DBFACC600099AE9 /* CTAssetThumbnailView.m in Sources */,
  4212. F7F06E9F1DBFACC600099AE9 /* CTAssetCheckmark.m in Sources */,
  4213. F7F54D081E5B14C800E19C62 /* MWGridViewController.m in Sources */,
  4214. F7F06E971DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m in Sources */,
  4215. F77B0EB11D118A16002130FE /* CCMetadata.m in Sources */,
  4216. F7F06E9D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m in Sources */,
  4217. F77B0EB21D118A16002130FE /* ReaderMainToolbar.m in Sources */,
  4218. F73CCDEF1DC13776007E38D8 /* XLFormSliderCell.m in Sources */,
  4219. F77B0EB51D118A16002130FE /* RECommonFunctions.m in Sources */,
  4220. F73CCE111DC13776007E38D8 /* XLFormRightDetailCell.m in Sources */,
  4221. F7EC147B1E5D9C0B0046F351 /* CCSynchronize.m in Sources */,
  4222. F73CCDE71DC13776007E38D8 /* XLFormLeftRightSelectorCell.m in Sources */,
  4223. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */,
  4224. F77B0EB71D118A16002130FE /* ReaderThumbRequest.m in Sources */,
  4225. F7F06EB31DBFACC600099AE9 /* CTAssetsGridViewCell.m in Sources */,
  4226. F77B0EB81D118A16002130FE /* CCAccountWeb.m in Sources */,
  4227. F708CF7F1E56E8CC00271D8B /* TableDirectory+CoreDataClass.m in Sources */,
  4228. F77B0EB91D118A16002130FE /* HRColorUtil.m in Sources */,
  4229. F73CCDD91DC13776007E38D8 /* XLFormBaseCell.m in Sources */,
  4230. F708CF881E56E8CC00271D8B /* TableShare+CoreDataProperties.m in Sources */,
  4231. F7F06EA71DBFACC600099AE9 /* CTAssetPlayButton.m in Sources */,
  4232. F73CCE031DC13776007E38D8 /* XLFormSectionDescriptor.m in Sources */,
  4233. F7676A641D5CB1B900DF734C /* TWMessageBarManager.m in Sources */,
  4234. F77B0EBE1D118A16002130FE /* CCNote.m in Sources */,
  4235. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  4236. F77B0EBF1D118A16002130FE /* RNEncryptor.m in Sources */,
  4237. F7F06EBF1DBFACC600099AE9 /* CTAssetsPageViewController.m in Sources */,
  4238. F7F06EA11DBFACC600099AE9 /* CTAssetCollectionViewCell.m in Sources */,
  4239. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  4240. F7F06EAD1DBFACC600099AE9 /* CTAssetSelectionLabel.m in Sources */,
  4241. F7659A701DC0B760004860C4 /* PSTGridLayoutSection.m in Sources */,
  4242. F77B0EC21D118A16002130FE /* CCManageOptimizations.m in Sources */,
  4243. F77B0EC31D118A16002130FE /* UIImage+Enhancing.m in Sources */,
  4244. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  4245. F77B0EC71D118A16002130FE /* AESCrypt.m in Sources */,
  4246. F744FA7E1E57333C00BFAB34 /* APAvatarImageView.m in Sources */,
  4247. F73CCE091DC13776007E38D8 /* NSObject+XLFormAdditions.m in Sources */,
  4248. F708CF971E56E8CC00271D8B /* TableAccount+CoreDataClass.m in Sources */,
  4249. F708CF8E1E56E8CC00271D8B /* TableCertificates+CoreDataProperties.m in Sources */,
  4250. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */,
  4251. F77B0ECB1D118A16002130FE /* HRBrightnessCursor.m in Sources */,
  4252. F77B0ECC1D118A16002130FE /* UIImage+Masking.m in Sources */,
  4253. F77B0ECE1D118A16002130FE /* NSData+CommonCrypto.m in Sources */,
  4254. F77B0ECF1D118A16002130FE /* CYRToken.m in Sources */,
  4255. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  4256. F7F06EB11DBFACC600099AE9 /* CTAssetsGridView.m in Sources */,
  4257. F7D6A0931D82DBFA0045AD1A /* CCControlCenterTransferCell.m in Sources */,
  4258. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  4259. F77B0ED31D118A16002130FE /* PPImageScrollingCellView.m in Sources */,
  4260. F77B0ED41D118A16002130FE /* LMMediaPlayerHelper.m in Sources */,
  4261. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  4262. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  4263. F7F06E991DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m in Sources */,
  4264. F7F06EBB1DBFACC600099AE9 /* CTAssetsNavigationController.m in Sources */,
  4265. F77B0ED91D118A16002130FE /* main.m in Sources */,
  4266. );
  4267. runOnlyForDeploymentPostprocessing = 0;
  4268. };
  4269. /* End PBXSourcesBuildPhase section */
  4270. /* Begin PBXTargetDependency section */
  4271. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  4272. isa = PBXTargetDependency;
  4273. target = F71459B41D12E3B700CAFEEC /* Share */;
  4274. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  4275. };
  4276. F74344281E1264EE001CC831 /* PBXTargetDependency */ = {
  4277. isa = PBXTargetDependency;
  4278. target = F743441F1E1264EE001CC831 /* PickerFileProvider */;
  4279. targetProxy = F74344271E1264EE001CC831 /* PBXContainerItemProxy */;
  4280. };
  4281. F743442B1E1264EE001CC831 /* PBXTargetDependency */ = {
  4282. isa = PBXTargetDependency;
  4283. target = F74344111E1264ED001CC831 /* Picker */;
  4284. targetProxy = F743442A1E1264EE001CC831 /* PBXContainerItemProxy */;
  4285. };
  4286. /* End PBXTargetDependency section */
  4287. /* Begin PBXVariantGroup section */
  4288. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */ = {
  4289. isa = PBXVariantGroup;
  4290. children = (
  4291. F7C1D8BB1D47781C00B89DEA /* nl */,
  4292. F7151A801D477A4B00E6AF45 /* en */,
  4293. F7151A861D477A5400E6AF45 /* it */,
  4294. F7D96F0B1D99498600A587A5 /* de */,
  4295. F73814271E65A52C0011A45E /* fr */,
  4296. F7202C8E1E68171900C6D9AD /* ru */,
  4297. F7202C961E6817A400C6D9AD /* pl */,
  4298. F7202C9C1E6818B700C6D9AD /* es */,
  4299. F7BEC53E1E7981720048500A /* is */,
  4300. F732B2D71E802B71002B7D75 /* pt-BR */,
  4301. );
  4302. name = BKPasscodeView.strings;
  4303. path = "Supporting Files";
  4304. sourceTree = "<group>";
  4305. };
  4306. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */ = {
  4307. isa = PBXVariantGroup;
  4308. children = (
  4309. F732B3361E8045A1002B7D75 /* en */,
  4310. F732B3381E8045CB002B7D75 /* es */,
  4311. F732B3391E8045CF002B7D75 /* nl */,
  4312. F732B33A1E8045D0002B7D75 /* it */,
  4313. F732B33B1E8045D4002B7D75 /* de */,
  4314. F732B33C1E8045D7002B7D75 /* fr */,
  4315. F732B33D1E8045D8002B7D75 /* ru */,
  4316. F732B33E1E8045DA002B7D75 /* pl */,
  4317. F732B33F1E8045DC002B7D75 /* is */,
  4318. F732B3401E8045DF002B7D75 /* pt-BR */,
  4319. );
  4320. name = SwiftWebVC.strings;
  4321. path = "Supporting Files";
  4322. sourceTree = "<group>";
  4323. };
  4324. F744BE9F1BEBB69F004FFF66 /* Intro.strings */ = {
  4325. isa = PBXVariantGroup;
  4326. children = (
  4327. F7C1D8BE1D47781D00B89DEA /* nl */,
  4328. F7151A831D477A4B00E6AF45 /* en */,
  4329. F7151A891D477A5500E6AF45 /* it */,
  4330. F7D96F0E1D99498700A587A5 /* de */,
  4331. F738142A1E65A52D0011A45E /* fr */,
  4332. F7202C911E68171900C6D9AD /* ru */,
  4333. F7202C991E6817A500C6D9AD /* pl */,
  4334. F7202C9F1E6818B700C6D9AD /* es */,
  4335. F7BEC5411E7981720048500A /* is */,
  4336. F732B2DA1E802B72002B7D75 /* pt-BR */,
  4337. );
  4338. name = Intro.strings;
  4339. path = "Supporting Files";
  4340. sourceTree = "<group>";
  4341. };
  4342. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */ = {
  4343. isa = PBXVariantGroup;
  4344. children = (
  4345. F75797AD1E81356C00187A1B /* en */,
  4346. F75797AF1E81359500187A1B /* de */,
  4347. F75797B01E8135AB00187A1B /* es */,
  4348. F75797B11E81363C00187A1B /* nl */,
  4349. F75797B21E81363F00187A1B /* it */,
  4350. F75797B31E81364100187A1B /* fr */,
  4351. F75797B41E81364400187A1B /* ru */,
  4352. F75797B51E81364700187A1B /* pl */,
  4353. F75797B61E81364A00187A1B /* is */,
  4354. F75797B71E81364C00187A1B /* pt-BR */,
  4355. );
  4356. name = CTAssetsPicker.strings;
  4357. path = "Supporting Files";
  4358. sourceTree = "<group>";
  4359. };
  4360. F7B381BF1C074E3E004693F8 /* Error.strings */ = {
  4361. isa = PBXVariantGroup;
  4362. children = (
  4363. F7C1D8BF1D47781D00B89DEA /* nl */,
  4364. F7151A841D477A4B00E6AF45 /* en */,
  4365. F7151A8A1D477A5500E6AF45 /* it */,
  4366. F7D96F0F1D99498700A587A5 /* de */,
  4367. F738142B1E65A52D0011A45E /* fr */,
  4368. F7202C921E68171A00C6D9AD /* ru */,
  4369. F7202C9A1E6817A500C6D9AD /* pl */,
  4370. F7202CA01E6818B700C6D9AD /* es */,
  4371. F7BEC5421E7981720048500A /* is */,
  4372. F732B2DB1E802B72002B7D75 /* pt-BR */,
  4373. );
  4374. name = Error.strings;
  4375. path = "Supporting Files";
  4376. sourceTree = "<group>";
  4377. };
  4378. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */ = {
  4379. isa = PBXVariantGroup;
  4380. children = (
  4381. F7C1D8BD1D47781C00B89DEA /* nl */,
  4382. F7151A821D477A4B00E6AF45 /* en */,
  4383. F7151A881D477A5400E6AF45 /* it */,
  4384. F7D96F0D1D99498600A587A5 /* de */,
  4385. F73814291E65A52D0011A45E /* fr */,
  4386. F7202C901E68171900C6D9AD /* ru */,
  4387. F7202C981E6817A500C6D9AD /* pl */,
  4388. F7202C9E1E6818B700C6D9AD /* es */,
  4389. F7BEC5401E7981720048500A /* is */,
  4390. F732B2D91E802B72002B7D75 /* pt-BR */,
  4391. );
  4392. name = InfoPlist.strings;
  4393. path = "Supporting Files";
  4394. sourceTree = "<group>";
  4395. };
  4396. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  4397. isa = PBXVariantGroup;
  4398. children = (
  4399. F7C1D8BC1D47781C00B89DEA /* nl */,
  4400. F7151A811D477A4B00E6AF45 /* en */,
  4401. F7151A871D477A5400E6AF45 /* it */,
  4402. F7D96F0C1D99498600A587A5 /* de */,
  4403. F73814281E65A52D0011A45E /* fr */,
  4404. F7202C8F1E68171900C6D9AD /* ru */,
  4405. F7202C971E6817A500C6D9AD /* pl */,
  4406. F7202C9D1E6818B700C6D9AD /* es */,
  4407. F7BEC53F1E7981720048500A /* is */,
  4408. F732B2D81E802B71002B7D75 /* pt-BR */,
  4409. );
  4410. name = Localizable.strings;
  4411. path = "Supporting Files";
  4412. sourceTree = "<group>";
  4413. };
  4414. /* End PBXVariantGroup section */
  4415. /* Begin XCBuildConfiguration section */
  4416. F7145A261D12E3B700CAFEEC /* Debug */ = {
  4417. isa = XCBuildConfiguration;
  4418. buildSettings = {
  4419. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4420. APPLICATION_EXTENSION_API_ONLY = NO;
  4421. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4422. CLANG_ENABLE_MODULES = YES;
  4423. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4424. CODE_SIGN_IDENTITY = "iPhone Developer";
  4425. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4426. DEBUG_INFORMATION_FORMAT = dwarf;
  4427. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4428. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  4429. GCC_NO_COMMON_BLOCKS = YES;
  4430. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4431. GCC_PREPROCESSOR_DEFINITIONS = (
  4432. "$(inherited)",
  4433. "EXTENSION=1",
  4434. "NC=1",
  4435. );
  4436. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4437. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4438. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4439. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4440. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4441. OTHER_LDFLAGS = (
  4442. "-Obj-C",
  4443. "-all_load",
  4444. );
  4445. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4446. PRODUCT_NAME = "$(TARGET_NAME)";
  4447. SKIP_INSTALL = YES;
  4448. SWIFT_OBJC_BRIDGING_HEADER = "Share Ext/Share Ext-Bridging-Header.h";
  4449. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4450. SWIFT_VERSION = 3.0;
  4451. TARGETED_DEVICE_FAMILY = "1,2";
  4452. USE_HEADERMAP = YES;
  4453. };
  4454. name = Debug;
  4455. };
  4456. F7145A271D12E3B700CAFEEC /* Release */ = {
  4457. isa = XCBuildConfiguration;
  4458. buildSettings = {
  4459. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4460. APPLICATION_EXTENSION_API_ONLY = NO;
  4461. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4462. CLANG_ENABLE_MODULES = YES;
  4463. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4464. CODE_SIGN_IDENTITY = "iPhone Developer";
  4465. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4466. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4467. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4468. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  4469. GCC_NO_COMMON_BLOCKS = YES;
  4470. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4471. GCC_PREPROCESSOR_DEFINITIONS = (
  4472. "$(inherited)",
  4473. "EXTENSION=1",
  4474. "NC=1",
  4475. );
  4476. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4477. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4478. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4479. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4480. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4481. OTHER_LDFLAGS = (
  4482. "-Obj-C",
  4483. "-all_load",
  4484. );
  4485. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4486. PRODUCT_NAME = "$(TARGET_NAME)";
  4487. SKIP_INSTALL = YES;
  4488. SWIFT_OBJC_BRIDGING_HEADER = "Share Ext/Share Ext-Bridging-Header.h";
  4489. SWIFT_VERSION = 3.0;
  4490. TARGETED_DEVICE_FAMILY = "1,2";
  4491. USE_HEADERMAP = YES;
  4492. };
  4493. name = Release;
  4494. };
  4495. F743442D1E1264EE001CC831 /* Debug */ = {
  4496. isa = XCBuildConfiguration;
  4497. buildSettings = {
  4498. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4499. CLANG_ANALYZER_NONNULL = YES;
  4500. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4501. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Picker.entitlements;
  4502. CODE_SIGN_IDENTITY = "iPhone Developer";
  4503. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4504. DEBUG_INFORMATION_FORMAT = dwarf;
  4505. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4506. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4507. GCC_PREPROCESSOR_DEFINITIONS = (
  4508. "EXTENSION=1",
  4509. "DEBUG=1",
  4510. "NC=1",
  4511. );
  4512. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4513. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Picker.plist";
  4514. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4515. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4516. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4517. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Picker;
  4518. PRODUCT_NAME = "$(TARGET_NAME)";
  4519. SKIP_INSTALL = YES;
  4520. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG NC";
  4521. SWIFT_OBJC_BRIDGING_HEADER = "Picker/Picker-Bridging-Header.h";
  4522. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4523. SWIFT_VERSION = 3.0;
  4524. TARGETED_DEVICE_FAMILY = "1,2";
  4525. };
  4526. name = Debug;
  4527. };
  4528. F743442E1E1264EE001CC831 /* Release */ = {
  4529. isa = XCBuildConfiguration;
  4530. buildSettings = {
  4531. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4532. CLANG_ANALYZER_NONNULL = YES;
  4533. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4534. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Picker.entitlements;
  4535. CODE_SIGN_IDENTITY = "iPhone Developer";
  4536. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4537. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4538. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4539. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4540. GCC_PREPROCESSOR_DEFINITIONS = (
  4541. "EXTENSION=1",
  4542. "NC=1",
  4543. );
  4544. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4545. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Picker.plist";
  4546. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4547. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4548. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4549. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Picker;
  4550. PRODUCT_NAME = "$(TARGET_NAME)";
  4551. SKIP_INSTALL = YES;
  4552. SWIFT_ACTIVE_COMPILATION_CONDITIONS = NC;
  4553. SWIFT_OBJC_BRIDGING_HEADER = "Picker/Picker-Bridging-Header.h";
  4554. SWIFT_VERSION = 3.0;
  4555. TARGETED_DEVICE_FAMILY = "1,2";
  4556. };
  4557. name = Release;
  4558. };
  4559. F743442F1E1264EE001CC831 /* Debug */ = {
  4560. isa = XCBuildConfiguration;
  4561. buildSettings = {
  4562. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4563. CLANG_ANALYZER_NONNULL = YES;
  4564. CLANG_ENABLE_MODULES = YES;
  4565. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4566. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/PickerFileProvider.entitlements;
  4567. CODE_SIGN_IDENTITY = "iPhone Developer";
  4568. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4569. DEBUG_INFORMATION_FORMAT = dwarf;
  4570. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4571. GCC_PREPROCESSOR_DEFINITIONS = (
  4572. "DEBUG=1",
  4573. "EXTENSION=1",
  4574. "NC=1",
  4575. );
  4576. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/PickerFileProvider.plist";
  4577. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4578. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4579. LIBRARY_SEARCH_PATHS = "$(inherited)";
  4580. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.PickerFileProvider;
  4581. PRODUCT_NAME = "$(TARGET_NAME)";
  4582. SKIP_INSTALL = YES;
  4583. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG NC";
  4584. SWIFT_OBJC_BRIDGING_HEADER = "PickerFileProvider/PickerFileProvider-Bridging-Header.h";
  4585. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4586. SWIFT_VERSION = 3.0;
  4587. TARGETED_DEVICE_FAMILY = "1,2";
  4588. };
  4589. name = Debug;
  4590. };
  4591. F74344301E1264EE001CC831 /* Release */ = {
  4592. isa = XCBuildConfiguration;
  4593. buildSettings = {
  4594. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4595. CLANG_ANALYZER_NONNULL = YES;
  4596. CLANG_ENABLE_MODULES = YES;
  4597. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4598. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/PickerFileProvider.entitlements;
  4599. CODE_SIGN_IDENTITY = "iPhone Developer";
  4600. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4601. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4602. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4603. GCC_PREPROCESSOR_DEFINITIONS = (
  4604. "NC=1",
  4605. "EXTENSION=1",
  4606. );
  4607. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/PickerFileProvider.plist";
  4608. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4609. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4610. LIBRARY_SEARCH_PATHS = "$(inherited)";
  4611. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.PickerFileProvider;
  4612. PRODUCT_NAME = "$(TARGET_NAME)";
  4613. SKIP_INSTALL = YES;
  4614. SWIFT_ACTIVE_COMPILATION_CONDITIONS = NC;
  4615. SWIFT_OBJC_BRIDGING_HEADER = "PickerFileProvider/PickerFileProvider-Bridging-Header.h";
  4616. SWIFT_VERSION = 3.0;
  4617. TARGETED_DEVICE_FAMILY = "1,2";
  4618. };
  4619. name = Release;
  4620. };
  4621. F77B0F9B1D118A16002130FE /* Debug */ = {
  4622. isa = XCBuildConfiguration;
  4623. buildSettings = {
  4624. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4625. ASSETCATALOG_COMPILER_APPICON_NAME = AppIconNextcloud;
  4626. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4627. CLANG_ENABLE_MODULES = YES;
  4628. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4629. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4630. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4631. CURRENT_PROJECT_VERSION = "";
  4632. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4633. ENABLE_BITCODE = YES;
  4634. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  4635. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4636. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4637. GCC_PREPROCESSOR_DEFINITIONS = (
  4638. "$(inherited)",
  4639. "NC=1",
  4640. );
  4641. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4642. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4643. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4644. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4645. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4646. OTHER_LDFLAGS = (
  4647. "-Obj-C",
  4648. "-all_load",
  4649. );
  4650. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4651. PRODUCT_NAME = "$(TARGET_NAME)";
  4652. PROVISIONING_PROFILE = "";
  4653. PROVISIONING_PROFILE_SPECIFIER = "";
  4654. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4655. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4656. SWIFT_VERSION = 3.0;
  4657. TARGETED_DEVICE_FAMILY = "1,2";
  4658. USE_HEADERMAP = YES;
  4659. VERSIONING_SYSTEM = "";
  4660. };
  4661. name = Debug;
  4662. };
  4663. F77B0F9C1D118A16002130FE /* Release */ = {
  4664. isa = XCBuildConfiguration;
  4665. buildSettings = {
  4666. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4667. ASSETCATALOG_COMPILER_APPICON_NAME = AppIconNextcloud;
  4668. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4669. CLANG_ENABLE_MODULES = YES;
  4670. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4671. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  4672. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4673. COPY_PHASE_STRIP = NO;
  4674. CURRENT_PROJECT_VERSION = "";
  4675. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4676. ENABLE_BITCODE = YES;
  4677. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  4678. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4679. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4680. GCC_PREPROCESSOR_DEFINITIONS = (
  4681. "$(inherited)",
  4682. "NC=1",
  4683. );
  4684. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4685. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4686. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4687. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4688. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4689. OTHER_LDFLAGS = (
  4690. "-Obj-C",
  4691. "-all_load",
  4692. );
  4693. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4694. PRODUCT_NAME = "$(TARGET_NAME)";
  4695. PROVISIONING_PROFILE = "";
  4696. PROVISIONING_PROFILE_SPECIFIER = "";
  4697. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4698. SWIFT_VERSION = 3.0;
  4699. TARGETED_DEVICE_FAMILY = "1,2";
  4700. USE_HEADERMAP = YES;
  4701. VERSIONING_SYSTEM = "";
  4702. };
  4703. name = Release;
  4704. };
  4705. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4706. isa = XCBuildConfiguration;
  4707. buildSettings = {
  4708. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4709. ALWAYS_SEARCH_USER_PATHS = NO;
  4710. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4711. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4712. CLANG_CXX_LIBRARY = "libc++";
  4713. CLANG_ENABLE_MODULES = YES;
  4714. CLANG_ENABLE_OBJC_ARC = YES;
  4715. CLANG_WARN_BOOL_CONVERSION = YES;
  4716. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4717. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4718. CLANG_WARN_EMPTY_BODY = YES;
  4719. CLANG_WARN_ENUM_CONVERSION = YES;
  4720. CLANG_WARN_INFINITE_RECURSION = YES;
  4721. CLANG_WARN_INT_CONVERSION = YES;
  4722. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4723. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4724. CLANG_WARN_UNREACHABLE_CODE = YES;
  4725. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4726. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4727. COPY_PHASE_STRIP = NO;
  4728. DEFINES_MODULE = YES;
  4729. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4730. ENABLE_TESTABILITY = YES;
  4731. GCC_C_LANGUAGE_STANDARD = gnu99;
  4732. GCC_DYNAMIC_NO_PIC = NO;
  4733. GCC_NO_COMMON_BLOCKS = YES;
  4734. GCC_OPTIMIZATION_LEVEL = 0;
  4735. GCC_PREPROCESSOR_DEFINITIONS = (
  4736. "DEBUG=1",
  4737. "$(inherited)",
  4738. );
  4739. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4740. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4741. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4742. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4743. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4744. GCC_WARN_UNUSED_FUNCTION = YES;
  4745. GCC_WARN_UNUSED_VARIABLE = YES;
  4746. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4747. MTL_ENABLE_DEBUG_INFO = YES;
  4748. ONLY_ACTIVE_ARCH = YES;
  4749. OTHER_LDFLAGS = (
  4750. "-Obj-C",
  4751. "-all_load",
  4752. );
  4753. SDKROOT = iphoneos;
  4754. };
  4755. name = Debug;
  4756. };
  4757. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4758. isa = XCBuildConfiguration;
  4759. buildSettings = {
  4760. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  4761. ALWAYS_SEARCH_USER_PATHS = NO;
  4762. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4763. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4764. CLANG_CXX_LIBRARY = "libc++";
  4765. CLANG_ENABLE_MODULES = YES;
  4766. CLANG_ENABLE_OBJC_ARC = YES;
  4767. CLANG_WARN_BOOL_CONVERSION = YES;
  4768. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4769. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4770. CLANG_WARN_EMPTY_BODY = YES;
  4771. CLANG_WARN_ENUM_CONVERSION = YES;
  4772. CLANG_WARN_INFINITE_RECURSION = YES;
  4773. CLANG_WARN_INT_CONVERSION = YES;
  4774. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4775. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4776. CLANG_WARN_UNREACHABLE_CODE = YES;
  4777. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4778. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4779. COPY_PHASE_STRIP = NO;
  4780. DEFINES_MODULE = YES;
  4781. ENABLE_NS_ASSERTIONS = NO;
  4782. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4783. GCC_C_LANGUAGE_STANDARD = gnu99;
  4784. GCC_NO_COMMON_BLOCKS = YES;
  4785. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4786. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4787. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4788. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4789. GCC_WARN_UNUSED_FUNCTION = YES;
  4790. GCC_WARN_UNUSED_VARIABLE = YES;
  4791. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4792. MTL_ENABLE_DEBUG_INFO = NO;
  4793. OTHER_LDFLAGS = (
  4794. "-Obj-C",
  4795. "-all_load",
  4796. );
  4797. SDKROOT = iphoneos;
  4798. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  4799. VALIDATE_PRODUCT = YES;
  4800. };
  4801. name = Release;
  4802. };
  4803. /* End XCBuildConfiguration section */
  4804. /* Begin XCConfigurationList section */
  4805. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4806. isa = XCConfigurationList;
  4807. buildConfigurations = (
  4808. F7145A261D12E3B700CAFEEC /* Debug */,
  4809. F7145A271D12E3B700CAFEEC /* Release */,
  4810. );
  4811. defaultConfigurationIsVisible = 0;
  4812. defaultConfigurationName = Release;
  4813. };
  4814. F743443B1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "PickerFileProvider" */ = {
  4815. isa = XCConfigurationList;
  4816. buildConfigurations = (
  4817. F743442F1E1264EE001CC831 /* Debug */,
  4818. F74344301E1264EE001CC831 /* Release */,
  4819. );
  4820. defaultConfigurationIsVisible = 0;
  4821. defaultConfigurationName = Release;
  4822. };
  4823. F743443C1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "Picker" */ = {
  4824. isa = XCConfigurationList;
  4825. buildConfigurations = (
  4826. F743442D1E1264EE001CC831 /* Debug */,
  4827. F743442E1E1264EE001CC831 /* Release */,
  4828. );
  4829. defaultConfigurationIsVisible = 0;
  4830. defaultConfigurationName = Release;
  4831. };
  4832. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4833. isa = XCConfigurationList;
  4834. buildConfigurations = (
  4835. F77B0F9B1D118A16002130FE /* Debug */,
  4836. F77B0F9C1D118A16002130FE /* Release */,
  4837. );
  4838. defaultConfigurationIsVisible = 0;
  4839. defaultConfigurationName = Release;
  4840. };
  4841. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4842. isa = XCConfigurationList;
  4843. buildConfigurations = (
  4844. F7F67BC91A24D27800EE80DA /* Debug */,
  4845. F7F67BCA1A24D27800EE80DA /* Release */,
  4846. );
  4847. defaultConfigurationIsVisible = 0;
  4848. defaultConfigurationName = Release;
  4849. };
  4850. /* End XCConfigurationList section */
  4851. /* Begin XCVersionGroup section */
  4852. F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */ = {
  4853. isa = XCVersionGroup;
  4854. children = (
  4855. F7C00D4A1E2D10BB0032160B /* cryptocloud 7.xcdatamodel */,
  4856. F7BFA4541E0693EE0010E44C /* cryptocloud 5.xcdatamodel */,
  4857. F78088E61DD3A1DB005C5A7C /* cryptocloud 2.xcdatamodel */,
  4858. F78088E71DD3A1DB005C5A7C /* cryptocloud 3.xcdatamodel */,
  4859. F78088E81DD3A1DB005C5A7C /* cryptocloud 4.xcdatamodel */,
  4860. F78088E91DD3A1DB005C5A7C /* cryptocloud.xcdatamodel */,
  4861. );
  4862. currentVersion = F7C00D4A1E2D10BB0032160B /* cryptocloud 7.xcdatamodel */;
  4863. path = cryptocloud.xcdatamodeld;
  4864. sourceTree = "<group>";
  4865. versionGroupType = wrapper.xcdatamodel;
  4866. };
  4867. /* End XCVersionGroup section */
  4868. };
  4869. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4870. }