project.pbxproj 358 KB

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