project.pbxproj 444 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  10. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  11. F700222E1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  12. F70022A11EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  13. F70022A21EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  14. F70022A31EC4C9100080073F /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */; };
  15. F70022A41EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  16. F70022A51EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  17. F70022A61EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */; };
  18. F70022A71EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  19. F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  20. F70022A91EC4C9100080073F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F700225F1EC4C9100080073F /* AFSecurityPolicy.m */; };
  21. F70022AA1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  22. F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  23. F70022AC1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022611EC4C9100080073F /* AFURLRequestSerialization.m */; };
  24. F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  25. F70022AE1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  26. F70022AF1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022631EC4C9100080073F /* AFURLResponseSerialization.m */; };
  27. F70022B01EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  28. F70022B11EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  29. F70022B21EC4C9100080073F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022651EC4C9100080073F /* AFURLSessionManager.m */; };
  30. F70022B31EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  31. F70022B41EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  32. F70022B51EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  33. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  34. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  35. F70022B81EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  36. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  37. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  38. F70022BB1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  39. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  40. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  41. F70022BE1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  42. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  43. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  44. F70022C11EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  45. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  46. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  47. F70022C41EC4C9100080073F /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  48. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  49. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  50. F70022C71EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  51. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  52. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  53. F70022CA1EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  54. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  55. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  56. F70022CD1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  57. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  58. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  59. F70022D01EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  60. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  61. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  62. F70022D31EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  63. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  64. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  65. F70022D61EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  66. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  67. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  68. F70022D91EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  69. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  70. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  71. F70022DC1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  72. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  73. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  74. F70022DF1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  75. F70022E01EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  76. F70022E11EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  77. F70022E21EC4C9100080073F /* OCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022891EC4C9100080073F /* OCXMLListParser.m */; };
  78. F70022E31EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  79. F70022E41EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  80. F70022E51EC4C9100080073F /* OCXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228B1EC4C9100080073F /* OCXMLParser.m */; };
  81. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  82. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  83. F70022E81EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  84. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  85. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  86. F70022EB1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  87. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  88. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  89. F70022EE1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  90. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  91. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  92. F70022FD1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  93. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  94. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  95. F70023001EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  96. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  97. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  98. F710E8101EF95C9C00DC2427 /* CCIntro.m in Sources */ = {isa = PBXBuildFile; fileRef = F710E80E1EF95C9C00DC2427 /* CCIntro.m */; };
  99. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  100. F714526D1DC1523B0006A5D4 /* libMagicalRecord.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */; };
  101. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  102. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  103. F71459BB1D12E3B700CAFEEC /* NYXProgressiveImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */; };
  104. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  105. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  106. F71459BE1D12E3B700CAFEEC /* UIImage+Reflection.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C81C889184008DAB36 /* UIImage+Reflection.m */; };
  107. F71459BF1D12E3B700CAFEEC /* RNEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F053B1C889184008DAB36 /* RNEncryptor.m */; };
  108. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  109. F71459C31D12E3B700CAFEEC /* UIImage+Filtering.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C41C889184008DAB36 /* UIImage+Filtering.m */; };
  110. F71459C41D12E3B700CAFEEC /* UIImage+Saving.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CE1C889184008DAB36 /* UIImage+Saving.m */; };
  111. F71459C51D12E3B700CAFEEC /* UIImage+Rotating.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */; };
  112. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  113. F71459CC1D12E3B700CAFEEC /* RNCryptorEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05371C889184008DAB36 /* RNCryptorEngine.m */; };
  114. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  115. F71459CE1D12E3B700CAFEEC /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */; };
  116. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  117. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  118. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  119. F71459D91D12E3B700CAFEEC /* CCCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125F1BAC03FB0041924B /* CCCrypto.m */; };
  120. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  121. F71459E41D12E3B700CAFEEC /* RNDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05391C889184008DAB36 /* RNDecryptor.m */; };
  122. F71459E61D12E3B700CAFEEC /* NYXImagesHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D41C889184008DAB36 /* NYXImagesHelper.m */; };
  123. F71459E91D12E3B700CAFEEC /* UIImage+Enhancing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */; };
  124. F71459ED1D12E3B700CAFEEC /* UIImage+Masking.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C61C889184008DAB36 /* UIImage+Masking.m */; };
  125. F71459F01D12E3B700CAFEEC /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B11C889183008DAB36 /* NSString+Base64.m */; };
  126. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  127. F71459F31D12E3B700CAFEEC /* UIImage+Resizing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */; };
  128. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  129. F71459FB1D12E3B700CAFEEC /* PPImageScrollingCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */; };
  130. F71459FF1D12E3B700CAFEEC /* RNCryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05351C889184008DAB36 /* RNCryptor.m */; };
  131. F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  132. F7145A011D12E3B700CAFEEC /* UIImage+Blurring.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C01C889184008DAB36 /* UIImage+Blurring.m */; };
  133. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  134. F7145A081D12E3B700CAFEEC /* PPCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */; };
  135. F7145A0D1D12E3B700CAFEEC /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AD1C889183008DAB36 /* NSData+Base64.m */; };
  136. F7145A0E1D12E3B700CAFEEC /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AB1C889183008DAB36 /* AESCrypt.m */; };
  137. F7145A111D12E3B700CAFEEC /* PPImageScrollingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */; };
  138. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  139. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  140. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  141. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  142. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  143. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  144. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  145. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  146. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F720E01E1E48C73E001A4B9E /* CCActions.swift */; };
  147. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  148. F725437C1E12A44A009BF4C2 /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  149. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  150. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  151. F72AAECC1E5C60C700BB17E1 /* UIImage+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC71E5C60C700BB17E1 /* UIImage+AHKAdditions.m */; };
  152. F72AAECD1E5C60C700BB17E1 /* UIWindow+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC91E5C60C700BB17E1 /* UIWindow+AHKAdditions.m */; };
  153. F72C63891DC14B0400FA5ED5 /* libMagicalRecord.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */; };
  154. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */ = {isa = PBXBuildFile; fileRef = F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */; };
  155. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  156. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  157. F734E5891F019D860060CB77 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  158. F734E5921F019D870060CB77 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  159. F73B4F791E8D3BF800A97F07 /* CCMainTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */; };
  160. F73C002F1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m in Sources */ = {isa = PBXBuildFile; fileRef = F73C002E1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m */; };
  161. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  162. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  163. F73CC06B1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  164. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  165. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  166. F73CC06E1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  167. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  168. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  169. F73CC0711E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  170. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  171. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  172. F73CC0741E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  173. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  174. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  175. F73CC0771E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  176. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  177. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  178. F73CC07A1E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  179. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  180. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  181. F73CC07D1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  182. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  183. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  184. F73CC0801E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  185. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */; };
  186. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  187. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  188. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  189. F74344171E1264EE001CC831 /* DocumentPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74344161E1264EE001CC831 /* DocumentPickerViewController.swift */; };
  190. F74344251E1264EE001CC831 /* FileProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74344241E1264EE001CC831 /* FileProvider.swift */; };
  191. F74344551E1277E2001CC831 /* libMagicalRecord.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */; };
  192. F74344561E12784A001CC831 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  193. F74344591E12786C001CC831 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  194. F74344631E127D79001CC831 /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  195. F74344641E127DE6001CC831 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  196. F74344651E127DE9001CC831 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  197. F74344791E127EA1001CC831 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  198. F743447B1E127EAC001CC831 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  199. F743447C1E127EB2001CC831 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  200. F743447D1E127ECB001CC831 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AB1C889183008DAB36 /* AESCrypt.m */; };
  201. F743447E1E127ECE001CC831 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AD1C889183008DAB36 /* NSData+Base64.m */; };
  202. F743447F1E127ED1001CC831 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */; };
  203. F74344801E127ED3001CC831 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B11C889183008DAB36 /* NSString+Base64.m */; };
  204. F74344811E127F49001CC831 /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  205. F74344821E127F68001CC831 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  206. F74344831E127F80001CC831 /* RNCryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05351C889184008DAB36 /* RNCryptor.m */; };
  207. F74344841E127F84001CC831 /* RNCryptorEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05371C889184008DAB36 /* RNCryptorEngine.m */; };
  208. F74344851E127F86001CC831 /* RNDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05391C889184008DAB36 /* RNDecryptor.m */; };
  209. F74344861E127F89001CC831 /* RNEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F053B1C889184008DAB36 /* RNEncryptor.m */; };
  210. F74344871E127F95001CC831 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */; };
  211. F74344881E127F9C001CC831 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  212. F74344891E127FC3001CC831 /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  213. F743448A1E127FF2001CC831 /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  214. F743448C1E128010001CC831 /* CCCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125F1BAC03FB0041924B /* CCCrypto.m */; };
  215. F74344921E128EB0001CC831 /* Picker.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F74344901E128E8F001CC831 /* Picker.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  216. F74344931E128EB4001CC831 /* PickerFileProvider.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F74344911E128E96001CC831 /* PickerFileProvider.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  217. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  218. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  219. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  220. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  221. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */ = {isa = PBXBuildFile; fileRef = F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */; };
  222. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  223. F75AE3C71E9D12900088BB09 /* SwiftyAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */; };
  224. F75EDFAC1E8C106900E6F369 /* FirebaseAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFA61E8C106900E6F369 /* FirebaseAnalytics.framework */; };
  225. F75EDFAD1E8C106900E6F369 /* FirebaseCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFA71E8C106900E6F369 /* FirebaseCore.framework */; };
  226. F75EDFAE1E8C106900E6F369 /* FirebaseInstanceID.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFA81E8C106900E6F369 /* FirebaseInstanceID.framework */; };
  227. F75EDFAF1E8C106900E6F369 /* FirebaseMessaging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFA91E8C106900E6F369 /* FirebaseMessaging.framework */; };
  228. F75EDFB01E8C106900E6F369 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFAA1E8C106900E6F369 /* GoogleToolboxForMac.framework */; };
  229. F75EDFB11E8C106900E6F369 /* Protobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFAB1E8C106900E6F369 /* Protobuf.framework */; };
  230. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  231. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  232. F761831F1F03B6C300D8D483 /* NCRequestAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = F761831E1F03B6C300D8D483 /* NCRequestAsset.m */; };
  233. F76183221F03B7BE00D8D483 /* NCRequestAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = F761831E1F03B6C300D8D483 /* NCRequestAsset.m */; };
  234. F761832B1F03B7BE00D8D483 /* NCRequestAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = F761831E1F03B6C300D8D483 /* NCRequestAsset.m */; };
  235. F762CAF61EACB66200B38484 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = F762CAA01EACB66200B38484 /* Info.plist */; };
  236. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 /* XLFormBaseCell.m */; };
  237. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 /* XLFormButtonCell.m */; };
  238. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 /* XLFormCheckCell.m */; };
  239. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 /* XLFormDateCell.m */; };
  240. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */; };
  241. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 /* XLFormImageCell.m */; };
  242. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */; };
  243. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */; };
  244. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 /* XLFormPickerCell.m */; };
  245. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */; };
  246. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */; };
  247. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 /* XLFormSliderCell.m */; };
  248. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */; };
  249. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */; };
  250. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */; };
  251. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */; };
  252. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */; };
  253. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */; };
  254. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 /* XLFormViewController.m */; };
  255. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 /* XLFormDescriptor.m */; };
  256. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */; };
  257. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */; };
  258. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */; };
  259. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */; };
  260. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */; };
  261. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */; };
  262. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */; };
  263. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */; };
  264. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */; };
  265. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */; };
  266. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */; };
  267. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 /* XLFormTextView.m */; };
  268. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */; };
  269. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */; };
  270. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 /* XLFormValidator.m */; };
  271. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 /* XLForm.m */; };
  272. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 /* XLForm.bundle */; };
  273. F762CB571EACB7D400B38484 /* Reader-Button-H.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB1E1EACB7D400B38484 /* Reader-Button-H.png */; };
  274. F762CB581EACB7D400B38484 /* Reader-Button-H@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB1F1EACB7D400B38484 /* Reader-Button-H@2x.png */; };
  275. F762CB591EACB7D400B38484 /* Reader-Button-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB201EACB7D400B38484 /* Reader-Button-N.png */; };
  276. F762CB5A1EACB7D400B38484 /* Reader-Button-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB211EACB7D400B38484 /* Reader-Button-N@2x.png */; };
  277. F762CB5B1EACB7D400B38484 /* Reader-Email.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB221EACB7D400B38484 /* Reader-Email.png */; };
  278. F762CB5C1EACB7D400B38484 /* Reader-Email@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB231EACB7D400B38484 /* Reader-Email@2x.png */; };
  279. F762CB5D1EACB7D400B38484 /* Reader-Export.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB241EACB7D400B38484 /* Reader-Export.png */; };
  280. F762CB5E1EACB7D400B38484 /* Reader-Export@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB251EACB7D400B38484 /* Reader-Export@2x.png */; };
  281. F762CB5F1EACB7D400B38484 /* Reader-Mark-N.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB261EACB7D400B38484 /* Reader-Mark-N.png */; };
  282. F762CB601EACB7D400B38484 /* Reader-Mark-N@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB271EACB7D400B38484 /* Reader-Mark-N@2x.png */; };
  283. F762CB611EACB7D400B38484 /* Reader-Mark-Y.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB281EACB7D400B38484 /* Reader-Mark-Y.png */; };
  284. F762CB621EACB7D400B38484 /* Reader-Mark-Y@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB291EACB7D400B38484 /* Reader-Mark-Y@2x.png */; };
  285. F762CB631EACB7D400B38484 /* Reader-Print.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB2A1EACB7D400B38484 /* Reader-Print.png */; };
  286. F762CB641EACB7D400B38484 /* Reader-Print@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB2B1EACB7D400B38484 /* Reader-Print@2x.png */; };
  287. F762CB651EACB7D400B38484 /* Reader-Thumbs.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB2C1EACB7D400B38484 /* Reader-Thumbs.png */; };
  288. F762CB661EACB7D400B38484 /* Reader-Thumbs@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB2D1EACB7D400B38484 /* Reader-Thumbs@2x.png */; };
  289. F762CB671EACB7D400B38484 /* CGPDFDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB301EACB7D400B38484 /* CGPDFDocument.m */; };
  290. F762CB681EACB7D400B38484 /* ReaderConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB321EACB7D400B38484 /* ReaderConstants.m */; };
  291. F762CB691EACB7D400B38484 /* ReaderContentPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB341EACB7D400B38484 /* ReaderContentPage.m */; };
  292. F762CB6A1EACB7D400B38484 /* ReaderContentTile.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB361EACB7D400B38484 /* ReaderContentTile.m */; };
  293. F762CB6B1EACB7D400B38484 /* ReaderContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB381EACB7D400B38484 /* ReaderContentView.m */; };
  294. F762CB6C1EACB7D400B38484 /* ReaderDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB3A1EACB7D400B38484 /* ReaderDocument.m */; };
  295. F762CB6D1EACB7D400B38484 /* ReaderDocumentOutline.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB3C1EACB7D400B38484 /* ReaderDocumentOutline.m */; };
  296. F762CB6E1EACB7D400B38484 /* ReaderMainPagebar.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB3E1EACB7D400B38484 /* ReaderMainPagebar.m */; };
  297. F762CB6F1EACB7D400B38484 /* ReaderMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB401EACB7D400B38484 /* ReaderMainToolbar.m */; };
  298. F762CB701EACB7D400B38484 /* ReaderThumbCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB421EACB7D400B38484 /* ReaderThumbCache.m */; };
  299. F762CB711EACB7D400B38484 /* ReaderThumbFetch.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB441EACB7D400B38484 /* ReaderThumbFetch.m */; };
  300. F762CB721EACB7D400B38484 /* ReaderThumbQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB461EACB7D400B38484 /* ReaderThumbQueue.m */; };
  301. F762CB731EACB7D400B38484 /* ReaderThumbRender.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB481EACB7D400B38484 /* ReaderThumbRender.m */; };
  302. F762CB741EACB7D400B38484 /* ReaderThumbRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB4A1EACB7D400B38484 /* ReaderThumbRequest.m */; };
  303. F762CB751EACB7D400B38484 /* ReaderThumbsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB4C1EACB7D400B38484 /* ReaderThumbsView.m */; };
  304. F762CB761EACB7D400B38484 /* ReaderThumbView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB4E1EACB7D400B38484 /* ReaderThumbView.m */; };
  305. F762CB771EACB7D400B38484 /* ReaderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB501EACB7D400B38484 /* ReaderViewController.m */; };
  306. F762CB781EACB7D400B38484 /* ThumbsMainToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB521EACB7D400B38484 /* ThumbsMainToolbar.m */; };
  307. F762CB791EACB7D400B38484 /* ThumbsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB541EACB7D400B38484 /* ThumbsViewController.m */; };
  308. F762CB7A1EACB7D400B38484 /* UIXToolbarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB561EACB7D400B38484 /* UIXToolbarView.m */; };
  309. F762CB861EACB81000B38484 /* RECommonFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB7D1EACB81000B38484 /* RECommonFunctions.m */; };
  310. F762CB871EACB81000B38484 /* REMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB7F1EACB81000B38484 /* REMenu.m */; };
  311. F762CB881EACB81000B38484 /* REMenuContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB811EACB81000B38484 /* REMenuContainerView.m */; };
  312. F762CB891EACB81000B38484 /* REMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB831EACB81000B38484 /* REMenuItem.m */; };
  313. F762CB8A1EACB81000B38484 /* REMenuItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB851EACB81000B38484 /* REMenuItemView.m */; };
  314. F762CB951EACB84400B38484 /* icon-error.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8D1EACB84400B38484 /* icon-error.png */; };
  315. F762CB961EACB84400B38484 /* icon-error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8E1EACB84400B38484 /* icon-error@2x.png */; };
  316. F762CB971EACB84400B38484 /* icon-info.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB8F1EACB84400B38484 /* icon-info.png */; };
  317. F762CB981EACB84400B38484 /* icon-info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB901EACB84400B38484 /* icon-info@2x.png */; };
  318. F762CB991EACB84400B38484 /* icon-success.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB911EACB84400B38484 /* icon-success.png */; };
  319. F762CB9A1EACB84400B38484 /* icon-success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F762CB921EACB84400B38484 /* icon-success@2x.png */; };
  320. F762CB9B1EACB84400B38484 /* TWMessageBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CB941EACB84400B38484 /* TWMessageBarManager.m */; };
  321. F762CBB91EACB89C00B38484 /* LMMediaPlayerView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CB9F1EACB89C00B38484 /* LMMediaPlayerView.bundle */; };
  322. F762CBBA1EACB89C00B38484 /* LMMediaPlayerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F762CBA01EACB89C00B38484 /* LMMediaPlayerView.xib */; };
  323. F762CBBB1EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBA51EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.m */; };
  324. F762CBBC1EACB89C00B38484 /* LMMediaPlayerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBA81EACB89C00B38484 /* LMMediaPlayerHelper.m */; };
  325. F762CBBD1EACB89C00B38484 /* LMMediaItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBAC1EACB89C00B38484 /* LMMediaItem.m */; };
  326. F762CBBE1EACB89C00B38484 /* LMMediaItemQueueManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBAF1EACB89C00B38484 /* LMMediaItemQueueManager.m */; };
  327. F762CBBF1EACB89C00B38484 /* LMMediaItemStreamingCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBB21EACB89C00B38484 /* LMMediaItemStreamingCache.m */; };
  328. F762CBC01EACB89C00B38484 /* LMMediaPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBB51EACB89C00B38484 /* LMMediaPlayer.m */; };
  329. F762CBC11EACB89C00B38484 /* LMMediaPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CBB81EACB89C00B38484 /* LMMediaPlayerView.m */; };
  330. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A231DC0B726004860C4 /* EAIntroPage.m */; };
  331. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A251DC0B726004860C4 /* EAIntroView.m */; };
  332. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */; };
  333. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7659A311DC0B737004860C4 /* iRate.bundle */; };
  334. F7659A391DC0B737004860C4 /* iRate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A331DC0B737004860C4 /* iRate.m */; };
  335. F7659A581DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A3C1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m */; };
  336. F7659A5A1DC0B760004860C4 /* PSTCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A3E1DC0B760004860C4 /* PSTCollectionView.m */; };
  337. F7659A5C1DC0B760004860C4 /* PSTCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A401DC0B760004860C4 /* PSTCollectionViewCell.m */; };
  338. F7659A5E1DC0B760004860C4 /* PSTCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A431DC0B760004860C4 /* PSTCollectionViewController.m */; };
  339. F7659A601DC0B760004860C4 /* PSTCollectionViewData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A451DC0B760004860C4 /* PSTCollectionViewData.m */; };
  340. F7659A621DC0B760004860C4 /* PSTCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A471DC0B760004860C4 /* PSTCollectionViewFlowLayout.m */; };
  341. F7659A641DC0B760004860C4 /* PSTCollectionViewItemKey.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A491DC0B760004860C4 /* PSTCollectionViewItemKey.m */; };
  342. F7659A661DC0B760004860C4 /* PSTCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A4C1DC0B760004860C4 /* PSTCollectionViewLayout.m */; };
  343. F7659A681DC0B760004860C4 /* PSTCollectionViewUpdateItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A4E1DC0B760004860C4 /* PSTCollectionViewUpdateItem.m */; };
  344. F7659A6A1DC0B760004860C4 /* PSTGridLayoutInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A501DC0B760004860C4 /* PSTGridLayoutInfo.m */; };
  345. F7659A6C1DC0B760004860C4 /* PSTGridLayoutItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A521DC0B760004860C4 /* PSTGridLayoutItem.m */; };
  346. F7659A6E1DC0B760004860C4 /* PSTGridLayoutRow.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A541DC0B760004860C4 /* PSTGridLayoutRow.m */; };
  347. F7659A701DC0B760004860C4 /* PSTGridLayoutSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F7659A561DC0B760004860C4 /* PSTGridLayoutSection.m */; };
  348. F76607721ED7FF110073CEC2 /* TableDirectory+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADC11ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m */; };
  349. F76607731ED7FF120073CEC2 /* TableDirectory+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADC11ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m */; };
  350. F76607741ED7FF150073CEC2 /* TableDirectory+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBF1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m */; };
  351. F76607751ED7FF160073CEC2 /* TableDirectory+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBF1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m */; };
  352. F76607761ED7FFEC0073CEC2 /* TableLocalFile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADFE1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m */; };
  353. F76607771ED7FFEC0073CEC2 /* TableLocalFile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADFE1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m */; };
  354. F76607781ED7FFF20073CEC2 /* TableLocalFile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADC41ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m */; };
  355. F76607791ED7FFF20073CEC2 /* TableLocalFile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADC41ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m */; };
  356. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  357. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  358. F76B3CD01EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  359. F76B3CD11EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  360. F76F23341ED4603700C40023 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76F23331ED4603700C40023 /* LaunchScreen.xib */; };
  361. F77B0DF01D118A16002130FE /* UIImage+Resizing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */; };
  362. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  363. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  364. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  365. F77B0DFB1D118A16002130FE /* NYXProgressiveImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */; };
  366. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  367. F77B0E011D118A16002130FE /* RNCryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05351C889184008DAB36 /* RNCryptor.m */; };
  368. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */; };
  369. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  370. F77B0E111D118A16002130FE /* UIImage+Reflection.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C81C889184008DAB36 /* UIImage+Reflection.m */; };
  371. F77B0E121D118A16002130FE /* CCPatenteGuida.m in Sources */ = {isa = PBXBuildFile; fileRef = F721372E1BAFF0920012B613 /* CCPatenteGuida.m */; };
  372. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A582D61A24DAB500E903D7 /* AppDelegate.m */; };
  373. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  374. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  375. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  376. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F78316871C0CB3CA00C43975 /* CCShareUserOC.m */; };
  377. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  378. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */; };
  379. F77B0E241D118A16002130FE /* HRColorCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE51C889300008DAB36 /* HRColorCursor.m */; };
  380. F77B0E261D118A16002130FE /* ZSSTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DF31C889300008DAB36 /* ZSSTextView.m */; };
  381. F77B0E271D118A16002130FE /* CYRLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DD91C889300008DAB36 /* CYRLayoutManager.m */; };
  382. F77B0E2D1D118A16002130FE /* CYRTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DDD1C889300008DAB36 /* CYRTextView.m */; };
  383. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  384. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  385. F77B0E321D118A16002130FE /* HRCgUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE31C889300008DAB36 /* HRCgUtil.m */; };
  386. F77B0E351D118A16002130FE /* NYXImagesHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04D41C889184008DAB36 /* NYXImagesHelper.m */; };
  387. F77B0E361D118A16002130FE /* ZSSBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DEE1C889300008DAB36 /* ZSSBarButtonItem.m */; };
  388. F77B0E391D118A16002130FE /* CCContoCorrente.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137281BAFF0920012B613 /* CCContoCorrente.m */; };
  389. F77B0E3A1D118A16002130FE /* RNCryptorEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05371C889184008DAB36 /* RNCryptorEngine.m */; };
  390. F77B0E3C1D118A16002130FE /* CCCartaIdentita.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137261BAFF0920012B613 /* CCCartaIdentita.m */; };
  391. F77B0E411D118A16002130FE /* CCSplit.m in Sources */ = {isa = PBXBuildFile; fileRef = F792A77C1BC7C45400C9388E /* CCSplit.m */; };
  392. F77B0E481D118A16002130FE /* CCCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125F1BAC03FB0041924B /* CCCrypto.m */; };
  393. F77B0E491D118A16002130FE /* UIImage+Saving.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CE1C889184008DAB36 /* UIImage+Saving.m */; };
  394. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E65F1BC5042E008D989A /* CCDetail.m */; };
  395. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  396. F77B0E511D118A16002130FE /* UIImage+Filtering.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C41C889184008DAB36 /* UIImage+Filtering.m */; };
  397. F77B0E541D118A16002130FE /* CCMove.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D02A471C5F9E4400D6F972 /* CCMove.m */; };
  398. F77B0E5B1D118A16002130FE /* UIImage+Rotating.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */; };
  399. F77B0E5D1D118A16002130FE /* UIImage+Blurring.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C01C889184008DAB36 /* UIImage+Blurring.m */; };
  400. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  401. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */ = {isa = PBXBuildFile; fileRef = F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */; };
  402. F77B0E661D118A16002130FE /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B11C889183008DAB36 /* NSString+Base64.m */; };
  403. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  404. F77B0E6A1D118A16002130FE /* RNDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05391C889184008DAB36 /* RNDecryptor.m */; };
  405. F77B0E731D118A16002130FE /* PPImageScrollingTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */; };
  406. F77B0E741D118A16002130FE /* CCBancomat.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137221BAFF0920012B613 /* CCBancomat.m */; };
  407. F77B0E7B1D118A16002130FE /* CCPassaporto.m in Sources */ = {isa = PBXBuildFile; fileRef = F721372C1BAFF0920012B613 /* CCPassaporto.m */; };
  408. F77B0E7D1D118A16002130FE /* CYRTextStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DDB1C889300008DAB36 /* CYRTextStorage.m */; };
  409. F77B0E801D118A16002130FE /* ZSSRichTextEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DF11C889300008DAB36 /* ZSSRichTextEditor.m */; };
  410. F77B0E871D118A16002130FE /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AD1C889183008DAB36 /* NSData+Base64.m */; };
  411. F77B0E8A1D118A16002130FE /* CCCartaDiCredito.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137241BAFF0920012B613 /* CCCartaDiCredito.m */; };
  412. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  413. F77B0E911D118A16002130FE /* CCTemplates.m in Sources */ = {isa = PBXBuildFile; fileRef = F72137301BAFF0920012B613 /* CCTemplates.m */; };
  414. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  415. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  416. F77B0E991D118A16002130FE /* PPCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */; };
  417. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  418. F77B0E9D1D118A16002130FE /* HRColorPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE81C889300008DAB36 /* HRColorPickerView.m */; };
  419. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  420. F77B0EAB1D118A16002130FE /* HRColorPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DEA1C889300008DAB36 /* HRColorPickerViewController.m */; };
  421. F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8C1911B482CEA0048180E /* CCGlobal.m */; };
  422. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04841C889183008DAB36 /* MBProgressHUD.m */; };
  423. F77B0EB81D118A16002130FE /* CCAccountWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = F721371E1BAFF0920012B613 /* CCAccountWeb.m */; };
  424. F77B0EB91D118A16002130FE /* HRColorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DEC1C889300008DAB36 /* HRColorUtil.m */; };
  425. F77B0EBE1D118A16002130FE /* CCNote.m in Sources */ = {isa = PBXBuildFile; fileRef = F721372A1BAFF0920012B613 /* CCNote.m */; };
  426. F77B0EBF1D118A16002130FE /* RNEncryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F053B1C889184008DAB36 /* RNEncryptor.m */; };
  427. F77B0EC31D118A16002130FE /* UIImage+Enhancing.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */; };
  428. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  429. F77B0EC71D118A16002130FE /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AB1C889183008DAB36 /* AESCrypt.m */; };
  430. F77B0ECB1D118A16002130FE /* HRBrightnessCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DE11C889300008DAB36 /* HRBrightnessCursor.m */; };
  431. F77B0ECC1D118A16002130FE /* UIImage+Masking.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F04C61C889184008DAB36 /* UIImage+Masking.m */; };
  432. F77B0ECE1D118A16002130FE /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */; };
  433. F77B0ECF1D118A16002130FE /* CYRToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F0DDF1C889300008DAB36 /* CYRToken.m */; };
  434. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  435. F77B0ED31D118A16002130FE /* PPImageScrollingCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */; };
  436. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  437. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  438. F77B0EEA1D118A16002130FE /* ZSSbold@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D921C889300008DAB36 /* ZSSbold@2x.png */; };
  439. F77B0EEB1D118A16002130FE /* ZSSrightjustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC21C889300008DAB36 /* ZSSrightjustify@2x.png */; };
  440. F77B0EEC1D118A16002130FE /* ZSSindent@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAA1C889300008DAB36 /* ZSSindent@2x.png */; };
  441. F77B0EF01D118A16002130FE /* ZSSh4@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA01C889300008DAB36 /* ZSSh4@2x.png */; };
  442. F77B0EF21D118A16002130FE /* ZSSunderline.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCD1C889300008DAB36 /* ZSSunderline.png */; };
  443. F77B0EF51D118A16002130FE /* ZSSbgcolor.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D8F1C889300008DAB36 /* ZSSbgcolor.png */; };
  444. F77B0EF61D118A16002130FE /* ZSSstrikethrough@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC41C889300008DAB36 /* ZSSstrikethrough@2x.png */; };
  445. F77B0EF71D118A16002130FE /* ZSSinsertkeyword@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAC1C889300008DAB36 /* ZSSinsertkeyword@2x.png */; };
  446. F77B0EFA1D118A16002130FE /* ZSShorizontalrule.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA51C889300008DAB36 /* ZSShorizontalrule.png */; };
  447. F77B0EFB1D118A16002130FE /* ZSSh3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9E1C889300008DAB36 /* ZSSh3@2x.png */; };
  448. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  449. F77B0EFF1D118A16002130FE /* ZSSinsertkeyword.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAB1C889300008DAB36 /* ZSSinsertkeyword.png */; };
  450. F77B0F041D118A16002130FE /* ZSSoutdent@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB81C889300008DAB36 /* ZSSoutdent@2x.png */; };
  451. F77B0F051D118A16002130FE /* ZSSindent.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA91C889300008DAB36 /* ZSSindent.png */; };
  452. F77B0F071D118A16002130FE /* ZSSpicker.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBB1C889300008DAB36 /* ZSSpicker.png */; };
  453. F77B0F081D118A16002130FE /* ZSSunderline@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCE1C889300008DAB36 /* ZSSunderline@2x.png */; };
  454. F77B0F0D1D118A16002130FE /* ZSSundo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD01C889300008DAB36 /* ZSSundo@2x.png */; };
  455. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  456. F77B0F111D118A16002130FE /* ZSSparagraph.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB91C889300008DAB36 /* ZSSparagraph.png */; };
  457. F77B0F121D118A16002130FE /* ZSSorderedlist@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB61C889300008DAB36 /* ZSSorderedlist@2x.png */; };
  458. F77B0F131D118A16002130FE /* ZSSitalic@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAE1C889300008DAB36 /* ZSSitalic@2x.png */; };
  459. F77B0F141D118A16002130FE /* ZSSviewsource.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD51C889300008DAB36 /* ZSSviewsource.png */; };
  460. F77B0F151D118A16002130FE /* ZSSforcejustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D981C889300008DAB36 /* ZSSforcejustify@2x.png */; };
  461. F77B0F171D118A16002130FE /* ZSSh1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9A1C889300008DAB36 /* ZSSh1@2x.png */; };
  462. F77B0F181D118A16002130FE /* Intro.strings in Resources */ = {isa = PBXBuildFile; fileRef = F744BE9F1BEBB69F004FFF66 /* Intro.strings */; };
  463. F77B0F191D118A16002130FE /* ZSSitalic.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAD1C889300008DAB36 /* ZSSitalic.png */; };
  464. F77B0F1D1D118A16002130FE /* ZSSh2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9C1C889300008DAB36 /* ZSSh2@2x.png */; };
  465. F77B0F1E1D118A16002130FE /* ZSSstrikethrough.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC31C889300008DAB36 /* ZSSstrikethrough.png */; };
  466. F77B0F211D118A16002130FE /* ZSSh6.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA31C889300008DAB36 /* ZSSh6.png */; };
  467. F77B0F231D118A16002130FE /* ZSSh3.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9D1C889300008DAB36 /* ZSSh3.png */; };
  468. F77B0F251D118A16002130FE /* ZSSh1.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D991C889300008DAB36 /* ZSSh1.png */; };
  469. F77B0F291D118A16002130FE /* ZSSleftjustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB11C889300008DAB36 /* ZSSleftjustify.png */; };
  470. F77B0F2B1D118A16002130FE /* ZSSclearstyle@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D961C889300008DAB36 /* ZSSclearstyle@2x.png */; };
  471. F77B0F2C1D118A16002130FE /* ZSSlink.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB31C889300008DAB36 /* ZSSlink.png */; };
  472. F77B0F2D1D118A16002130FE /* ZSSsuperscript@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC81C889300008DAB36 /* ZSSsuperscript@2x.png */; };
  473. F77B0F2E1D118A16002130FE /* ZSScenterjustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D931C889300008DAB36 /* ZSScenterjustify.png */; };
  474. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */; };
  475. F77B0F321D118A16002130FE /* ZSSkeyboard@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB01C889300008DAB36 /* ZSSkeyboard@2x.png */; };
  476. F77B0F341D118A16002130FE /* ZSSorderedlist.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB51C889300008DAB36 /* ZSSorderedlist.png */; };
  477. F77B0F351D118A16002130FE /* ZSSsubscript@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC61C889300008DAB36 /* ZSSsubscript@2x.png */; };
  478. F77B0F361D118A16002130FE /* editor.html in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D8D1C889300008DAB36 /* editor.html */; };
  479. F77B0F381D118A16002130FE /* ZSSkeyboard.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DAF1C889300008DAB36 /* ZSSkeyboard.png */; };
  480. F77B0F391D118A16002130FE /* ZSStable@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCA1C889300008DAB36 /* ZSStable@2x.png */; };
  481. F77B0F3B1D118A16002130FE /* ZSSredo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC01C889300008DAB36 /* ZSSredo@2x.png */; };
  482. F77B0F3D1D118A16002130FE /* ZSSh5.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA11C889300008DAB36 /* ZSSh5.png */; };
  483. F77B0F3E1D118A16002130FE /* ZSSquicklink@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBE1C889300008DAB36 /* ZSSquicklink@2x.png */; };
  484. F77B0F411D118A16002130FE /* ZSStextcolor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCC1C889300008DAB36 /* ZSStextcolor@2x.png */; };
  485. F77B0F471D118A16002130FE /* ZSSbgcolor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D901C889300008DAB36 /* ZSSbgcolor@2x.png */; };
  486. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  487. F77B0F491D118A16002130FE /* ZSSoutdent.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB71C889300008DAB36 /* ZSSoutdent.png */; };
  488. F77B0F4A1D118A16002130FE /* ZSStextcolor.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCB1C889300008DAB36 /* ZSStextcolor.png */; };
  489. F77B0F4B1D118A16002130FE /* ZSSimage.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA71C889300008DAB36 /* ZSSimage.png */; };
  490. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F768EB021BFB7EA900B6E341 /* CCShare.storyboard */; };
  491. F77B0F4F1D118A16002130FE /* ZSSquicklink.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBD1C889300008DAB36 /* ZSSquicklink.png */; };
  492. F77B0F511D118A16002130FE /* ZSSh2.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9B1C889300008DAB36 /* ZSSh2.png */; };
  493. F77B0F531D118A16002130FE /* ZSSbold.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D911C889300008DAB36 /* ZSSbold.png */; };
  494. F77B0F551D118A16002130FE /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  495. F77B0F561D118A16002130FE /* ZSStable.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC91C889300008DAB36 /* ZSStable.png */; };
  496. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  497. F77B0F591D118A16002130FE /* ZSSRichTextEditor.js in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DF01C889300008DAB36 /* ZSSRichTextEditor.js */; };
  498. F77B0F5B1D118A16002130FE /* ZSSclearstyle.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D951C889300008DAB36 /* ZSSclearstyle.png */; };
  499. F77B0F5E1D118A16002130FE /* ZSSlink@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB41C889300008DAB36 /* ZSSlink@2x.png */; };
  500. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  501. F77B0F621D118A16002130FE /* ZSSunorderedlist.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD31C889300008DAB36 /* ZSSunorderedlist.png */; };
  502. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  503. F77B0F641D118A16002130FE /* ZSSh4.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D9F1C889300008DAB36 /* ZSSh4.png */; };
  504. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */; };
  505. F77B0F6B1D118A16002130FE /* ZSSundo.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DCF1C889300008DAB36 /* ZSSundo.png */; };
  506. F77B0F6C1D118A16002130FE /* ZSSsubscript.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC51C889300008DAB36 /* ZSSsubscript.png */; };
  507. F77B0F6E1D118A16002130FE /* ZSShorizontalrule@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA61C889300008DAB36 /* ZSShorizontalrule@2x.png */; };
  508. F77B0F6F1D118A16002130FE /* ZSSforcejustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D971C889300008DAB36 /* ZSSforcejustify.png */; };
  509. F77B0F741D118A16002130FE /* ZSSunorderedlist@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD41C889300008DAB36 /* ZSSunorderedlist@2x.png */; };
  510. F77B0F751D118A16002130FE /* ZSSleftjustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DB21C889300008DAB36 /* ZSSleftjustify@2x.png */; };
  511. F77B0F771D118A16002130FE /* ZSSimage@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA81C889300008DAB36 /* ZSSimage@2x.png */; };
  512. F77B0F791D118A16002130FE /* ZSSunlink.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD11C889300008DAB36 /* ZSSunlink.png */; };
  513. F77B0F7A1D118A16002130FE /* ZSSredo.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBF1C889300008DAB36 /* ZSSredo.png */; };
  514. F77B0F7B1D118A16002130FE /* ZSSrightjustify.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC11C889300008DAB36 /* ZSSrightjustify.png */; };
  515. F77B0F7C1D118A16002130FE /* ZSSviewsource@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD61C889300008DAB36 /* ZSSviewsource@2x.png */; };
  516. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  517. F77B0F7F1D118A16002130FE /* ZSScenterjustify@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0D941C889300008DAB36 /* ZSScenterjustify@2x.png */; };
  518. F77B0F811D118A16002130FE /* ZSSparagraph@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBA1C889300008DAB36 /* ZSSparagraph@2x.png */; };
  519. F77B0F821D118A16002130FE /* ZSSsuperscript.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DC71C889300008DAB36 /* ZSSsuperscript.png */; };
  520. F77B0F831D118A16002130FE /* ZSSh5@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA21C889300008DAB36 /* ZSSh5@2x.png */; };
  521. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  522. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  523. F77B0F8F1D118A16002130FE /* ZSSunlink@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DD21C889300008DAB36 /* ZSSunlink@2x.png */; };
  524. F77B0F901D118A16002130FE /* ZSSpicker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DBC1C889300008DAB36 /* ZSSpicker@2x.png */; };
  525. F77B0F941D118A16002130FE /* ZSSh6@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F70F0DA41C889300008DAB36 /* ZSSh6@2x.png */; };
  526. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading@2x.gif */; };
  527. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  528. F77EB6291EC08037003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  529. F77EB62A1EC0B50A003F814F /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  530. F77EB62B1EC0B50B003F814F /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  531. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  532. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  533. F780710B1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  534. F78071211EDB135100EAFFF6 /* CCPhotos.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071201EDB135100EAFFF6 /* CCPhotos.m */; };
  535. F78088EA1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */; };
  536. F78088EB1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */; };
  537. F78964AD1EBB576C00403E13 /* JDStatusBarNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */; };
  538. F78964AE1EBB576C00403E13 /* JDStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */; };
  539. F78964AF1EBB576C00403E13 /* JDStatusBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F78964AC1EBB576C00403E13 /* JDStatusBarView.m */; };
  540. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  541. F7A13A031E7F3D5D00016680 /* CCProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A13A001E7F3D5D00016680 /* CCProgressView.m */; };
  542. F7A13A041E7F3D5D00016680 /* UINavigationController+CCProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A13A021E7F3D5D00016680 /* UINavigationController+CCProgress.m */; };
  543. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  544. F7A321561E9E2A070069AD1B /* CCFavoritesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321511E9E2A070069AD1B /* CCFavoritesCell.m */; };
  545. F7A321571E9E2A070069AD1B /* CCFavoritesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7A321521E9E2A070069AD1B /* CCFavoritesCell.xib */; };
  546. F7A321651E9E37960069AD1B /* CCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321641E9E37960069AD1B /* CCActivity.m */; };
  547. F7A321791E9E3EAF0069AD1B /* CCTransfers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321751E9E3EAF0069AD1B /* CCTransfers.m */; };
  548. F7A3217A1E9E3EAF0069AD1B /* CCTransfersCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321771E9E3EAF0069AD1B /* CCTransfersCell.m */; };
  549. F7A3217B1E9E3EAF0069AD1B /* CCTransfersCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7A321781E9E3EAF0069AD1B /* CCTransfersCell.xib */; };
  550. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  551. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  552. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 /* Crashlytics.framework */; };
  553. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 /* Fabric.framework */; };
  554. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  555. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  556. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7B1FBB11E72E3D1001781FE /* Media.xcassets */; };
  557. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */; };
  558. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */; };
  559. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */; };
  560. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */; };
  561. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */; };
  562. F7B3A4EE1E97818A000DACE8 /* CCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */; };
  563. F7BAADC51ED5A87C00B7EAD4 /* CCCoreData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB31ED5A87C00B7EAD4 /* CCCoreData.m */; };
  564. F7BAADC61ED5A87C00B7EAD4 /* CCCoreData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB31ED5A87C00B7EAD4 /* CCCoreData.m */; };
  565. F7BAADC71ED5A87C00B7EAD4 /* CCCoreData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB31ED5A87C00B7EAD4 /* CCCoreData.m */; };
  566. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  567. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  568. F7BAADCA1ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  569. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  570. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  571. F7BAADCD1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  572. F7BAADCE1ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB71ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m */; };
  573. F7BAADD11ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB91ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m */; };
  574. F7BAADD41ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBB1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m */; };
  575. F7BAADD71ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBD1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m */; };
  576. F7BAADDA1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBF1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m */; };
  577. F7BAADDD1ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADC11ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m */; };
  578. F7BAADE01ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADC41ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m */; };
  579. F7BAADF61ED5B20E00B7EAD4 /* TableAccount+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB71ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m */; };
  580. F7BAADF71ED5B21100B7EAD4 /* TableAccount+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB71ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m */; };
  581. F7BAADF81ED5B21500B7EAD4 /* TableAccount+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB91ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m */; };
  582. F7BAADF91ED5B21600B7EAD4 /* TableAccount+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB91ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m */; };
  583. F7BAADFA1ED5B22700B7EAD4 /* TableCertificates+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBD1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m */; };
  584. F7BAADFB1ED5B22700B7EAD4 /* TableCertificates+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBD1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m */; };
  585. F7BAADFC1ED5B22B00B7EAD4 /* TableCertificates+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBB1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m */; };
  586. F7BAADFD1ED5B22C00B7EAD4 /* TableCertificates+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADBB1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m */; };
  587. F7BAADFF1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADFE1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m */; };
  588. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63061D5B3467004E2AA5 /* libcrypto.a */; };
  589. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F70A63071D5B3467004E2AA5 /* libssl.a */; };
  590. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */; };
  591. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  592. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  593. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  594. F7C742D81E7BD5C900D9C973 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C742D71E7BD5C900D9C973 /* MainInterface.storyboard */; };
  595. F7D2677C1E157053005ACB7E /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  596. F7DC5FEC1F011EB700A903C7 /* MGSwipeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */; };
  597. F7DC5FED1F011EB700A903C7 /* MGSwipeTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */; };
  598. F7DFE2521EBDC3A400CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  599. F7DFE2531EBDC3A400CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  600. F7DFE2541EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  601. F7DFE2551EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  602. F7DFE2561EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; };
  603. F7DFE2571EBDC52E00CF5202 /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; };
  604. F7DFE2581EBDC52E00CF5202 /* Realm.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE24F1EBDC3A400CF5202 /* Realm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  605. F7DFE25A1EBDC53200CF5202 /* RealmSwift.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  606. F7E718B01EB0FBE700FA58C9 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  607. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */; };
  608. F7F06E8D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E2E1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m */; };
  609. F7F06E8F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E301DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m */; };
  610. F7F06E911DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E321DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m */; };
  611. F7F06E931DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E341DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m */; };
  612. F7F06E951DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E361DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m */; };
  613. F7F06E971DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E381DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m */; };
  614. F7F06E991DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E3A1DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m */; };
  615. F7F06E9B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E3C1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m */; };
  616. F7F06E9D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E3E1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m */; };
  617. F7F06E9F1DBFACC600099AE9 /* CTAssetCheckmark.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E401DBFACC600099AE9 /* CTAssetCheckmark.m */; };
  618. F7F06EA11DBFACC600099AE9 /* CTAssetCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E421DBFACC600099AE9 /* CTAssetCollectionViewCell.m */; };
  619. F7F06EA31DBFACC600099AE9 /* CTAssetCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E441DBFACC600099AE9 /* CTAssetCollectionViewController.m */; };
  620. F7F06EA51DBFACC600099AE9 /* CTAssetItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E461DBFACC600099AE9 /* CTAssetItemViewController.m */; };
  621. F7F06EA71DBFACC600099AE9 /* CTAssetPlayButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E481DBFACC600099AE9 /* CTAssetPlayButton.m */; };
  622. F7F06EA91DBFACC600099AE9 /* CTAssetScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E4A1DBFACC600099AE9 /* CTAssetScrollView.m */; };
  623. F7F06EAB1DBFACC600099AE9 /* CTAssetSelectionButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E4C1DBFACC600099AE9 /* CTAssetSelectionButton.m */; };
  624. F7F06EAD1DBFACC600099AE9 /* CTAssetSelectionLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E4E1DBFACC600099AE9 /* CTAssetSelectionLabel.m */; };
  625. F7F06EAF1DBFACC600099AE9 /* CTAssetsGridSelectedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E501DBFACC600099AE9 /* CTAssetsGridSelectedView.m */; };
  626. F7F06EB11DBFACC600099AE9 /* CTAssetsGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E521DBFACC600099AE9 /* CTAssetsGridView.m */; };
  627. F7F06EB31DBFACC600099AE9 /* CTAssetsGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E541DBFACC600099AE9 /* CTAssetsGridViewCell.m */; };
  628. F7F06EB51DBFACC600099AE9 /* CTAssetsGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E561DBFACC600099AE9 /* CTAssetsGridViewController.m */; };
  629. F7F06EB71DBFACC600099AE9 /* CTAssetsGridViewFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E581DBFACC600099AE9 /* CTAssetsGridViewFooter.m */; };
  630. F7F06EB91DBFACC600099AE9 /* CTAssetsGridViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E5A1DBFACC600099AE9 /* CTAssetsGridViewLayout.m */; };
  631. F7F06EBB1DBFACC600099AE9 /* CTAssetsNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E5C1DBFACC600099AE9 /* CTAssetsNavigationController.m */; };
  632. F7F06EBD1DBFACC600099AE9 /* CTAssetsPageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E5E1DBFACC600099AE9 /* CTAssetsPageView.m */; };
  633. F7F06EBF1DBFACC600099AE9 /* CTAssetsPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E601DBFACC600099AE9 /* CTAssetsPageViewController.m */; };
  634. F7F06EC11DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E621DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m */; };
  635. F7F06EC31DBFACC600099AE9 /* CTAssetsPickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F7F06E631DBFACC600099AE9 /* CTAssetsPickerController.bundle */; };
  636. F7F06EC51DBFACC600099AE9 /* CTAssetsPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E651DBFACC600099AE9 /* CTAssetsPickerController.m */; };
  637. F7F06EC71DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E681DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m */; };
  638. F7F06EC91DBFACC600099AE9 /* CTAssetsViewControllerTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E6A1DBFACC600099AE9 /* CTAssetsViewControllerTransition.m */; };
  639. F7F06ECB1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E6C1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m */; };
  640. F7F06ECD1DBFACC600099AE9 /* CTAssetThumbnailStacks.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E6E1DBFACC600099AE9 /* CTAssetThumbnailStacks.m */; };
  641. F7F06ECF1DBFACC600099AE9 /* CTAssetThumbnailView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F06E701DBFACC600099AE9 /* CTAssetThumbnailView.m */; };
  642. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  643. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  644. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  645. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  646. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  647. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  648. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  649. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  650. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  651. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  652. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  653. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  654. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  655. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  656. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  657. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  658. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  659. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  660. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  661. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  662. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  663. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  664. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  665. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  666. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  667. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  668. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  669. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  670. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  671. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  672. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  673. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  674. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  675. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  676. F7F54D071E5B14C800E19C62 /* MWGridCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD41E5B14C700E19C62 /* MWGridCell.m */; };
  677. F7F54D081E5B14C800E19C62 /* MWGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD61E5B14C700E19C62 /* MWGridViewController.m */; };
  678. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  679. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  680. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  681. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  682. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  683. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  684. F7F6AC4E1E525AD300E8EB45 /* CCManageCryptoCloud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F6AC4D1E525AD300E8EB45 /* CCManageCryptoCloud.m */; };
  685. F7F801031D98205A007537BC /* CCCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F801011D98205A007537BC /* CCCertificate.m */; };
  686. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  687. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  688. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  689. F7FC88FA1E140558006D0506 /* cryptocloud.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */; };
  690. F7FC88FB1E141A34006D0506 /* BKPasscodeView.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72B60911A24F00B004EF66F /* BKPasscodeView.strings */; };
  691. F7FC88FC1E141A39006D0506 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  692. F7FC88FD1E141A3F006D0506 /* Error.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7B381BF1C074E3E004693F8 /* Error.strings */; };
  693. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  694. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  695. /* End PBXBuildFile section */
  696. /* Begin PBXContainerItemProxy section */
  697. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  698. isa = PBXContainerItemProxy;
  699. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  700. proxyType = 1;
  701. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  702. remoteInfo = "Share Ext Nextcloud";
  703. };
  704. F74344271E1264EE001CC831 /* PBXContainerItemProxy */ = {
  705. isa = PBXContainerItemProxy;
  706. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  707. proxyType = 1;
  708. remoteGlobalIDString = F743441F1E1264EE001CC831;
  709. remoteInfo = PickerFileProvider;
  710. };
  711. F743442A1E1264EE001CC831 /* PBXContainerItemProxy */ = {
  712. isa = PBXContainerItemProxy;
  713. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  714. proxyType = 1;
  715. remoteGlobalIDString = F74344111E1264ED001CC831;
  716. remoteInfo = Picker;
  717. };
  718. F7B61E921DC13C20009E938F /* PBXContainerItemProxy */ = {
  719. isa = PBXContainerItemProxy;
  720. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  721. proxyType = 2;
  722. remoteGlobalIDString = 905D07181A63DE190076B54E;
  723. remoteInfo = "MagicalRecord for iOS";
  724. };
  725. F7B61E941DC13C20009E938F /* PBXContainerItemProxy */ = {
  726. isa = PBXContainerItemProxy;
  727. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  728. proxyType = 2;
  729. remoteGlobalIDString = 9004F5211A94CBCF00A61312;
  730. remoteInfo = "MagicalRecord for iOS Tests";
  731. };
  732. F7B61E961DC13C20009E938F /* PBXContainerItemProxy */ = {
  733. isa = PBXContainerItemProxy;
  734. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  735. proxyType = 2;
  736. remoteGlobalIDString = 905D073B1A63DE690076B54E;
  737. remoteInfo = "MagicalRecord for OS X";
  738. };
  739. F7B61E981DC13C20009E938F /* PBXContainerItemProxy */ = {
  740. isa = PBXContainerItemProxy;
  741. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  742. proxyType = 2;
  743. remoteGlobalIDString = 9004F5661A94CBF900A61312;
  744. remoteInfo = "MagicalRecord for OS X Tests";
  745. };
  746. F7B61E9A1DC13C20009E938F /* PBXContainerItemProxy */ = {
  747. isa = PBXContainerItemProxy;
  748. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  749. proxyType = 2;
  750. remoteGlobalIDString = C7CF97AB17498414008D9D13;
  751. remoteInfo = "libMagicalRecord for iOS";
  752. };
  753. F7B61E9C1DC13C20009E938F /* PBXContainerItemProxy */ = {
  754. isa = PBXContainerItemProxy;
  755. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  756. proxyType = 2;
  757. remoteGlobalIDString = C7CF97FF174984CA008D9D13;
  758. remoteInfo = "libMagicalRecord for iOS Tests";
  759. };
  760. F7B61E9E1DC13C20009E938F /* PBXContainerItemProxy */ = {
  761. isa = PBXContainerItemProxy;
  762. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  763. proxyType = 2;
  764. remoteGlobalIDString = C7CF97BB1749843F008D9D13;
  765. remoteInfo = "libMagicalRecord for OS X";
  766. };
  767. F7B61EA01DC13C20009E938F /* PBXContainerItemProxy */ = {
  768. isa = PBXContainerItemProxy;
  769. containerPortal = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  770. proxyType = 2;
  771. remoteGlobalIDString = C7CF9816174984E4008D9D13;
  772. remoteInfo = "libMagicalRecord for OS X Tests";
  773. };
  774. /* End PBXContainerItemProxy section */
  775. /* Begin PBXCopyFilesBuildPhase section */
  776. F75A3FFF1EBCB55B00B213E8 /* Embed Frameworks */ = {
  777. isa = PBXCopyFilesBuildPhase;
  778. buildActionMask = 2147483647;
  779. dstPath = "";
  780. dstSubfolderSpec = 10;
  781. files = (
  782. F7DFE25A1EBDC53200CF5202 /* RealmSwift.framework in Embed Frameworks */,
  783. F7DFE2581EBDC52E00CF5202 /* Realm.framework in Embed Frameworks */,
  784. );
  785. name = "Embed Frameworks";
  786. runOnlyForDeploymentPostprocessing = 0;
  787. };
  788. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  789. isa = PBXCopyFilesBuildPhase;
  790. buildActionMask = 2147483647;
  791. dstPath = "";
  792. dstSubfolderSpec = 13;
  793. files = (
  794. F74344921E128EB0001CC831 /* Picker.appex in Embed App Extensions */,
  795. F74344931E128EB4001CC831 /* PickerFileProvider.appex in Embed App Extensions */,
  796. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  797. );
  798. name = "Embed App Extensions";
  799. runOnlyForDeploymentPostprocessing = 0;
  800. };
  801. /* End PBXCopyFilesBuildPhase section */
  802. /* Begin PBXFileReference section */
  803. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  804. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  805. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  806. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  807. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  808. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  809. F70022591EC4C9100080073F /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
  810. F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
  811. F700225B1EC4C9100080073F /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
  812. F700225C1EC4C9100080073F /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
  813. F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
  814. F700225E1EC4C9100080073F /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
  815. F700225F1EC4C9100080073F /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
  816. F70022601EC4C9100080073F /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
  817. F70022611EC4C9100080073F /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
  818. F70022621EC4C9100080073F /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
  819. F70022631EC4C9100080073F /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
  820. F70022641EC4C9100080073F /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
  821. F70022651EC4C9100080073F /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
  822. F70022661EC4C9100080073F /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  823. F70022671EC4C9100080073F /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  824. F70022681EC4C9100080073F /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  825. F70022691EC4C9100080073F /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  826. F700226A1EC4C9100080073F /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  827. F700226B1EC4C9100080073F /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  828. F700226C1EC4C9100080073F /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  829. F700226D1EC4C9100080073F /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  830. F700226E1EC4C9100080073F /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  831. F700226F1EC4C9100080073F /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  832. F70022701EC4C9100080073F /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  833. F70022711EC4C9100080073F /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  834. F70022721EC4C9100080073F /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  835. F70022731EC4C9100080073F /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  836. F70022741EC4C9100080073F /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  837. F70022751EC4C9100080073F /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  838. F70022761EC4C9100080073F /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  839. F70022771EC4C9100080073F /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  840. F70022781EC4C9100080073F /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  841. F70022791EC4C9100080073F /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  842. F700227A1EC4C9100080073F /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  843. F700227B1EC4C9100080073F /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  844. F700227C1EC4C9100080073F /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  845. F700227D1EC4C9100080073F /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  846. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  847. F70022801EC4C9100080073F /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  848. F70022811EC4C9100080073F /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  849. F70022821EC4C9100080073F /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  850. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  851. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  852. F70022851EC4C9100080073F /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  853. F70022861EC4C9100080073F /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  854. F70022881EC4C9100080073F /* OCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLListParser.h; sourceTree = "<group>"; };
  855. F70022891EC4C9100080073F /* OCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLListParser.m; sourceTree = "<group>"; };
  856. F700228A1EC4C9100080073F /* OCXMLParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLParser.h; sourceTree = "<group>"; };
  857. F700228B1EC4C9100080073F /* OCXMLParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLParser.m; sourceTree = "<group>"; };
  858. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  859. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  860. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  861. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  862. F70022901EC4C9100080073F /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  863. F70022911EC4C9100080073F /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  864. F700229C1EC4C9100080073F /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  865. F700229D1EC4C9100080073F /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  866. F700229E1EC4C9100080073F /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  867. F700229F1EC4C9100080073F /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  868. F70022A01EC4C9100080073F /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  869. F70211F41BAC56E9003FC03E /* CCCellMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  870. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  871. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  872. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  873. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  874. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  875. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  876. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  877. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  878. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  879. F70A63061D5B3467004E2AA5 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
  880. F70A63071D5B3467004E2AA5 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
  881. F70F02AA1C889183008DAB36 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AESCrypt.h; sourceTree = "<group>"; };
  882. F70F02AB1C889183008DAB36 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AESCrypt.m; sourceTree = "<group>"; };
  883. F70F02AC1C889183008DAB36 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+Base64.h"; sourceTree = "<group>"; };
  884. F70F02AD1C889183008DAB36 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+Base64.m"; sourceTree = "<group>"; };
  885. F70F02AE1C889183008DAB36 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+CommonCrypto.h"; sourceTree = "<group>"; };
  886. F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+CommonCrypto.m"; sourceTree = "<group>"; };
  887. F70F02B01C889183008DAB36 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Base64.h"; sourceTree = "<group>"; };
  888. F70F02B11C889183008DAB36 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Base64.m"; sourceTree = "<group>"; };
  889. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  890. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  891. F70F04831C889183008DAB36 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  892. F70F04841C889183008DAB36 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  893. F70F04BF1C889184008DAB36 /* UIImage+Blurring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Blurring.h"; sourceTree = "<group>"; };
  894. F70F04C01C889184008DAB36 /* UIImage+Blurring.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Blurring.m"; sourceTree = "<group>"; };
  895. F70F04C11C889184008DAB36 /* UIImage+Enhancing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Enhancing.h"; sourceTree = "<group>"; };
  896. F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Enhancing.m"; sourceTree = "<group>"; };
  897. F70F04C31C889184008DAB36 /* UIImage+Filtering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Filtering.h"; sourceTree = "<group>"; };
  898. F70F04C41C889184008DAB36 /* UIImage+Filtering.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Filtering.m"; sourceTree = "<group>"; };
  899. F70F04C51C889184008DAB36 /* UIImage+Masking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Masking.h"; sourceTree = "<group>"; };
  900. F70F04C61C889184008DAB36 /* UIImage+Masking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Masking.m"; sourceTree = "<group>"; };
  901. F70F04C71C889184008DAB36 /* UIImage+Reflection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Reflection.h"; sourceTree = "<group>"; };
  902. F70F04C81C889184008DAB36 /* UIImage+Reflection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Reflection.m"; sourceTree = "<group>"; };
  903. F70F04C91C889184008DAB36 /* UIImage+Resizing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resizing.h"; sourceTree = "<group>"; };
  904. F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resizing.m"; sourceTree = "<group>"; };
  905. F70F04CB1C889184008DAB36 /* UIImage+Rotating.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Rotating.h"; sourceTree = "<group>"; };
  906. F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Rotating.m"; sourceTree = "<group>"; };
  907. F70F04CD1C889184008DAB36 /* UIImage+Saving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Saving.h"; sourceTree = "<group>"; };
  908. F70F04CE1C889184008DAB36 /* UIImage+Saving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Saving.m"; sourceTree = "<group>"; };
  909. F70F04D01C889184008DAB36 /* NYXProgressiveImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYXProgressiveImageView.h; sourceTree = "<group>"; };
  910. F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYXProgressiveImageView.m; sourceTree = "<group>"; };
  911. F70F04D31C889184008DAB36 /* NYXImagesHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYXImagesHelper.h; sourceTree = "<group>"; };
  912. F70F04D41C889184008DAB36 /* NYXImagesHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYXImagesHelper.m; sourceTree = "<group>"; };
  913. F70F04D51C889184008DAB36 /* NYXImagesKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYXImagesKit.h; sourceTree = "<group>"; };
  914. F70F051E1C889184008DAB36 /* PPCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCollectionViewCell.h; sourceTree = "<group>"; };
  915. F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPCollectionViewCell.m; sourceTree = "<group>"; };
  916. F70F05201C889184008DAB36 /* PPImageScrollingCellView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPImageScrollingCellView.h; sourceTree = "<group>"; };
  917. F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPImageScrollingCellView.m; sourceTree = "<group>"; };
  918. F70F05221C889184008DAB36 /* PPImageScrollingTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPImageScrollingTableViewCell.h; sourceTree = "<group>"; };
  919. F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PPImageScrollingTableViewCell.m; sourceTree = "<group>"; };
  920. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  921. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  922. F70F05331C889184008DAB36 /* RNCryptor+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RNCryptor+Private.h"; sourceTree = "<group>"; };
  923. F70F05341C889184008DAB36 /* RNCryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNCryptor.h; sourceTree = "<group>"; };
  924. F70F05351C889184008DAB36 /* RNCryptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNCryptor.m; sourceTree = "<group>"; };
  925. F70F05361C889184008DAB36 /* RNCryptorEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNCryptorEngine.h; sourceTree = "<group>"; };
  926. F70F05371C889184008DAB36 /* RNCryptorEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNCryptorEngine.m; sourceTree = "<group>"; };
  927. F70F05381C889184008DAB36 /* RNDecryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNDecryptor.h; sourceTree = "<group>"; };
  928. F70F05391C889184008DAB36 /* RNDecryptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNDecryptor.m; sourceTree = "<group>"; };
  929. F70F053A1C889184008DAB36 /* RNEncryptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNEncryptor.h; sourceTree = "<group>"; };
  930. F70F053B1C889184008DAB36 /* RNEncryptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNEncryptor.m; sourceTree = "<group>"; };
  931. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  932. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  933. F70F0D8D1C889300008DAB36 /* editor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = editor.html; sourceTree = "<group>"; };
  934. F70F0D8F1C889300008DAB36 /* ZSSbgcolor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSbgcolor.png; sourceTree = "<group>"; };
  935. F70F0D901C889300008DAB36 /* ZSSbgcolor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSbgcolor@2x.png"; sourceTree = "<group>"; };
  936. F70F0D911C889300008DAB36 /* ZSSbold.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSbold.png; sourceTree = "<group>"; };
  937. F70F0D921C889300008DAB36 /* ZSSbold@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSbold@2x.png"; sourceTree = "<group>"; };
  938. F70F0D931C889300008DAB36 /* ZSScenterjustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSScenterjustify.png; sourceTree = "<group>"; };
  939. F70F0D941C889300008DAB36 /* ZSScenterjustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSScenterjustify@2x.png"; sourceTree = "<group>"; };
  940. F70F0D951C889300008DAB36 /* ZSSclearstyle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSclearstyle.png; sourceTree = "<group>"; };
  941. F70F0D961C889300008DAB36 /* ZSSclearstyle@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSclearstyle@2x.png"; sourceTree = "<group>"; };
  942. F70F0D971C889300008DAB36 /* ZSSforcejustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSforcejustify.png; sourceTree = "<group>"; };
  943. F70F0D981C889300008DAB36 /* ZSSforcejustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSforcejustify@2x.png"; sourceTree = "<group>"; };
  944. F70F0D991C889300008DAB36 /* ZSSh1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh1.png; sourceTree = "<group>"; };
  945. F70F0D9A1C889300008DAB36 /* ZSSh1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh1@2x.png"; sourceTree = "<group>"; };
  946. F70F0D9B1C889300008DAB36 /* ZSSh2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh2.png; sourceTree = "<group>"; };
  947. F70F0D9C1C889300008DAB36 /* ZSSh2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh2@2x.png"; sourceTree = "<group>"; };
  948. F70F0D9D1C889300008DAB36 /* ZSSh3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh3.png; sourceTree = "<group>"; };
  949. F70F0D9E1C889300008DAB36 /* ZSSh3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh3@2x.png"; sourceTree = "<group>"; };
  950. F70F0D9F1C889300008DAB36 /* ZSSh4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh4.png; sourceTree = "<group>"; };
  951. F70F0DA01C889300008DAB36 /* ZSSh4@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh4@2x.png"; sourceTree = "<group>"; };
  952. F70F0DA11C889300008DAB36 /* ZSSh5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh5.png; sourceTree = "<group>"; };
  953. F70F0DA21C889300008DAB36 /* ZSSh5@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh5@2x.png"; sourceTree = "<group>"; };
  954. F70F0DA31C889300008DAB36 /* ZSSh6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSh6.png; sourceTree = "<group>"; };
  955. F70F0DA41C889300008DAB36 /* ZSSh6@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSh6@2x.png"; sourceTree = "<group>"; };
  956. F70F0DA51C889300008DAB36 /* ZSShorizontalrule.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSShorizontalrule.png; sourceTree = "<group>"; };
  957. F70F0DA61C889300008DAB36 /* ZSShorizontalrule@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSShorizontalrule@2x.png"; sourceTree = "<group>"; };
  958. F70F0DA71C889300008DAB36 /* ZSSimage.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSimage.png; sourceTree = "<group>"; };
  959. F70F0DA81C889300008DAB36 /* ZSSimage@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSimage@2x.png"; sourceTree = "<group>"; };
  960. F70F0DA91C889300008DAB36 /* ZSSindent.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSindent.png; sourceTree = "<group>"; };
  961. F70F0DAA1C889300008DAB36 /* ZSSindent@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSindent@2x.png"; sourceTree = "<group>"; };
  962. F70F0DAB1C889300008DAB36 /* ZSSinsertkeyword.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSinsertkeyword.png; sourceTree = "<group>"; };
  963. F70F0DAC1C889300008DAB36 /* ZSSinsertkeyword@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSinsertkeyword@2x.png"; sourceTree = "<group>"; };
  964. F70F0DAD1C889300008DAB36 /* ZSSitalic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSitalic.png; sourceTree = "<group>"; };
  965. F70F0DAE1C889300008DAB36 /* ZSSitalic@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSitalic@2x.png"; sourceTree = "<group>"; };
  966. F70F0DAF1C889300008DAB36 /* ZSSkeyboard.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSkeyboard.png; sourceTree = "<group>"; };
  967. F70F0DB01C889300008DAB36 /* ZSSkeyboard@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSkeyboard@2x.png"; sourceTree = "<group>"; };
  968. F70F0DB11C889300008DAB36 /* ZSSleftjustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSleftjustify.png; sourceTree = "<group>"; };
  969. F70F0DB21C889300008DAB36 /* ZSSleftjustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSleftjustify@2x.png"; sourceTree = "<group>"; };
  970. F70F0DB31C889300008DAB36 /* ZSSlink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSlink.png; sourceTree = "<group>"; };
  971. F70F0DB41C889300008DAB36 /* ZSSlink@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSlink@2x.png"; sourceTree = "<group>"; };
  972. F70F0DB51C889300008DAB36 /* ZSSorderedlist.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSorderedlist.png; sourceTree = "<group>"; };
  973. F70F0DB61C889300008DAB36 /* ZSSorderedlist@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSorderedlist@2x.png"; sourceTree = "<group>"; };
  974. F70F0DB71C889300008DAB36 /* ZSSoutdent.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSoutdent.png; sourceTree = "<group>"; };
  975. F70F0DB81C889300008DAB36 /* ZSSoutdent@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSoutdent@2x.png"; sourceTree = "<group>"; };
  976. F70F0DB91C889300008DAB36 /* ZSSparagraph.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSparagraph.png; sourceTree = "<group>"; };
  977. F70F0DBA1C889300008DAB36 /* ZSSparagraph@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSparagraph@2x.png"; sourceTree = "<group>"; };
  978. F70F0DBB1C889300008DAB36 /* ZSSpicker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSpicker.png; sourceTree = "<group>"; };
  979. F70F0DBC1C889300008DAB36 /* ZSSpicker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSpicker@2x.png"; sourceTree = "<group>"; };
  980. F70F0DBD1C889300008DAB36 /* ZSSquicklink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSquicklink.png; sourceTree = "<group>"; };
  981. F70F0DBE1C889300008DAB36 /* ZSSquicklink@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSquicklink@2x.png"; sourceTree = "<group>"; };
  982. F70F0DBF1C889300008DAB36 /* ZSSredo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSredo.png; sourceTree = "<group>"; };
  983. F70F0DC01C889300008DAB36 /* ZSSredo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSredo@2x.png"; sourceTree = "<group>"; };
  984. F70F0DC11C889300008DAB36 /* ZSSrightjustify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSrightjustify.png; sourceTree = "<group>"; };
  985. F70F0DC21C889300008DAB36 /* ZSSrightjustify@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSrightjustify@2x.png"; sourceTree = "<group>"; };
  986. F70F0DC31C889300008DAB36 /* ZSSstrikethrough.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSstrikethrough.png; sourceTree = "<group>"; };
  987. F70F0DC41C889300008DAB36 /* ZSSstrikethrough@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSstrikethrough@2x.png"; sourceTree = "<group>"; };
  988. F70F0DC51C889300008DAB36 /* ZSSsubscript.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSsubscript.png; sourceTree = "<group>"; };
  989. F70F0DC61C889300008DAB36 /* ZSSsubscript@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSsubscript@2x.png"; sourceTree = "<group>"; };
  990. F70F0DC71C889300008DAB36 /* ZSSsuperscript.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSsuperscript.png; sourceTree = "<group>"; };
  991. F70F0DC81C889300008DAB36 /* ZSSsuperscript@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSsuperscript@2x.png"; sourceTree = "<group>"; };
  992. F70F0DC91C889300008DAB36 /* ZSStable.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSStable.png; sourceTree = "<group>"; };
  993. F70F0DCA1C889300008DAB36 /* ZSStable@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSStable@2x.png"; sourceTree = "<group>"; };
  994. F70F0DCB1C889300008DAB36 /* ZSStextcolor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSStextcolor.png; sourceTree = "<group>"; };
  995. F70F0DCC1C889300008DAB36 /* ZSStextcolor@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSStextcolor@2x.png"; sourceTree = "<group>"; };
  996. F70F0DCD1C889300008DAB36 /* ZSSunderline.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSunderline.png; sourceTree = "<group>"; };
  997. F70F0DCE1C889300008DAB36 /* ZSSunderline@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSunderline@2x.png"; sourceTree = "<group>"; };
  998. F70F0DCF1C889300008DAB36 /* ZSSundo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSundo.png; sourceTree = "<group>"; };
  999. F70F0DD01C889300008DAB36 /* ZSSundo@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSundo@2x.png"; sourceTree = "<group>"; };
  1000. F70F0DD11C889300008DAB36 /* ZSSunlink.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSunlink.png; sourceTree = "<group>"; };
  1001. F70F0DD21C889300008DAB36 /* ZSSunlink@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSunlink@2x.png"; sourceTree = "<group>"; };
  1002. F70F0DD31C889300008DAB36 /* ZSSunorderedlist.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSunorderedlist.png; sourceTree = "<group>"; };
  1003. F70F0DD41C889300008DAB36 /* ZSSunorderedlist@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSunorderedlist@2x.png"; sourceTree = "<group>"; };
  1004. F70F0DD51C889300008DAB36 /* ZSSviewsource.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZSSviewsource.png; sourceTree = "<group>"; };
  1005. F70F0DD61C889300008DAB36 /* ZSSviewsource@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ZSSviewsource@2x.png"; sourceTree = "<group>"; };
  1006. F70F0DD81C889300008DAB36 /* CYRLayoutManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRLayoutManager.h; sourceTree = "<group>"; };
  1007. F70F0DD91C889300008DAB36 /* CYRLayoutManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRLayoutManager.m; sourceTree = "<group>"; };
  1008. F70F0DDA1C889300008DAB36 /* CYRTextStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRTextStorage.h; sourceTree = "<group>"; };
  1009. F70F0DDB1C889300008DAB36 /* CYRTextStorage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRTextStorage.m; sourceTree = "<group>"; };
  1010. F70F0DDC1C889300008DAB36 /* CYRTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRTextView.h; sourceTree = "<group>"; };
  1011. F70F0DDD1C889300008DAB36 /* CYRTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRTextView.m; sourceTree = "<group>"; };
  1012. F70F0DDE1C889300008DAB36 /* CYRToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYRToken.h; sourceTree = "<group>"; };
  1013. F70F0DDF1C889300008DAB36 /* CYRToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYRToken.m; sourceTree = "<group>"; };
  1014. F70F0DE01C889300008DAB36 /* HRBrightnessCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRBrightnessCursor.h; sourceTree = "<group>"; };
  1015. F70F0DE11C889300008DAB36 /* HRBrightnessCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRBrightnessCursor.m; sourceTree = "<group>"; };
  1016. F70F0DE21C889300008DAB36 /* HRCgUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRCgUtil.h; sourceTree = "<group>"; };
  1017. F70F0DE31C889300008DAB36 /* HRCgUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRCgUtil.m; sourceTree = "<group>"; };
  1018. F70F0DE41C889300008DAB36 /* HRColorCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorCursor.h; sourceTree = "<group>"; };
  1019. F70F0DE51C889300008DAB36 /* HRColorCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorCursor.m; sourceTree = "<group>"; };
  1020. F70F0DE61C889300008DAB36 /* HRColorPickerMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerMacros.h; sourceTree = "<group>"; };
  1021. F70F0DE71C889300008DAB36 /* HRColorPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerView.h; sourceTree = "<group>"; };
  1022. F70F0DE81C889300008DAB36 /* HRColorPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorPickerView.m; sourceTree = "<group>"; };
  1023. F70F0DE91C889300008DAB36 /* HRColorPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerViewController.h; sourceTree = "<group>"; };
  1024. F70F0DEA1C889300008DAB36 /* HRColorPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorPickerViewController.m; sourceTree = "<group>"; };
  1025. F70F0DEB1C889300008DAB36 /* HRColorUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorUtil.h; sourceTree = "<group>"; };
  1026. F70F0DEC1C889300008DAB36 /* HRColorUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorUtil.m; sourceTree = "<group>"; };
  1027. F70F0DED1C889300008DAB36 /* ZSSBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZSSBarButtonItem.h; sourceTree = "<group>"; };
  1028. F70F0DEE1C889300008DAB36 /* ZSSBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZSSBarButtonItem.m; sourceTree = "<group>"; };
  1029. F70F0DEF1C889300008DAB36 /* ZSSRichTextEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZSSRichTextEditor.h; sourceTree = "<group>"; };
  1030. F70F0DF01C889300008DAB36 /* ZSSRichTextEditor.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = ZSSRichTextEditor.js; sourceTree = "<group>"; };
  1031. F70F0DF11C889300008DAB36 /* ZSSRichTextEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZSSRichTextEditor.m; sourceTree = "<group>"; };
  1032. F70F0DF21C889300008DAB36 /* ZSSTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZSSTextView.h; sourceTree = "<group>"; };
  1033. F70F0DF31C889300008DAB36 /* ZSSTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZSSTextView.m; sourceTree = "<group>"; };
  1034. F710E80D1EF95C9C00DC2427 /* CCIntro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCIntro.h; sourceTree = "<group>"; };
  1035. F710E80E1EF95C9C00DC2427 /* CCIntro.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCIntro.m; sourceTree = "<group>"; };
  1036. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  1037. F7151A801D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1038. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  1039. F7151A821D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1040. F7151A831D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intro.strings; sourceTree = "<group>"; };
  1041. F7151A841D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Error.strings; sourceTree = "<group>"; };
  1042. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  1043. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  1044. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  1045. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  1046. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  1047. F7169A2D1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1048. F7169A2E1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1049. F7169A2F1EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1050. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  1051. F7169A311EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1052. F7169A321EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intro.strings; sourceTree = "<group>"; };
  1053. F7169A331EE59BB80086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Error.strings; sourceTree = "<group>"; };
  1054. F7169A341EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1055. F7169A351EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1056. F7169A361EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1057. F7169A371EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1058. F7169A381EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1059. F7169A391EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intro.strings; sourceTree = "<group>"; };
  1060. F7169A3A1EE59BE80086BD69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Error.strings; sourceTree = "<group>"; };
  1061. F7169A3B1EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1062. F7169A3C1EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1063. F7169A3D1EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1064. F7169A3E1EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1065. F7169A3F1EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1066. F7169A401EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intro.strings; sourceTree = "<group>"; };
  1067. F7169A411EE59BFA0086BD69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Error.strings; sourceTree = "<group>"; };
  1068. F7169A421EE59C370086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1069. F7169A431EE59C380086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1070. F7169A441EE59C380086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1071. F7169A451EE59C380086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1072. F7169A461EE59C380086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1073. F7169A471EE59C380086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intro.strings"; sourceTree = "<group>"; };
  1074. F7169A481EE59C380086BD69 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Error.strings"; sourceTree = "<group>"; };
  1075. F7169A491EE59C630086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1076. F7169A4A1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1077. F7169A4B1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1078. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1079. F7169A4D1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1080. F7169A4E1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intro.strings; sourceTree = "<group>"; };
  1081. F7169A4F1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Error.strings; sourceTree = "<group>"; };
  1082. F7169A501EE59C7D0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1083. F7169A511EE59C7D0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1084. F7169A521EE59C7D0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1085. F7169A531EE59C7D0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1086. F7169A541EE59C7E0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1087. F7169A551EE59C7E0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intro.strings"; sourceTree = "<group>"; };
  1088. F7169A561EE59C7E0086BD69 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Error.strings"; sourceTree = "<group>"; };
  1089. F718705F1EE93904003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1090. F71870601EE93904003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1091. F71870611EE93904003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1092. F71870621EE93904003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  1093. F71870631EE93905003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1094. F71870641EE93905003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Intro.strings; sourceTree = "<group>"; };
  1095. F71870651EE93905003A4DD8 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Error.strings; sourceTree = "<group>"; };
  1096. F71870661EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1097. F71870671EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1098. F71870681EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1099. F71870691EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1100. F718706A1EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1101. F718706B1EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1102. F718706C1EE93932003A4DD8 /* es-AR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-AR"; path = "es-AR.lproj/Error.strings"; sourceTree = "<group>"; };
  1103. F720E01E1E48C73E001A4B9E /* CCActions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; lineEnding = 0; name = CCActions.swift; path = Actions/CCActions.swift; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.swift; };
  1104. F721371D1BAFF0920012B613 /* CCAccountWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAccountWeb.h; sourceTree = "<group>"; };
  1105. F721371E1BAFF0920012B613 /* CCAccountWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAccountWeb.m; sourceTree = "<group>"; };
  1106. F72137211BAFF0920012B613 /* CCBancomat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBancomat.h; sourceTree = "<group>"; };
  1107. F72137221BAFF0920012B613 /* CCBancomat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBancomat.m; sourceTree = "<group>"; };
  1108. F72137231BAFF0920012B613 /* CCCartaDiCredito.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCartaDiCredito.h; sourceTree = "<group>"; };
  1109. F72137241BAFF0920012B613 /* CCCartaDiCredito.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCartaDiCredito.m; sourceTree = "<group>"; };
  1110. F72137251BAFF0920012B613 /* CCCartaIdentita.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCartaIdentita.h; sourceTree = "<group>"; };
  1111. F72137261BAFF0920012B613 /* CCCartaIdentita.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCartaIdentita.m; sourceTree = "<group>"; };
  1112. F72137271BAFF0920012B613 /* CCContoCorrente.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCContoCorrente.h; sourceTree = "<group>"; };
  1113. F72137281BAFF0920012B613 /* CCContoCorrente.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCContoCorrente.m; sourceTree = "<group>"; };
  1114. F72137291BAFF0920012B613 /* CCNote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNote.h; sourceTree = "<group>"; };
  1115. F721372A1BAFF0920012B613 /* CCNote.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNote.m; sourceTree = "<group>"; };
  1116. F721372B1BAFF0920012B613 /* CCPassaporto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPassaporto.h; sourceTree = "<group>"; };
  1117. F721372C1BAFF0920012B613 /* CCPassaporto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPassaporto.m; sourceTree = "<group>"; };
  1118. F721372D1BAFF0920012B613 /* CCPatenteGuida.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPatenteGuida.h; sourceTree = "<group>"; };
  1119. F721372E1BAFF0920012B613 /* CCPatenteGuida.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPatenteGuida.m; sourceTree = "<group>"; };
  1120. F721372F1BAFF0920012B613 /* CCTemplates.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTemplates.h; sourceTree = "<group>"; };
  1121. F72137301BAFF0920012B613 /* CCTemplates.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTemplates.m; sourceTree = "<group>"; };
  1122. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  1123. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  1124. F72651E61ED03F4B002231E0 /* cryptocloud 10.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 10.xcdatamodel"; sourceTree = "<group>"; };
  1125. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  1126. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  1127. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  1128. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  1129. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  1130. F72AAEC61E5C60C700BB17E1 /* UIImage+AHKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+AHKAdditions.h"; sourceTree = "<group>"; };
  1131. F72AAEC71E5C60C700BB17E1 /* UIImage+AHKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+AHKAdditions.m"; sourceTree = "<group>"; };
  1132. F72AAEC81E5C60C700BB17E1 /* UIWindow+AHKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+AHKAdditions.h"; sourceTree = "<group>"; };
  1133. F72AAEC91E5C60C700BB17E1 /* UIWindow+AHKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+AHKAdditions.m"; sourceTree = "<group>"; };
  1134. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  1135. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  1136. F732B3361E8045A1002B7D75 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1137. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  1138. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  1139. F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMainTabBarController.swift; sourceTree = "<group>"; };
  1140. F73C002D1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageCryptoCloudSecurity.h; sourceTree = "<group>"; };
  1141. F73C002E1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageCryptoCloudSecurity.m; sourceTree = "<group>"; };
  1142. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  1143. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  1144. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  1145. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  1146. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  1147. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  1148. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  1149. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  1150. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  1151. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  1152. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  1153. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  1154. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  1155. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  1156. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  1157. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  1158. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  1159. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  1160. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
  1161. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
  1162. F73CCE281DC13798007E38D8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1163. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UICKeyChainStore.h; sourceTree = "<group>"; };
  1164. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UICKeyChainStore.m; sourceTree = "<group>"; };
  1165. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  1166. F74344161E1264EE001CC831 /* DocumentPickerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DocumentPickerViewController.swift; sourceTree = "<group>"; };
  1167. F74344241E1264EE001CC831 /* FileProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProvider.swift; sourceTree = "<group>"; };
  1168. F74344901E128E8F001CC831 /* Picker.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Picker.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1169. F74344911E128E96001CC831 /* PickerFileProvider.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = PickerFileProvider.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1170. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareInfoCMOC.h; sourceTree = "<group>"; };
  1171. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareInfoCMOC.m; sourceTree = "<group>"; };
  1172. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  1173. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  1174. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  1175. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  1176. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  1177. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  1178. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  1179. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  1180. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  1181. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  1182. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  1183. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  1184. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  1185. F7540EE21D5B238600C3FFA8 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
  1186. F7540EE31D5B238600C3FFA8 /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
  1187. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
  1188. F7540EE51D5B238600C3FFA8 /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
  1189. F7540EE61D5B238600C3FFA8 /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
  1190. F7540EE71D5B238600C3FFA8 /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
  1191. F7540EE81D5B238600C3FFA8 /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
  1192. F7540EE91D5B238600C3FFA8 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
  1193. F7540EEA1D5B238600C3FFA8 /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
  1194. F7540EEB1D5B238600C3FFA8 /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
  1195. F7540EEC1D5B238600C3FFA8 /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
  1196. F7540EED1D5B238600C3FFA8 /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
  1197. F7540EEE1D5B238600C3FFA8 /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
  1198. F7540EEF1D5B238600C3FFA8 /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
  1199. F7540EF01D5B238600C3FFA8 /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
  1200. F7540EF11D5B238600C3FFA8 /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
  1201. F7540EF21D5B238600C3FFA8 /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
  1202. F7540EF31D5B238600C3FFA8 /* des_old.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des_old.h; sourceTree = "<group>"; };
  1203. F7540EF41D5B238600C3FFA8 /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
  1204. F7540EF51D5B238600C3FFA8 /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
  1205. F7540EF61D5B238600C3FFA8 /* dso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dso.h; sourceTree = "<group>"; };
  1206. F7540EF71D5B238600C3FFA8 /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
  1207. F7540EF81D5B238600C3FFA8 /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
  1208. F7540EF91D5B238600C3FFA8 /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
  1209. F7540EFA1D5B238600C3FFA8 /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
  1210. F7540EFB1D5B238600C3FFA8 /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
  1211. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
  1212. F7540EFD1D5B238600C3FFA8 /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
  1213. F7540EFE1D5B238600C3FFA8 /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
  1214. F7540EFF1D5B238600C3FFA8 /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
  1215. F7540F001D5B238600C3FFA8 /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
  1216. F7540F011D5B238600C3FFA8 /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
  1217. F7540F021D5B238600C3FFA8 /* krb5_asn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = krb5_asn.h; sourceTree = "<group>"; };
  1218. F7540F031D5B238600C3FFA8 /* kssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kssl.h; sourceTree = "<group>"; };
  1219. F7540F041D5B238600C3FFA8 /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
  1220. F7540F051D5B238600C3FFA8 /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
  1221. F7540F061D5B238600C3FFA8 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
  1222. F7540F071D5B238600C3FFA8 /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
  1223. F7540F081D5B238600C3FFA8 /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
  1224. F7540F091D5B238600C3FFA8 /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
  1225. F7540F0A1D5B238600C3FFA8 /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
  1226. F7540F0B1D5B238600C3FFA8 /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
  1227. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
  1228. F7540F0D1D5B238600C3FFA8 /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
  1229. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
  1230. F7540F0F1D5B238600C3FFA8 /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
  1231. F7540F101D5B238600C3FFA8 /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
  1232. F7540F111D5B238600C3FFA8 /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
  1233. F7540F121D5B238600C3FFA8 /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
  1234. F7540F131D5B238600C3FFA8 /* pqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = "<group>"; };
  1235. F7540F141D5B238600C3FFA8 /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
  1236. F7540F151D5B238600C3FFA8 /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
  1237. F7540F161D5B238600C3FFA8 /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
  1238. F7540F171D5B238600C3FFA8 /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
  1239. F7540F181D5B238600C3FFA8 /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
  1240. F7540F191D5B238600C3FFA8 /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
  1241. F7540F1A1D5B238600C3FFA8 /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
  1242. F7540F1B1D5B238600C3FFA8 /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
  1243. F7540F1C1D5B238600C3FFA8 /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
  1244. F7540F1D1D5B238600C3FFA8 /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
  1245. F7540F1E1D5B238600C3FFA8 /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
  1246. F7540F1F1D5B238600C3FFA8 /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
  1247. F7540F201D5B238600C3FFA8 /* ssl23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl23.h; sourceTree = "<group>"; };
  1248. F7540F211D5B238600C3FFA8 /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
  1249. F7540F221D5B238600C3FFA8 /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
  1250. F7540F231D5B238600C3FFA8 /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
  1251. F7540F241D5B238600C3FFA8 /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
  1252. F7540F251D5B238600C3FFA8 /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
  1253. F7540F261D5B238600C3FFA8 /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
  1254. F7540F271D5B238600C3FFA8 /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
  1255. F7540F281D5B238600C3FFA8 /* ui_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_compat.h; sourceTree = "<group>"; };
  1256. F7540F291D5B238600C3FFA8 /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
  1257. F7540F2A1D5B238600C3FFA8 /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
  1258. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
  1259. F7540F2C1D5B238600C3FFA8 /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
  1260. F75797AD1E81356C00187A1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1261. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  1262. F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyAvatar.swift; sourceTree = "<group>"; };
  1263. F75B91DF1ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1264. F75B91E01ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1265. F75B91E11ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1266. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1267. F75B91E31ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1268. F75B91E41ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intro.strings; sourceTree = "<group>"; };
  1269. F75B91E51ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Error.strings; sourceTree = "<group>"; };
  1270. F75B91ED1ECAE25000199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1271. F75B91EE1ECAE25000199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1272. F75B91EF1ECAE25100199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1273. F75B91F01ECAE25100199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1274. F75B91F11ECAE25100199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1275. F75B91F21ECAE25100199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intro.strings"; sourceTree = "<group>"; };
  1276. F75B91F31ECAE25100199C96 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Error.strings"; sourceTree = "<group>"; };
  1277. F75B91F41ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1278. F75B91F51ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1279. F75B91F61ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1280. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1281. F75B91F81ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1282. F75B91F91ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intro.strings"; sourceTree = "<group>"; };
  1283. F75B91FA1ECAE26400199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Error.strings"; sourceTree = "<group>"; };
  1284. F75B923A1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1285. F75B923B1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1286. F75B923C1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1287. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  1288. F75B923E1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1289. F75B923F1ECAE55F00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intro.strings; sourceTree = "<group>"; };
  1290. F75B92401ECAE55F00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Error.strings; sourceTree = "<group>"; };
  1291. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  1292. F75EDFA51E8C106900E6F369 /* Firebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Firebase.h; sourceTree = "<group>"; };
  1293. F75EDFA61E8C106900E6F369 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  1294. F75EDFA71E8C106900E6F369 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  1295. F75EDFA81E8C106900E6F369 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  1296. F75EDFA91E8C106900E6F369 /* FirebaseMessaging.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMessaging.framework; sourceTree = "<group>"; };
  1297. F75EDFAA1E8C106900E6F369 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  1298. F75EDFAB1E8C106900E6F369 /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Protobuf.framework; sourceTree = "<group>"; };
  1299. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  1300. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  1301. F761831D1F03B6C300D8D483 /* NCRequestAsset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCRequestAsset.h; sourceTree = "<group>"; };
  1302. F761831E1F03B6C300D8D483 /* NCRequestAsset.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCRequestAsset.m; sourceTree = "<group>"; };
  1303. F762CAA01EACB66200B38484 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1304. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  1305. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  1306. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  1307. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  1308. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  1309. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  1310. F762CAA91EACB66200B38484 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  1311. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  1312. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  1313. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  1314. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  1315. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  1316. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  1317. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  1318. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  1319. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  1320. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  1321. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  1322. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  1323. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  1324. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  1325. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  1326. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  1327. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  1328. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  1329. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  1330. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  1331. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  1332. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  1333. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  1334. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  1335. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  1336. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  1337. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  1338. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  1339. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  1340. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  1341. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  1342. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  1343. F762CACB1EACB66200B38484 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  1344. F762CACC1EACB66200B38484 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  1345. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  1346. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  1347. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  1348. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  1349. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  1350. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  1351. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  1352. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  1353. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  1354. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  1355. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  1356. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  1357. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  1358. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  1359. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  1360. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  1361. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1362. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1363. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1364. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1365. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1366. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1367. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1368. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1369. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1370. F762CAE91EACB66200B38484 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1371. F762CAEA1EACB66200B38484 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1372. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1373. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1374. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1375. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1376. F762CAF01EACB66200B38484 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1377. F762CAF11EACB66200B38484 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1378. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1379. F762CAF31EACB66200B38484 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1380. F762CAF41EACB66200B38484 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1381. F762CAF51EACB66200B38484 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1382. F762CB1E1EACB7D400B38484 /* Reader-Button-H.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H.png"; sourceTree = "<group>"; };
  1383. F762CB1F1EACB7D400B38484 /* Reader-Button-H@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-H@2x.png"; sourceTree = "<group>"; };
  1384. F762CB201EACB7D400B38484 /* Reader-Button-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N.png"; sourceTree = "<group>"; };
  1385. F762CB211EACB7D400B38484 /* Reader-Button-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Button-N@2x.png"; sourceTree = "<group>"; };
  1386. F762CB221EACB7D400B38484 /* Reader-Email.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email.png"; sourceTree = "<group>"; };
  1387. F762CB231EACB7D400B38484 /* Reader-Email@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Email@2x.png"; sourceTree = "<group>"; };
  1388. F762CB241EACB7D400B38484 /* Reader-Export.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export.png"; sourceTree = "<group>"; };
  1389. F762CB251EACB7D400B38484 /* Reader-Export@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Export@2x.png"; sourceTree = "<group>"; };
  1390. F762CB261EACB7D400B38484 /* Reader-Mark-N.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N.png"; sourceTree = "<group>"; };
  1391. F762CB271EACB7D400B38484 /* Reader-Mark-N@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-N@2x.png"; sourceTree = "<group>"; };
  1392. F762CB281EACB7D400B38484 /* Reader-Mark-Y.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y.png"; sourceTree = "<group>"; };
  1393. F762CB291EACB7D400B38484 /* Reader-Mark-Y@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Mark-Y@2x.png"; sourceTree = "<group>"; };
  1394. F762CB2A1EACB7D400B38484 /* Reader-Print.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print.png"; sourceTree = "<group>"; };
  1395. F762CB2B1EACB7D400B38484 /* Reader-Print@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Print@2x.png"; sourceTree = "<group>"; };
  1396. F762CB2C1EACB7D400B38484 /* Reader-Thumbs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs.png"; sourceTree = "<group>"; };
  1397. F762CB2D1EACB7D400B38484 /* Reader-Thumbs@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Reader-Thumbs@2x.png"; sourceTree = "<group>"; };
  1398. F762CB2F1EACB7D400B38484 /* CGPDFDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPDFDocument.h; sourceTree = "<group>"; };
  1399. F762CB301EACB7D400B38484 /* CGPDFDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPDFDocument.m; sourceTree = "<group>"; };
  1400. F762CB311EACB7D400B38484 /* ReaderConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderConstants.h; sourceTree = "<group>"; };
  1401. F762CB321EACB7D400B38484 /* ReaderConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderConstants.m; sourceTree = "<group>"; };
  1402. F762CB331EACB7D400B38484 /* ReaderContentPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentPage.h; sourceTree = "<group>"; };
  1403. F762CB341EACB7D400B38484 /* ReaderContentPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentPage.m; sourceTree = "<group>"; };
  1404. F762CB351EACB7D400B38484 /* ReaderContentTile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentTile.h; sourceTree = "<group>"; };
  1405. F762CB361EACB7D400B38484 /* ReaderContentTile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentTile.m; sourceTree = "<group>"; };
  1406. F762CB371EACB7D400B38484 /* ReaderContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderContentView.h; sourceTree = "<group>"; };
  1407. F762CB381EACB7D400B38484 /* ReaderContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderContentView.m; sourceTree = "<group>"; };
  1408. F762CB391EACB7D400B38484 /* ReaderDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocument.h; sourceTree = "<group>"; };
  1409. F762CB3A1EACB7D400B38484 /* ReaderDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocument.m; sourceTree = "<group>"; };
  1410. F762CB3B1EACB7D400B38484 /* ReaderDocumentOutline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderDocumentOutline.h; sourceTree = "<group>"; };
  1411. F762CB3C1EACB7D400B38484 /* ReaderDocumentOutline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderDocumentOutline.m; sourceTree = "<group>"; };
  1412. F762CB3D1EACB7D400B38484 /* ReaderMainPagebar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainPagebar.h; sourceTree = "<group>"; };
  1413. F762CB3E1EACB7D400B38484 /* ReaderMainPagebar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainPagebar.m; sourceTree = "<group>"; };
  1414. F762CB3F1EACB7D400B38484 /* ReaderMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderMainToolbar.h; sourceTree = "<group>"; };
  1415. F762CB401EACB7D400B38484 /* ReaderMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderMainToolbar.m; sourceTree = "<group>"; };
  1416. F762CB411EACB7D400B38484 /* ReaderThumbCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbCache.h; sourceTree = "<group>"; };
  1417. F762CB421EACB7D400B38484 /* ReaderThumbCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbCache.m; sourceTree = "<group>"; };
  1418. F762CB431EACB7D400B38484 /* ReaderThumbFetch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbFetch.h; sourceTree = "<group>"; };
  1419. F762CB441EACB7D400B38484 /* ReaderThumbFetch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbFetch.m; sourceTree = "<group>"; };
  1420. F762CB451EACB7D400B38484 /* ReaderThumbQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbQueue.h; sourceTree = "<group>"; };
  1421. F762CB461EACB7D400B38484 /* ReaderThumbQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbQueue.m; sourceTree = "<group>"; };
  1422. F762CB471EACB7D400B38484 /* ReaderThumbRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRender.h; sourceTree = "<group>"; };
  1423. F762CB481EACB7D400B38484 /* ReaderThumbRender.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRender.m; sourceTree = "<group>"; };
  1424. F762CB491EACB7D400B38484 /* ReaderThumbRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbRequest.h; sourceTree = "<group>"; };
  1425. F762CB4A1EACB7D400B38484 /* ReaderThumbRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbRequest.m; sourceTree = "<group>"; };
  1426. F762CB4B1EACB7D400B38484 /* ReaderThumbsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbsView.h; sourceTree = "<group>"; };
  1427. F762CB4C1EACB7D400B38484 /* ReaderThumbsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbsView.m; sourceTree = "<group>"; };
  1428. F762CB4D1EACB7D400B38484 /* ReaderThumbView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderThumbView.h; sourceTree = "<group>"; };
  1429. F762CB4E1EACB7D400B38484 /* ReaderThumbView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderThumbView.m; sourceTree = "<group>"; };
  1430. F762CB4F1EACB7D400B38484 /* ReaderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReaderViewController.h; sourceTree = "<group>"; };
  1431. F762CB501EACB7D400B38484 /* ReaderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReaderViewController.m; sourceTree = "<group>"; };
  1432. F762CB511EACB7D400B38484 /* ThumbsMainToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsMainToolbar.h; sourceTree = "<group>"; };
  1433. F762CB521EACB7D400B38484 /* ThumbsMainToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsMainToolbar.m; sourceTree = "<group>"; };
  1434. F762CB531EACB7D400B38484 /* ThumbsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThumbsViewController.h; sourceTree = "<group>"; };
  1435. F762CB541EACB7D400B38484 /* ThumbsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThumbsViewController.m; sourceTree = "<group>"; };
  1436. F762CB551EACB7D400B38484 /* UIXToolbarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIXToolbarView.h; sourceTree = "<group>"; };
  1437. F762CB561EACB7D400B38484 /* UIXToolbarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIXToolbarView.m; sourceTree = "<group>"; };
  1438. F762CB7C1EACB81000B38484 /* RECommonFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RECommonFunctions.h; sourceTree = "<group>"; };
  1439. F762CB7D1EACB81000B38484 /* RECommonFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RECommonFunctions.m; sourceTree = "<group>"; };
  1440. F762CB7E1EACB81000B38484 /* REMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenu.h; sourceTree = "<group>"; };
  1441. F762CB7F1EACB81000B38484 /* REMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenu.m; sourceTree = "<group>"; };
  1442. F762CB801EACB81000B38484 /* REMenuContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuContainerView.h; sourceTree = "<group>"; };
  1443. F762CB811EACB81000B38484 /* REMenuContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuContainerView.m; sourceTree = "<group>"; };
  1444. F762CB821EACB81000B38484 /* REMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItem.h; sourceTree = "<group>"; };
  1445. F762CB831EACB81000B38484 /* REMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItem.m; sourceTree = "<group>"; };
  1446. F762CB841EACB81000B38484 /* REMenuItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REMenuItemView.h; sourceTree = "<group>"; };
  1447. F762CB851EACB81000B38484 /* REMenuItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = REMenuItemView.m; sourceTree = "<group>"; };
  1448. F762CB8D1EACB84400B38484 /* icon-error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error.png"; sourceTree = "<group>"; };
  1449. F762CB8E1EACB84400B38484 /* icon-error@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-error@2x.png"; sourceTree = "<group>"; };
  1450. F762CB8F1EACB84400B38484 /* icon-info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info.png"; sourceTree = "<group>"; };
  1451. F762CB901EACB84400B38484 /* icon-info@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-info@2x.png"; sourceTree = "<group>"; };
  1452. F762CB911EACB84400B38484 /* icon-success.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success.png"; sourceTree = "<group>"; };
  1453. F762CB921EACB84400B38484 /* icon-success@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon-success@2x.png"; sourceTree = "<group>"; };
  1454. F762CB931EACB84400B38484 /* TWMessageBarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TWMessageBarManager.h; sourceTree = "<group>"; };
  1455. F762CB941EACB84400B38484 /* TWMessageBarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TWMessageBarManager.m; sourceTree = "<group>"; };
  1456. F762CB9F1EACB89C00B38484 /* LMMediaPlayerView.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = LMMediaPlayerView.bundle; sourceTree = "<group>"; };
  1457. F762CBA01EACB89C00B38484 /* LMMediaPlayerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LMMediaPlayerView.xib; sourceTree = "<group>"; };
  1458. F762CBA41EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+LMMediaPlayerShuffle.h"; sourceTree = "<group>"; };
  1459. F762CBA51EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+LMMediaPlayerShuffle.m"; sourceTree = "<group>"; };
  1460. F762CBA71EACB89C00B38484 /* LMMediaPlayerHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaPlayerHelper.h; sourceTree = "<group>"; };
  1461. F762CBA81EACB89C00B38484 /* LMMediaPlayerHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaPlayerHelper.m; sourceTree = "<group>"; };
  1462. F762CBAB1EACB89C00B38484 /* LMMediaItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaItem.h; sourceTree = "<group>"; };
  1463. F762CBAC1EACB89C00B38484 /* LMMediaItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaItem.m; sourceTree = "<group>"; };
  1464. F762CBAE1EACB89C00B38484 /* LMMediaItemQueueManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaItemQueueManager.h; sourceTree = "<group>"; };
  1465. F762CBAF1EACB89C00B38484 /* LMMediaItemQueueManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaItemQueueManager.m; sourceTree = "<group>"; };
  1466. F762CBB11EACB89C00B38484 /* LMMediaItemStreamingCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaItemStreamingCache.h; sourceTree = "<group>"; };
  1467. F762CBB21EACB89C00B38484 /* LMMediaItemStreamingCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaItemStreamingCache.m; sourceTree = "<group>"; };
  1468. F762CBB41EACB89C00B38484 /* LMMediaPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaPlayer.h; sourceTree = "<group>"; };
  1469. F762CBB51EACB89C00B38484 /* LMMediaPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaPlayer.m; sourceTree = "<group>"; };
  1470. F762CBB71EACB89C00B38484 /* LMMediaPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LMMediaPlayerView.h; sourceTree = "<group>"; };
  1471. F762CBB81EACB89C00B38484 /* LMMediaPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LMMediaPlayerView.m; sourceTree = "<group>"; };
  1472. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1473. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1474. F7659A221DC0B726004860C4 /* EAIntroPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroPage.h; sourceTree = "<group>"; };
  1475. F7659A231DC0B726004860C4 /* EAIntroPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroPage.m; sourceTree = "<group>"; };
  1476. F7659A241DC0B726004860C4 /* EAIntroView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAIntroView.h; sourceTree = "<group>"; };
  1477. F7659A251DC0B726004860C4 /* EAIntroView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAIntroView.m; sourceTree = "<group>"; };
  1478. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EARestrictedScrollView.h; sourceTree = "<group>"; };
  1479. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EARestrictedScrollView.m; sourceTree = "<group>"; };
  1480. F7659A301DC0B737004860C4 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1481. F7659A311DC0B737004860C4 /* iRate.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = iRate.bundle; sourceTree = "<group>"; };
  1482. F7659A321DC0B737004860C4 /* iRate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iRate.h; sourceTree = "<group>"; };
  1483. F7659A331DC0B737004860C4 /* iRate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iRate.m; sourceTree = "<group>"; };
  1484. F7659A3B1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexPath+PSTCollectionViewAdditions.h"; sourceTree = "<group>"; };
  1485. F7659A3C1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexPath+PSTCollectionViewAdditions.m"; sourceTree = "<group>"; };
  1486. F7659A3D1DC0B760004860C4 /* PSTCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionView.h; sourceTree = "<group>"; };
  1487. F7659A3E1DC0B760004860C4 /* PSTCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionView.m; sourceTree = "<group>"; };
  1488. F7659A3F1DC0B760004860C4 /* PSTCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewCell.h; sourceTree = "<group>"; };
  1489. F7659A401DC0B760004860C4 /* PSTCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewCell.m; sourceTree = "<group>"; };
  1490. F7659A411DC0B760004860C4 /* PSTCollectionViewCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewCommon.h; sourceTree = "<group>"; };
  1491. F7659A421DC0B760004860C4 /* PSTCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewController.h; sourceTree = "<group>"; };
  1492. F7659A431DC0B760004860C4 /* PSTCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewController.m; sourceTree = "<group>"; };
  1493. F7659A441DC0B760004860C4 /* PSTCollectionViewData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewData.h; sourceTree = "<group>"; };
  1494. F7659A451DC0B760004860C4 /* PSTCollectionViewData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewData.m; sourceTree = "<group>"; };
  1495. F7659A461DC0B760004860C4 /* PSTCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewFlowLayout.h; sourceTree = "<group>"; };
  1496. F7659A471DC0B760004860C4 /* PSTCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewFlowLayout.m; sourceTree = "<group>"; };
  1497. F7659A481DC0B760004860C4 /* PSTCollectionViewItemKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewItemKey.h; sourceTree = "<group>"; };
  1498. F7659A491DC0B760004860C4 /* PSTCollectionViewItemKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewItemKey.m; sourceTree = "<group>"; };
  1499. F7659A4A1DC0B760004860C4 /* PSTCollectionViewLayout+Internals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PSTCollectionViewLayout+Internals.h"; sourceTree = "<group>"; };
  1500. F7659A4B1DC0B760004860C4 /* PSTCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewLayout.h; sourceTree = "<group>"; };
  1501. F7659A4C1DC0B760004860C4 /* PSTCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewLayout.m; sourceTree = "<group>"; };
  1502. F7659A4D1DC0B760004860C4 /* PSTCollectionViewUpdateItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTCollectionViewUpdateItem.h; sourceTree = "<group>"; };
  1503. F7659A4E1DC0B760004860C4 /* PSTCollectionViewUpdateItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTCollectionViewUpdateItem.m; sourceTree = "<group>"; };
  1504. F7659A4F1DC0B760004860C4 /* PSTGridLayoutInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutInfo.h; sourceTree = "<group>"; };
  1505. F7659A501DC0B760004860C4 /* PSTGridLayoutInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutInfo.m; sourceTree = "<group>"; };
  1506. F7659A511DC0B760004860C4 /* PSTGridLayoutItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutItem.h; sourceTree = "<group>"; };
  1507. F7659A521DC0B760004860C4 /* PSTGridLayoutItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutItem.m; sourceTree = "<group>"; };
  1508. F7659A531DC0B760004860C4 /* PSTGridLayoutRow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutRow.h; sourceTree = "<group>"; };
  1509. F7659A541DC0B760004860C4 /* PSTGridLayoutRow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutRow.m; sourceTree = "<group>"; };
  1510. F7659A551DC0B760004860C4 /* PSTGridLayoutSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTGridLayoutSection.h; sourceTree = "<group>"; };
  1511. F7659A561DC0B760004860C4 /* PSTGridLayoutSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTGridLayoutSection.m; sourceTree = "<group>"; };
  1512. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareOC.h; sourceTree = "<group>"; };
  1513. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareOC.m; sourceTree = "<group>"; };
  1514. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCShare.storyboard; sourceTree = "<group>"; };
  1515. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1516. F76B3CDC1EAE4D9100921AC9 /* cryptocloud 8.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 8.xcdatamodel"; sourceTree = "<group>"; };
  1517. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1518. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1519. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1520. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1521. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  1522. F76F23331ED4603700C40023 /* LaunchScreen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LaunchScreen.xib; sourceTree = "<group>"; };
  1523. F772BEB11EE69975006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/CTAssetsPicker.strings"; sourceTree = "<group>"; };
  1524. F772BEB21EE69975006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/SwiftWebVC.strings"; sourceTree = "<group>"; };
  1525. F772BEB31EE69976006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/BKPasscodeView.strings"; sourceTree = "<group>"; };
  1526. F772BEB41EE69976006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1527. F772BEB51EE69976006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1528. F772BEB61EE69976006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intro.strings"; sourceTree = "<group>"; };
  1529. F772BEB71EE69976006A232B /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Error.strings"; sourceTree = "<group>"; };
  1530. F772BEB81EE699E4006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1531. F772BEB91EE699E4006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1532. F772BEBA1EE699E5006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1533. F772BEBB1EE699E5006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1534. F772BEBC1EE699E5006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1535. F772BEBD1EE699E5006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intro.strings; sourceTree = "<group>"; };
  1536. F772BEBE1EE699E5006A232B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Error.strings; sourceTree = "<group>"; };
  1537. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1538. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1539. F77D49A71DC238E500CDC568 /* loading@2x.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = "loading@2x.gif"; sourceTree = "<group>"; };
  1540. F77EB61C1EC07913003F814F /* cryptocloud 9.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 9.xcdatamodel"; sourceTree = "<group>"; };
  1541. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1542. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1543. F780711F1EDB135100EAFFF6 /* CCPhotos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPhotos.h; sourceTree = "<group>"; };
  1544. F78071201EDB135100EAFFF6 /* CCPhotos.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPhotos.m; sourceTree = "<group>"; };
  1545. F78088E61DD3A1DB005C5A7C /* cryptocloud 2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 2.xcdatamodel"; sourceTree = "<group>"; };
  1546. F78088E71DD3A1DB005C5A7C /* cryptocloud 3.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 3.xcdatamodel"; sourceTree = "<group>"; };
  1547. F78088E81DD3A1DB005C5A7C /* cryptocloud 4.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 4.xcdatamodel"; sourceTree = "<group>"; };
  1548. F78088E91DD3A1DB005C5A7C /* cryptocloud.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = cryptocloud.xcdatamodel; sourceTree = "<group>"; };
  1549. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCShareUserOC.h; sourceTree = "<group>"; };
  1550. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCShareUserOC.m; sourceTree = "<group>"; };
  1551. F78964A71EBB576C00403E13 /* JDStatusBarNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarNotification.h; sourceTree = "<group>"; };
  1552. F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarNotification.m; sourceTree = "<group>"; };
  1553. F78964A91EBB576C00403E13 /* JDStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarStyle.h; sourceTree = "<group>"; };
  1554. F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarStyle.m; sourceTree = "<group>"; };
  1555. F78964AB1EBB576C00403E13 /* JDStatusBarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDStatusBarView.h; sourceTree = "<group>"; };
  1556. F78964AC1EBB576C00403E13 /* JDStatusBarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDStatusBarView.m; sourceTree = "<group>"; };
  1557. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1558. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1559. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1560. F792A77B1BC7C45400C9388E /* CCSplit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSplit.h; sourceTree = "<group>"; };
  1561. F792A77C1BC7C45400C9388E /* CCSplit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSplit.m; sourceTree = "<group>"; };
  1562. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1563. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1564. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1565. F7A139FF1E7F3D5D00016680 /* CCProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProgressView.h; sourceTree = "<group>"; };
  1566. F7A13A001E7F3D5D00016680 /* CCProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCProgressView.m; sourceTree = "<group>"; };
  1567. F7A13A011E7F3D5D00016680 /* UINavigationController+CCProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+CCProgress.h"; sourceTree = "<group>"; };
  1568. F7A13A021E7F3D5D00016680 /* UINavigationController+CCProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+CCProgress.m"; sourceTree = "<group>"; };
  1569. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  1570. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1571. F7A321501E9E2A070069AD1B /* CCFavoritesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavoritesCell.h; sourceTree = "<group>"; };
  1572. F7A321511E9E2A070069AD1B /* CCFavoritesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCFavoritesCell.m; sourceTree = "<group>"; };
  1573. F7A321521E9E2A070069AD1B /* CCFavoritesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCFavoritesCell.xib; sourceTree = "<group>"; };
  1574. F7A321631E9E37960069AD1B /* CCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActivity.h; sourceTree = "<group>"; };
  1575. F7A321641E9E37960069AD1B /* CCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCActivity.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1576. F7A321741E9E3EAF0069AD1B /* CCTransfers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
  1577. F7A321751E9E3EAF0069AD1B /* CCTransfers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
  1578. F7A321761E9E3EAF0069AD1B /* CCTransfersCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfersCell.h; sourceTree = "<group>"; };
  1579. F7A321771E9E3EAF0069AD1B /* CCTransfersCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfersCell.m; sourceTree = "<group>"; };
  1580. F7A321781E9E3EAF0069AD1B /* CCTransfersCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCTransfersCell.xib; sourceTree = "<group>"; };
  1581. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  1582. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  1583. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1584. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1585. F7A377141EB2364A002856D3 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
  1586. F7A377151EB2364A002856D3 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
  1587. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1588. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1589. F7A582D61A24DAB500E903D7 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = AppDelegate.m; sourceTree = "<group>"; };
  1590. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1591. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1592. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1593. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1594. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1595. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1596. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1597. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1598. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1599. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1600. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1601. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1602. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  1603. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  1604. F7B1A7731EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/CTAssetsPicker.strings; sourceTree = "<group>"; };
  1605. F7B1A7741EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/SwiftWebVC.strings; sourceTree = "<group>"; };
  1606. F7B1A7751EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/BKPasscodeView.strings; sourceTree = "<group>"; };
  1607. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1608. F7B1A7771EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1609. F7B1A7781EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intro.strings; sourceTree = "<group>"; };
  1610. F7B1A7791EBB3C8100BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Error.strings; sourceTree = "<group>"; };
  1611. F7B1FBB11E72E3D1001781FE /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
  1612. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftModalWebVC.swift; sourceTree = "<group>"; };
  1613. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVC.swift; sourceTree = "<group>"; };
  1614. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivity.swift; sourceTree = "<group>"; };
  1615. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivityChrome.swift; sourceTree = "<group>"; };
  1616. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftWebVCActivitySafari.swift; sourceTree = "<group>"; };
  1617. F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCLoginWeb.swift; sourceTree = "<group>"; };
  1618. F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = MagicalRecord.xcodeproj; path = "Libraries external/MagicalRecord/MagicalRecord.xcodeproj"; sourceTree = SOURCE_ROOT; };
  1619. F7BAADB21ED5A87C00B7EAD4 /* CCCoreData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCoreData.h; sourceTree = "<group>"; };
  1620. F7BAADB31ED5A87C00B7EAD4 /* CCCoreData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCoreData.m; sourceTree = "<group>"; };
  1621. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1622. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1623. F7BAADB61ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableAccount+CoreDataClass.h"; sourceTree = "<group>"; };
  1624. F7BAADB71ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableAccount+CoreDataClass.m"; sourceTree = "<group>"; };
  1625. F7BAADB81ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableAccount+CoreDataProperties.h"; sourceTree = "<group>"; };
  1626. F7BAADB91ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableAccount+CoreDataProperties.m"; sourceTree = "<group>"; };
  1627. F7BAADBA1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableCertificates+CoreDataClass.h"; sourceTree = "<group>"; };
  1628. F7BAADBB1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableCertificates+CoreDataClass.m"; sourceTree = "<group>"; };
  1629. F7BAADBC1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableCertificates+CoreDataProperties.h"; sourceTree = "<group>"; };
  1630. F7BAADBD1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableCertificates+CoreDataProperties.m"; sourceTree = "<group>"; };
  1631. F7BAADBE1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableDirectory+CoreDataClass.h"; sourceTree = "<group>"; };
  1632. F7BAADBF1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableDirectory+CoreDataClass.m"; sourceTree = "<group>"; };
  1633. F7BAADC01ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableDirectory+CoreDataProperties.h"; sourceTree = "<group>"; };
  1634. F7BAADC11ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableDirectory+CoreDataProperties.m"; sourceTree = "<group>"; };
  1635. F7BAADC21ED5A87C00B7EAD4 /* TableLocalFile+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableLocalFile+CoreDataClass.h"; sourceTree = "<group>"; };
  1636. F7BAADC31ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TableLocalFile+CoreDataProperties.h"; sourceTree = "<group>"; };
  1637. F7BAADC41ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableLocalFile+CoreDataProperties.m"; sourceTree = "<group>"; };
  1638. F7BAADF51ED5A99300B7EAD4 /* Picker-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Picker-Bridging-Header.h"; sourceTree = "<group>"; };
  1639. F7BAADFE1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TableLocalFile+CoreDataClass.m"; sourceTree = "<group>"; };
  1640. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCQuickActions.h; sourceTree = "<group>"; };
  1641. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCQuickActions.m; sourceTree = "<group>"; };
  1642. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1643. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1644. F7BFA4541E0693EE0010E44C /* cryptocloud 5.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 5.xcdatamodel"; sourceTree = "<group>"; };
  1645. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1646. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1647. F7C00D4A1E2D10BB0032160B /* cryptocloud 7.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "cryptocloud 7.xcdatamodel"; sourceTree = "<group>"; };
  1648. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1649. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1650. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1651. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1652. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1653. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1654. F7C742D41E7BD44400D9C973 /* Picker.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Picker.entitlements; sourceTree = "<group>"; };
  1655. F7C742D71E7BD5C900D9C973 /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1656. F7C742E61E7BD71A00D9C973 /* PickerFileProvider.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = PickerFileProvider.entitlements; sourceTree = "<group>"; };
  1657. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1658. F7C8C1911B482CEA0048180E /* CCGlobal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGlobal.m; sourceTree = "<group>"; };
  1659. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSharePermissionOC.h; sourceTree = "<group>"; };
  1660. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSharePermissionOC.m; sourceTree = "<group>"; };
  1661. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1662. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1663. F7D02A461C5F9E4400D6F972 /* CCMove.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMove.h; sourceTree = "<group>"; };
  1664. F7D02A471C5F9E4400D6F972 /* CCMove.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMove.m; sourceTree = "<group>"; };
  1665. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCMove.storyboard; sourceTree = "<group>"; };
  1666. F7D0E65E1BC5042E008D989A /* CCDetail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CCDetail.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1667. F7D0E65F1BC5042E008D989A /* CCDetail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCDetail.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1668. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1669. F7DC5FE81F011EB700A903C7 /* MGSwipeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeButton.h; sourceTree = "<group>"; };
  1670. F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeButton.m; sourceTree = "<group>"; };
  1671. F7DC5FEA1F011EB700A903C7 /* MGSwipeTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeTableCell.h; sourceTree = "<group>"; };
  1672. F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeTableCell.m; sourceTree = "<group>"; };
  1673. F7DFE24F1EBDC3A400CF5202 /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Realm.framework; sourceTree = "<group>"; };
  1674. F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RealmSwift.framework; sourceTree = "<group>"; };
  1675. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCCreateCloud.swift; sourceTree = "<group>"; };
  1676. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1677. F7F06E2B1DBFACC600099AE9 /* CTAssetsPageViewController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPageViewController+Internal.h"; sourceTree = "<group>"; };
  1678. F7F06E2C1DBFACC600099AE9 /* CTAssetsPickerController+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CTAssetsPickerController+Internal.h"; sourceTree = "<group>"; };
  1679. F7F06E2D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1680. F7F06E2E1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1681. F7F06E2F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDateFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1682. F7F06E301DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDateFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1683. F7F06E311DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1684. F7F06E321DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1685. F7F06E331DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumberFormatter+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1686. F7F06E341DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumberFormatter+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1687. F7F06E351DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1688. F7F06E361DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1689. F7F06E371DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAssetCollection+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1690. F7F06E381DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAssetCollection+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1691. F7F06E391DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHImageManager+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1692. F7F06E3A1DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHImageManager+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1693. F7F06E3B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1694. F7F06E3C1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1695. F7F06E3D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+CTAssetsPickerController.h"; sourceTree = "<group>"; };
  1696. F7F06E3E1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+CTAssetsPickerController.m"; sourceTree = "<group>"; };
  1697. F7F06E3F1DBFACC600099AE9 /* CTAssetCheckmark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCheckmark.h; sourceTree = "<group>"; };
  1698. F7F06E401DBFACC600099AE9 /* CTAssetCheckmark.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCheckmark.m; sourceTree = "<group>"; };
  1699. F7F06E411DBFACC600099AE9 /* CTAssetCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewCell.h; sourceTree = "<group>"; };
  1700. F7F06E421DBFACC600099AE9 /* CTAssetCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewCell.m; sourceTree = "<group>"; };
  1701. F7F06E431DBFACC600099AE9 /* CTAssetCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetCollectionViewController.h; sourceTree = "<group>"; };
  1702. F7F06E441DBFACC600099AE9 /* CTAssetCollectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetCollectionViewController.m; sourceTree = "<group>"; };
  1703. F7F06E451DBFACC600099AE9 /* CTAssetItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetItemViewController.h; sourceTree = "<group>"; };
  1704. F7F06E461DBFACC600099AE9 /* CTAssetItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetItemViewController.m; sourceTree = "<group>"; };
  1705. F7F06E471DBFACC600099AE9 /* CTAssetPlayButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetPlayButton.h; sourceTree = "<group>"; };
  1706. F7F06E481DBFACC600099AE9 /* CTAssetPlayButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetPlayButton.m; sourceTree = "<group>"; };
  1707. F7F06E491DBFACC600099AE9 /* CTAssetScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetScrollView.h; sourceTree = "<group>"; };
  1708. F7F06E4A1DBFACC600099AE9 /* CTAssetScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetScrollView.m; sourceTree = "<group>"; };
  1709. F7F06E4B1DBFACC600099AE9 /* CTAssetSelectionButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionButton.h; sourceTree = "<group>"; };
  1710. F7F06E4C1DBFACC600099AE9 /* CTAssetSelectionButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionButton.m; sourceTree = "<group>"; };
  1711. F7F06E4D1DBFACC600099AE9 /* CTAssetSelectionLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetSelectionLabel.h; sourceTree = "<group>"; };
  1712. F7F06E4E1DBFACC600099AE9 /* CTAssetSelectionLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetSelectionLabel.m; sourceTree = "<group>"; };
  1713. F7F06E4F1DBFACC600099AE9 /* CTAssetsGridSelectedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridSelectedView.h; sourceTree = "<group>"; };
  1714. F7F06E501DBFACC600099AE9 /* CTAssetsGridSelectedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridSelectedView.m; sourceTree = "<group>"; };
  1715. F7F06E511DBFACC600099AE9 /* CTAssetsGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridView.h; sourceTree = "<group>"; };
  1716. F7F06E521DBFACC600099AE9 /* CTAssetsGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridView.m; sourceTree = "<group>"; };
  1717. F7F06E531DBFACC600099AE9 /* CTAssetsGridViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewCell.h; sourceTree = "<group>"; };
  1718. F7F06E541DBFACC600099AE9 /* CTAssetsGridViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewCell.m; sourceTree = "<group>"; };
  1719. F7F06E551DBFACC600099AE9 /* CTAssetsGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewController.h; sourceTree = "<group>"; };
  1720. F7F06E561DBFACC600099AE9 /* CTAssetsGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewController.m; sourceTree = "<group>"; };
  1721. F7F06E571DBFACC600099AE9 /* CTAssetsGridViewFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewFooter.h; sourceTree = "<group>"; };
  1722. F7F06E581DBFACC600099AE9 /* CTAssetsGridViewFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewFooter.m; sourceTree = "<group>"; };
  1723. F7F06E591DBFACC600099AE9 /* CTAssetsGridViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsGridViewLayout.h; sourceTree = "<group>"; };
  1724. F7F06E5A1DBFACC600099AE9 /* CTAssetsGridViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsGridViewLayout.m; sourceTree = "<group>"; };
  1725. F7F06E5B1DBFACC600099AE9 /* CTAssetsNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsNavigationController.h; sourceTree = "<group>"; };
  1726. F7F06E5C1DBFACC600099AE9 /* CTAssetsNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsNavigationController.m; sourceTree = "<group>"; };
  1727. F7F06E5D1DBFACC600099AE9 /* CTAssetsPageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageView.h; sourceTree = "<group>"; };
  1728. F7F06E5E1DBFACC600099AE9 /* CTAssetsPageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageView.m; sourceTree = "<group>"; };
  1729. F7F06E5F1DBFACC600099AE9 /* CTAssetsPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPageViewController.h; sourceTree = "<group>"; };
  1730. F7F06E601DBFACC600099AE9 /* CTAssetsPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPageViewController.m; sourceTree = "<group>"; };
  1731. F7F06E611DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerAccessDeniedView.h; sourceTree = "<group>"; };
  1732. F7F06E621DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerAccessDeniedView.m; sourceTree = "<group>"; };
  1733. F7F06E631DBFACC600099AE9 /* CTAssetsPickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CTAssetsPickerController.bundle; sourceTree = "<group>"; };
  1734. F7F06E641DBFACC600099AE9 /* CTAssetsPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerController.h; sourceTree = "<group>"; };
  1735. F7F06E651DBFACC600099AE9 /* CTAssetsPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerController.m; sourceTree = "<group>"; };
  1736. F7F06E661DBFACC600099AE9 /* CTAssetsPickerDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerDefines.h; sourceTree = "<group>"; };
  1737. F7F06E671DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsPickerNoAssetsView.h; sourceTree = "<group>"; };
  1738. F7F06E681DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsPickerNoAssetsView.m; sourceTree = "<group>"; };
  1739. F7F06E691DBFACC600099AE9 /* CTAssetsViewControllerTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetsViewControllerTransition.h; sourceTree = "<group>"; };
  1740. F7F06E6A1DBFACC600099AE9 /* CTAssetsViewControllerTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetsViewControllerTransition.m; sourceTree = "<group>"; };
  1741. F7F06E6B1DBFACC600099AE9 /* CTAssetThumbnailOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailOverlay.h; sourceTree = "<group>"; };
  1742. F7F06E6C1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailOverlay.m; sourceTree = "<group>"; };
  1743. F7F06E6D1DBFACC600099AE9 /* CTAssetThumbnailStacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailStacks.h; sourceTree = "<group>"; };
  1744. F7F06E6E1DBFACC600099AE9 /* CTAssetThumbnailStacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailStacks.m; sourceTree = "<group>"; };
  1745. F7F06E6F1DBFACC600099AE9 /* CTAssetThumbnailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CTAssetThumbnailView.h; sourceTree = "<group>"; };
  1746. F7F06E701DBFACC600099AE9 /* CTAssetThumbnailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CTAssetThumbnailView.m; sourceTree = "<group>"; };
  1747. F7F54CAB1E5AFF1E00E19C62 /* PickerFileProvider-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PickerFileProvider-Bridging-Header.h"; sourceTree = "<group>"; };
  1748. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1749. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1750. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1751. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1752. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1753. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1754. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1755. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1756. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1757. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1758. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1759. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1760. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1761. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1762. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1763. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1764. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1765. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1766. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1767. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1768. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1769. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1770. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1771. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1772. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1773. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1774. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1775. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1776. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1777. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1778. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1779. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1780. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1781. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1782. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1783. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1784. F7F54CD31E5B14C700E19C62 /* MWGridCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridCell.h; sourceTree = "<group>"; };
  1785. F7F54CD41E5B14C700E19C62 /* MWGridCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridCell.m; sourceTree = "<group>"; };
  1786. F7F54CD51E5B14C700E19C62 /* MWGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridViewController.h; sourceTree = "<group>"; };
  1787. F7F54CD61E5B14C700E19C62 /* MWGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridViewController.m; sourceTree = "<group>"; };
  1788. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1789. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1790. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1791. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1792. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1793. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1794. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1795. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1796. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1797. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1798. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1799. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1800. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1801. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1802. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1803. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1804. F7F6AC4C1E525AD300E8EB45 /* CCManageCryptoCloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageCryptoCloud.h; sourceTree = "<group>"; };
  1805. F7F6AC4D1E525AD300E8EB45 /* CCManageCryptoCloud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageCryptoCloud.m; sourceTree = "<group>"; };
  1806. F7F801001D98205A007537BC /* CCCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCertificate.h; sourceTree = "<group>"; };
  1807. F7F801011D98205A007537BC /* CCCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCertificate.m; sourceTree = "<group>"; };
  1808. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1809. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1810. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1811. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1812. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1813. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1814. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1815. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1816. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1817. F7FE125E1BAC03FB0041924B /* CCCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCrypto.h; sourceTree = "<group>"; };
  1818. F7FE125F1BAC03FB0041924B /* CCCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCrypto.m; sourceTree = "<group>"; };
  1819. /* End PBXFileReference section */
  1820. /* Begin PBXFrameworksBuildPhase section */
  1821. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1822. isa = PBXFrameworksBuildPhase;
  1823. buildActionMask = 2147483647;
  1824. files = (
  1825. F72C63891DC14B0400FA5ED5 /* libMagicalRecord.a in Frameworks */,
  1826. F7DFE2551EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1827. F70A630F1D5B3467004E2AA5 /* libssl.a in Frameworks */,
  1828. F70A630B1D5B3467004E2AA5 /* libcrypto.a in Frameworks */,
  1829. F7DFE2521EBDC3A400CF5202 /* Realm.framework in Frameworks */,
  1830. );
  1831. runOnlyForDeploymentPostprocessing = 0;
  1832. };
  1833. F743440F1E1264ED001CC831 /* Frameworks */ = {
  1834. isa = PBXFrameworksBuildPhase;
  1835. buildActionMask = 2147483647;
  1836. files = (
  1837. F74344551E1277E2001CC831 /* libMagicalRecord.a in Frameworks */,
  1838. F7DFE2561EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1839. F74344591E12786C001CC831 /* libssl.a in Frameworks */,
  1840. F74344561E12784A001CC831 /* libcrypto.a in Frameworks */,
  1841. F7DFE2531EBDC3A400CF5202 /* Realm.framework in Frameworks */,
  1842. );
  1843. runOnlyForDeploymentPostprocessing = 0;
  1844. };
  1845. F743441D1E1264EE001CC831 /* Frameworks */ = {
  1846. isa = PBXFrameworksBuildPhase;
  1847. buildActionMask = 2147483647;
  1848. files = (
  1849. );
  1850. runOnlyForDeploymentPostprocessing = 0;
  1851. };
  1852. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1853. isa = PBXFrameworksBuildPhase;
  1854. buildActionMask = 2147483647;
  1855. files = (
  1856. F7DFE2571EBDC52E00CF5202 /* Realm.framework in Frameworks */,
  1857. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  1858. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  1859. F7DFE2541EBDC3A400CF5202 /* RealmSwift.framework in Frameworks */,
  1860. F714526D1DC1523B0006A5D4 /* libMagicalRecord.a in Frameworks */,
  1861. F75EDFAC1E8C106900E6F369 /* FirebaseAnalytics.framework in Frameworks */,
  1862. F75EDFAE1E8C106900E6F369 /* FirebaseInstanceID.framework in Frameworks */,
  1863. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */,
  1864. F75EDFB11E8C106900E6F369 /* Protobuf.framework in Frameworks */,
  1865. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1866. F75EDFAD1E8C106900E6F369 /* FirebaseCore.framework in Frameworks */,
  1867. F75EDFAF1E8C106900E6F369 /* FirebaseMessaging.framework in Frameworks */,
  1868. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */,
  1869. F7BB14961D5B62C000ECEE68 /* libcrypto.a in Frameworks */,
  1870. F7BB14971D5B62C000ECEE68 /* libssl.a in Frameworks */,
  1871. F75EDFB01E8C106900E6F369 /* GoogleToolboxForMac.framework in Frameworks */,
  1872. );
  1873. runOnlyForDeploymentPostprocessing = 0;
  1874. };
  1875. /* End PBXFrameworksBuildPhase section */
  1876. /* Begin PBXGroup section */
  1877. F70022561EC4C9100080073F /* OCCommunicationLib */ = {
  1878. isa = PBXGroup;
  1879. children = (
  1880. F70022571EC4C9100080073F /* ExternalLibs */,
  1881. F70022661EC4C9100080073F /* OCActivity.h */,
  1882. F70022671EC4C9100080073F /* OCActivity.m */,
  1883. F70022681EC4C9100080073F /* OCCapabilities.h */,
  1884. F70022691EC4C9100080073F /* OCCapabilities.m */,
  1885. F700226A1EC4C9100080073F /* OCCommunication.h */,
  1886. F700226B1EC4C9100080073F /* OCCommunication.m */,
  1887. F700226C1EC4C9100080073F /* OCErrorMsg.h */,
  1888. F700226D1EC4C9100080073F /* OCExternalSites.h */,
  1889. F700226E1EC4C9100080073F /* OCExternalSites.m */,
  1890. F700226F1EC4C9100080073F /* OCFileDto.h */,
  1891. F70022701EC4C9100080073F /* OCFileDto.m */,
  1892. F70022711EC4C9100080073F /* OCFrameworkConstants.h */,
  1893. F70022721EC4C9100080073F /* OCNotifications.h */,
  1894. F70022731EC4C9100080073F /* OCNotifications.m */,
  1895. F70022741EC4C9100080073F /* OCNotificationsAction.h */,
  1896. F70022751EC4C9100080073F /* OCNotificationsAction.m */,
  1897. F70022761EC4C9100080073F /* OCRichObjectStrings.h */,
  1898. F70022771EC4C9100080073F /* OCRichObjectStrings.m */,
  1899. F70022781EC4C9100080073F /* OCSharedDto.h */,
  1900. F70022791EC4C9100080073F /* OCSharedDto.m */,
  1901. F700227A1EC4C9100080073F /* OCShareUser.h */,
  1902. F700227B1EC4C9100080073F /* OCShareUser.m */,
  1903. F700227C1EC4C9100080073F /* OCUserProfile.h */,
  1904. F700227D1EC4C9100080073F /* OCUserProfile.m */,
  1905. F700227E1EC4C9100080073F /* OCWebDavClient */,
  1906. F700229B1EC4C9100080073F /* Utils */,
  1907. );
  1908. name = OCCommunicationLib;
  1909. path = Library/OCCommunicationLib;
  1910. sourceTree = "<group>";
  1911. };
  1912. F70022571EC4C9100080073F /* ExternalLibs */ = {
  1913. isa = PBXGroup;
  1914. children = (
  1915. F70022581EC4C9100080073F /* AFNetworking */,
  1916. );
  1917. path = ExternalLibs;
  1918. sourceTree = "<group>";
  1919. };
  1920. F70022581EC4C9100080073F /* AFNetworking */ = {
  1921. isa = PBXGroup;
  1922. children = (
  1923. F70022591EC4C9100080073F /* AFHTTPSessionManager.h */,
  1924. F700225A1EC4C9100080073F /* AFHTTPSessionManager.m */,
  1925. F700225B1EC4C9100080073F /* AFNetworking.h */,
  1926. F700225C1EC4C9100080073F /* AFNetworkReachabilityManager.h */,
  1927. F700225D1EC4C9100080073F /* AFNetworkReachabilityManager.m */,
  1928. F700225E1EC4C9100080073F /* AFSecurityPolicy.h */,
  1929. F700225F1EC4C9100080073F /* AFSecurityPolicy.m */,
  1930. F70022601EC4C9100080073F /* AFURLRequestSerialization.h */,
  1931. F70022611EC4C9100080073F /* AFURLRequestSerialization.m */,
  1932. F70022621EC4C9100080073F /* AFURLResponseSerialization.h */,
  1933. F70022631EC4C9100080073F /* AFURLResponseSerialization.m */,
  1934. F70022641EC4C9100080073F /* AFURLSessionManager.h */,
  1935. F70022651EC4C9100080073F /* AFURLSessionManager.m */,
  1936. );
  1937. path = AFNetworking;
  1938. sourceTree = "<group>";
  1939. };
  1940. F700227E1EC4C9100080073F /* OCWebDavClient */ = {
  1941. isa = PBXGroup;
  1942. children = (
  1943. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */,
  1944. F70022801EC4C9100080073F /* NSDate+ISO8601.m */,
  1945. F70022811EC4C9100080073F /* NSDate+RFC1123.h */,
  1946. F70022821EC4C9100080073F /* NSDate+RFC1123.m */,
  1947. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */,
  1948. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */,
  1949. F70022851EC4C9100080073F /* OCWebDAVClient.h */,
  1950. F70022861EC4C9100080073F /* OCWebDAVClient.m */,
  1951. F70022871EC4C9100080073F /* Parsers */,
  1952. );
  1953. path = OCWebDavClient;
  1954. sourceTree = "<group>";
  1955. };
  1956. F70022871EC4C9100080073F /* Parsers */ = {
  1957. isa = PBXGroup;
  1958. children = (
  1959. F70022881EC4C9100080073F /* OCXMLListParser.h */,
  1960. F70022891EC4C9100080073F /* OCXMLListParser.m */,
  1961. F700228A1EC4C9100080073F /* OCXMLParser.h */,
  1962. F700228B1EC4C9100080073F /* OCXMLParser.m */,
  1963. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */,
  1964. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */,
  1965. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */,
  1966. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */,
  1967. F70022901EC4C9100080073F /* OCXMLSharedParser.h */,
  1968. F70022911EC4C9100080073F /* OCXMLSharedParser.m */,
  1969. );
  1970. path = Parsers;
  1971. sourceTree = "<group>";
  1972. };
  1973. F700229B1EC4C9100080073F /* Utils */ = {
  1974. isa = PBXGroup;
  1975. children = (
  1976. F700229C1EC4C9100080073F /* NSString+Encode.h */,
  1977. F700229D1EC4C9100080073F /* NSString+Encode.m */,
  1978. F700229E1EC4C9100080073F /* OCConstants.h */,
  1979. F700229F1EC4C9100080073F /* UtilsFramework.h */,
  1980. F70022A01EC4C9100080073F /* UtilsFramework.m */,
  1981. );
  1982. path = Utils;
  1983. sourceTree = "<group>";
  1984. };
  1985. F70211F31BAC56E9003FC03E /* Main */ = {
  1986. isa = PBXGroup;
  1987. children = (
  1988. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  1989. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  1990. F70211F41BAC56E9003FC03E /* CCCellMain.h */,
  1991. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  1992. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  1993. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  1994. F73B4F781E8D3BF800A97F07 /* CCMainTabBarController.swift */,
  1995. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1996. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1997. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1998. F7D0E65E1BC5042E008D989A /* CCDetail.h */,
  1999. F7D0E65F1BC5042E008D989A /* CCDetail.m */,
  2000. F73F537E1E929C8500F8678D /* CCMore.swift */,
  2001. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  2002. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  2003. F792A77B1BC7C45400C9388E /* CCSplit.h */,
  2004. F792A77C1BC7C45400C9388E /* CCSplit.m */,
  2005. );
  2006. path = Main;
  2007. sourceTree = "<group>";
  2008. };
  2009. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  2010. isa = PBXGroup;
  2011. children = (
  2012. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  2013. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  2014. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  2015. );
  2016. path = UploadFromOtherUpp;
  2017. sourceTree = "<group>";
  2018. };
  2019. F70F02A81C889183008DAB36 /* Libraries external */ = {
  2020. isa = PBXGroup;
  2021. children = (
  2022. F70F02A91C889183008DAB36 /* AESCrypt-ObjC */,
  2023. F70F02B21C889183008DAB36 /* AFViewShaker */,
  2024. F7F06E291DBFACC600099AE9 /* CTAssetsPickerController */,
  2025. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */,
  2026. F7659A211DC0B726004860C4 /* EAIntroView */,
  2027. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */,
  2028. F78964A61EBB576C00403E13 /* JDStatusBarNotification */,
  2029. F7659A2F1DC0B737004860C4 /* iRate */,
  2030. F70F04821C889183008DAB36 /* MBProgressHUD */,
  2031. F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */,
  2032. F70F04BD1C889184008DAB36 /* NYXImagesKit */,
  2033. F7540EE11D5B238600C3FFA8 /* openssl */,
  2034. F70F051D1C889184008DAB36 /* PPImageScrollingTableViewCell */,
  2035. F75037421DBFA91A008FB480 /* PureLayout */,
  2036. F70F05241C889184008DAB36 /* Reachability */,
  2037. F7DFE24E1EBDC3A400CF5202 /* Realm */,
  2038. F7659A3A1DC0B760004860C4 /* PSTCollectionView */,
  2039. F70F05321C889184008DAB36 /* RNCryptor */,
  2040. F75AE3C51E9D12900088BB09 /* SwiftyAvatar */,
  2041. F73CCE271DC13798007E38D8 /* UICKeyChainStore */,
  2042. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  2043. F70F0D8C1C8892FF008DAB36 /* ZSSRichTextEditor */,
  2044. );
  2045. path = "Libraries external";
  2046. sourceTree = SOURCE_ROOT;
  2047. };
  2048. F70F02A91C889183008DAB36 /* AESCrypt-ObjC */ = {
  2049. isa = PBXGroup;
  2050. children = (
  2051. F70F02AA1C889183008DAB36 /* AESCrypt.h */,
  2052. F70F02AB1C889183008DAB36 /* AESCrypt.m */,
  2053. F70F02AC1C889183008DAB36 /* NSData+Base64.h */,
  2054. F70F02AD1C889183008DAB36 /* NSData+Base64.m */,
  2055. F70F02AE1C889183008DAB36 /* NSData+CommonCrypto.h */,
  2056. F70F02AF1C889183008DAB36 /* NSData+CommonCrypto.m */,
  2057. F70F02B01C889183008DAB36 /* NSString+Base64.h */,
  2058. F70F02B11C889183008DAB36 /* NSString+Base64.m */,
  2059. );
  2060. path = "AESCrypt-ObjC";
  2061. sourceTree = "<group>";
  2062. };
  2063. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  2064. isa = PBXGroup;
  2065. children = (
  2066. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  2067. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  2068. );
  2069. path = AFViewShaker;
  2070. sourceTree = "<group>";
  2071. };
  2072. F70F04821C889183008DAB36 /* MBProgressHUD */ = {
  2073. isa = PBXGroup;
  2074. children = (
  2075. F70F04831C889183008DAB36 /* MBProgressHUD.h */,
  2076. F70F04841C889183008DAB36 /* MBProgressHUD.m */,
  2077. );
  2078. path = MBProgressHUD;
  2079. sourceTree = "<group>";
  2080. };
  2081. F70F04BD1C889184008DAB36 /* NYXImagesKit */ = {
  2082. isa = PBXGroup;
  2083. children = (
  2084. F70F04BE1C889184008DAB36 /* Categories */,
  2085. F70F04CF1C889184008DAB36 /* Classes */,
  2086. F70F04D21C889184008DAB36 /* Helper */,
  2087. );
  2088. path = NYXImagesKit;
  2089. sourceTree = "<group>";
  2090. };
  2091. F70F04BE1C889184008DAB36 /* Categories */ = {
  2092. isa = PBXGroup;
  2093. children = (
  2094. F70F04BF1C889184008DAB36 /* UIImage+Blurring.h */,
  2095. F70F04C01C889184008DAB36 /* UIImage+Blurring.m */,
  2096. F70F04C11C889184008DAB36 /* UIImage+Enhancing.h */,
  2097. F70F04C21C889184008DAB36 /* UIImage+Enhancing.m */,
  2098. F70F04C31C889184008DAB36 /* UIImage+Filtering.h */,
  2099. F70F04C41C889184008DAB36 /* UIImage+Filtering.m */,
  2100. F70F04C51C889184008DAB36 /* UIImage+Masking.h */,
  2101. F70F04C61C889184008DAB36 /* UIImage+Masking.m */,
  2102. F70F04C71C889184008DAB36 /* UIImage+Reflection.h */,
  2103. F70F04C81C889184008DAB36 /* UIImage+Reflection.m */,
  2104. F70F04C91C889184008DAB36 /* UIImage+Resizing.h */,
  2105. F70F04CA1C889184008DAB36 /* UIImage+Resizing.m */,
  2106. F70F04CB1C889184008DAB36 /* UIImage+Rotating.h */,
  2107. F70F04CC1C889184008DAB36 /* UIImage+Rotating.m */,
  2108. F70F04CD1C889184008DAB36 /* UIImage+Saving.h */,
  2109. F70F04CE1C889184008DAB36 /* UIImage+Saving.m */,
  2110. );
  2111. path = Categories;
  2112. sourceTree = "<group>";
  2113. };
  2114. F70F04CF1C889184008DAB36 /* Classes */ = {
  2115. isa = PBXGroup;
  2116. children = (
  2117. F70F04D01C889184008DAB36 /* NYXProgressiveImageView.h */,
  2118. F70F04D11C889184008DAB36 /* NYXProgressiveImageView.m */,
  2119. );
  2120. path = Classes;
  2121. sourceTree = "<group>";
  2122. };
  2123. F70F04D21C889184008DAB36 /* Helper */ = {
  2124. isa = PBXGroup;
  2125. children = (
  2126. F70F04D31C889184008DAB36 /* NYXImagesHelper.h */,
  2127. F70F04D41C889184008DAB36 /* NYXImagesHelper.m */,
  2128. F70F04D51C889184008DAB36 /* NYXImagesKit.h */,
  2129. );
  2130. path = Helper;
  2131. sourceTree = "<group>";
  2132. };
  2133. F70F051D1C889184008DAB36 /* PPImageScrollingTableViewCell */ = {
  2134. isa = PBXGroup;
  2135. children = (
  2136. F70F051E1C889184008DAB36 /* PPCollectionViewCell.h */,
  2137. F70F051F1C889184008DAB36 /* PPCollectionViewCell.m */,
  2138. F70F05201C889184008DAB36 /* PPImageScrollingCellView.h */,
  2139. F70F05211C889184008DAB36 /* PPImageScrollingCellView.m */,
  2140. F70F05221C889184008DAB36 /* PPImageScrollingTableViewCell.h */,
  2141. F70F05231C889184008DAB36 /* PPImageScrollingTableViewCell.m */,
  2142. );
  2143. path = PPImageScrollingTableViewCell;
  2144. sourceTree = "<group>";
  2145. };
  2146. F70F05241C889184008DAB36 /* Reachability */ = {
  2147. isa = PBXGroup;
  2148. children = (
  2149. F70F05251C889184008DAB36 /* Reachability.h */,
  2150. F70F05261C889184008DAB36 /* Reachability.m */,
  2151. );
  2152. path = Reachability;
  2153. sourceTree = "<group>";
  2154. };
  2155. F70F05321C889184008DAB36 /* RNCryptor */ = {
  2156. isa = PBXGroup;
  2157. children = (
  2158. F70F05331C889184008DAB36 /* RNCryptor+Private.h */,
  2159. F70F05341C889184008DAB36 /* RNCryptor.h */,
  2160. F70F05351C889184008DAB36 /* RNCryptor.m */,
  2161. F70F05361C889184008DAB36 /* RNCryptorEngine.h */,
  2162. F70F05371C889184008DAB36 /* RNCryptorEngine.m */,
  2163. F70F05381C889184008DAB36 /* RNDecryptor.h */,
  2164. F70F05391C889184008DAB36 /* RNDecryptor.m */,
  2165. F70F053A1C889184008DAB36 /* RNEncryptor.h */,
  2166. F70F053B1C889184008DAB36 /* RNEncryptor.m */,
  2167. );
  2168. path = RNCryptor;
  2169. sourceTree = "<group>";
  2170. };
  2171. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  2172. isa = PBXGroup;
  2173. children = (
  2174. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  2175. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  2176. );
  2177. path = "UIImage+animatedGIF";
  2178. sourceTree = "<group>";
  2179. };
  2180. F70F0D8C1C8892FF008DAB36 /* ZSSRichTextEditor */ = {
  2181. isa = PBXGroup;
  2182. children = (
  2183. F70F0D8D1C889300008DAB36 /* editor.html */,
  2184. F70F0D8E1C889300008DAB36 /* Images */,
  2185. F70F0DD71C889300008DAB36 /* Third Party */,
  2186. F70F0DED1C889300008DAB36 /* ZSSBarButtonItem.h */,
  2187. F70F0DEE1C889300008DAB36 /* ZSSBarButtonItem.m */,
  2188. F70F0DEF1C889300008DAB36 /* ZSSRichTextEditor.h */,
  2189. F70F0DF01C889300008DAB36 /* ZSSRichTextEditor.js */,
  2190. F70F0DF11C889300008DAB36 /* ZSSRichTextEditor.m */,
  2191. F70F0DF21C889300008DAB36 /* ZSSTextView.h */,
  2192. F70F0DF31C889300008DAB36 /* ZSSTextView.m */,
  2193. );
  2194. path = ZSSRichTextEditor;
  2195. sourceTree = "<group>";
  2196. };
  2197. F70F0D8E1C889300008DAB36 /* Images */ = {
  2198. isa = PBXGroup;
  2199. children = (
  2200. F70F0D8F1C889300008DAB36 /* ZSSbgcolor.png */,
  2201. F70F0D901C889300008DAB36 /* ZSSbgcolor@2x.png */,
  2202. F70F0D911C889300008DAB36 /* ZSSbold.png */,
  2203. F70F0D921C889300008DAB36 /* ZSSbold@2x.png */,
  2204. F70F0D931C889300008DAB36 /* ZSScenterjustify.png */,
  2205. F70F0D941C889300008DAB36 /* ZSScenterjustify@2x.png */,
  2206. F70F0D951C889300008DAB36 /* ZSSclearstyle.png */,
  2207. F70F0D961C889300008DAB36 /* ZSSclearstyle@2x.png */,
  2208. F70F0D971C889300008DAB36 /* ZSSforcejustify.png */,
  2209. F70F0D981C889300008DAB36 /* ZSSforcejustify@2x.png */,
  2210. F70F0D991C889300008DAB36 /* ZSSh1.png */,
  2211. F70F0D9A1C889300008DAB36 /* ZSSh1@2x.png */,
  2212. F70F0D9B1C889300008DAB36 /* ZSSh2.png */,
  2213. F70F0D9C1C889300008DAB36 /* ZSSh2@2x.png */,
  2214. F70F0D9D1C889300008DAB36 /* ZSSh3.png */,
  2215. F70F0D9E1C889300008DAB36 /* ZSSh3@2x.png */,
  2216. F70F0D9F1C889300008DAB36 /* ZSSh4.png */,
  2217. F70F0DA01C889300008DAB36 /* ZSSh4@2x.png */,
  2218. F70F0DA11C889300008DAB36 /* ZSSh5.png */,
  2219. F70F0DA21C889300008DAB36 /* ZSSh5@2x.png */,
  2220. F70F0DA31C889300008DAB36 /* ZSSh6.png */,
  2221. F70F0DA41C889300008DAB36 /* ZSSh6@2x.png */,
  2222. F70F0DA51C889300008DAB36 /* ZSShorizontalrule.png */,
  2223. F70F0DA61C889300008DAB36 /* ZSShorizontalrule@2x.png */,
  2224. F70F0DA71C889300008DAB36 /* ZSSimage.png */,
  2225. F70F0DA81C889300008DAB36 /* ZSSimage@2x.png */,
  2226. F70F0DA91C889300008DAB36 /* ZSSindent.png */,
  2227. F70F0DAA1C889300008DAB36 /* ZSSindent@2x.png */,
  2228. F70F0DAB1C889300008DAB36 /* ZSSinsertkeyword.png */,
  2229. F70F0DAC1C889300008DAB36 /* ZSSinsertkeyword@2x.png */,
  2230. F70F0DAD1C889300008DAB36 /* ZSSitalic.png */,
  2231. F70F0DAE1C889300008DAB36 /* ZSSitalic@2x.png */,
  2232. F70F0DAF1C889300008DAB36 /* ZSSkeyboard.png */,
  2233. F70F0DB01C889300008DAB36 /* ZSSkeyboard@2x.png */,
  2234. F70F0DB11C889300008DAB36 /* ZSSleftjustify.png */,
  2235. F70F0DB21C889300008DAB36 /* ZSSleftjustify@2x.png */,
  2236. F70F0DB31C889300008DAB36 /* ZSSlink.png */,
  2237. F70F0DB41C889300008DAB36 /* ZSSlink@2x.png */,
  2238. F70F0DB51C889300008DAB36 /* ZSSorderedlist.png */,
  2239. F70F0DB61C889300008DAB36 /* ZSSorderedlist@2x.png */,
  2240. F70F0DB71C889300008DAB36 /* ZSSoutdent.png */,
  2241. F70F0DB81C889300008DAB36 /* ZSSoutdent@2x.png */,
  2242. F70F0DB91C889300008DAB36 /* ZSSparagraph.png */,
  2243. F70F0DBA1C889300008DAB36 /* ZSSparagraph@2x.png */,
  2244. F70F0DBB1C889300008DAB36 /* ZSSpicker.png */,
  2245. F70F0DBC1C889300008DAB36 /* ZSSpicker@2x.png */,
  2246. F70F0DBD1C889300008DAB36 /* ZSSquicklink.png */,
  2247. F70F0DBE1C889300008DAB36 /* ZSSquicklink@2x.png */,
  2248. F70F0DBF1C889300008DAB36 /* ZSSredo.png */,
  2249. F70F0DC01C889300008DAB36 /* ZSSredo@2x.png */,
  2250. F70F0DC11C889300008DAB36 /* ZSSrightjustify.png */,
  2251. F70F0DC21C889300008DAB36 /* ZSSrightjustify@2x.png */,
  2252. F70F0DC31C889300008DAB36 /* ZSSstrikethrough.png */,
  2253. F70F0DC41C889300008DAB36 /* ZSSstrikethrough@2x.png */,
  2254. F70F0DC51C889300008DAB36 /* ZSSsubscript.png */,
  2255. F70F0DC61C889300008DAB36 /* ZSSsubscript@2x.png */,
  2256. F70F0DC71C889300008DAB36 /* ZSSsuperscript.png */,
  2257. F70F0DC81C889300008DAB36 /* ZSSsuperscript@2x.png */,
  2258. F70F0DC91C889300008DAB36 /* ZSStable.png */,
  2259. F70F0DCA1C889300008DAB36 /* ZSStable@2x.png */,
  2260. F70F0DCB1C889300008DAB36 /* ZSStextcolor.png */,
  2261. F70F0DCC1C889300008DAB36 /* ZSStextcolor@2x.png */,
  2262. F70F0DCD1C889300008DAB36 /* ZSSunderline.png */,
  2263. F70F0DCE1C889300008DAB36 /* ZSSunderline@2x.png */,
  2264. F70F0DCF1C889300008DAB36 /* ZSSundo.png */,
  2265. F70F0DD01C889300008DAB36 /* ZSSundo@2x.png */,
  2266. F70F0DD11C889300008DAB36 /* ZSSunlink.png */,
  2267. F70F0DD21C889300008DAB36 /* ZSSunlink@2x.png */,
  2268. F70F0DD31C889300008DAB36 /* ZSSunorderedlist.png */,
  2269. F70F0DD41C889300008DAB36 /* ZSSunorderedlist@2x.png */,
  2270. F70F0DD51C889300008DAB36 /* ZSSviewsource.png */,
  2271. F70F0DD61C889300008DAB36 /* ZSSviewsource@2x.png */,
  2272. );
  2273. path = Images;
  2274. sourceTree = "<group>";
  2275. };
  2276. F70F0DD71C889300008DAB36 /* Third Party */ = {
  2277. isa = PBXGroup;
  2278. children = (
  2279. F70F0DD81C889300008DAB36 /* CYRLayoutManager.h */,
  2280. F70F0DD91C889300008DAB36 /* CYRLayoutManager.m */,
  2281. F70F0DDA1C889300008DAB36 /* CYRTextStorage.h */,
  2282. F70F0DDB1C889300008DAB36 /* CYRTextStorage.m */,
  2283. F70F0DDC1C889300008DAB36 /* CYRTextView.h */,
  2284. F70F0DDD1C889300008DAB36 /* CYRTextView.m */,
  2285. F70F0DDE1C889300008DAB36 /* CYRToken.h */,
  2286. F70F0DDF1C889300008DAB36 /* CYRToken.m */,
  2287. F70F0DE01C889300008DAB36 /* HRBrightnessCursor.h */,
  2288. F70F0DE11C889300008DAB36 /* HRBrightnessCursor.m */,
  2289. F70F0DE21C889300008DAB36 /* HRCgUtil.h */,
  2290. F70F0DE31C889300008DAB36 /* HRCgUtil.m */,
  2291. F70F0DE41C889300008DAB36 /* HRColorCursor.h */,
  2292. F70F0DE51C889300008DAB36 /* HRColorCursor.m */,
  2293. F70F0DE61C889300008DAB36 /* HRColorPickerMacros.h */,
  2294. F70F0DE71C889300008DAB36 /* HRColorPickerView.h */,
  2295. F70F0DE81C889300008DAB36 /* HRColorPickerView.m */,
  2296. F70F0DE91C889300008DAB36 /* HRColorPickerViewController.h */,
  2297. F70F0DEA1C889300008DAB36 /* HRColorPickerViewController.m */,
  2298. F70F0DEB1C889300008DAB36 /* HRColorUtil.h */,
  2299. F70F0DEC1C889300008DAB36 /* HRColorUtil.m */,
  2300. );
  2301. path = "Third Party";
  2302. sourceTree = "<group>";
  2303. };
  2304. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  2305. isa = PBXGroup;
  2306. children = (
  2307. F710E80D1EF95C9C00DC2427 /* CCIntro.h */,
  2308. F710E80E1EF95C9C00DC2427 /* CCIntro.m */,
  2309. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  2310. );
  2311. path = Intro;
  2312. sourceTree = "<group>";
  2313. };
  2314. F7169A161EE590930086BD69 /* Shares */ = {
  2315. isa = PBXGroup;
  2316. children = (
  2317. F7169A171EE590930086BD69 /* NCShares.h */,
  2318. F7169A181EE590930086BD69 /* NCShares.m */,
  2319. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  2320. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  2321. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  2322. );
  2323. path = Shares;
  2324. sourceTree = "<group>";
  2325. };
  2326. F720E02A1E48C74C001A4B9E /* Actions */ = {
  2327. isa = PBXGroup;
  2328. children = (
  2329. F720E01E1E48C73E001A4B9E /* CCActions.swift */,
  2330. );
  2331. name = Actions;
  2332. sourceTree = "<group>";
  2333. };
  2334. F721371B1BAFF0920012B613 /* Templates */ = {
  2335. isa = PBXGroup;
  2336. children = (
  2337. F721371D1BAFF0920012B613 /* CCAccountWeb.h */,
  2338. F721371E1BAFF0920012B613 /* CCAccountWeb.m */,
  2339. F72137211BAFF0920012B613 /* CCBancomat.h */,
  2340. F72137221BAFF0920012B613 /* CCBancomat.m */,
  2341. F72137231BAFF0920012B613 /* CCCartaDiCredito.h */,
  2342. F72137241BAFF0920012B613 /* CCCartaDiCredito.m */,
  2343. F72137251BAFF0920012B613 /* CCCartaIdentita.h */,
  2344. F72137261BAFF0920012B613 /* CCCartaIdentita.m */,
  2345. F72137271BAFF0920012B613 /* CCContoCorrente.h */,
  2346. F72137281BAFF0920012B613 /* CCContoCorrente.m */,
  2347. F72137291BAFF0920012B613 /* CCNote.h */,
  2348. F721372A1BAFF0920012B613 /* CCNote.m */,
  2349. F721372B1BAFF0920012B613 /* CCPassaporto.h */,
  2350. F721372C1BAFF0920012B613 /* CCPassaporto.m */,
  2351. F721372D1BAFF0920012B613 /* CCPatenteGuida.h */,
  2352. F721372E1BAFF0920012B613 /* CCPatenteGuida.m */,
  2353. F721372F1BAFF0920012B613 /* CCTemplates.h */,
  2354. F72137301BAFF0920012B613 /* CCTemplates.m */,
  2355. );
  2356. path = Templates;
  2357. sourceTree = "<group>";
  2358. };
  2359. F728CE741BF6322C00E69702 /* Share */ = {
  2360. isa = PBXGroup;
  2361. children = (
  2362. F768EB021BFB7EA900B6E341 /* CCShare.storyboard */,
  2363. F768EAFB1BFB7CD800B6E341 /* CCShareOC.h */,
  2364. F768EAFC1BFB7CD800B6E341 /* CCShareOC.m */,
  2365. F7CD0FF91C8DDA7D006520C5 /* CCSharePermissionOC.h */,
  2366. F7CD0FFA1C8DDA7D006520C5 /* CCSharePermissionOC.m */,
  2367. F78316861C0CB3CA00C43975 /* CCShareUserOC.h */,
  2368. F78316871C0CB3CA00C43975 /* CCShareUserOC.m */,
  2369. F743B2C31C95BBE8006F5B4A /* CCShareInfoCMOC.h */,
  2370. F743B2C41C95BBE8006F5B4A /* CCShareInfoCMOC.m */,
  2371. );
  2372. path = Share;
  2373. sourceTree = "<group>";
  2374. };
  2375. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  2376. isa = PBXGroup;
  2377. children = (
  2378. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  2379. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  2380. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  2381. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  2382. F72AAEC61E5C60C700BB17E1 /* UIImage+AHKAdditions.h */,
  2383. F72AAEC71E5C60C700BB17E1 /* UIImage+AHKAdditions.m */,
  2384. F72AAEC81E5C60C700BB17E1 /* UIWindow+AHKAdditions.h */,
  2385. F72AAEC91E5C60C700BB17E1 /* UIWindow+AHKAdditions.m */,
  2386. );
  2387. path = AHKActionSheet;
  2388. sourceTree = "<group>";
  2389. };
  2390. F72B60941A24F04E004EF66F /* Localizations */ = {
  2391. isa = PBXGroup;
  2392. children = (
  2393. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */,
  2394. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */,
  2395. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */,
  2396. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  2397. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */,
  2398. F744BE9F1BEBB69F004FFF66 /* Intro.strings */,
  2399. F7B381BF1C074E3E004693F8 /* Error.strings */,
  2400. );
  2401. name = Localizations;
  2402. sourceTree = "<group>";
  2403. };
  2404. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  2405. isa = PBXGroup;
  2406. children = (
  2407. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  2408. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  2409. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  2410. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  2411. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  2412. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  2413. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  2414. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  2415. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  2416. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  2417. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  2418. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  2419. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  2420. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  2421. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  2422. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  2423. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  2424. );
  2425. path = BKPasscodeView;
  2426. sourceTree = "<group>";
  2427. };
  2428. F73CCE221DC13788007E38D8 /* DZNEmptyDataSet */ = {
  2429. isa = PBXGroup;
  2430. children = (
  2431. F73CCE231DC13788007E38D8 /* UIScrollView+EmptyDataSet.h */,
  2432. F73CCE241DC13788007E38D8 /* UIScrollView+EmptyDataSet.m */,
  2433. );
  2434. path = DZNEmptyDataSet;
  2435. sourceTree = "<group>";
  2436. };
  2437. F73CCE271DC13798007E38D8 /* UICKeyChainStore */ = {
  2438. isa = PBXGroup;
  2439. children = (
  2440. F73CCE281DC13798007E38D8 /* Info.plist */,
  2441. F73CCE291DC13798007E38D8 /* UICKeyChainStore.h */,
  2442. F73CCE2A1DC13798007E38D8 /* UICKeyChainStore.m */,
  2443. );
  2444. path = UICKeyChainStore;
  2445. sourceTree = "<group>";
  2446. };
  2447. F74344131E1264EE001CC831 /* Picker */ = {
  2448. isa = PBXGroup;
  2449. children = (
  2450. F7C742D71E7BD5C900D9C973 /* MainInterface.storyboard */,
  2451. F74344161E1264EE001CC831 /* DocumentPickerViewController.swift */,
  2452. F7BAADF51ED5A99300B7EAD4 /* Picker-Bridging-Header.h */,
  2453. );
  2454. path = Picker;
  2455. sourceTree = "<group>";
  2456. };
  2457. F74344211E1264EE001CC831 /* PickerFileProvider */ = {
  2458. isa = PBXGroup;
  2459. children = (
  2460. F7F54CAB1E5AFF1E00E19C62 /* PickerFileProvider-Bridging-Header.h */,
  2461. F74344241E1264EE001CC831 /* FileProvider.swift */,
  2462. );
  2463. path = PickerFileProvider;
  2464. sourceTree = "<group>";
  2465. };
  2466. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  2467. isa = PBXGroup;
  2468. children = (
  2469. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  2470. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  2471. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  2472. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  2473. );
  2474. path = Networking;
  2475. sourceTree = "<group>";
  2476. };
  2477. F75037421DBFA91A008FB480 /* PureLayout */ = {
  2478. isa = PBXGroup;
  2479. children = (
  2480. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  2481. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  2482. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  2483. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  2484. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  2485. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  2486. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  2487. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  2488. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  2489. );
  2490. path = PureLayout;
  2491. sourceTree = "<group>";
  2492. };
  2493. F7540EE11D5B238600C3FFA8 /* openssl */ = {
  2494. isa = PBXGroup;
  2495. children = (
  2496. F70A63061D5B3467004E2AA5 /* libcrypto.a */,
  2497. F70A63071D5B3467004E2AA5 /* libssl.a */,
  2498. F7540EE21D5B238600C3FFA8 /* aes.h */,
  2499. F7540EE31D5B238600C3FFA8 /* asn1.h */,
  2500. F7540EE41D5B238600C3FFA8 /* asn1_mac.h */,
  2501. F7540EE51D5B238600C3FFA8 /* asn1t.h */,
  2502. F7540EE61D5B238600C3FFA8 /* bio.h */,
  2503. F7540EE71D5B238600C3FFA8 /* blowfish.h */,
  2504. F7540EE81D5B238600C3FFA8 /* bn.h */,
  2505. F7540EE91D5B238600C3FFA8 /* buffer.h */,
  2506. F7540EEA1D5B238600C3FFA8 /* camellia.h */,
  2507. F7540EEB1D5B238600C3FFA8 /* cast.h */,
  2508. F7540EEC1D5B238600C3FFA8 /* cmac.h */,
  2509. F7540EED1D5B238600C3FFA8 /* cms.h */,
  2510. F7540EEE1D5B238600C3FFA8 /* comp.h */,
  2511. F7540EEF1D5B238600C3FFA8 /* conf.h */,
  2512. F7540EF01D5B238600C3FFA8 /* conf_api.h */,
  2513. F7540EF11D5B238600C3FFA8 /* crypto.h */,
  2514. F7540EF21D5B238600C3FFA8 /* des.h */,
  2515. F7540EF31D5B238600C3FFA8 /* des_old.h */,
  2516. F7540EF41D5B238600C3FFA8 /* dh.h */,
  2517. F7540EF51D5B238600C3FFA8 /* dsa.h */,
  2518. F7540EF61D5B238600C3FFA8 /* dso.h */,
  2519. F7540EF71D5B238600C3FFA8 /* dtls1.h */,
  2520. F7540EF81D5B238600C3FFA8 /* e_os2.h */,
  2521. F7540EF91D5B238600C3FFA8 /* ebcdic.h */,
  2522. F7540EFA1D5B238600C3FFA8 /* ec.h */,
  2523. F7540EFB1D5B238600C3FFA8 /* ecdh.h */,
  2524. F7540EFC1D5B238600C3FFA8 /* ecdsa.h */,
  2525. F7540EFD1D5B238600C3FFA8 /* engine.h */,
  2526. F7540EFE1D5B238600C3FFA8 /* err.h */,
  2527. F7540EFF1D5B238600C3FFA8 /* evp.h */,
  2528. F7540F001D5B238600C3FFA8 /* hmac.h */,
  2529. F7540F011D5B238600C3FFA8 /* idea.h */,
  2530. F7540F021D5B238600C3FFA8 /* krb5_asn.h */,
  2531. F7540F031D5B238600C3FFA8 /* kssl.h */,
  2532. F7540F041D5B238600C3FFA8 /* lhash.h */,
  2533. F7540F051D5B238600C3FFA8 /* md4.h */,
  2534. F7540F061D5B238600C3FFA8 /* md5.h */,
  2535. F7540F071D5B238600C3FFA8 /* mdc2.h */,
  2536. F7540F081D5B238600C3FFA8 /* modes.h */,
  2537. F7540F091D5B238600C3FFA8 /* obj_mac.h */,
  2538. F7540F0A1D5B238600C3FFA8 /* objects.h */,
  2539. F7540F0B1D5B238600C3FFA8 /* ocsp.h */,
  2540. F7540F0C1D5B238600C3FFA8 /* opensslconf.h */,
  2541. F7540F0D1D5B238600C3FFA8 /* opensslv.h */,
  2542. F7540F0E1D5B238600C3FFA8 /* ossl_typ.h */,
  2543. F7540F0F1D5B238600C3FFA8 /* pem.h */,
  2544. F7540F101D5B238600C3FFA8 /* pem2.h */,
  2545. F7540F111D5B238600C3FFA8 /* pkcs12.h */,
  2546. F7540F121D5B238600C3FFA8 /* pkcs7.h */,
  2547. F7540F131D5B238600C3FFA8 /* pqueue.h */,
  2548. F7540F141D5B238600C3FFA8 /* rand.h */,
  2549. F7540F151D5B238600C3FFA8 /* rc2.h */,
  2550. F7540F161D5B238600C3FFA8 /* rc4.h */,
  2551. F7540F171D5B238600C3FFA8 /* ripemd.h */,
  2552. F7540F181D5B238600C3FFA8 /* rsa.h */,
  2553. F7540F191D5B238600C3FFA8 /* safestack.h */,
  2554. F7540F1A1D5B238600C3FFA8 /* seed.h */,
  2555. F7540F1B1D5B238600C3FFA8 /* sha.h */,
  2556. F7540F1C1D5B238600C3FFA8 /* srp.h */,
  2557. F7540F1D1D5B238600C3FFA8 /* srtp.h */,
  2558. F7540F1E1D5B238600C3FFA8 /* ssl.h */,
  2559. F7540F1F1D5B238600C3FFA8 /* ssl2.h */,
  2560. F7540F201D5B238600C3FFA8 /* ssl23.h */,
  2561. F7540F211D5B238600C3FFA8 /* ssl3.h */,
  2562. F7540F221D5B238600C3FFA8 /* stack.h */,
  2563. F7540F231D5B238600C3FFA8 /* symhacks.h */,
  2564. F7540F241D5B238600C3FFA8 /* tls1.h */,
  2565. F7540F251D5B238600C3FFA8 /* ts.h */,
  2566. F7540F261D5B238600C3FFA8 /* txt_db.h */,
  2567. F7540F271D5B238600C3FFA8 /* ui.h */,
  2568. F7540F281D5B238600C3FFA8 /* ui_compat.h */,
  2569. F7540F291D5B238600C3FFA8 /* whrlpool.h */,
  2570. F7540F2A1D5B238600C3FFA8 /* x509.h */,
  2571. F7540F2B1D5B238600C3FFA8 /* x509_vfy.h */,
  2572. F7540F2C1D5B238600C3FFA8 /* x509v3.h */,
  2573. );
  2574. path = openssl;
  2575. sourceTree = "<group>";
  2576. };
  2577. F75AE3C51E9D12900088BB09 /* SwiftyAvatar */ = {
  2578. isa = PBXGroup;
  2579. children = (
  2580. F75AE3C61E9D12900088BB09 /* SwiftyAvatar.swift */,
  2581. );
  2582. path = SwiftyAvatar;
  2583. sourceTree = "<group>";
  2584. };
  2585. F75EDFA41E8C106900E6F369 /* Analytics */ = {
  2586. isa = PBXGroup;
  2587. children = (
  2588. F75EDFA51E8C106900E6F369 /* Firebase.h */,
  2589. F75EDFA61E8C106900E6F369 /* FirebaseAnalytics.framework */,
  2590. F75EDFA71E8C106900E6F369 /* FirebaseCore.framework */,
  2591. F75EDFA81E8C106900E6F369 /* FirebaseInstanceID.framework */,
  2592. F75EDFA91E8C106900E6F369 /* FirebaseMessaging.framework */,
  2593. F75EDFAA1E8C106900E6F369 /* GoogleToolboxForMac.framework */,
  2594. F75EDFAB1E8C106900E6F369 /* Protobuf.framework */,
  2595. );
  2596. name = Analytics;
  2597. path = "Libraries external/Analytics";
  2598. sourceTree = SOURCE_ROOT;
  2599. };
  2600. F762CA9F1EACB66200B38484 /* XLForm */ = {
  2601. isa = PBXGroup;
  2602. children = (
  2603. F762CAA01EACB66200B38484 /* Info.plist */,
  2604. F762CAA11EACB66200B38484 /* XL */,
  2605. F762CAF51EACB66200B38484 /* XLForm.bundle */,
  2606. );
  2607. path = XLForm;
  2608. sourceTree = "<group>";
  2609. };
  2610. F762CAA11EACB66200B38484 /* XL */ = {
  2611. isa = PBXGroup;
  2612. children = (
  2613. F762CAA21EACB66200B38484 /* Cell */,
  2614. F762CAC51EACB66200B38484 /* Controllers */,
  2615. F762CACD1EACB66200B38484 /* Descriptors */,
  2616. F762CAD51EACB66200B38484 /* Helpers */,
  2617. F762CAEB1EACB66200B38484 /* Validation */,
  2618. F762CAF31EACB66200B38484 /* XLForm.h */,
  2619. F762CAF41EACB66200B38484 /* XLForm.m */,
  2620. );
  2621. path = XL;
  2622. sourceTree = "<group>";
  2623. };
  2624. F762CAA21EACB66200B38484 /* Cell */ = {
  2625. isa = PBXGroup;
  2626. children = (
  2627. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */,
  2628. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */,
  2629. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */,
  2630. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */,
  2631. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */,
  2632. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */,
  2633. F762CAA91EACB66200B38484 /* XLFormDateCell.h */,
  2634. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */,
  2635. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */,
  2636. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */,
  2637. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */,
  2638. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */,
  2639. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */,
  2640. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */,
  2641. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */,
  2642. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */,
  2643. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */,
  2644. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */,
  2645. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */,
  2646. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */,
  2647. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */,
  2648. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */,
  2649. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */,
  2650. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */,
  2651. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */,
  2652. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */,
  2653. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */,
  2654. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */,
  2655. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */,
  2656. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */,
  2657. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */,
  2658. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */,
  2659. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */,
  2660. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */,
  2661. );
  2662. path = Cell;
  2663. sourceTree = "<group>";
  2664. };
  2665. F762CAC51EACB66200B38484 /* Controllers */ = {
  2666. isa = PBXGroup;
  2667. children = (
  2668. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */,
  2669. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */,
  2670. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */,
  2671. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */,
  2672. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */,
  2673. F762CACB1EACB66200B38484 /* XLFormViewController.h */,
  2674. F762CACC1EACB66200B38484 /* XLFormViewController.m */,
  2675. );
  2676. path = Controllers;
  2677. sourceTree = "<group>";
  2678. };
  2679. F762CACD1EACB66200B38484 /* Descriptors */ = {
  2680. isa = PBXGroup;
  2681. children = (
  2682. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */,
  2683. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */,
  2684. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */,
  2685. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */,
  2686. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */,
  2687. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */,
  2688. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */,
  2689. );
  2690. path = Descriptors;
  2691. sourceTree = "<group>";
  2692. };
  2693. F762CAD51EACB66200B38484 /* Helpers */ = {
  2694. isa = PBXGroup;
  2695. children = (
  2696. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */,
  2697. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */,
  2698. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */,
  2699. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */,
  2700. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */,
  2701. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */,
  2702. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */,
  2703. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */,
  2704. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */,
  2705. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */,
  2706. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */,
  2707. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */,
  2708. F762CAE21EACB66200B38484 /* Views */,
  2709. );
  2710. path = Helpers;
  2711. sourceTree = "<group>";
  2712. };
  2713. F762CAE21EACB66200B38484 /* Views */ = {
  2714. isa = PBXGroup;
  2715. children = (
  2716. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */,
  2717. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */,
  2718. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */,
  2719. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */,
  2720. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */,
  2721. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */,
  2722. F762CAE91EACB66200B38484 /* XLFormTextView.h */,
  2723. F762CAEA1EACB66200B38484 /* XLFormTextView.m */,
  2724. );
  2725. path = Views;
  2726. sourceTree = "<group>";
  2727. };
  2728. F762CAEB1EACB66200B38484 /* Validation */ = {
  2729. isa = PBXGroup;
  2730. children = (
  2731. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */,
  2732. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */,
  2733. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */,
  2734. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */,
  2735. F762CAF01EACB66200B38484 /* XLFormValidator.h */,
  2736. F762CAF11EACB66200B38484 /* XLFormValidator.m */,
  2737. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */,
  2738. );
  2739. path = Validation;
  2740. sourceTree = "<group>";
  2741. };
  2742. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */ = {
  2743. isa = PBXGroup;
  2744. children = (
  2745. F762CB1D1EACB7D400B38484 /* Graphics */,
  2746. F762CB2E1EACB7D400B38484 /* Sources */,
  2747. );
  2748. path = "VFR Pdf Reader";
  2749. sourceTree = "<group>";
  2750. };
  2751. F762CB1D1EACB7D400B38484 /* Graphics */ = {
  2752. isa = PBXGroup;
  2753. children = (
  2754. F762CB1E1EACB7D400B38484 /* Reader-Button-H.png */,
  2755. F762CB1F1EACB7D400B38484 /* Reader-Button-H@2x.png */,
  2756. F762CB201EACB7D400B38484 /* Reader-Button-N.png */,
  2757. F762CB211EACB7D400B38484 /* Reader-Button-N@2x.png */,
  2758. F762CB221EACB7D400B38484 /* Reader-Email.png */,
  2759. F762CB231EACB7D400B38484 /* Reader-Email@2x.png */,
  2760. F762CB241EACB7D400B38484 /* Reader-Export.png */,
  2761. F762CB251EACB7D400B38484 /* Reader-Export@2x.png */,
  2762. F762CB261EACB7D400B38484 /* Reader-Mark-N.png */,
  2763. F762CB271EACB7D400B38484 /* Reader-Mark-N@2x.png */,
  2764. F762CB281EACB7D400B38484 /* Reader-Mark-Y.png */,
  2765. F762CB291EACB7D400B38484 /* Reader-Mark-Y@2x.png */,
  2766. F762CB2A1EACB7D400B38484 /* Reader-Print.png */,
  2767. F762CB2B1EACB7D400B38484 /* Reader-Print@2x.png */,
  2768. F762CB2C1EACB7D400B38484 /* Reader-Thumbs.png */,
  2769. F762CB2D1EACB7D400B38484 /* Reader-Thumbs@2x.png */,
  2770. );
  2771. path = Graphics;
  2772. sourceTree = "<group>";
  2773. };
  2774. F762CB2E1EACB7D400B38484 /* Sources */ = {
  2775. isa = PBXGroup;
  2776. children = (
  2777. F762CB2F1EACB7D400B38484 /* CGPDFDocument.h */,
  2778. F762CB301EACB7D400B38484 /* CGPDFDocument.m */,
  2779. F762CB311EACB7D400B38484 /* ReaderConstants.h */,
  2780. F762CB321EACB7D400B38484 /* ReaderConstants.m */,
  2781. F762CB331EACB7D400B38484 /* ReaderContentPage.h */,
  2782. F762CB341EACB7D400B38484 /* ReaderContentPage.m */,
  2783. F762CB351EACB7D400B38484 /* ReaderContentTile.h */,
  2784. F762CB361EACB7D400B38484 /* ReaderContentTile.m */,
  2785. F762CB371EACB7D400B38484 /* ReaderContentView.h */,
  2786. F762CB381EACB7D400B38484 /* ReaderContentView.m */,
  2787. F762CB391EACB7D400B38484 /* ReaderDocument.h */,
  2788. F762CB3A1EACB7D400B38484 /* ReaderDocument.m */,
  2789. F762CB3B1EACB7D400B38484 /* ReaderDocumentOutline.h */,
  2790. F762CB3C1EACB7D400B38484 /* ReaderDocumentOutline.m */,
  2791. F762CB3D1EACB7D400B38484 /* ReaderMainPagebar.h */,
  2792. F762CB3E1EACB7D400B38484 /* ReaderMainPagebar.m */,
  2793. F762CB3F1EACB7D400B38484 /* ReaderMainToolbar.h */,
  2794. F762CB401EACB7D400B38484 /* ReaderMainToolbar.m */,
  2795. F762CB411EACB7D400B38484 /* ReaderThumbCache.h */,
  2796. F762CB421EACB7D400B38484 /* ReaderThumbCache.m */,
  2797. F762CB431EACB7D400B38484 /* ReaderThumbFetch.h */,
  2798. F762CB441EACB7D400B38484 /* ReaderThumbFetch.m */,
  2799. F762CB451EACB7D400B38484 /* ReaderThumbQueue.h */,
  2800. F762CB461EACB7D400B38484 /* ReaderThumbQueue.m */,
  2801. F762CB471EACB7D400B38484 /* ReaderThumbRender.h */,
  2802. F762CB481EACB7D400B38484 /* ReaderThumbRender.m */,
  2803. F762CB491EACB7D400B38484 /* ReaderThumbRequest.h */,
  2804. F762CB4A1EACB7D400B38484 /* ReaderThumbRequest.m */,
  2805. F762CB4B1EACB7D400B38484 /* ReaderThumbsView.h */,
  2806. F762CB4C1EACB7D400B38484 /* ReaderThumbsView.m */,
  2807. F762CB4D1EACB7D400B38484 /* ReaderThumbView.h */,
  2808. F762CB4E1EACB7D400B38484 /* ReaderThumbView.m */,
  2809. F762CB4F1EACB7D400B38484 /* ReaderViewController.h */,
  2810. F762CB501EACB7D400B38484 /* ReaderViewController.m */,
  2811. F762CB511EACB7D400B38484 /* ThumbsMainToolbar.h */,
  2812. F762CB521EACB7D400B38484 /* ThumbsMainToolbar.m */,
  2813. F762CB531EACB7D400B38484 /* ThumbsViewController.h */,
  2814. F762CB541EACB7D400B38484 /* ThumbsViewController.m */,
  2815. F762CB551EACB7D400B38484 /* UIXToolbarView.h */,
  2816. F762CB561EACB7D400B38484 /* UIXToolbarView.m */,
  2817. );
  2818. path = Sources;
  2819. sourceTree = "<group>";
  2820. };
  2821. F762CB7B1EACB81000B38484 /* REMenu */ = {
  2822. isa = PBXGroup;
  2823. children = (
  2824. F762CB7C1EACB81000B38484 /* RECommonFunctions.h */,
  2825. F762CB7D1EACB81000B38484 /* RECommonFunctions.m */,
  2826. F762CB7E1EACB81000B38484 /* REMenu.h */,
  2827. F762CB7F1EACB81000B38484 /* REMenu.m */,
  2828. F762CB801EACB81000B38484 /* REMenuContainerView.h */,
  2829. F762CB811EACB81000B38484 /* REMenuContainerView.m */,
  2830. F762CB821EACB81000B38484 /* REMenuItem.h */,
  2831. F762CB831EACB81000B38484 /* REMenuItem.m */,
  2832. F762CB841EACB81000B38484 /* REMenuItemView.h */,
  2833. F762CB851EACB81000B38484 /* REMenuItemView.m */,
  2834. );
  2835. path = REMenu;
  2836. sourceTree = "<group>";
  2837. };
  2838. F762CB8B1EACB84400B38484 /* TWMessageBarManager */ = {
  2839. isa = PBXGroup;
  2840. children = (
  2841. F762CB8C1EACB84400B38484 /* Icons */,
  2842. F762CB931EACB84400B38484 /* TWMessageBarManager.h */,
  2843. F762CB941EACB84400B38484 /* TWMessageBarManager.m */,
  2844. );
  2845. path = TWMessageBarManager;
  2846. sourceTree = "<group>";
  2847. };
  2848. F762CB8C1EACB84400B38484 /* Icons */ = {
  2849. isa = PBXGroup;
  2850. children = (
  2851. F762CB8D1EACB84400B38484 /* icon-error.png */,
  2852. F762CB8E1EACB84400B38484 /* icon-error@2x.png */,
  2853. F762CB8F1EACB84400B38484 /* icon-info.png */,
  2854. F762CB901EACB84400B38484 /* icon-info@2x.png */,
  2855. F762CB911EACB84400B38484 /* icon-success.png */,
  2856. F762CB921EACB84400B38484 /* icon-success@2x.png */,
  2857. );
  2858. path = Icons;
  2859. sourceTree = "<group>";
  2860. };
  2861. F762CB9C1EACB89C00B38484 /* LMMediaPlayer */ = {
  2862. isa = PBXGroup;
  2863. children = (
  2864. F762CB9D1EACB89C00B38484 /* Pod */,
  2865. );
  2866. path = LMMediaPlayer;
  2867. sourceTree = "<group>";
  2868. };
  2869. F762CB9D1EACB89C00B38484 /* Pod */ = {
  2870. isa = PBXGroup;
  2871. children = (
  2872. F762CB9E1EACB89C00B38484 /* Assets */,
  2873. F762CBA11EACB89C00B38484 /* Classes */,
  2874. );
  2875. path = Pod;
  2876. sourceTree = "<group>";
  2877. };
  2878. F762CB9E1EACB89C00B38484 /* Assets */ = {
  2879. isa = PBXGroup;
  2880. children = (
  2881. F762CB9F1EACB89C00B38484 /* LMMediaPlayerView.bundle */,
  2882. F762CBA01EACB89C00B38484 /* LMMediaPlayerView.xib */,
  2883. );
  2884. path = Assets;
  2885. sourceTree = "<group>";
  2886. };
  2887. F762CBA11EACB89C00B38484 /* Classes */ = {
  2888. isa = PBXGroup;
  2889. children = (
  2890. F762CBA21EACB89C00B38484 /* Category */,
  2891. F762CBA61EACB89C00B38484 /* Hepler */,
  2892. F762CBA91EACB89C00B38484 /* MediaPlayer */,
  2893. F762CBB61EACB89C00B38484 /* MediaPlayerView */,
  2894. );
  2895. path = Classes;
  2896. sourceTree = "<group>";
  2897. };
  2898. F762CBA21EACB89C00B38484 /* Category */ = {
  2899. isa = PBXGroup;
  2900. children = (
  2901. F762CBA31EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle */,
  2902. );
  2903. path = Category;
  2904. sourceTree = "<group>";
  2905. };
  2906. F762CBA31EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle */ = {
  2907. isa = PBXGroup;
  2908. children = (
  2909. F762CBA41EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.h */,
  2910. F762CBA51EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.m */,
  2911. );
  2912. path = "NSArray+LMMediaPlayerShuffle";
  2913. sourceTree = "<group>";
  2914. };
  2915. F762CBA61EACB89C00B38484 /* Hepler */ = {
  2916. isa = PBXGroup;
  2917. children = (
  2918. F762CBA71EACB89C00B38484 /* LMMediaPlayerHelper.h */,
  2919. F762CBA81EACB89C00B38484 /* LMMediaPlayerHelper.m */,
  2920. );
  2921. path = Hepler;
  2922. sourceTree = "<group>";
  2923. };
  2924. F762CBA91EACB89C00B38484 /* MediaPlayer */ = {
  2925. isa = PBXGroup;
  2926. children = (
  2927. F762CBAA1EACB89C00B38484 /* LMMediaItem */,
  2928. F762CBAD1EACB89C00B38484 /* LMMediaItemQueueManager */,
  2929. F762CBB01EACB89C00B38484 /* LMMediaItemStreamingCache */,
  2930. F762CBB31EACB89C00B38484 /* LMMediaPlayer */,
  2931. );
  2932. path = MediaPlayer;
  2933. sourceTree = "<group>";
  2934. };
  2935. F762CBAA1EACB89C00B38484 /* LMMediaItem */ = {
  2936. isa = PBXGroup;
  2937. children = (
  2938. F762CBAB1EACB89C00B38484 /* LMMediaItem.h */,
  2939. F762CBAC1EACB89C00B38484 /* LMMediaItem.m */,
  2940. );
  2941. path = LMMediaItem;
  2942. sourceTree = "<group>";
  2943. };
  2944. F762CBAD1EACB89C00B38484 /* LMMediaItemQueueManager */ = {
  2945. isa = PBXGroup;
  2946. children = (
  2947. F762CBAE1EACB89C00B38484 /* LMMediaItemQueueManager.h */,
  2948. F762CBAF1EACB89C00B38484 /* LMMediaItemQueueManager.m */,
  2949. );
  2950. path = LMMediaItemQueueManager;
  2951. sourceTree = "<group>";
  2952. };
  2953. F762CBB01EACB89C00B38484 /* LMMediaItemStreamingCache */ = {
  2954. isa = PBXGroup;
  2955. children = (
  2956. F762CBB11EACB89C00B38484 /* LMMediaItemStreamingCache.h */,
  2957. F762CBB21EACB89C00B38484 /* LMMediaItemStreamingCache.m */,
  2958. );
  2959. path = LMMediaItemStreamingCache;
  2960. sourceTree = "<group>";
  2961. };
  2962. F762CBB31EACB89C00B38484 /* LMMediaPlayer */ = {
  2963. isa = PBXGroup;
  2964. children = (
  2965. F762CBB41EACB89C00B38484 /* LMMediaPlayer.h */,
  2966. F762CBB51EACB89C00B38484 /* LMMediaPlayer.m */,
  2967. );
  2968. path = LMMediaPlayer;
  2969. sourceTree = "<group>";
  2970. };
  2971. F762CBB61EACB89C00B38484 /* MediaPlayerView */ = {
  2972. isa = PBXGroup;
  2973. children = (
  2974. F762CBB71EACB89C00B38484 /* LMMediaPlayerView.h */,
  2975. F762CBB81EACB89C00B38484 /* LMMediaPlayerView.m */,
  2976. );
  2977. path = MediaPlayerView;
  2978. sourceTree = "<group>";
  2979. };
  2980. F7659A211DC0B726004860C4 /* EAIntroView */ = {
  2981. isa = PBXGroup;
  2982. children = (
  2983. F7659A221DC0B726004860C4 /* EAIntroPage.h */,
  2984. F7659A231DC0B726004860C4 /* EAIntroPage.m */,
  2985. F7659A241DC0B726004860C4 /* EAIntroView.h */,
  2986. F7659A251DC0B726004860C4 /* EAIntroView.m */,
  2987. );
  2988. path = EAIntroView;
  2989. sourceTree = "<group>";
  2990. };
  2991. F7659A2A1DC0B72F004860C4 /* EARestrictedScrollView */ = {
  2992. isa = PBXGroup;
  2993. children = (
  2994. F7659A2B1DC0B72F004860C4 /* EARestrictedScrollView.h */,
  2995. F7659A2C1DC0B72F004860C4 /* EARestrictedScrollView.m */,
  2996. );
  2997. path = EARestrictedScrollView;
  2998. sourceTree = "<group>";
  2999. };
  3000. F7659A2F1DC0B737004860C4 /* iRate */ = {
  3001. isa = PBXGroup;
  3002. children = (
  3003. F7659A301DC0B737004860C4 /* Info.plist */,
  3004. F7659A311DC0B737004860C4 /* iRate.bundle */,
  3005. F7659A321DC0B737004860C4 /* iRate.h */,
  3006. F7659A331DC0B737004860C4 /* iRate.m */,
  3007. );
  3008. path = iRate;
  3009. sourceTree = "<group>";
  3010. };
  3011. F7659A3A1DC0B760004860C4 /* PSTCollectionView */ = {
  3012. isa = PBXGroup;
  3013. children = (
  3014. F7659A3B1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.h */,
  3015. F7659A3C1DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m */,
  3016. F7659A3D1DC0B760004860C4 /* PSTCollectionView.h */,
  3017. F7659A3E1DC0B760004860C4 /* PSTCollectionView.m */,
  3018. F7659A3F1DC0B760004860C4 /* PSTCollectionViewCell.h */,
  3019. F7659A401DC0B760004860C4 /* PSTCollectionViewCell.m */,
  3020. F7659A411DC0B760004860C4 /* PSTCollectionViewCommon.h */,
  3021. F7659A421DC0B760004860C4 /* PSTCollectionViewController.h */,
  3022. F7659A431DC0B760004860C4 /* PSTCollectionViewController.m */,
  3023. F7659A441DC0B760004860C4 /* PSTCollectionViewData.h */,
  3024. F7659A451DC0B760004860C4 /* PSTCollectionViewData.m */,
  3025. F7659A461DC0B760004860C4 /* PSTCollectionViewFlowLayout.h */,
  3026. F7659A471DC0B760004860C4 /* PSTCollectionViewFlowLayout.m */,
  3027. F7659A481DC0B760004860C4 /* PSTCollectionViewItemKey.h */,
  3028. F7659A491DC0B760004860C4 /* PSTCollectionViewItemKey.m */,
  3029. F7659A4A1DC0B760004860C4 /* PSTCollectionViewLayout+Internals.h */,
  3030. F7659A4B1DC0B760004860C4 /* PSTCollectionViewLayout.h */,
  3031. F7659A4C1DC0B760004860C4 /* PSTCollectionViewLayout.m */,
  3032. F7659A4D1DC0B760004860C4 /* PSTCollectionViewUpdateItem.h */,
  3033. F7659A4E1DC0B760004860C4 /* PSTCollectionViewUpdateItem.m */,
  3034. F7659A4F1DC0B760004860C4 /* PSTGridLayoutInfo.h */,
  3035. F7659A501DC0B760004860C4 /* PSTGridLayoutInfo.m */,
  3036. F7659A511DC0B760004860C4 /* PSTGridLayoutItem.h */,
  3037. F7659A521DC0B760004860C4 /* PSTGridLayoutItem.m */,
  3038. F7659A531DC0B760004860C4 /* PSTGridLayoutRow.h */,
  3039. F7659A541DC0B760004860C4 /* PSTGridLayoutRow.m */,
  3040. F7659A551DC0B760004860C4 /* PSTGridLayoutSection.h */,
  3041. F7659A561DC0B760004860C4 /* PSTGridLayoutSection.m */,
  3042. );
  3043. path = PSTCollectionView;
  3044. sourceTree = "<group>";
  3045. };
  3046. F780711E1EDB135100EAFFF6 /* Photos */ = {
  3047. isa = PBXGroup;
  3048. children = (
  3049. F780711F1EDB135100EAFFF6 /* CCPhotos.h */,
  3050. F78071201EDB135100EAFFF6 /* CCPhotos.m */,
  3051. );
  3052. path = Photos;
  3053. sourceTree = "<group>";
  3054. };
  3055. F78964A61EBB576C00403E13 /* JDStatusBarNotification */ = {
  3056. isa = PBXGroup;
  3057. children = (
  3058. F78964A71EBB576C00403E13 /* JDStatusBarNotification.h */,
  3059. F78964A81EBB576C00403E13 /* JDStatusBarNotification.m */,
  3060. F78964A91EBB576C00403E13 /* JDStatusBarStyle.h */,
  3061. F78964AA1EBB576C00403E13 /* JDStatusBarStyle.m */,
  3062. F78964AB1EBB576C00403E13 /* JDStatusBarView.h */,
  3063. F78964AC1EBB576C00403E13 /* JDStatusBarView.m */,
  3064. );
  3065. path = JDStatusBarNotification;
  3066. sourceTree = "<group>";
  3067. };
  3068. F7A139FE1E7F3D5D00016680 /* CCProgress */ = {
  3069. isa = PBXGroup;
  3070. children = (
  3071. F7A139FF1E7F3D5D00016680 /* CCProgressView.h */,
  3072. F7A13A001E7F3D5D00016680 /* CCProgressView.m */,
  3073. F7A13A011E7F3D5D00016680 /* UINavigationController+CCProgress.h */,
  3074. F7A13A021E7F3D5D00016680 /* UINavigationController+CCProgress.m */,
  3075. );
  3076. path = CCProgress;
  3077. sourceTree = "<group>";
  3078. };
  3079. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  3080. isa = PBXGroup;
  3081. children = (
  3082. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  3083. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  3084. F7A321501E9E2A070069AD1B /* CCFavoritesCell.h */,
  3085. F7A321511E9E2A070069AD1B /* CCFavoritesCell.m */,
  3086. F7A321521E9E2A070069AD1B /* CCFavoritesCell.xib */,
  3087. );
  3088. path = Favorites;
  3089. sourceTree = "<group>";
  3090. };
  3091. F7A321621E9E37960069AD1B /* Activity */ = {
  3092. isa = PBXGroup;
  3093. children = (
  3094. F7A321631E9E37960069AD1B /* CCActivity.h */,
  3095. F7A321641E9E37960069AD1B /* CCActivity.m */,
  3096. );
  3097. path = Activity;
  3098. sourceTree = "<group>";
  3099. };
  3100. F7A321731E9E3EAF0069AD1B /* Transfers */ = {
  3101. isa = PBXGroup;
  3102. children = (
  3103. F7A321741E9E3EAF0069AD1B /* CCTransfers.h */,
  3104. F7A321751E9E3EAF0069AD1B /* CCTransfers.m */,
  3105. F7A321761E9E3EAF0069AD1B /* CCTransfersCell.h */,
  3106. F7A321771E9E3EAF0069AD1B /* CCTransfersCell.m */,
  3107. F7A321781E9E3EAF0069AD1B /* CCTransfersCell.xib */,
  3108. );
  3109. path = Transfers;
  3110. sourceTree = "<group>";
  3111. };
  3112. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  3113. isa = PBXGroup;
  3114. children = (
  3115. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  3116. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  3117. );
  3118. path = MenuAccount;
  3119. sourceTree = "<group>";
  3120. };
  3121. F7A377131EB2364A002856D3 /* Fabric */ = {
  3122. isa = PBXGroup;
  3123. children = (
  3124. F7A377141EB2364A002856D3 /* Crashlytics.framework */,
  3125. F7A377151EB2364A002856D3 /* Fabric.framework */,
  3126. );
  3127. name = Fabric;
  3128. path = "Libraries external/Fabric";
  3129. sourceTree = SOURCE_ROOT;
  3130. };
  3131. F7ACE4281BAC0268006C0017 /* Settings */ = {
  3132. isa = PBXGroup;
  3133. children = (
  3134. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  3135. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  3136. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  3137. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  3138. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  3139. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  3140. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  3141. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  3142. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  3143. F7F6AC4C1E525AD300E8EB45 /* CCManageCryptoCloud.h */,
  3144. F7F6AC4D1E525AD300E8EB45 /* CCManageCryptoCloud.m */,
  3145. F73C002D1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.h */,
  3146. F73C002E1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m */,
  3147. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  3148. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  3149. );
  3150. path = Settings;
  3151. sourceTree = "<group>";
  3152. };
  3153. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  3154. isa = PBXGroup;
  3155. children = (
  3156. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  3157. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  3158. );
  3159. path = Synchronize;
  3160. sourceTree = "<group>";
  3161. };
  3162. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  3163. isa = PBXGroup;
  3164. children = (
  3165. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  3166. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  3167. );
  3168. path = AutoUpload;
  3169. sourceTree = "<group>";
  3170. };
  3171. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */ = {
  3172. isa = PBXGroup;
  3173. children = (
  3174. F7B1FBB01E72E3D1001781FE /* Resources */,
  3175. F7B1FBBF1E72E3D1001781FE /* SwiftModalWebVC.swift */,
  3176. F7B1FBC01E72E3D1001781FE /* SwiftWebVC.swift */,
  3177. F7B1FBC11E72E3D1001781FE /* SwiftWebVCActivity.swift */,
  3178. F7B1FBC21E72E3D1001781FE /* SwiftWebVCActivityChrome.swift */,
  3179. F7B1FBC31E72E3D1001781FE /* SwiftWebVCActivitySafari.swift */,
  3180. );
  3181. path = SwiftWebVC;
  3182. sourceTree = "<group>";
  3183. };
  3184. F7B1FBB01E72E3D1001781FE /* Resources */ = {
  3185. isa = PBXGroup;
  3186. children = (
  3187. F7B1FBB11E72E3D1001781FE /* Media.xcassets */,
  3188. );
  3189. path = Resources;
  3190. sourceTree = "<group>";
  3191. };
  3192. F7B61E871DC13C20009E938F /* Products */ = {
  3193. isa = PBXGroup;
  3194. children = (
  3195. F7B61E931DC13C20009E938F /* MagicalRecord.framework */,
  3196. F7B61E951DC13C20009E938F /* MagicalRecord for iOS Tests.xctest */,
  3197. F7B61E971DC13C20009E938F /* MagicalRecord.framework */,
  3198. F7B61E991DC13C20009E938F /* MagicalRecord for OS X Tests.xctest */,
  3199. F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */,
  3200. F7B61E9D1DC13C20009E938F /* libMagicalRecord for iOS Tests.xctest */,
  3201. F7B61E9F1DC13C20009E938F /* libMagicalRecord.dylib */,
  3202. F7B61EA11DC13C20009E938F /* libMagicalRecord for OS X Tests.xctest */,
  3203. );
  3204. name = Products;
  3205. sourceTree = "<group>";
  3206. };
  3207. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  3208. isa = PBXGroup;
  3209. children = (
  3210. F7BAAE001ED5B33200B7EAD4 /* CoreData */,
  3211. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  3212. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  3213. );
  3214. path = Database;
  3215. sourceTree = "<group>";
  3216. };
  3217. F7BAAE001ED5B33200B7EAD4 /* CoreData */ = {
  3218. isa = PBXGroup;
  3219. children = (
  3220. F7BAADB21ED5A87C00B7EAD4 /* CCCoreData.h */,
  3221. F7BAADB31ED5A87C00B7EAD4 /* CCCoreData.m */,
  3222. F7BAADB61ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.h */,
  3223. F7BAADB71ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m */,
  3224. F7BAADB81ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.h */,
  3225. F7BAADB91ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m */,
  3226. F7BAADBA1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.h */,
  3227. F7BAADBB1ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m */,
  3228. F7BAADBC1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.h */,
  3229. F7BAADBD1ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m */,
  3230. F7BAADBE1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.h */,
  3231. F7BAADBF1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m */,
  3232. F7BAADC01ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.h */,
  3233. F7BAADC11ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m */,
  3234. F7BAADC21ED5A87C00B7EAD4 /* TableLocalFile+CoreDataClass.h */,
  3235. F7BAADFE1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m */,
  3236. F7BAADC31ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.h */,
  3237. F7BAADC41ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m */,
  3238. );
  3239. name = CoreData;
  3240. sourceTree = "<group>";
  3241. };
  3242. F7BE6E2A1D2D5C3B00106933 /* QuickActions */ = {
  3243. isa = PBXGroup;
  3244. children = (
  3245. F7BE6E2B1D2D5C3B00106933 /* CCQuickActions.h */,
  3246. F7BE6E2C1D2D5C3B00106933 /* CCQuickActions.m */,
  3247. );
  3248. path = QuickActions;
  3249. sourceTree = "<group>";
  3250. };
  3251. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  3252. isa = PBXGroup;
  3253. children = (
  3254. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  3255. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  3256. F761831D1F03B6C300D8D483 /* NCRequestAsset.h */,
  3257. F761831E1F03B6C300D8D483 /* NCRequestAsset.m */,
  3258. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  3259. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  3260. );
  3261. path = "ManageLocation+ManageAsset";
  3262. sourceTree = "<group>";
  3263. };
  3264. F7BFFA621A24D7300044ED85 /* Login */ = {
  3265. isa = PBXGroup;
  3266. children = (
  3267. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  3268. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  3269. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  3270. F7B3A4ED1E97818A000DACE8 /* CCLoginWeb.swift */,
  3271. );
  3272. path = Login;
  3273. sourceTree = "<group>";
  3274. };
  3275. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  3276. isa = PBXGroup;
  3277. children = (
  3278. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  3279. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  3280. F76C3B871C638A4C00DC4301 /* CCError.h */,
  3281. F76C3B881C638A4C00DC4301 /* CCError.m */,
  3282. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  3283. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  3284. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  3285. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  3286. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  3287. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  3288. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  3289. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  3290. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  3291. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  3292. );
  3293. path = Utility;
  3294. sourceTree = "<group>";
  3295. };
  3296. F7C0F46D1C8880540059EC54 /* Share */ = {
  3297. isa = PBXGroup;
  3298. children = (
  3299. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  3300. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  3301. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  3302. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  3303. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  3304. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  3305. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  3306. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  3307. );
  3308. path = Share;
  3309. sourceTree = "<group>";
  3310. };
  3311. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  3312. isa = PBXGroup;
  3313. children = (
  3314. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  3315. F710E80C1EF95C9C00DC2427 /* Intro */,
  3316. F700222B1EC479840080073F /* Custom.xcassets */,
  3317. F76F23331ED4603700C40023 /* LaunchScreen.xib */,
  3318. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  3319. );
  3320. path = Brand;
  3321. sourceTree = "<group>";
  3322. };
  3323. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  3324. isa = PBXGroup;
  3325. children = (
  3326. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  3327. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  3328. );
  3329. name = Notification;
  3330. sourceTree = "<group>";
  3331. };
  3332. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  3333. isa = PBXGroup;
  3334. children = (
  3335. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  3336. F7C742E61E7BD71A00D9C973 /* PickerFileProvider.entitlements */,
  3337. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  3338. F7C742D41E7BD44400D9C973 /* Picker.entitlements */,
  3339. );
  3340. name = "Supporting Files";
  3341. sourceTree = "<group>";
  3342. };
  3343. F7DC5FD31F00F98B00A903C7 /* MGSwipeTableCell */ = {
  3344. isa = PBXGroup;
  3345. children = (
  3346. F7DC5FE81F011EB700A903C7 /* MGSwipeButton.h */,
  3347. F7DC5FE91F011EB700A903C7 /* MGSwipeButton.m */,
  3348. F7DC5FEA1F011EB700A903C7 /* MGSwipeTableCell.h */,
  3349. F7DC5FEB1F011EB700A903C7 /* MGSwipeTableCell.m */,
  3350. );
  3351. path = MGSwipeTableCell;
  3352. sourceTree = "<group>";
  3353. };
  3354. F7DFE24E1EBDC3A400CF5202 /* Realm */ = {
  3355. isa = PBXGroup;
  3356. children = (
  3357. F7DFE24F1EBDC3A400CF5202 /* Realm.framework */,
  3358. F7DFE2501EBDC3A400CF5202 /* RealmSwift.framework */,
  3359. );
  3360. path = Realm;
  3361. sourceTree = "<group>";
  3362. };
  3363. F7ECBA6B1E239DCD003E6328 /* Create */ = {
  3364. isa = PBXGroup;
  3365. children = (
  3366. F7ECBA6C1E239DCD003E6328 /* CCCreateCloud.swift */,
  3367. );
  3368. path = Create;
  3369. sourceTree = "<group>";
  3370. };
  3371. F7F06E291DBFACC600099AE9 /* CTAssetsPickerController */ = {
  3372. isa = PBXGroup;
  3373. children = (
  3374. F7F06E2A1DBFACC600099AE9 /* Categories */,
  3375. F7F06E3F1DBFACC600099AE9 /* CTAssetCheckmark.h */,
  3376. F7F06E401DBFACC600099AE9 /* CTAssetCheckmark.m */,
  3377. F7F06E411DBFACC600099AE9 /* CTAssetCollectionViewCell.h */,
  3378. F7F06E421DBFACC600099AE9 /* CTAssetCollectionViewCell.m */,
  3379. F7F06E431DBFACC600099AE9 /* CTAssetCollectionViewController.h */,
  3380. F7F06E441DBFACC600099AE9 /* CTAssetCollectionViewController.m */,
  3381. F7F06E451DBFACC600099AE9 /* CTAssetItemViewController.h */,
  3382. F7F06E461DBFACC600099AE9 /* CTAssetItemViewController.m */,
  3383. F7F06E471DBFACC600099AE9 /* CTAssetPlayButton.h */,
  3384. F7F06E481DBFACC600099AE9 /* CTAssetPlayButton.m */,
  3385. F7F06E491DBFACC600099AE9 /* CTAssetScrollView.h */,
  3386. F7F06E4A1DBFACC600099AE9 /* CTAssetScrollView.m */,
  3387. F7F06E4B1DBFACC600099AE9 /* CTAssetSelectionButton.h */,
  3388. F7F06E4C1DBFACC600099AE9 /* CTAssetSelectionButton.m */,
  3389. F7F06E4D1DBFACC600099AE9 /* CTAssetSelectionLabel.h */,
  3390. F7F06E4E1DBFACC600099AE9 /* CTAssetSelectionLabel.m */,
  3391. F7F06E4F1DBFACC600099AE9 /* CTAssetsGridSelectedView.h */,
  3392. F7F06E501DBFACC600099AE9 /* CTAssetsGridSelectedView.m */,
  3393. F7F06E511DBFACC600099AE9 /* CTAssetsGridView.h */,
  3394. F7F06E521DBFACC600099AE9 /* CTAssetsGridView.m */,
  3395. F7F06E531DBFACC600099AE9 /* CTAssetsGridViewCell.h */,
  3396. F7F06E541DBFACC600099AE9 /* CTAssetsGridViewCell.m */,
  3397. F7F06E551DBFACC600099AE9 /* CTAssetsGridViewController.h */,
  3398. F7F06E561DBFACC600099AE9 /* CTAssetsGridViewController.m */,
  3399. F7F06E571DBFACC600099AE9 /* CTAssetsGridViewFooter.h */,
  3400. F7F06E581DBFACC600099AE9 /* CTAssetsGridViewFooter.m */,
  3401. F7F06E591DBFACC600099AE9 /* CTAssetsGridViewLayout.h */,
  3402. F7F06E5A1DBFACC600099AE9 /* CTAssetsGridViewLayout.m */,
  3403. F7F06E5B1DBFACC600099AE9 /* CTAssetsNavigationController.h */,
  3404. F7F06E5C1DBFACC600099AE9 /* CTAssetsNavigationController.m */,
  3405. F7F06E5D1DBFACC600099AE9 /* CTAssetsPageView.h */,
  3406. F7F06E5E1DBFACC600099AE9 /* CTAssetsPageView.m */,
  3407. F7F06E5F1DBFACC600099AE9 /* CTAssetsPageViewController.h */,
  3408. F7F06E601DBFACC600099AE9 /* CTAssetsPageViewController.m */,
  3409. F7F06E611DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.h */,
  3410. F7F06E621DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m */,
  3411. F7F06E631DBFACC600099AE9 /* CTAssetsPickerController.bundle */,
  3412. F7F06E641DBFACC600099AE9 /* CTAssetsPickerController.h */,
  3413. F7F06E651DBFACC600099AE9 /* CTAssetsPickerController.m */,
  3414. F7F06E661DBFACC600099AE9 /* CTAssetsPickerDefines.h */,
  3415. F7F06E671DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.h */,
  3416. F7F06E681DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m */,
  3417. F7F06E691DBFACC600099AE9 /* CTAssetsViewControllerTransition.h */,
  3418. F7F06E6A1DBFACC600099AE9 /* CTAssetsViewControllerTransition.m */,
  3419. F7F06E6B1DBFACC600099AE9 /* CTAssetThumbnailOverlay.h */,
  3420. F7F06E6C1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m */,
  3421. F7F06E6D1DBFACC600099AE9 /* CTAssetThumbnailStacks.h */,
  3422. F7F06E6E1DBFACC600099AE9 /* CTAssetThumbnailStacks.m */,
  3423. F7F06E6F1DBFACC600099AE9 /* CTAssetThumbnailView.h */,
  3424. F7F06E701DBFACC600099AE9 /* CTAssetThumbnailView.m */,
  3425. );
  3426. path = CTAssetsPickerController;
  3427. sourceTree = "<group>";
  3428. };
  3429. F7F06E2A1DBFACC600099AE9 /* Categories */ = {
  3430. isa = PBXGroup;
  3431. children = (
  3432. F7F06E2B1DBFACC600099AE9 /* CTAssetsPageViewController+Internal.h */,
  3433. F7F06E2C1DBFACC600099AE9 /* CTAssetsPickerController+Internal.h */,
  3434. F7F06E2D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.h */,
  3435. F7F06E2E1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m */,
  3436. F7F06E2F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.h */,
  3437. F7F06E301DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m */,
  3438. F7F06E311DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.h */,
  3439. F7F06E321DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m */,
  3440. F7F06E331DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.h */,
  3441. F7F06E341DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m */,
  3442. F7F06E351DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.h */,
  3443. F7F06E361DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m */,
  3444. F7F06E371DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.h */,
  3445. F7F06E381DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m */,
  3446. F7F06E391DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.h */,
  3447. F7F06E3A1DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m */,
  3448. F7F06E3B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.h */,
  3449. F7F06E3C1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m */,
  3450. F7F06E3D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.h */,
  3451. F7F06E3E1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m */,
  3452. );
  3453. path = Categories;
  3454. sourceTree = "<group>";
  3455. };
  3456. F7F54CAC1E5B143100E19C62 /* Library */ = {
  3457. isa = PBXGroup;
  3458. children = (
  3459. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  3460. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  3461. F7A139FE1E7F3D5D00016680 /* CCProgress */,
  3462. F762CB9C1EACB89C00B38484 /* LMMediaPlayer */,
  3463. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  3464. F762CB7B1EACB81000B38484 /* REMenu */,
  3465. F7B1FBAF1E72E3D1001781FE /* SwiftWebVC */,
  3466. F762CB8B1EACB84400B38484 /* TWMessageBarManager */,
  3467. F762CB1C1EACB7D400B38484 /* VFR Pdf Reader */,
  3468. F762CA9F1EACB66200B38484 /* XLForm */,
  3469. );
  3470. path = Library;
  3471. sourceTree = "<group>";
  3472. };
  3473. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  3474. isa = PBXGroup;
  3475. children = (
  3476. F7F54CAE1E5B14C700E19C62 /* Assets */,
  3477. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  3478. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  3479. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  3480. F7F54CD31E5B14C700E19C62 /* MWGridCell.h */,
  3481. F7F54CD41E5B14C700E19C62 /* MWGridCell.m */,
  3482. F7F54CD51E5B14C700E19C62 /* MWGridViewController.h */,
  3483. F7F54CD61E5B14C700E19C62 /* MWGridViewController.m */,
  3484. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  3485. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  3486. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  3487. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  3488. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  3489. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  3490. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  3491. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  3492. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  3493. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  3494. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  3495. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  3496. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  3497. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  3498. );
  3499. path = MWPhotoBrowser;
  3500. sourceTree = "<group>";
  3501. };
  3502. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  3503. isa = PBXGroup;
  3504. children = (
  3505. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  3506. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  3507. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  3508. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  3509. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  3510. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  3511. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  3512. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  3513. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  3514. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  3515. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  3516. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  3517. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  3518. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  3519. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  3520. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  3521. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  3522. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  3523. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  3524. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  3525. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  3526. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  3527. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  3528. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  3529. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  3530. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  3531. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  3532. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  3533. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  3534. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  3535. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  3536. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  3537. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  3538. );
  3539. path = Assets;
  3540. sourceTree = "<group>";
  3541. };
  3542. F7F67B9F1A24D27800EE80DA = {
  3543. isa = PBXGroup;
  3544. children = (
  3545. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  3546. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  3547. F7C0F46D1C8880540059EC54 /* Share */,
  3548. F74344131E1264EE001CC831 /* Picker */,
  3549. F74344211E1264EE001CC831 /* PickerFileProvider */,
  3550. F7FC7D651DC1F98700BB2C6A /* Products */,
  3551. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  3552. );
  3553. sourceTree = "<group>";
  3554. };
  3555. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  3556. isa = PBXGroup;
  3557. children = (
  3558. F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */,
  3559. F70F02A81C889183008DAB36 /* Libraries external */,
  3560. F75EDFA41E8C106900E6F369 /* Analytics */,
  3561. F7A377131EB2364A002856D3 /* Fabric */,
  3562. F70022561EC4C9100080073F /* OCCommunicationLib */,
  3563. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  3564. F7A582D61A24DAB500E903D7 /* AppDelegate.m */,
  3565. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  3566. F7C8C1911B482CEA0048180E /* CCGlobal.m */,
  3567. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  3568. F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */,
  3569. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  3570. F70211F31BAC56E9003FC03E /* Main */,
  3571. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  3572. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  3573. F720E02A1E48C74C001A4B9E /* Actions */,
  3574. F7A321621E9E37960069AD1B /* Activity */,
  3575. F7ECBA6B1E239DCD003E6328 /* Create */,
  3576. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  3577. F7A3214D1E9E2A070069AD1B /* Favorites */,
  3578. F780711E1EDB135100EAFFF6 /* Photos */,
  3579. F7F54CAC1E5B143100E19C62 /* Library */,
  3580. F7BFFA621A24D7300044ED85 /* Login */,
  3581. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  3582. F7A321891E9E42B20069AD1B /* MenuAccount */,
  3583. F7F9E3451BC26B19004B9223 /* Move */,
  3584. F74D3DB81BAC1941000BAE4B /* Networking */,
  3585. F7C5259A1E3B441D00FFE02C /* Notification */,
  3586. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  3587. F7BE6E2A1D2D5C3B00106933 /* QuickActions */,
  3588. F7FE125B1BAC03FB0041924B /* Security */,
  3589. F7ACE4281BAC0268006C0017 /* Settings */,
  3590. F728CE741BF6322C00E69702 /* Share */,
  3591. F7169A161EE590930086BD69 /* Shares */,
  3592. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  3593. F721371B1BAFF0920012B613 /* Templates */,
  3594. F7A321731E9E3EAF0069AD1B /* Transfers */,
  3595. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  3596. F7BFFA991A24D7BB0044ED85 /* Utility */,
  3597. );
  3598. path = iOSClient;
  3599. sourceTree = "<group>";
  3600. };
  3601. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  3602. isa = PBXGroup;
  3603. children = (
  3604. F72B60941A24F04E004EF66F /* Localizations */,
  3605. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  3606. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  3607. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  3608. F77D49A71DC238E500CDC568 /* loading@2x.gif */,
  3609. F7F67BAD1A24D27800EE80DA /* main.m */,
  3610. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  3611. F76344751BF259A800188725 /* synchronized.gif */,
  3612. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  3613. );
  3614. name = "Supporting Files";
  3615. path = iOSClient;
  3616. sourceTree = "<group>";
  3617. };
  3618. F7F9E3451BC26B19004B9223 /* Move */ = {
  3619. isa = PBXGroup;
  3620. children = (
  3621. F7D02A461C5F9E4400D6F972 /* CCMove.h */,
  3622. F7D02A471C5F9E4400D6F972 /* CCMove.m */,
  3623. F7D02A481C5F9E4400D6F972 /* CCMove.storyboard */,
  3624. );
  3625. path = Move;
  3626. sourceTree = "<group>";
  3627. };
  3628. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  3629. isa = PBXGroup;
  3630. children = (
  3631. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  3632. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  3633. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  3634. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  3635. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  3636. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  3637. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  3638. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  3639. );
  3640. name = Frameworks;
  3641. sourceTree = "<group>";
  3642. };
  3643. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  3644. isa = PBXGroup;
  3645. children = (
  3646. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  3647. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  3648. F74344901E128E8F001CC831 /* Picker.appex */,
  3649. F74344911E128E96001CC831 /* PickerFileProvider.appex */,
  3650. );
  3651. name = Products;
  3652. sourceTree = "<group>";
  3653. };
  3654. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  3655. isa = PBXGroup;
  3656. children = (
  3657. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  3658. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  3659. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  3660. );
  3661. path = PeekPop;
  3662. sourceTree = "<group>";
  3663. };
  3664. F7FE125B1BAC03FB0041924B /* Security */ = {
  3665. isa = PBXGroup;
  3666. children = (
  3667. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  3668. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  3669. F7F801001D98205A007537BC /* CCCertificate.h */,
  3670. F7F801011D98205A007537BC /* CCCertificate.m */,
  3671. F7FE125E1BAC03FB0041924B /* CCCrypto.h */,
  3672. F7FE125F1BAC03FB0041924B /* CCCrypto.m */,
  3673. );
  3674. path = Security;
  3675. sourceTree = "<group>";
  3676. };
  3677. /* End PBXGroup section */
  3678. /* Begin PBXNativeTarget section */
  3679. F71459B41D12E3B700CAFEEC /* Share */ = {
  3680. isa = PBXNativeTarget;
  3681. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  3682. buildPhases = (
  3683. F71459B51D12E3B700CAFEEC /* Sources */,
  3684. F7145A141D12E3B700CAFEEC /* Frameworks */,
  3685. F7145A181D12E3B700CAFEEC /* Resources */,
  3686. );
  3687. buildRules = (
  3688. );
  3689. dependencies = (
  3690. );
  3691. name = Share;
  3692. productName = "Share Ext";
  3693. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  3694. productType = "com.apple.product-type.app-extension";
  3695. };
  3696. F74344111E1264ED001CC831 /* Picker */ = {
  3697. isa = PBXNativeTarget;
  3698. buildConfigurationList = F743443C1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "Picker" */;
  3699. buildPhases = (
  3700. F743440E1E1264ED001CC831 /* Sources */,
  3701. F743440F1E1264ED001CC831 /* Frameworks */,
  3702. F74344101E1264ED001CC831 /* Resources */,
  3703. );
  3704. buildRules = (
  3705. );
  3706. dependencies = (
  3707. );
  3708. name = Picker;
  3709. productName = Picker;
  3710. productReference = F74344901E128E8F001CC831 /* Picker.appex */;
  3711. productType = "com.apple.product-type.app-extension";
  3712. };
  3713. F743441F1E1264EE001CC831 /* PickerFileProvider */ = {
  3714. isa = PBXNativeTarget;
  3715. buildConfigurationList = F743443B1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "PickerFileProvider" */;
  3716. buildPhases = (
  3717. F743441C1E1264EE001CC831 /* Sources */,
  3718. F743441D1E1264EE001CC831 /* Frameworks */,
  3719. F743441E1E1264EE001CC831 /* Resources */,
  3720. );
  3721. buildRules = (
  3722. );
  3723. dependencies = (
  3724. );
  3725. name = PickerFileProvider;
  3726. productName = PickerFileProvider;
  3727. productReference = F74344911E128E96001CC831 /* PickerFileProvider.appex */;
  3728. productType = "com.apple.product-type.app-extension";
  3729. };
  3730. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  3731. isa = PBXNativeTarget;
  3732. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  3733. buildPhases = (
  3734. F77B0DEF1D118A16002130FE /* Sources */,
  3735. F77B0EDC1D118A16002130FE /* Frameworks */,
  3736. F77B0EE91D118A16002130FE /* Resources */,
  3737. F77B0F981D118A16002130FE /* Embed App Extensions */,
  3738. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  3739. F7A377371EB24469002856D3 /* ShellScript */,
  3740. F75A3FFF1EBCB55B00B213E8 /* Embed Frameworks */,
  3741. F75A40001EBCB82B00B213E8 /* ShellScript */,
  3742. );
  3743. buildRules = (
  3744. );
  3745. dependencies = (
  3746. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  3747. F74344281E1264EE001CC831 /* PBXTargetDependency */,
  3748. F743442B1E1264EE001CC831 /* PBXTargetDependency */,
  3749. );
  3750. name = Nextcloud;
  3751. productName = "Crypto Cloud";
  3752. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  3753. productType = "com.apple.product-type.application";
  3754. };
  3755. /* End PBXNativeTarget section */
  3756. /* Begin PBXProject section */
  3757. F7F67BA01A24D27800EE80DA /* Project object */ = {
  3758. isa = PBXProject;
  3759. attributes = {
  3760. LastSwiftUpdateCheck = 0820;
  3761. LastUpgradeCheck = 0830;
  3762. ORGANIZATIONNAME = TWS;
  3763. TargetAttributes = {
  3764. F71459B41D12E3B700CAFEEC = {
  3765. DevelopmentTeam = 6JLRKY9ZV7;
  3766. SystemCapabilities = {
  3767. com.apple.ApplicationGroups.iOS = {
  3768. enabled = 1;
  3769. };
  3770. com.apple.iCloud = {
  3771. enabled = 0;
  3772. };
  3773. };
  3774. };
  3775. F74344111E1264ED001CC831 = {
  3776. CreatedOnToolsVersion = 8.2.1;
  3777. DevelopmentTeam = 6JLRKY9ZV7;
  3778. ProvisioningStyle = Automatic;
  3779. SystemCapabilities = {
  3780. com.apple.ApplicationGroups.iOS = {
  3781. enabled = 1;
  3782. };
  3783. com.apple.Keychain = {
  3784. enabled = 1;
  3785. };
  3786. };
  3787. };
  3788. F743441F1E1264EE001CC831 = {
  3789. CreatedOnToolsVersion = 8.2.1;
  3790. DevelopmentTeam = 6JLRKY9ZV7;
  3791. LastSwiftMigration = 0820;
  3792. ProvisioningStyle = Automatic;
  3793. SystemCapabilities = {
  3794. com.apple.Keychain = {
  3795. enabled = 1;
  3796. };
  3797. };
  3798. };
  3799. F77B0DEB1D118A16002130FE = {
  3800. DevelopmentTeam = 6JLRKY9ZV7;
  3801. LastSwiftMigration = 0820;
  3802. ProvisioningStyle = Automatic;
  3803. SystemCapabilities = {
  3804. com.apple.Push = {
  3805. enabled = 1;
  3806. };
  3807. com.apple.iCloud = {
  3808. enabled = 1;
  3809. };
  3810. };
  3811. };
  3812. };
  3813. };
  3814. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  3815. compatibilityVersion = "Xcode 3.2";
  3816. developmentRegion = English;
  3817. hasScannedForEncodings = 0;
  3818. knownRegions = (
  3819. en,
  3820. Base,
  3821. de,
  3822. fr,
  3823. "es-MX",
  3824. "pt-BR",
  3825. ru,
  3826. it,
  3827. pl,
  3828. nl,
  3829. "nb-NO",
  3830. tr,
  3831. "cs-CZ",
  3832. "en-GB",
  3833. es,
  3834. el,
  3835. "es-AR",
  3836. );
  3837. mainGroup = F7F67B9F1A24D27800EE80DA;
  3838. productRefGroup = F7F67B9F1A24D27800EE80DA;
  3839. projectDirPath = "";
  3840. projectReferences = (
  3841. {
  3842. ProductGroup = F7B61E871DC13C20009E938F /* Products */;
  3843. ProjectRef = F7B61E861DC13C20009E938F /* MagicalRecord.xcodeproj */;
  3844. },
  3845. );
  3846. projectRoot = "";
  3847. targets = (
  3848. F77B0DEB1D118A16002130FE /* Nextcloud */,
  3849. F71459B41D12E3B700CAFEEC /* Share */,
  3850. F74344111E1264ED001CC831 /* Picker */,
  3851. F743441F1E1264EE001CC831 /* PickerFileProvider */,
  3852. );
  3853. };
  3854. /* End PBXProject section */
  3855. /* Begin PBXReferenceProxy section */
  3856. F7B61E931DC13C20009E938F /* MagicalRecord.framework */ = {
  3857. isa = PBXReferenceProxy;
  3858. fileType = wrapper.framework;
  3859. path = MagicalRecord.framework;
  3860. remoteRef = F7B61E921DC13C20009E938F /* PBXContainerItemProxy */;
  3861. sourceTree = BUILT_PRODUCTS_DIR;
  3862. };
  3863. F7B61E951DC13C20009E938F /* MagicalRecord for iOS Tests.xctest */ = {
  3864. isa = PBXReferenceProxy;
  3865. fileType = wrapper.cfbundle;
  3866. path = "MagicalRecord for iOS Tests.xctest";
  3867. remoteRef = F7B61E941DC13C20009E938F /* PBXContainerItemProxy */;
  3868. sourceTree = BUILT_PRODUCTS_DIR;
  3869. };
  3870. F7B61E971DC13C20009E938F /* MagicalRecord.framework */ = {
  3871. isa = PBXReferenceProxy;
  3872. fileType = wrapper.framework;
  3873. path = MagicalRecord.framework;
  3874. remoteRef = F7B61E961DC13C20009E938F /* PBXContainerItemProxy */;
  3875. sourceTree = BUILT_PRODUCTS_DIR;
  3876. };
  3877. F7B61E991DC13C20009E938F /* MagicalRecord for OS X Tests.xctest */ = {
  3878. isa = PBXReferenceProxy;
  3879. fileType = wrapper.cfbundle;
  3880. path = "MagicalRecord for OS X Tests.xctest";
  3881. remoteRef = F7B61E981DC13C20009E938F /* PBXContainerItemProxy */;
  3882. sourceTree = BUILT_PRODUCTS_DIR;
  3883. };
  3884. F7B61E9B1DC13C20009E938F /* libMagicalRecord.a */ = {
  3885. isa = PBXReferenceProxy;
  3886. fileType = archive.ar;
  3887. path = libMagicalRecord.a;
  3888. remoteRef = F7B61E9A1DC13C20009E938F /* PBXContainerItemProxy */;
  3889. sourceTree = BUILT_PRODUCTS_DIR;
  3890. };
  3891. F7B61E9D1DC13C20009E938F /* libMagicalRecord for iOS Tests.xctest */ = {
  3892. isa = PBXReferenceProxy;
  3893. fileType = wrapper.cfbundle;
  3894. path = "libMagicalRecord for iOS Tests.xctest";
  3895. remoteRef = F7B61E9C1DC13C20009E938F /* PBXContainerItemProxy */;
  3896. sourceTree = BUILT_PRODUCTS_DIR;
  3897. };
  3898. F7B61E9F1DC13C20009E938F /* libMagicalRecord.dylib */ = {
  3899. isa = PBXReferenceProxy;
  3900. fileType = "compiled.mach-o.dylib";
  3901. path = libMagicalRecord.dylib;
  3902. remoteRef = F7B61E9E1DC13C20009E938F /* PBXContainerItemProxy */;
  3903. sourceTree = BUILT_PRODUCTS_DIR;
  3904. };
  3905. F7B61EA11DC13C20009E938F /* libMagicalRecord for OS X Tests.xctest */ = {
  3906. isa = PBXReferenceProxy;
  3907. fileType = wrapper.cfbundle;
  3908. path = "libMagicalRecord for OS X Tests.xctest";
  3909. remoteRef = F7B61EA01DC13C20009E938F /* PBXContainerItemProxy */;
  3910. sourceTree = BUILT_PRODUCTS_DIR;
  3911. };
  3912. /* End PBXReferenceProxy section */
  3913. /* Begin PBXResourcesBuildPhase section */
  3914. F7145A181D12E3B700CAFEEC /* Resources */ = {
  3915. isa = PBXResourcesBuildPhase;
  3916. buildActionMask = 2147483647;
  3917. files = (
  3918. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  3919. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  3920. F7145A1C1D12E3B700CAFEEC /* CCMove.storyboard in Resources */,
  3921. F7145A1D1D12E3B700CAFEEC /* BKPasscodeView.strings in Resources */,
  3922. F7145A211D12E3B700CAFEEC /* Error.strings in Resources */,
  3923. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  3924. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3925. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3926. );
  3927. runOnlyForDeploymentPostprocessing = 0;
  3928. };
  3929. F74344101E1264ED001CC831 /* Resources */ = {
  3930. isa = PBXResourcesBuildPhase;
  3931. buildActionMask = 2147483647;
  3932. files = (
  3933. F7C742D81E7BD5C900D9C973 /* MainInterface.storyboard in Resources */,
  3934. F7FC88FD1E141A3F006D0506 /* Error.strings in Resources */,
  3935. F7FC88FB1E141A34006D0506 /* BKPasscodeView.strings in Resources */,
  3936. F7FC88FC1E141A39006D0506 /* Localizable.strings in Resources */,
  3937. F700222E1EC479840080073F /* Custom.xcassets in Resources */,
  3938. F7D2677C1E157053005ACB7E /* Images.xcassets in Resources */,
  3939. );
  3940. runOnlyForDeploymentPostprocessing = 0;
  3941. };
  3942. F743441E1E1264EE001CC831 /* Resources */ = {
  3943. isa = PBXResourcesBuildPhase;
  3944. buildActionMask = 2147483647;
  3945. files = (
  3946. );
  3947. runOnlyForDeploymentPostprocessing = 0;
  3948. };
  3949. F77B0EE91D118A16002130FE /* Resources */ = {
  3950. isa = PBXResourcesBuildPhase;
  3951. buildActionMask = 2147483647;
  3952. files = (
  3953. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3954. F77B0EEA1D118A16002130FE /* ZSSbold@2x.png in Resources */,
  3955. F77B0EEB1D118A16002130FE /* ZSSrightjustify@2x.png in Resources */,
  3956. F77B0EEC1D118A16002130FE /* ZSSindent@2x.png in Resources */,
  3957. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3958. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3959. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3960. F77B0EF01D118A16002130FE /* ZSSh4@2x.png in Resources */,
  3961. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3962. F77D49A91DC238E500CDC568 /* loading@2x.gif in Resources */,
  3963. F77B0EF21D118A16002130FE /* ZSSunderline.png in Resources */,
  3964. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3965. F77B0EF51D118A16002130FE /* ZSSbgcolor.png in Resources */,
  3966. F77B0EF61D118A16002130FE /* ZSSstrikethrough@2x.png in Resources */,
  3967. F77B0EF71D118A16002130FE /* ZSSinsertkeyword@2x.png in Resources */,
  3968. F77B0EFA1D118A16002130FE /* ZSShorizontalrule.png in Resources */,
  3969. F762CB5C1EACB7D400B38484 /* Reader-Email@2x.png in Resources */,
  3970. F77B0EFB1D118A16002130FE /* ZSSh3@2x.png in Resources */,
  3971. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3972. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3973. F77B0EFF1D118A16002130FE /* ZSSinsertkeyword.png in Resources */,
  3974. F762CBB91EACB89C00B38484 /* LMMediaPlayerView.bundle in Resources */,
  3975. F77B0F041D118A16002130FE /* ZSSoutdent@2x.png in Resources */,
  3976. F762CB611EACB7D400B38484 /* Reader-Mark-Y.png in Resources */,
  3977. F77B0F051D118A16002130FE /* ZSSindent.png in Resources */,
  3978. F77B0F071D118A16002130FE /* ZSSpicker.png in Resources */,
  3979. F762CB991EACB84400B38484 /* icon-success.png in Resources */,
  3980. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3981. F77B0F081D118A16002130FE /* ZSSunderline@2x.png in Resources */,
  3982. F77B0F0D1D118A16002130FE /* ZSSundo@2x.png in Resources */,
  3983. F77B0F0E1D118A16002130FE /* BKPasscodeView.strings in Resources */,
  3984. F77B0F111D118A16002130FE /* ZSSparagraph.png in Resources */,
  3985. F77B0F121D118A16002130FE /* ZSSorderedlist@2x.png in Resources */,
  3986. F77B0F131D118A16002130FE /* ZSSitalic@2x.png in Resources */,
  3987. F77B0F141D118A16002130FE /* ZSSviewsource.png in Resources */,
  3988. F77B0F151D118A16002130FE /* ZSSforcejustify@2x.png in Resources */,
  3989. F77B0F171D118A16002130FE /* ZSSh1@2x.png in Resources */,
  3990. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3991. F77B0F181D118A16002130FE /* Intro.strings in Resources */,
  3992. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3993. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3994. F762CB601EACB7D400B38484 /* Reader-Mark-N@2x.png in Resources */,
  3995. F77B0F191D118A16002130FE /* ZSSitalic.png in Resources */,
  3996. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3997. F77B0F1D1D118A16002130FE /* ZSSh2@2x.png in Resources */,
  3998. F77B0F1E1D118A16002130FE /* ZSSstrikethrough.png in Resources */,
  3999. F77B0F211D118A16002130FE /* ZSSh6.png in Resources */,
  4000. F762CB5D1EACB7D400B38484 /* Reader-Export.png in Resources */,
  4001. F77B0F231D118A16002130FE /* ZSSh3.png in Resources */,
  4002. F77B0F251D118A16002130FE /* ZSSh1.png in Resources */,
  4003. F762CB621EACB7D400B38484 /* Reader-Mark-Y@2x.png in Resources */,
  4004. F762CB571EACB7D400B38484 /* Reader-Button-H.png in Resources */,
  4005. F762CB661EACB7D400B38484 /* Reader-Thumbs@2x.png in Resources */,
  4006. F77B0F291D118A16002130FE /* ZSSleftjustify.png in Resources */,
  4007. F77B0F2B1D118A16002130FE /* ZSSclearstyle@2x.png in Resources */,
  4008. F7A3217B1E9E3EAF0069AD1B /* CCTransfersCell.xib in Resources */,
  4009. F77B0F2C1D118A16002130FE /* ZSSlink.png in Resources */,
  4010. F77B0F2D1D118A16002130FE /* ZSSsuperscript@2x.png in Resources */,
  4011. F7B1FBC41E72E3D1001781FE /* Media.xcassets in Resources */,
  4012. F77B0F2E1D118A16002130FE /* ZSScenterjustify.png in Resources */,
  4013. F77B0F2F1D118A16002130FE /* CCMove.storyboard in Resources */,
  4014. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  4015. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  4016. F7659A371DC0B737004860C4 /* iRate.bundle in Resources */,
  4017. F77B0F321D118A16002130FE /* ZSSkeyboard@2x.png in Resources */,
  4018. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  4019. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  4020. F77B0F341D118A16002130FE /* ZSSorderedlist.png in Resources */,
  4021. F77B0F351D118A16002130FE /* ZSSsubscript@2x.png in Resources */,
  4022. F77B0F361D118A16002130FE /* editor.html in Resources */,
  4023. F77B0F381D118A16002130FE /* ZSSkeyboard.png in Resources */,
  4024. F762CB971EACB84400B38484 /* icon-info.png in Resources */,
  4025. F77B0F391D118A16002130FE /* ZSStable@2x.png in Resources */,
  4026. F77B0F3B1D118A16002130FE /* ZSSredo@2x.png in Resources */,
  4027. F77B0F3D1D118A16002130FE /* ZSSh5.png in Resources */,
  4028. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  4029. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  4030. F77B0F3E1D118A16002130FE /* ZSSquicklink@2x.png in Resources */,
  4031. F77B0F411D118A16002130FE /* ZSStextcolor@2x.png in Resources */,
  4032. F77B0F471D118A16002130FE /* ZSSbgcolor@2x.png in Resources */,
  4033. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  4034. F762CB981EACB84400B38484 /* icon-info@2x.png in Resources */,
  4035. F77B0F491D118A16002130FE /* ZSSoutdent.png in Resources */,
  4036. F77B0F4A1D118A16002130FE /* ZSStextcolor.png in Resources */,
  4037. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  4038. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  4039. F77B0F4B1D118A16002130FE /* ZSSimage.png in Resources */,
  4040. F77B0F4D1D118A16002130FE /* CCShare.storyboard in Resources */,
  4041. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  4042. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  4043. F732B3371E8045A1002B7D75 /* SwiftWebVC.strings in Resources */,
  4044. F77B0F4F1D118A16002130FE /* ZSSquicklink.png in Resources */,
  4045. F77B0F511D118A16002130FE /* ZSSh2.png in Resources */,
  4046. F77B0F531D118A16002130FE /* ZSSbold.png in Resources */,
  4047. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  4048. F762CB581EACB7D400B38484 /* Reader-Button-H@2x.png in Resources */,
  4049. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */,
  4050. F762CB9A1EACB84400B38484 /* icon-success@2x.png in Resources */,
  4051. F77B0F551D118A16002130FE /* Error.strings in Resources */,
  4052. F77B0F561D118A16002130FE /* ZSStable.png in Resources */,
  4053. F762CB591EACB7D400B38484 /* Reader-Button-N.png in Resources */,
  4054. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  4055. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  4056. F77B0F591D118A16002130FE /* ZSSRichTextEditor.js in Resources */,
  4057. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  4058. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  4059. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  4060. F77B0F5B1D118A16002130FE /* ZSSclearstyle.png in Resources */,
  4061. F762CB631EACB7D400B38484 /* Reader-Print.png in Resources */,
  4062. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  4063. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  4064. F77B0F5E1D118A16002130FE /* ZSSlink@2x.png in Resources */,
  4065. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  4066. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  4067. F77B0F621D118A16002130FE /* ZSSunorderedlist.png in Resources */,
  4068. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  4069. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  4070. F77B0F641D118A16002130FE /* ZSSh4.png in Resources */,
  4071. F76F23341ED4603700C40023 /* LaunchScreen.xib in Resources */,
  4072. F77B0F671D118A16002130FE /* InfoPlist.strings in Resources */,
  4073. F762CB5F1EACB7D400B38484 /* Reader-Mark-N.png in Resources */,
  4074. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  4075. F77B0F6B1D118A16002130FE /* ZSSundo.png in Resources */,
  4076. F77B0F6C1D118A16002130FE /* ZSSsubscript.png in Resources */,
  4077. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  4078. F762CAF61EACB66200B38484 /* Info.plist in Resources */,
  4079. F762CB951EACB84400B38484 /* icon-error.png in Resources */,
  4080. F7F06EC31DBFACC600099AE9 /* CTAssetsPickerController.bundle in Resources */,
  4081. F77B0F6E1D118A16002130FE /* ZSShorizontalrule@2x.png in Resources */,
  4082. F762CB641EACB7D400B38484 /* Reader-Print@2x.png in Resources */,
  4083. F77B0F6F1D118A16002130FE /* ZSSforcejustify.png in Resources */,
  4084. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  4085. F77B0F741D118A16002130FE /* ZSSunorderedlist@2x.png in Resources */,
  4086. F77B0F751D118A16002130FE /* ZSSleftjustify@2x.png in Resources */,
  4087. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  4088. F77B0F771D118A16002130FE /* ZSSimage@2x.png in Resources */,
  4089. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  4090. F7A321571E9E2A070069AD1B /* CCFavoritesCell.xib in Resources */,
  4091. F762CBBA1EACB89C00B38484 /* LMMediaPlayerView.xib in Resources */,
  4092. F77B0F791D118A16002130FE /* ZSSunlink.png in Resources */,
  4093. F77B0F7A1D118A16002130FE /* ZSSredo.png in Resources */,
  4094. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  4095. F77B0F7B1D118A16002130FE /* ZSSrightjustify.png in Resources */,
  4096. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  4097. F77B0F7C1D118A16002130FE /* ZSSviewsource@2x.png in Resources */,
  4098. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  4099. F762CB5B1EACB7D400B38484 /* Reader-Email.png in Resources */,
  4100. F77B0F7F1D118A16002130FE /* ZSScenterjustify@2x.png in Resources */,
  4101. F77B0F811D118A16002130FE /* ZSSparagraph@2x.png in Resources */,
  4102. F762CB651EACB7D400B38484 /* Reader-Thumbs.png in Resources */,
  4103. F77B0F821D118A16002130FE /* ZSSsuperscript.png in Resources */,
  4104. F77B0F831D118A16002130FE /* ZSSh5@2x.png in Resources */,
  4105. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  4106. F762CB5E1EACB7D400B38484 /* Reader-Export@2x.png in Resources */,
  4107. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  4108. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  4109. F75797AE1E81356C00187A1B /* CTAssetsPicker.strings in Resources */,
  4110. F77B0F8F1D118A16002130FE /* ZSSunlink@2x.png in Resources */,
  4111. F762CB5A1EACB7D400B38484 /* Reader-Button-N@2x.png in Resources */,
  4112. F762CB961EACB84400B38484 /* icon-error@2x.png in Resources */,
  4113. F77B0F901D118A16002130FE /* ZSSpicker@2x.png in Resources */,
  4114. F77B0F941D118A16002130FE /* ZSSh6@2x.png in Resources */,
  4115. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  4116. );
  4117. runOnlyForDeploymentPostprocessing = 0;
  4118. };
  4119. /* End PBXResourcesBuildPhase section */
  4120. /* Begin PBXShellScriptBuildPhase section */
  4121. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  4122. isa = PBXShellScriptBuildPhase;
  4123. buildActionMask = 2147483647;
  4124. files = (
  4125. );
  4126. inputPaths = (
  4127. );
  4128. outputPaths = (
  4129. );
  4130. runOnlyForDeploymentPostprocessing = 0;
  4131. shellPath = /bin/sh;
  4132. 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\"";
  4133. };
  4134. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  4135. isa = PBXShellScriptBuildPhase;
  4136. buildActionMask = 2147483647;
  4137. files = (
  4138. );
  4139. inputPaths = (
  4140. );
  4141. outputPaths = (
  4142. );
  4143. runOnlyForDeploymentPostprocessing = 0;
  4144. shellPath = /bin/sh;
  4145. shellScript = "bash \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework/strip-frameworks.sh\"";
  4146. };
  4147. F7A377371EB24469002856D3 /* ShellScript */ = {
  4148. isa = PBXShellScriptBuildPhase;
  4149. buildActionMask = 2147483647;
  4150. files = (
  4151. );
  4152. inputPaths = (
  4153. );
  4154. outputPaths = (
  4155. );
  4156. runOnlyForDeploymentPostprocessing = 0;
  4157. shellPath = /bin/sh;
  4158. shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
  4159. };
  4160. /* End PBXShellScriptBuildPhase section */
  4161. /* Begin PBXSourcesBuildPhase section */
  4162. F71459B51D12E3B700CAFEEC /* Sources */ = {
  4163. isa = PBXSourcesBuildPhase;
  4164. buildActionMask = 2147483647;
  4165. files = (
  4166. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  4167. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  4168. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  4169. F71459BB1D12E3B700CAFEEC /* NYXProgressiveImageView.m in Sources */,
  4170. F7BAADF71ED5B21100B7EAD4 /* TableAccount+CoreDataClass.m in Sources */,
  4171. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  4172. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  4173. F71459BE1D12E3B700CAFEEC /* UIImage+Reflection.m in Sources */,
  4174. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  4175. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */,
  4176. F71459BF1D12E3B700CAFEEC /* RNEncryptor.m in Sources */,
  4177. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  4178. F71459C31D12E3B700CAFEEC /* UIImage+Filtering.m in Sources */,
  4179. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */,
  4180. F70022A21EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  4181. F70022A51EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  4182. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  4183. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  4184. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  4185. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */,
  4186. F734E5891F019D860060CB77 /* UIScrollView+EmptyDataSet.m in Sources */,
  4187. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */,
  4188. F71459C41D12E3B700CAFEEC /* UIImage+Saving.m in Sources */,
  4189. F71459C51D12E3B700CAFEEC /* UIImage+Rotating.m in Sources */,
  4190. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */,
  4191. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  4192. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  4193. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */,
  4194. F70022E41EC4C9100080073F /* OCXMLParser.m in Sources */,
  4195. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  4196. F71459CC1D12E3B700CAFEEC /* RNCryptorEngine.m in Sources */,
  4197. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  4198. F70022E11EC4C9100080073F /* OCXMLListParser.m in Sources */,
  4199. F71459CE1D12E3B700CAFEEC /* NSData+CommonCrypto.m in Sources */,
  4200. F7BAADFC1ED5B22B00B7EAD4 /* TableCertificates+CoreDataClass.m in Sources */,
  4201. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  4202. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  4203. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  4204. F7BAADFA1ED5B22700B7EAD4 /* TableCertificates+CoreDataProperties.m in Sources */,
  4205. F76607721ED7FF110073CEC2 /* TableDirectory+CoreDataProperties.m in Sources */,
  4206. F7BAADC61ED5A87C00B7EAD4 /* CCCoreData.m in Sources */,
  4207. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  4208. F71459D51D12E3B700CAFEEC /* MBProgressHUD.m in Sources */,
  4209. F71459D91D12E3B700CAFEEC /* CCCrypto.m in Sources */,
  4210. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  4211. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */,
  4212. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  4213. F76607781ED7FFF20073CEC2 /* TableLocalFile+CoreDataProperties.m in Sources */,
  4214. F71459E41D12E3B700CAFEEC /* RNDecryptor.m in Sources */,
  4215. F71459E61D12E3B700CAFEEC /* NYXImagesHelper.m in Sources */,
  4216. F76607741ED7FF150073CEC2 /* TableDirectory+CoreDataClass.m in Sources */,
  4217. F70022B11EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  4218. F71459E91D12E3B700CAFEEC /* UIImage+Enhancing.m in Sources */,
  4219. F73CCE321DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  4220. F70022AE1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  4221. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  4222. F71459ED1D12E3B700CAFEEC /* UIImage+Masking.m in Sources */,
  4223. F71459F01D12E3B700CAFEEC /* NSString+Base64.m in Sources */,
  4224. F77EB62A1EC0B50A003F814F /* CCCertificate.m in Sources */,
  4225. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  4226. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  4227. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  4228. F71459F11D12E3B700CAFEEC /* CCMove.m in Sources */,
  4229. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */,
  4230. F71459F31D12E3B700CAFEEC /* UIImage+Resizing.m in Sources */,
  4231. F76183221F03B7BE00D8D483 /* NCRequestAsset.m in Sources */,
  4232. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  4233. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  4234. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
  4235. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  4236. F71459FB1D12E3B700CAFEEC /* PPImageScrollingCellView.m in Sources */,
  4237. F70022A81EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  4238. F71459FF1D12E3B700CAFEEC /* RNCryptor.m in Sources */,
  4239. F70022AB1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  4240. F7145A001D12E3B700CAFEEC /* CCGlobal.m in Sources */,
  4241. F70022B41EC4C9100080073F /* OCActivity.m in Sources */,
  4242. F7145A011D12E3B700CAFEEC /* UIImage+Blurring.m in Sources */,
  4243. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */,
  4244. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  4245. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  4246. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  4247. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  4248. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  4249. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
  4250. F76607761ED7FFEC0073CEC2 /* TableLocalFile+CoreDataClass.m in Sources */,
  4251. F7145A081D12E3B700CAFEEC /* PPCollectionViewCell.m in Sources */,
  4252. F7145A0D1D12E3B700CAFEEC /* NSData+Base64.m in Sources */,
  4253. F78088EB1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */,
  4254. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  4255. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  4256. F7145A0E1D12E3B700CAFEEC /* AESCrypt.m in Sources */,
  4257. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  4258. F7BAADF81ED5B21500B7EAD4 /* TableAccount+CoreDataProperties.m in Sources */,
  4259. F7145A111D12E3B700CAFEEC /* PPImageScrollingTableViewCell.m in Sources */,
  4260. );
  4261. runOnlyForDeploymentPostprocessing = 0;
  4262. };
  4263. F743440E1E1264ED001CC831 /* Sources */ = {
  4264. isa = PBXSourcesBuildPhase;
  4265. buildActionMask = 2147483647;
  4266. files = (
  4267. F74344801E127ED3001CC831 /* NSString+Base64.m in Sources */,
  4268. F70022AF1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  4269. F7BAADCA1ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  4270. F743448C1E128010001CC831 /* CCCrypto.m in Sources */,
  4271. F7BAADCD1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  4272. F725437C1E12A44A009BF4C2 /* CCSection.m in Sources */,
  4273. F74344651E127DE9001CC831 /* CCNetworking.m in Sources */,
  4274. F74344641E127DE6001CC831 /* OCNetworking.m in Sources */,
  4275. F70022CA1EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  4276. F70023001EC4C9100080073F /* UtilsFramework.m in Sources */,
  4277. F73CC07A1E813DFF006E3047 /* BKShiftingView.m in Sources */,
  4278. F70022C11EC4C9100080073F /* OCFileDto.m in Sources */,
  4279. F70022EE1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  4280. F70022C41EC4C9100080073F /* OCNotifications.m in Sources */,
  4281. F7BAADFB1ED5B22700B7EAD4 /* TableCertificates+CoreDataProperties.m in Sources */,
  4282. F74344821E127F68001CC831 /* MBProgressHUD.m in Sources */,
  4283. F70022E21EC4C9100080073F /* OCXMLListParser.m in Sources */,
  4284. F743447D1E127ECB001CC831 /* AESCrypt.m in Sources */,
  4285. F743447E1E127ECE001CC831 /* NSData+Base64.m in Sources */,
  4286. F70022A61EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  4287. F70022E51EC4C9100080073F /* OCXMLParser.m in Sources */,
  4288. F70022B21EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  4289. F70022BB1EC4C9100080073F /* OCCommunication.m in Sources */,
  4290. F70022A31EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  4291. F70022DC1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  4292. F73CC0741E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  4293. F77EB62B1EC0B50B003F814F /* CCCertificate.m in Sources */,
  4294. F7E718B01EB0FBE700FA58C9 /* CCGraphics.m in Sources */,
  4295. F74344171E1264EE001CC831 /* DocumentPickerViewController.swift in Sources */,
  4296. F70022D61EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  4297. F74344811E127F49001CC831 /* AFViewShaker.m in Sources */,
  4298. F70022E81EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  4299. F70022D31EC4C9100080073F /* OCUserProfile.m in Sources */,
  4300. F74344791E127EA1001CC831 /* CCError.m in Sources */,
  4301. F70022D01EC4C9100080073F /* OCShareUser.m in Sources */,
  4302. F70022EB1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  4303. F743447B1E127EAC001CC831 /* CCUtility.m in Sources */,
  4304. F70022A91EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  4305. F76607731ED7FF120073CEC2 /* TableDirectory+CoreDataProperties.m in Sources */,
  4306. F70022BE1EC4C9100080073F /* OCExternalSites.m in Sources */,
  4307. F77EB6291EC08037003F814F /* CCExifGeo.m in Sources */,
  4308. F70022CD1EC4C9100080073F /* OCSharedDto.m in Sources */,
  4309. F70022AC1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  4310. F780710B1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  4311. F7BAADC71ED5A87C00B7EAD4 /* CCCoreData.m in Sources */,
  4312. F70022FD1EC4C9100080073F /* NSString+Encode.m in Sources */,
  4313. F76607791ED7FFF20073CEC2 /* TableLocalFile+CoreDataProperties.m in Sources */,
  4314. F70022B51EC4C9100080073F /* OCActivity.m in Sources */,
  4315. F70022B81EC4C9100080073F /* OCCapabilities.m in Sources */,
  4316. F74344871E127F95001CC831 /* UICKeyChainStore.m in Sources */,
  4317. F73CC0711E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  4318. F73CC07D1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  4319. F743447F1E127ED1001CC831 /* NSData+CommonCrypto.m in Sources */,
  4320. F74344891E127FC3001CC831 /* CCGlobal.m in Sources */,
  4321. F70022D91EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  4322. F73CC06E1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  4323. F74344841E127F84001CC831 /* RNCryptorEngine.m in Sources */,
  4324. F761832B1F03B7BE00D8D483 /* NCRequestAsset.m in Sources */,
  4325. F74344851E127F86001CC831 /* RNDecryptor.m in Sources */,
  4326. F74344881E127F9C001CC831 /* UIImage+animatedGIF.m in Sources */,
  4327. F73CC0771E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  4328. F76607771ED7FFEC0073CEC2 /* TableLocalFile+CoreDataClass.m in Sources */,
  4329. F70022DF1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  4330. F743448A1E127FF2001CC831 /* CCHud.m in Sources */,
  4331. F734E5921F019D870060CB77 /* UIScrollView+EmptyDataSet.m in Sources */,
  4332. F74344861E127F89001CC831 /* RNEncryptor.m in Sources */,
  4333. F76607751ED7FF160073CEC2 /* TableDirectory+CoreDataClass.m in Sources */,
  4334. F73CC06B1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  4335. F7BAADF61ED5B20E00B7EAD4 /* TableAccount+CoreDataClass.m in Sources */,
  4336. F7FC88FA1E140558006D0506 /* cryptocloud.xcdatamodeld in Sources */,
  4337. F7BAADFD1ED5B22C00B7EAD4 /* TableCertificates+CoreDataClass.m in Sources */,
  4338. F74344631E127D79001CC831 /* CCBKPasscode.m in Sources */,
  4339. F76B3CD01EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  4340. F73CC0801E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  4341. F743447C1E127EB2001CC831 /* NSString+TruncateToWidth.m in Sources */,
  4342. F70022C71EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  4343. F7BAADF91ED5B21600B7EAD4 /* TableAccount+CoreDataProperties.m in Sources */,
  4344. F74344831E127F80001CC831 /* RNCryptor.m in Sources */,
  4345. );
  4346. runOnlyForDeploymentPostprocessing = 0;
  4347. };
  4348. F743441C1E1264EE001CC831 /* Sources */ = {
  4349. isa = PBXSourcesBuildPhase;
  4350. buildActionMask = 2147483647;
  4351. files = (
  4352. F74344251E1264EE001CC831 /* FileProvider.swift in Sources */,
  4353. F76B3CD11EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  4354. );
  4355. runOnlyForDeploymentPostprocessing = 0;
  4356. };
  4357. F77B0DEF1D118A16002130FE /* Sources */ = {
  4358. isa = PBXSourcesBuildPhase;
  4359. buildActionMask = 2147483647;
  4360. files = (
  4361. F762CBBE1EACB89C00B38484 /* LMMediaItemQueueManager.m in Sources */,
  4362. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  4363. F7F06EC51DBFACC600099AE9 /* CTAssetsPickerController.m in Sources */,
  4364. F77B0DF01D118A16002130FE /* UIImage+Resizing.m in Sources */,
  4365. F7F06EAB1DBFACC600099AE9 /* CTAssetSelectionButton.m in Sources */,
  4366. F70022A41EC4C9100080073F /* AFNetworkReachabilityManager.m in Sources */,
  4367. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */,
  4368. F762CB691EACB7D400B38484 /* ReaderContentPage.m in Sources */,
  4369. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  4370. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  4371. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  4372. F7F06EA91DBFACC600099AE9 /* CTAssetScrollView.m in Sources */,
  4373. F762CB771EACB7D400B38484 /* ReaderViewController.m in Sources */,
  4374. F7F06E931DBFACC600099AE9 /* NSNumberFormatter+CTAssetsPickerController.m in Sources */,
  4375. F72AAECC1E5C60C700BB17E1 /* UIImage+AHKAdditions.m in Sources */,
  4376. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */,
  4377. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  4378. F77B0DFB1D118A16002130FE /* NYXProgressiveImageView.m in Sources */,
  4379. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  4380. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  4381. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  4382. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  4383. F77B0E011D118A16002130FE /* RNCryptor.m in Sources */,
  4384. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  4385. F70022A11EC4C9100080073F /* AFHTTPSessionManager.m in Sources */,
  4386. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */,
  4387. F77B0E031D118A16002130FE /* CCShareInfoCMOC.m in Sources */,
  4388. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  4389. F73CCE301DC13798007E38D8 /* UICKeyChainStore.m in Sources */,
  4390. F762CBBF1EACB89C00B38484 /* LMMediaItemStreamingCache.m in Sources */,
  4391. F7F06ECD1DBFACC600099AE9 /* CTAssetThumbnailStacks.m in Sources */,
  4392. F7659A581DC0B760004860C4 /* NSIndexPath+PSTCollectionViewAdditions.m in Sources */,
  4393. F7659A681DC0B760004860C4 /* PSTCollectionViewUpdateItem.m in Sources */,
  4394. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  4395. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  4396. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */,
  4397. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  4398. F7BAADDD1ED5A87C00B7EAD4 /* TableDirectory+CoreDataProperties.m in Sources */,
  4399. F70022B01EC4C9100080073F /* AFURLSessionManager.m in Sources */,
  4400. F7B1FBC71E72E3D1001781FE /* SwiftWebVC.swift in Sources */,
  4401. F7DC5FEC1F011EB700A903C7 /* MGSwipeButton.m in Sources */,
  4402. F77B0E111D118A16002130FE /* UIImage+Reflection.m in Sources */,
  4403. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */,
  4404. F762CB881EACB81000B38484 /* REMenuContainerView.m in Sources */,
  4405. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  4406. F762CB731EACB7D400B38484 /* ReaderThumbRender.m in Sources */,
  4407. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  4408. F762CB6F1EACB7D400B38484 /* ReaderMainToolbar.m in Sources */,
  4409. F77B0E121D118A16002130FE /* CCPatenteGuida.m in Sources */,
  4410. F7B1FBC61E72E3D1001781FE /* SwiftModalWebVC.swift in Sources */,
  4411. F7A321651E9E37960069AD1B /* CCActivity.m in Sources */,
  4412. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */,
  4413. F77B0E131D118A16002130FE /* AppDelegate.m in Sources */,
  4414. F762CB861EACB81000B38484 /* RECommonFunctions.m in Sources */,
  4415. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  4416. F762CB741EACB7D400B38484 /* ReaderThumbRequest.m in Sources */,
  4417. F7A13A031E7F3D5D00016680 /* CCProgressView.m in Sources */,
  4418. F7F06EAF1DBFACC600099AE9 /* CTAssetsGridSelectedView.m in Sources */,
  4419. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  4420. F7F06E951DBFACC600099AE9 /* PHAsset+CTAssetsPickerController.m in Sources */,
  4421. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  4422. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  4423. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */,
  4424. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  4425. F7659A6E1DC0B760004860C4 /* PSTGridLayoutRow.m in Sources */,
  4426. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */,
  4427. F762CB701EACB7D400B38484 /* ReaderThumbCache.m in Sources */,
  4428. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */,
  4429. F762CB6D1EACB7D400B38484 /* ReaderDocumentOutline.m in Sources */,
  4430. F762CB9B1EACB84400B38484 /* TWMessageBarManager.m in Sources */,
  4431. F77B0E201D118A16002130FE /* CCShareUserOC.m in Sources */,
  4432. F7B1FBCA1E72E3D1001781FE /* SwiftWebVCActivitySafari.swift in Sources */,
  4433. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  4434. F720E01F1E48C73E001A4B9E /* CCActions.swift in Sources */,
  4435. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */,
  4436. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  4437. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */,
  4438. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  4439. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  4440. F77B0E231D118A16002130FE /* CCSharePermissionOC.m in Sources */,
  4441. F77B0E241D118A16002130FE /* HRColorCursor.m in Sources */,
  4442. F78071211EDB135100EAFFF6 /* CCPhotos.m in Sources */,
  4443. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */,
  4444. F75AE3C71E9D12900088BB09 /* SwiftyAvatar.swift in Sources */,
  4445. F77B0E261D118A16002130FE /* ZSSTextView.m in Sources */,
  4446. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */,
  4447. F77B0E271D118A16002130FE /* CYRLayoutManager.m in Sources */,
  4448. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */,
  4449. F762CB681EACB7D400B38484 /* ReaderConstants.m in Sources */,
  4450. F7F06E9B1DBFACC600099AE9 /* UICollectionView+CTAssetsPickerController.m in Sources */,
  4451. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */,
  4452. F77B0E2D1D118A16002130FE /* CYRTextView.m in Sources */,
  4453. F762CB751EACB7D400B38484 /* ReaderThumbsView.m in Sources */,
  4454. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  4455. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  4456. F70022E31EC4C9100080073F /* OCXMLParser.m in Sources */,
  4457. F762CB671EACB7D400B38484 /* CGPDFDocument.m in Sources */,
  4458. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  4459. F77B0E321D118A16002130FE /* HRCgUtil.m in Sources */,
  4460. F78964AE1EBB576C00403E13 /* JDStatusBarStyle.m in Sources */,
  4461. F7F06EB71DBFACC600099AE9 /* CTAssetsGridViewFooter.m in Sources */,
  4462. F7BAADD71ED5A87C00B7EAD4 /* TableCertificates+CoreDataProperties.m in Sources */,
  4463. F762CBC01EACB89C00B38484 /* LMMediaPlayer.m in Sources */,
  4464. F7F06EB91DBFACC600099AE9 /* CTAssetsGridViewLayout.m in Sources */,
  4465. F77B0E351D118A16002130FE /* NYXImagesHelper.m in Sources */,
  4466. F77B0E361D118A16002130FE /* ZSSBarButtonItem.m in Sources */,
  4467. F77B0E391D118A16002130FE /* CCContoCorrente.m in Sources */,
  4468. F77B0E3A1D118A16002130FE /* RNCryptorEngine.m in Sources */,
  4469. F77B0E3C1D118A16002130FE /* CCCartaIdentita.m in Sources */,
  4470. F7BAADD41ED5A87C00B7EAD4 /* TableCertificates+CoreDataClass.m in Sources */,
  4471. F762CB761EACB7D400B38484 /* ReaderThumbView.m in Sources */,
  4472. F7659A6C1DC0B760004860C4 /* PSTGridLayoutItem.m in Sources */,
  4473. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */,
  4474. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  4475. F7F06EA31DBFACC600099AE9 /* CTAssetCollectionViewController.m in Sources */,
  4476. F710E8101EF95C9C00DC2427 /* CCIntro.m in Sources */,
  4477. F77B0E411D118A16002130FE /* CCSplit.m in Sources */,
  4478. F77B0E481D118A16002130FE /* CCCrypto.m in Sources */,
  4479. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  4480. F7659A6A1DC0B760004860C4 /* PSTGridLayoutInfo.m in Sources */,
  4481. F77B0E491D118A16002130FE /* UIImage+Saving.m in Sources */,
  4482. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  4483. F77B0E4C1D118A16002130FE /* CCDetail.m in Sources */,
  4484. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */,
  4485. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */,
  4486. F7659A5E1DC0B760004860C4 /* PSTCollectionViewController.m in Sources */,
  4487. F7F801031D98205A007537BC /* CCCertificate.m in Sources */,
  4488. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  4489. F77B0E511D118A16002130FE /* UIImage+Filtering.m in Sources */,
  4490. F73B4F791E8D3BF800A97F07 /* CCMainTabBarController.swift in Sources */,
  4491. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  4492. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  4493. F7F06E911DBFACC600099AE9 /* NSIndexSet+CTAssetsPickerController.m in Sources */,
  4494. F77B0E541D118A16002130FE /* CCMove.m in Sources */,
  4495. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  4496. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */,
  4497. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  4498. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */,
  4499. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */,
  4500. F77B0E5B1D118A16002130FE /* UIImage+Rotating.m in Sources */,
  4501. F7A321561E9E2A070069AD1B /* CCFavoritesCell.m in Sources */,
  4502. F7F06E8D1DBFACC600099AE9 /* NSBundle+CTAssetsPickerController.m in Sources */,
  4503. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */,
  4504. F77B0E5D1D118A16002130FE /* UIImage+Blurring.m in Sources */,
  4505. F7BE6E2F1D2D5C3B00106933 /* CCQuickActions.m in Sources */,
  4506. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */,
  4507. F762CBBC1EACB89C00B38484 /* LMMediaPlayerHelper.m in Sources */,
  4508. F762CB791EACB7D400B38484 /* ThumbsViewController.m in Sources */,
  4509. F7659A291DC0B726004860C4 /* EAIntroView.m in Sources */,
  4510. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  4511. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  4512. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */,
  4513. F7B3A4EE1E97818A000DACE8 /* CCLoginWeb.swift in Sources */,
  4514. F77B0E631D118A16002130FE /* CCShareOC.m in Sources */,
  4515. F73CCE261DC13788007E38D8 /* UIScrollView+EmptyDataSet.m in Sources */,
  4516. F7F54D071E5B14C800E19C62 /* MWGridCell.m in Sources */,
  4517. F762CB781EACB7D400B38484 /* ThumbsMainToolbar.m in Sources */,
  4518. F77B0E661D118A16002130FE /* NSString+Base64.m in Sources */,
  4519. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  4520. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */,
  4521. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  4522. F77B0E6A1D118A16002130FE /* RNDecryptor.m in Sources */,
  4523. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  4524. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  4525. F7F06E8F1DBFACC600099AE9 /* NSDateFormatter+CTAssetsPickerController.m in Sources */,
  4526. F7F6AC4E1E525AD300E8EB45 /* CCManageCryptoCloud.m in Sources */,
  4527. F77B0E731D118A16002130FE /* PPImageScrollingTableViewCell.m in Sources */,
  4528. F762CBBD1EACB89C00B38484 /* LMMediaItem.m in Sources */,
  4529. F7659A2E1DC0B72F004860C4 /* EARestrictedScrollView.m in Sources */,
  4530. F77B0E741D118A16002130FE /* CCBancomat.m in Sources */,
  4531. F77B0E7B1D118A16002130FE /* CCPassaporto.m in Sources */,
  4532. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  4533. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  4534. F7B1FBC91E72E3D1001781FE /* SwiftWebVCActivityChrome.swift in Sources */,
  4535. F7F06EA51DBFACC600099AE9 /* CTAssetItemViewController.m in Sources */,
  4536. F762CB8A1EACB81000B38484 /* REMenuItemView.m in Sources */,
  4537. F7659A5A1DC0B760004860C4 /* PSTCollectionView.m in Sources */,
  4538. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  4539. F77B0E7D1D118A16002130FE /* CYRTextStorage.m in Sources */,
  4540. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */,
  4541. F77B0E801D118A16002130FE /* ZSSRichTextEditor.m in Sources */,
  4542. F7F06EC91DBFACC600099AE9 /* CTAssetsViewControllerTransition.m in Sources */,
  4543. F7659A661DC0B760004860C4 /* PSTCollectionViewLayout.m in Sources */,
  4544. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  4545. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */,
  4546. F77B0E871D118A16002130FE /* NSData+Base64.m in Sources */,
  4547. F77B0E8A1D118A16002130FE /* CCCartaDiCredito.m in Sources */,
  4548. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */,
  4549. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */,
  4550. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  4551. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  4552. F77B0E911D118A16002130FE /* CCTemplates.m in Sources */,
  4553. F72AAECD1E5C60C700BB17E1 /* UIWindow+AHKAdditions.m in Sources */,
  4554. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  4555. F7659A5C1DC0B760004860C4 /* PSTCollectionViewCell.m in Sources */,
  4556. F7659A391DC0B737004860C4 /* iRate.m in Sources */,
  4557. F7B1FBC81E72E3D1001781FE /* SwiftWebVCActivity.swift in Sources */,
  4558. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  4559. F77B0E991D118A16002130FE /* PPCollectionViewCell.m in Sources */,
  4560. F7F06EC11DBFACC600099AE9 /* CTAssetsPickerAccessDeniedView.m in Sources */,
  4561. F7F06ECB1DBFACC600099AE9 /* CTAssetThumbnailOverlay.m in Sources */,
  4562. F7BAADC51ED5A87C00B7EAD4 /* CCCoreData.m in Sources */,
  4563. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
  4564. F70022AD1EC4C9100080073F /* AFURLResponseSerialization.m in Sources */,
  4565. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  4566. F77B0E9D1D118A16002130FE /* HRColorPickerView.m in Sources */,
  4567. F7F06EC71DBFACC600099AE9 /* CTAssetsPickerNoAssetsView.m in Sources */,
  4568. F7659A271DC0B726004860C4 /* EAIntroPage.m in Sources */,
  4569. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  4570. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  4571. F78088EA1DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld in Sources */,
  4572. F7659A601DC0B760004860C4 /* PSTCollectionViewData.m in Sources */,
  4573. F77B0EAB1D118A16002130FE /* HRColorPickerViewController.m in Sources */,
  4574. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */,
  4575. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */,
  4576. F7A13A041E7F3D5D00016680 /* UINavigationController+CCProgress.m in Sources */,
  4577. F7F06EB51DBFACC600099AE9 /* CTAssetsGridViewController.m in Sources */,
  4578. F73C002F1E55D7DF00EEEFA7 /* CCManageCryptoCloudSecurity.m in Sources */,
  4579. F7659A621DC0B760004860C4 /* PSTCollectionViewFlowLayout.m in Sources */,
  4580. F7F06EBD1DBFACC600099AE9 /* CTAssetsPageView.m in Sources */,
  4581. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  4582. F77B0EAD1D118A16002130FE /* CCGlobal.m in Sources */,
  4583. F7659A641DC0B760004860C4 /* PSTCollectionViewItemKey.m in Sources */,
  4584. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */,
  4585. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  4586. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */,
  4587. F7F06ECF1DBFACC600099AE9 /* CTAssetThumbnailView.m in Sources */,
  4588. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */,
  4589. F70022E01EC4C9100080073F /* OCXMLListParser.m in Sources */,
  4590. F7BAADCE1ED5A87C00B7EAD4 /* TableAccount+CoreDataClass.m in Sources */,
  4591. F7F06E9F1DBFACC600099AE9 /* CTAssetCheckmark.m in Sources */,
  4592. F70022B31EC4C9100080073F /* OCActivity.m in Sources */,
  4593. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  4594. F78964AD1EBB576C00403E13 /* JDStatusBarNotification.m in Sources */,
  4595. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */,
  4596. F7F54D081E5B14C800E19C62 /* MWGridViewController.m in Sources */,
  4597. F7F06E971DBFACC600099AE9 /* PHAssetCollection+CTAssetsPickerController.m in Sources */,
  4598. F7F06E9D1DBFACC600099AE9 /* UIImage+CTAssetsPickerController.m in Sources */,
  4599. F762CB6C1EACB7D400B38484 /* ReaderDocument.m in Sources */,
  4600. F762CB721EACB7D400B38484 /* ReaderThumbQueue.m in Sources */,
  4601. F77B0EB61D118A16002130FE /* MBProgressHUD.m in Sources */,
  4602. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */,
  4603. F7F06EB31DBFACC600099AE9 /* CTAssetsGridViewCell.m in Sources */,
  4604. F77B0EB81D118A16002130FE /* CCAccountWeb.m in Sources */,
  4605. F7A321791E9E3EAF0069AD1B /* CCTransfers.m in Sources */,
  4606. F762CBC11EACB89C00B38484 /* LMMediaPlayerView.m in Sources */,
  4607. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */,
  4608. F762CB6A1EACB7D400B38484 /* ReaderContentTile.m in Sources */,
  4609. F77B0EB91D118A16002130FE /* HRColorUtil.m in Sources */,
  4610. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */,
  4611. F762CB891EACB81000B38484 /* REMenuItem.m in Sources */,
  4612. F762CBBB1EACB89C00B38484 /* NSArray+LMMediaPlayerShuffle.m in Sources */,
  4613. F7BAADFF1ED5B2A500B7EAD4 /* TableLocalFile+CoreDataClass.m in Sources */,
  4614. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  4615. F7F06EA71DBFACC600099AE9 /* CTAssetPlayButton.m in Sources */,
  4616. F7BAADDA1ED5A87C00B7EAD4 /* TableDirectory+CoreDataClass.m in Sources */,
  4617. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  4618. F7BAADE01ED5A87C00B7EAD4 /* TableLocalFile+CoreDataProperties.m in Sources */,
  4619. F77B0EBE1D118A16002130FE /* CCNote.m in Sources */,
  4620. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  4621. F77B0EBF1D118A16002130FE /* RNEncryptor.m in Sources */,
  4622. F70022A71EC4C9100080073F /* AFSecurityPolicy.m in Sources */,
  4623. F7F06EBF1DBFACC600099AE9 /* CTAssetsPageViewController.m in Sources */,
  4624. F7F06EA11DBFACC600099AE9 /* CTAssetCollectionViewCell.m in Sources */,
  4625. F78964AF1EBB576C00403E13 /* JDStatusBarView.m in Sources */,
  4626. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  4627. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */,
  4628. F762CB7A1EACB7D400B38484 /* UIXToolbarView.m in Sources */,
  4629. F7F06EAD1DBFACC600099AE9 /* CTAssetSelectionLabel.m in Sources */,
  4630. F762CB711EACB7D400B38484 /* ReaderThumbFetch.m in Sources */,
  4631. F7BAADD11ED5A87C00B7EAD4 /* TableAccount+CoreDataProperties.m in Sources */,
  4632. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  4633. F7659A701DC0B760004860C4 /* PSTGridLayoutSection.m in Sources */,
  4634. F77B0EC31D118A16002130FE /* UIImage+Enhancing.m in Sources */,
  4635. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  4636. F7DC5FED1F011EB700A903C7 /* MGSwipeTableCell.m in Sources */,
  4637. F77B0EC71D118A16002130FE /* AESCrypt.m in Sources */,
  4638. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */,
  4639. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */,
  4640. F762CB871EACB81000B38484 /* REMenu.m in Sources */,
  4641. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */,
  4642. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */,
  4643. F7ECBA6D1E239DCD003E6328 /* CCCreateCloud.swift in Sources */,
  4644. F761831F1F03B6C300D8D483 /* NCRequestAsset.m in Sources */,
  4645. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */,
  4646. F77B0ECB1D118A16002130FE /* HRBrightnessCursor.m in Sources */,
  4647. F762CB6E1EACB7D400B38484 /* ReaderMainPagebar.m in Sources */,
  4648. F77B0ECC1D118A16002130FE /* UIImage+Masking.m in Sources */,
  4649. F77B0ECE1D118A16002130FE /* NSData+CommonCrypto.m in Sources */,
  4650. F70022AA1EC4C9100080073F /* AFURLRequestSerialization.m in Sources */,
  4651. F77B0ECF1D118A16002130FE /* CYRToken.m in Sources */,
  4652. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  4653. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  4654. F7F06EB11DBFACC600099AE9 /* CTAssetsGridView.m in Sources */,
  4655. F7A3217A1E9E3EAF0069AD1B /* CCTransfersCell.m in Sources */,
  4656. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  4657. F77B0ED31D118A16002130FE /* PPImageScrollingCellView.m in Sources */,
  4658. F762CB6B1EACB7D400B38484 /* ReaderContentView.m in Sources */,
  4659. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  4660. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  4661. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */,
  4662. F7F06E991DBFACC600099AE9 /* PHImageManager+CTAssetsPickerController.m in Sources */,
  4663. F7F06EBB1DBFACC600099AE9 /* CTAssetsNavigationController.m in Sources */,
  4664. F77B0ED91D118A16002130FE /* main.m in Sources */,
  4665. );
  4666. runOnlyForDeploymentPostprocessing = 0;
  4667. };
  4668. /* End PBXSourcesBuildPhase section */
  4669. /* Begin PBXTargetDependency section */
  4670. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  4671. isa = PBXTargetDependency;
  4672. target = F71459B41D12E3B700CAFEEC /* Share */;
  4673. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  4674. };
  4675. F74344281E1264EE001CC831 /* PBXTargetDependency */ = {
  4676. isa = PBXTargetDependency;
  4677. target = F743441F1E1264EE001CC831 /* PickerFileProvider */;
  4678. targetProxy = F74344271E1264EE001CC831 /* PBXContainerItemProxy */;
  4679. };
  4680. F743442B1E1264EE001CC831 /* PBXTargetDependency */ = {
  4681. isa = PBXTargetDependency;
  4682. target = F74344111E1264ED001CC831 /* Picker */;
  4683. targetProxy = F743442A1E1264EE001CC831 /* PBXContainerItemProxy */;
  4684. };
  4685. /* End PBXTargetDependency section */
  4686. /* Begin PBXVariantGroup section */
  4687. F72B60911A24F00B004EF66F /* BKPasscodeView.strings */ = {
  4688. isa = PBXVariantGroup;
  4689. children = (
  4690. F7151A801D477A4B00E6AF45 /* en */,
  4691. F7B1A7751EBB3C8000BFB6D1 /* de */,
  4692. F75B91E11ECAE17800199C96 /* fr */,
  4693. F75B91EF1ECAE25100199C96 /* es-MX */,
  4694. F75B91F61ECAE26300199C96 /* pt-BR */,
  4695. F75B923C1ECAE55E00199C96 /* ru */,
  4696. F7169A2F1EE59BB70086BD69 /* it */,
  4697. F7169A361EE59BE80086BD69 /* pl */,
  4698. F7169A3D1EE59BFA0086BD69 /* nl */,
  4699. F7169A441EE59C380086BD69 /* nb-NO */,
  4700. F7169A4B1EE59C640086BD69 /* tr */,
  4701. F7169A521EE59C7D0086BD69 /* cs-CZ */,
  4702. F772BEB31EE69976006A232B /* en-GB */,
  4703. F772BEBA1EE699E5006A232B /* es */,
  4704. F71870611EE93904003A4DD8 /* el */,
  4705. F71870681EE93932003A4DD8 /* es-AR */,
  4706. );
  4707. name = BKPasscodeView.strings;
  4708. path = "Supporting Files";
  4709. sourceTree = "<group>";
  4710. };
  4711. F732B3351E8045A1002B7D75 /* SwiftWebVC.strings */ = {
  4712. isa = PBXVariantGroup;
  4713. children = (
  4714. F732B3361E8045A1002B7D75 /* en */,
  4715. F7B1A7741EBB3C8000BFB6D1 /* de */,
  4716. F75B91E01ECAE17800199C96 /* fr */,
  4717. F75B91EE1ECAE25000199C96 /* es-MX */,
  4718. F75B91F51ECAE26300199C96 /* pt-BR */,
  4719. F75B923B1ECAE55E00199C96 /* ru */,
  4720. F7169A2E1EE59BB70086BD69 /* it */,
  4721. F7169A351EE59BE80086BD69 /* pl */,
  4722. F7169A3C1EE59BFA0086BD69 /* nl */,
  4723. F7169A431EE59C380086BD69 /* nb-NO */,
  4724. F7169A4A1EE59C640086BD69 /* tr */,
  4725. F7169A511EE59C7D0086BD69 /* cs-CZ */,
  4726. F772BEB21EE69975006A232B /* en-GB */,
  4727. F772BEB91EE699E4006A232B /* es */,
  4728. F71870601EE93904003A4DD8 /* el */,
  4729. F71870671EE93932003A4DD8 /* es-AR */,
  4730. );
  4731. name = SwiftWebVC.strings;
  4732. path = "Supporting Files";
  4733. sourceTree = "<group>";
  4734. };
  4735. F744BE9F1BEBB69F004FFF66 /* Intro.strings */ = {
  4736. isa = PBXVariantGroup;
  4737. children = (
  4738. F7151A831D477A4B00E6AF45 /* en */,
  4739. F7B1A7781EBB3C8100BFB6D1 /* de */,
  4740. F75B91E41ECAE17800199C96 /* fr */,
  4741. F75B91F21ECAE25100199C96 /* es-MX */,
  4742. F75B91F91ECAE26400199C96 /* pt-BR */,
  4743. F75B923F1ECAE55F00199C96 /* ru */,
  4744. F7169A321EE59BB70086BD69 /* it */,
  4745. F7169A391EE59BE80086BD69 /* pl */,
  4746. F7169A401EE59BFA0086BD69 /* nl */,
  4747. F7169A471EE59C380086BD69 /* nb-NO */,
  4748. F7169A4E1EE59C640086BD69 /* tr */,
  4749. F7169A551EE59C7E0086BD69 /* cs-CZ */,
  4750. F772BEB61EE69976006A232B /* en-GB */,
  4751. F772BEBD1EE699E5006A232B /* es */,
  4752. F71870641EE93905003A4DD8 /* el */,
  4753. F718706B1EE93932003A4DD8 /* es-AR */,
  4754. );
  4755. name = Intro.strings;
  4756. path = "Supporting Files";
  4757. sourceTree = "<group>";
  4758. };
  4759. F75797AC1E81356C00187A1B /* CTAssetsPicker.strings */ = {
  4760. isa = PBXVariantGroup;
  4761. children = (
  4762. F75797AD1E81356C00187A1B /* en */,
  4763. F7B1A7731EBB3C8000BFB6D1 /* de */,
  4764. F75B91DF1ECAE17800199C96 /* fr */,
  4765. F75B91ED1ECAE25000199C96 /* es-MX */,
  4766. F75B91F41ECAE26300199C96 /* pt-BR */,
  4767. F75B923A1ECAE55E00199C96 /* ru */,
  4768. F7169A2D1EE59BB70086BD69 /* it */,
  4769. F7169A341EE59BE80086BD69 /* pl */,
  4770. F7169A3B1EE59BFA0086BD69 /* nl */,
  4771. F7169A421EE59C370086BD69 /* nb-NO */,
  4772. F7169A491EE59C630086BD69 /* tr */,
  4773. F7169A501EE59C7D0086BD69 /* cs-CZ */,
  4774. F772BEB11EE69975006A232B /* en-GB */,
  4775. F772BEB81EE699E4006A232B /* es */,
  4776. F718705F1EE93904003A4DD8 /* el */,
  4777. F71870661EE93932003A4DD8 /* es-AR */,
  4778. );
  4779. name = CTAssetsPicker.strings;
  4780. path = "Supporting Files";
  4781. sourceTree = "<group>";
  4782. };
  4783. F7B381BF1C074E3E004693F8 /* Error.strings */ = {
  4784. isa = PBXVariantGroup;
  4785. children = (
  4786. F7151A841D477A4B00E6AF45 /* en */,
  4787. F7B1A7791EBB3C8100BFB6D1 /* de */,
  4788. F75B91E51ECAE17800199C96 /* fr */,
  4789. F75B91F31ECAE25100199C96 /* es-MX */,
  4790. F75B91FA1ECAE26400199C96 /* pt-BR */,
  4791. F75B92401ECAE55F00199C96 /* ru */,
  4792. F7169A331EE59BB80086BD69 /* it */,
  4793. F7169A3A1EE59BE80086BD69 /* pl */,
  4794. F7169A411EE59BFA0086BD69 /* nl */,
  4795. F7169A481EE59C380086BD69 /* nb-NO */,
  4796. F7169A4F1EE59C640086BD69 /* tr */,
  4797. F7169A561EE59C7E0086BD69 /* cs-CZ */,
  4798. F772BEB71EE69976006A232B /* en-GB */,
  4799. F772BEBE1EE699E5006A232B /* es */,
  4800. F71870651EE93905003A4DD8 /* el */,
  4801. F718706C1EE93932003A4DD8 /* es-AR */,
  4802. );
  4803. name = Error.strings;
  4804. path = "Supporting Files";
  4805. sourceTree = "<group>";
  4806. };
  4807. F7C6D5F61BE371D800AC83AD /* InfoPlist.strings */ = {
  4808. isa = PBXVariantGroup;
  4809. children = (
  4810. F7151A821D477A4B00E6AF45 /* en */,
  4811. F7B1A7771EBB3C8100BFB6D1 /* de */,
  4812. F75B91E31ECAE17800199C96 /* fr */,
  4813. F75B91F11ECAE25100199C96 /* es-MX */,
  4814. F75B91F81ECAE26400199C96 /* pt-BR */,
  4815. F75B923E1ECAE55E00199C96 /* ru */,
  4816. F7169A311EE59BB70086BD69 /* it */,
  4817. F7169A381EE59BE80086BD69 /* pl */,
  4818. F7169A3F1EE59BFA0086BD69 /* nl */,
  4819. F7169A461EE59C380086BD69 /* nb-NO */,
  4820. F7169A4D1EE59C640086BD69 /* tr */,
  4821. F7169A541EE59C7E0086BD69 /* cs-CZ */,
  4822. F772BEB51EE69976006A232B /* en-GB */,
  4823. F772BEBC1EE699E5006A232B /* es */,
  4824. F71870631EE93905003A4DD8 /* el */,
  4825. F718706A1EE93932003A4DD8 /* es-AR */,
  4826. );
  4827. name = InfoPlist.strings;
  4828. path = "Supporting Files";
  4829. sourceTree = "<group>";
  4830. };
  4831. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  4832. isa = PBXVariantGroup;
  4833. children = (
  4834. F7151A811D477A4B00E6AF45 /* en */,
  4835. F7B1A7761EBB3C8000BFB6D1 /* de */,
  4836. F75B91E21ECAE17800199C96 /* fr */,
  4837. F75B91F01ECAE25100199C96 /* es-MX */,
  4838. F75B91F71ECAE26300199C96 /* pt-BR */,
  4839. F75B923D1ECAE55E00199C96 /* ru */,
  4840. F7169A301EE59BB70086BD69 /* it */,
  4841. F7169A371EE59BE80086BD69 /* pl */,
  4842. F7169A3E1EE59BFA0086BD69 /* nl */,
  4843. F7169A451EE59C380086BD69 /* nb-NO */,
  4844. F7169A4C1EE59C640086BD69 /* tr */,
  4845. F7169A531EE59C7D0086BD69 /* cs-CZ */,
  4846. F772BEB41EE69976006A232B /* en-GB */,
  4847. F772BEBB1EE699E5006A232B /* es */,
  4848. F71870621EE93904003A4DD8 /* el */,
  4849. F71870691EE93932003A4DD8 /* es-AR */,
  4850. );
  4851. name = Localizable.strings;
  4852. path = "Supporting Files";
  4853. sourceTree = "<group>";
  4854. };
  4855. /* End PBXVariantGroup section */
  4856. /* Begin XCBuildConfiguration section */
  4857. F7145A261D12E3B700CAFEEC /* Debug */ = {
  4858. isa = XCBuildConfiguration;
  4859. buildSettings = {
  4860. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4861. APPLICATION_EXTENSION_API_ONLY = NO;
  4862. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4863. CLANG_ENABLE_MODULES = YES;
  4864. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4865. CODE_SIGN_IDENTITY = "iPhone Developer";
  4866. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4867. DEBUG_INFORMATION_FORMAT = dwarf;
  4868. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4869. FRAMEWORK_SEARCH_PATHS = (
  4870. "$(inherited)",
  4871. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4872. );
  4873. GCC_NO_COMMON_BLOCKS = YES;
  4874. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4875. GCC_PREPROCESSOR_DEFINITIONS = (
  4876. "$(inherited)",
  4877. EXTENSION,
  4878. EXTENSION_SHARE,
  4879. NC,
  4880. );
  4881. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4882. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4883. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4884. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4885. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4886. OTHER_LDFLAGS = (
  4887. "-Obj-C",
  4888. "-all_load",
  4889. );
  4890. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4891. PRODUCT_NAME = "$(TARGET_NAME)";
  4892. SKIP_INSTALL = YES;
  4893. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4894. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4895. SWIFT_VERSION = 3.0;
  4896. TARGETED_DEVICE_FAMILY = "1,2";
  4897. USE_HEADERMAP = YES;
  4898. };
  4899. name = Debug;
  4900. };
  4901. F7145A271D12E3B700CAFEEC /* Release */ = {
  4902. isa = XCBuildConfiguration;
  4903. buildSettings = {
  4904. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4905. APPLICATION_EXTENSION_API_ONLY = NO;
  4906. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4907. CLANG_ENABLE_MODULES = YES;
  4908. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  4909. CODE_SIGN_IDENTITY = "iPhone Developer";
  4910. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4911. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4912. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4913. FRAMEWORK_SEARCH_PATHS = (
  4914. "$(inherited)",
  4915. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4916. );
  4917. GCC_NO_COMMON_BLOCKS = YES;
  4918. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4919. GCC_PREPROCESSOR_DEFINITIONS = (
  4920. "$(inherited)",
  4921. EXTENSION,
  4922. EXTENSION_SHARE,
  4923. NC,
  4924. );
  4925. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4926. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  4927. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4928. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4929. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4930. OTHER_LDFLAGS = (
  4931. "-Obj-C",
  4932. "-all_load",
  4933. );
  4934. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  4935. PRODUCT_NAME = "$(TARGET_NAME)";
  4936. SKIP_INSTALL = YES;
  4937. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  4938. SWIFT_VERSION = 3.0;
  4939. TARGETED_DEVICE_FAMILY = "1,2";
  4940. USE_HEADERMAP = YES;
  4941. };
  4942. name = Release;
  4943. };
  4944. F743442D1E1264EE001CC831 /* Debug */ = {
  4945. isa = XCBuildConfiguration;
  4946. buildSettings = {
  4947. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4948. CLANG_ANALYZER_NONNULL = YES;
  4949. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4950. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Picker.entitlements;
  4951. CODE_SIGN_IDENTITY = "iPhone Developer";
  4952. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4953. DEBUG_INFORMATION_FORMAT = dwarf;
  4954. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4955. FRAMEWORK_SEARCH_PATHS = (
  4956. "$(inherited)",
  4957. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4958. );
  4959. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4960. GCC_PREPROCESSOR_DEFINITIONS = (
  4961. DEBUG,
  4962. EXTENSION,
  4963. EXTENSION_PICKER,
  4964. NC,
  4965. );
  4966. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  4967. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Picker.plist";
  4968. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  4969. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4970. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4971. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Picker;
  4972. PRODUCT_NAME = "$(TARGET_NAME)";
  4973. SKIP_INSTALL = YES;
  4974. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG NC";
  4975. SWIFT_OBJC_BRIDGING_HEADER = "Picker/Picker-Bridging-Header.h";
  4976. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4977. SWIFT_VERSION = 3.0;
  4978. TARGETED_DEVICE_FAMILY = "1,2";
  4979. };
  4980. name = Debug;
  4981. };
  4982. F743442E1E1264EE001CC831 /* Release */ = {
  4983. isa = XCBuildConfiguration;
  4984. buildSettings = {
  4985. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4986. CLANG_ANALYZER_NONNULL = YES;
  4987. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  4988. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Picker.entitlements;
  4989. CODE_SIGN_IDENTITY = "iPhone Developer";
  4990. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4991. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4992. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4993. FRAMEWORK_SEARCH_PATHS = (
  4994. "$(inherited)",
  4995. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  4996. );
  4997. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4998. GCC_PREPROCESSOR_DEFINITIONS = (
  4999. EXTENSION,
  5000. EXTENSION_PICKER,
  5001. NC,
  5002. );
  5003. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  5004. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Picker.plist";
  5005. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5006. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  5007. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  5008. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Picker;
  5009. PRODUCT_NAME = "$(TARGET_NAME)";
  5010. SKIP_INSTALL = YES;
  5011. SWIFT_ACTIVE_COMPILATION_CONDITIONS = NC;
  5012. SWIFT_OBJC_BRIDGING_HEADER = "Picker/Picker-Bridging-Header.h";
  5013. SWIFT_VERSION = 3.0;
  5014. TARGETED_DEVICE_FAMILY = "1,2";
  5015. };
  5016. name = Release;
  5017. };
  5018. F743442F1E1264EE001CC831 /* Debug */ = {
  5019. isa = XCBuildConfiguration;
  5020. buildSettings = {
  5021. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  5022. CLANG_ANALYZER_NONNULL = YES;
  5023. CLANG_ENABLE_MODULES = YES;
  5024. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  5025. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/PickerFileProvider.entitlements;
  5026. CODE_SIGN_IDENTITY = "iPhone Developer";
  5027. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  5028. DEBUG_INFORMATION_FORMAT = dwarf;
  5029. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  5030. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  5031. GCC_PREPROCESSOR_DEFINITIONS = (
  5032. DEBUG,
  5033. EXTENSION,
  5034. NC,
  5035. );
  5036. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/PickerFileProvider.plist";
  5037. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5038. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  5039. LIBRARY_SEARCH_PATHS = "$(inherited)";
  5040. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.PickerFileProvider;
  5041. PRODUCT_NAME = "$(TARGET_NAME)";
  5042. SKIP_INSTALL = YES;
  5043. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG NC";
  5044. SWIFT_OBJC_BRIDGING_HEADER = "PickerFileProvider/PickerFileProvider-Bridging-Header.h";
  5045. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  5046. SWIFT_VERSION = 3.0;
  5047. TARGETED_DEVICE_FAMILY = "1,2";
  5048. };
  5049. name = Debug;
  5050. };
  5051. F74344301E1264EE001CC831 /* Release */ = {
  5052. isa = XCBuildConfiguration;
  5053. buildSettings = {
  5054. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  5055. CLANG_ANALYZER_NONNULL = YES;
  5056. CLANG_ENABLE_MODULES = YES;
  5057. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  5058. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/PickerFileProvider.entitlements;
  5059. CODE_SIGN_IDENTITY = "iPhone Developer";
  5060. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  5061. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  5062. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  5063. FRAMEWORK_SEARCH_PATHS = "$(inherited)";
  5064. GCC_PREPROCESSOR_DEFINITIONS = (
  5065. EXTENSION,
  5066. NC,
  5067. );
  5068. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/PickerFileProvider.plist";
  5069. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5070. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  5071. LIBRARY_SEARCH_PATHS = "$(inherited)";
  5072. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.PickerFileProvider;
  5073. PRODUCT_NAME = "$(TARGET_NAME)";
  5074. SKIP_INSTALL = YES;
  5075. SWIFT_ACTIVE_COMPILATION_CONDITIONS = NC;
  5076. SWIFT_OBJC_BRIDGING_HEADER = "PickerFileProvider/PickerFileProvider-Bridging-Header.h";
  5077. SWIFT_VERSION = 3.0;
  5078. TARGETED_DEVICE_FAMILY = "1,2";
  5079. };
  5080. name = Release;
  5081. };
  5082. F77B0F9B1D118A16002130FE /* Debug */ = {
  5083. isa = XCBuildConfiguration;
  5084. buildSettings = {
  5085. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5086. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  5087. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  5088. CLANG_ENABLE_MODULES = YES;
  5089. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  5090. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  5091. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  5092. CURRENT_PROJECT_VERSION = "";
  5093. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  5094. ENABLE_BITCODE = YES;
  5095. FRAMEWORK_SEARCH_PATHS = (
  5096. "$(inherited)",
  5097. "$(PROJECT_DIR)\"/Libraries external/Analytics\"",
  5098. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  5099. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  5100. );
  5101. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  5102. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  5103. GCC_PREPROCESSOR_DEFINITIONS = (
  5104. "$(inherited)",
  5105. NC,
  5106. );
  5107. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  5108. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  5109. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5110. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  5111. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  5112. OTHER_LDFLAGS = (
  5113. "-Obj-C",
  5114. "-all_load",
  5115. );
  5116. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  5117. PRODUCT_NAME = "$(TARGET_NAME)";
  5118. PROVISIONING_PROFILE = "";
  5119. PROVISIONING_PROFILE_SPECIFIER = "";
  5120. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  5121. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  5122. SWIFT_VERSION = 3.0;
  5123. TARGETED_DEVICE_FAMILY = "1,2";
  5124. USE_HEADERMAP = YES;
  5125. VERSIONING_SYSTEM = "";
  5126. };
  5127. name = Debug;
  5128. };
  5129. F77B0F9C1D118A16002130FE /* Release */ = {
  5130. isa = XCBuildConfiguration;
  5131. buildSettings = {
  5132. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5133. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  5134. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  5135. CLANG_ENABLE_MODULES = YES;
  5136. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  5137. CODE_SIGN_IDENTITY = "Apple Development IOS Push Services: it.twsweb.Nextcloud";
  5138. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  5139. COPY_PHASE_STRIP = NO;
  5140. CURRENT_PROJECT_VERSION = "";
  5141. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  5142. ENABLE_BITCODE = YES;
  5143. FRAMEWORK_SEARCH_PATHS = (
  5144. "$(inherited)",
  5145. "$(PROJECT_DIR)\"/Libraries external/Analytics\"",
  5146. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  5147. "$(PROJECT_DIR)\"/Libraries external/Realm\"",
  5148. );
  5149. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  5150. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  5151. GCC_PREPROCESSOR_DEFINITIONS = (
  5152. "$(inherited)",
  5153. NC,
  5154. );
  5155. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  5156. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  5157. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5158. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  5159. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  5160. OTHER_LDFLAGS = (
  5161. "-Obj-C",
  5162. "-all_load",
  5163. );
  5164. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  5165. PRODUCT_NAME = "$(TARGET_NAME)";
  5166. PROVISIONING_PROFILE = "";
  5167. PROVISIONING_PROFILE_SPECIFIER = "";
  5168. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  5169. SWIFT_VERSION = 3.0;
  5170. TARGETED_DEVICE_FAMILY = "1,2";
  5171. USE_HEADERMAP = YES;
  5172. VERSIONING_SYSTEM = "";
  5173. };
  5174. name = Release;
  5175. };
  5176. F7F67BC91A24D27800EE80DA /* Debug */ = {
  5177. isa = XCBuildConfiguration;
  5178. buildSettings = {
  5179. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5180. ALWAYS_SEARCH_USER_PATHS = NO;
  5181. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  5182. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  5183. CLANG_CXX_LIBRARY = "libc++";
  5184. CLANG_ENABLE_MODULES = YES;
  5185. CLANG_ENABLE_OBJC_ARC = YES;
  5186. CLANG_WARN_BOOL_CONVERSION = YES;
  5187. CLANG_WARN_CONSTANT_CONVERSION = YES;
  5188. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  5189. CLANG_WARN_EMPTY_BODY = YES;
  5190. CLANG_WARN_ENUM_CONVERSION = YES;
  5191. CLANG_WARN_INFINITE_RECURSION = YES;
  5192. CLANG_WARN_INT_CONVERSION = YES;
  5193. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  5194. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  5195. CLANG_WARN_UNREACHABLE_CODE = YES;
  5196. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  5197. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  5198. COPY_PHASE_STRIP = NO;
  5199. DEFINES_MODULE = YES;
  5200. ENABLE_STRICT_OBJC_MSGSEND = YES;
  5201. ENABLE_TESTABILITY = YES;
  5202. GCC_C_LANGUAGE_STANDARD = gnu99;
  5203. GCC_DYNAMIC_NO_PIC = NO;
  5204. GCC_NO_COMMON_BLOCKS = YES;
  5205. GCC_OPTIMIZATION_LEVEL = 0;
  5206. GCC_PREPROCESSOR_DEFINITIONS = (
  5207. "DEBUG=1",
  5208. "$(inherited)",
  5209. );
  5210. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  5211. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  5212. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  5213. GCC_WARN_UNDECLARED_SELECTOR = YES;
  5214. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  5215. GCC_WARN_UNUSED_FUNCTION = YES;
  5216. GCC_WARN_UNUSED_VARIABLE = YES;
  5217. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5218. MTL_ENABLE_DEBUG_INFO = YES;
  5219. ONLY_ACTIVE_ARCH = YES;
  5220. OTHER_LDFLAGS = (
  5221. "-Obj-C",
  5222. "-all_load",
  5223. );
  5224. SDKROOT = iphoneos;
  5225. };
  5226. name = Debug;
  5227. };
  5228. F7F67BCA1A24D27800EE80DA /* Release */ = {
  5229. isa = XCBuildConfiguration;
  5230. buildSettings = {
  5231. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  5232. ALWAYS_SEARCH_USER_PATHS = NO;
  5233. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  5234. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  5235. CLANG_CXX_LIBRARY = "libc++";
  5236. CLANG_ENABLE_MODULES = YES;
  5237. CLANG_ENABLE_OBJC_ARC = YES;
  5238. CLANG_WARN_BOOL_CONVERSION = YES;
  5239. CLANG_WARN_CONSTANT_CONVERSION = YES;
  5240. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  5241. CLANG_WARN_EMPTY_BODY = YES;
  5242. CLANG_WARN_ENUM_CONVERSION = YES;
  5243. CLANG_WARN_INFINITE_RECURSION = YES;
  5244. CLANG_WARN_INT_CONVERSION = YES;
  5245. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  5246. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  5247. CLANG_WARN_UNREACHABLE_CODE = YES;
  5248. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  5249. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  5250. COPY_PHASE_STRIP = NO;
  5251. DEFINES_MODULE = YES;
  5252. ENABLE_NS_ASSERTIONS = NO;
  5253. ENABLE_STRICT_OBJC_MSGSEND = YES;
  5254. GCC_C_LANGUAGE_STANDARD = gnu99;
  5255. GCC_NO_COMMON_BLOCKS = YES;
  5256. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  5257. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  5258. GCC_WARN_UNDECLARED_SELECTOR = YES;
  5259. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  5260. GCC_WARN_UNUSED_FUNCTION = YES;
  5261. GCC_WARN_UNUSED_VARIABLE = YES;
  5262. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  5263. MTL_ENABLE_DEBUG_INFO = NO;
  5264. OTHER_LDFLAGS = (
  5265. "-Obj-C",
  5266. "-all_load",
  5267. );
  5268. SDKROOT = iphoneos;
  5269. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  5270. VALIDATE_PRODUCT = YES;
  5271. };
  5272. name = Release;
  5273. };
  5274. /* End XCBuildConfiguration section */
  5275. /* Begin XCConfigurationList section */
  5276. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  5277. isa = XCConfigurationList;
  5278. buildConfigurations = (
  5279. F7145A261D12E3B700CAFEEC /* Debug */,
  5280. F7145A271D12E3B700CAFEEC /* Release */,
  5281. );
  5282. defaultConfigurationIsVisible = 0;
  5283. defaultConfigurationName = Release;
  5284. };
  5285. F743443B1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "PickerFileProvider" */ = {
  5286. isa = XCConfigurationList;
  5287. buildConfigurations = (
  5288. F743442F1E1264EE001CC831 /* Debug */,
  5289. F74344301E1264EE001CC831 /* Release */,
  5290. );
  5291. defaultConfigurationIsVisible = 0;
  5292. defaultConfigurationName = Release;
  5293. };
  5294. F743443C1E1264EE001CC831 /* Build configuration list for PBXNativeTarget "Picker" */ = {
  5295. isa = XCConfigurationList;
  5296. buildConfigurations = (
  5297. F743442D1E1264EE001CC831 /* Debug */,
  5298. F743442E1E1264EE001CC831 /* Release */,
  5299. );
  5300. defaultConfigurationIsVisible = 0;
  5301. defaultConfigurationName = Release;
  5302. };
  5303. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  5304. isa = XCConfigurationList;
  5305. buildConfigurations = (
  5306. F77B0F9B1D118A16002130FE /* Debug */,
  5307. F77B0F9C1D118A16002130FE /* Release */,
  5308. );
  5309. defaultConfigurationIsVisible = 0;
  5310. defaultConfigurationName = Release;
  5311. };
  5312. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  5313. isa = XCConfigurationList;
  5314. buildConfigurations = (
  5315. F7F67BC91A24D27800EE80DA /* Debug */,
  5316. F7F67BCA1A24D27800EE80DA /* Release */,
  5317. );
  5318. defaultConfigurationIsVisible = 0;
  5319. defaultConfigurationName = Release;
  5320. };
  5321. /* End XCConfigurationList section */
  5322. /* Begin XCVersionGroup section */
  5323. F78088E51DD3A1DB005C5A7C /* cryptocloud.xcdatamodeld */ = {
  5324. isa = XCVersionGroup;
  5325. children = (
  5326. F72651E61ED03F4B002231E0 /* cryptocloud 10.xcdatamodel */,
  5327. F77EB61C1EC07913003F814F /* cryptocloud 9.xcdatamodel */,
  5328. F76B3CDC1EAE4D9100921AC9 /* cryptocloud 8.xcdatamodel */,
  5329. F7C00D4A1E2D10BB0032160B /* cryptocloud 7.xcdatamodel */,
  5330. F7BFA4541E0693EE0010E44C /* cryptocloud 5.xcdatamodel */,
  5331. F78088E61DD3A1DB005C5A7C /* cryptocloud 2.xcdatamodel */,
  5332. F78088E71DD3A1DB005C5A7C /* cryptocloud 3.xcdatamodel */,
  5333. F78088E81DD3A1DB005C5A7C /* cryptocloud 4.xcdatamodel */,
  5334. F78088E91DD3A1DB005C5A7C /* cryptocloud.xcdatamodel */,
  5335. );
  5336. currentVersion = F72651E61ED03F4B002231E0 /* cryptocloud 10.xcdatamodel */;
  5337. path = cryptocloud.xcdatamodeld;
  5338. sourceTree = "<group>";
  5339. versionGroupType = wrapper.xcdatamodel;
  5340. };
  5341. /* End XCVersionGroup section */
  5342. };
  5343. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  5344. }