project.pbxproj 351 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  10. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  11. 2C1D5D7723E2DE5F00334ABB /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  12. 2C1D5D7823E2DE6A00334ABB /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  13. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  14. 2C1D5D7A23E2DEBF00334ABB /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  15. 2C1D5D7B23E2DED200334ABB /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  16. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
  17. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  18. 2C59AC5823E2DFEE00733BE8 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  19. 2C59AC5923E2E00F00733BE8 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  20. 2C59AC5A23E2E01A00733BE8 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  21. 2C59AC5B23E2E02700733BE8 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  22. 2C59AC5C23E2E03400733BE8 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  23. 2CB7D1C923E2E40B00376EF9 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  24. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  25. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  26. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */; };
  27. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */; };
  28. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */; };
  29. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  30. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */; };
  31. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */; };
  32. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */; };
  33. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  34. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  35. F70022B31EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  36. F70022B41EC4C9100080073F /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  37. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  38. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  39. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  40. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  41. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  42. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  43. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  44. F70022C01EC4C9100080073F /* 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. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  48. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  49. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  50. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  51. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  52. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  53. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  54. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  55. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  56. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  57. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  58. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  59. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  60. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  61. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  62. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  63. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  64. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  65. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  66. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  67. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  68. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  69. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  70. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  71. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  72. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  73. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  74. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  75. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  76. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F700510222DF6897003A3356 /* Parchment.framework */; };
  77. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  78. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  79. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */; };
  80. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEC2199E55F003F38DA /* SVGKit.framework */; };
  81. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */; };
  82. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */; };
  83. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  84. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  85. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  86. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  87. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  88. F70CEF5723E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  89. F70CEF5823E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  90. F70CEF5923E9C7E50007035B /* UIColor+adjust.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */; };
  91. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */; };
  92. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
  93. F710D1F724057C9400A6033D /* NCDetailNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */; };
  94. F710D1F924057C9D00A6033D /* NCDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F824057C9D00A6033D /* NCDetailViewController.swift */; };
  95. F710D1FE24057E5E00A6033D /* NCActionSheetHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */; };
  96. F710D1FF24057E5E00A6033D /* NCActionSheetHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */; };
  97. F710D20024057E5E00A6033D /* NCActionSheetHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */; };
  98. F710D2022405826100A6033D /* NCDetailNavigationController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */; };
  99. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */; };
  100. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  101. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  102. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  103. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  104. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C0F46F1C8880540059EC54 /* ShareViewController.m */; };
  105. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  106. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  107. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  108. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  109. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  110. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  111. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7296A661C8880ED001A7809 /* CCloadItemData.swift */; };
  112. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  113. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  114. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A181EE590930086BD69 /* NCShares.m */; };
  115. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7169A1A1EE590930086BD69 /* NCSharesCell.m */; };
  116. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7169A1B1EE590930086BD69 /* NCSharesCell.xib */; };
  117. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F716FE7723795E5000FABE50 /* NCCommunication.framework */; settings = {ATTRIBUTES = (Required, ); }; };
  118. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */; };
  119. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  120. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */ = {isa = PBXBuildFile; fileRef = F722814223C8C34500C41898 /* NCRichWorkspace.xib */; };
  121. F72382C02295856A005B8A07 /* FirebaseMLVisionTextModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */; };
  122. F72382C22295856A005B8A07 /* GoogleMVTextDetectorResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */; };
  123. F72382C32295856A005B8A07 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */; };
  124. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  125. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7267A81225DFCE100D6DB7D /* AFNetworking.framework */; };
  126. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  127. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */; };
  128. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */; };
  129. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  130. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  131. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F72E0B9C21AD60BC00898D7B /* WeScan.framework */; };
  132. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  133. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  134. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */; };
  135. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  136. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  137. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  138. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */; };
  139. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */; };
  140. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */; };
  141. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */; };
  142. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */; };
  143. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */; };
  144. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */; };
  145. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */; };
  146. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EB41F470D9100BBEE4B /* JISFreq.tab */; };
  147. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */; };
  148. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */; };
  149. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */; };
  150. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */; };
  151. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */; };
  152. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */; };
  153. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */; };
  154. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */; };
  155. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */; };
  156. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */; };
  157. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */; };
  158. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */; };
  159. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */; };
  160. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */; };
  161. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */; };
  162. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */; };
  163. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */; };
  164. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */; };
  165. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */; };
  166. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */; };
  167. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */; };
  168. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */; };
  169. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */; };
  170. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */; };
  171. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */; };
  172. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */; };
  173. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */; };
  174. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */; };
  175. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */; };
  176. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */; };
  177. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */; };
  178. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */; };
  179. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */ = {isa = PBXBuildFile; fileRef = F73B4EEA1F470D9100BBEE4B /* symbols.cmake */; };
  180. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */; };
  181. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  182. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  183. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */; };
  184. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  185. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */; };
  186. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  187. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */; };
  188. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  189. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */; };
  190. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  191. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */; };
  192. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  193. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0641E813DFF006E3047 /* BKShiftingView.m */; };
  194. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  195. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */; };
  196. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  197. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */; };
  198. F73D71621F2673C200E233EB /* NCText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D71611F2673C200E233EB /* NCText.swift */; };
  199. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D71631F2674A400E233EB /* NCText.storyboard */; };
  200. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* CCMore.swift */; };
  201. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */; };
  202. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7421EAE2294044B00C4B7C1 /* Accelerate.framework */; };
  203. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  204. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  205. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  206. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  207. F7434B3A20E2403500417916 /* OCActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022671EC4C9100080073F /* OCActivity.m */; };
  208. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022691EC4C9100080073F /* OCCapabilities.m */; };
  209. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226B1EC4C9100080073F /* OCCommunication.m */; };
  210. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */ = {isa = PBXBuildFile; fileRef = F700226E1EC4C9100080073F /* OCExternalSites.m */; };
  211. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022701EC4C9100080073F /* OCFileDto.m */; };
  212. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022731EC4C9100080073F /* OCNotifications.m */; };
  213. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022751EC4C9100080073F /* OCNotificationsAction.m */; };
  214. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022771EC4C9100080073F /* OCRichObjectStrings.m */; };
  215. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022791EC4C9100080073F /* OCSharedDto.m */; };
  216. F7434B4320E2405900417916 /* OCShareUser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227B1EC4C9100080073F /* OCShareUser.m */; };
  217. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F700227D1EC4C9100080073F /* OCUserProfile.m */; };
  218. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022801EC4C9100080073F /* NSDate+ISO8601.m */; };
  219. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022821EC4C9100080073F /* NSDate+RFC1123.m */; };
  220. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */; };
  221. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022861EC4C9100080073F /* OCWebDAVClient.m */; };
  222. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */; };
  223. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */; };
  224. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022911EC4C9100080073F /* OCXMLSharedParser.m */; };
  225. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */ = {isa = PBXBuildFile; fileRef = F700229D1EC4C9100080073F /* NSString+Encode.m */; };
  226. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */ = {isa = PBXBuildFile; fileRef = F70022A01EC4C9100080073F /* UtilsFramework.m */; };
  227. F7434B5620E2412900417916 /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  228. F7434B5820E241B100417916 /* CCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F732BA041D76CE1500E9878B /* CCNetworking.m */; };
  229. F7434B5920E241B600417916 /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  230. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  231. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  232. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  233. F7434B5D20E241E800417916 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  234. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  235. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  236. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  237. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  238. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F745B250222D871800346520 /* QRCodeReader.framework */; };
  239. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  240. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  241. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */; };
  242. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749C10823C4A5330027D966 /* NCIntroViewController.swift */; };
  243. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F749C10923C4A5330027D966 /* NCIntro.storyboard */; };
  244. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */; };
  245. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  246. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74AFCE822E8B024003DE61F /* FSCalendar.framework */; };
  247. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */; };
  248. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  249. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */ = {isa = PBXBuildFile; fileRef = F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */; };
  250. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  251. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  252. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037441DBFA91A008FB480 /* ALView+PureLayout.m */; };
  253. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */; };
  254. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */; };
  255. F75153242226920200323DDC /* FastScroll.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F75153232226920200323DDC /* FastScroll.framework */; };
  256. F754EEC921772B6100BB1CDF /* DropdownItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC421772B6100BB1CDF /* DropdownItem.swift */; };
  257. F754EECA21772B6100BB1CDF /* DropUpMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC521772B6100BB1CDF /* DropUpMenu.swift */; };
  258. F754EECB21772B6100BB1CDF /* DropdownMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC721772B6100BB1CDF /* DropdownMenu.swift */; };
  259. F754EECC21772B6100BB1CDF /* SectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = F754EEC821772B6100BB1CDF /* SectionHeader.swift */; };
  260. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  261. F758B45A212C564000515F55 /* Scan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* Scan.storyboard */; };
  262. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* ScanCell.swift */; };
  263. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* ScanCollectionView.swift */; };
  264. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  265. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  266. F75A9EE823796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  267. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  268. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */; };
  269. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  270. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */; };
  271. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */; };
  272. F760F77B21F21F61006B1A73 /* icomoon.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F760F75721F21F61006B1A73 /* icomoon.ttf */; };
  273. F760F77C21F21F61006B1A73 /* StickersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F75821F21F61006B1A73 /* StickersViewController.xib */; };
  274. F760F77D21F21F61006B1A73 /* ColorsCollectionViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */; };
  275. F760F77E21F21F61006B1A73 /* PhotoEditor+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */; };
  276. F760F77F21F21F61006B1A73 /* PhotoEditor+Controls.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */; };
  277. F760F78021F21F61006B1A73 /* PhotoEditorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */; };
  278. F760F78121F21F61006B1A73 /* PhotoEditor+StickersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */; };
  279. F760F78221F21F61006B1A73 /* PhotoEditor+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */; };
  280. F760F78321F21F61006B1A73 /* UIImageView+Alpha.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */; };
  281. F760F78421F21F61006B1A73 /* ColorCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */; };
  282. F760F78521F21F61006B1A73 /* EmojiCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */; };
  283. F760F78621F21F61006B1A73 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */; };
  284. F760F78721F21F61006B1A73 /* PhotoEditor+Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */; };
  285. F760F78821F21F61006B1A73 /* PhotoCropEditorBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */; };
  286. F760F78921F21F61006B1A73 /* UIView+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76621F21F61006B1A73 /* UIView+Image.swift */; };
  287. F760F78A21F21F61006B1A73 /* UIImage+Size.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76721F21F61006B1A73 /* UIImage+Size.swift */; };
  288. F760F78B21F21F61006B1A73 /* UIImage+Crop.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76821F21F61006B1A73 /* UIImage+Crop.swift */; };
  289. F760F78C21F21F61006B1A73 /* StickersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76921F21F61006B1A73 /* StickersViewController.swift */; };
  290. F760F78D21F21F61006B1A73 /* Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76A21F21F61006B1A73 /* Protocols.swift */; };
  291. F760F78E21F21F61006B1A73 /* PhotoEditor+Drawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */; };
  292. F760F78F21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */; };
  293. F760F79021F21F61006B1A73 /* PhotoCropEditorBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */; };
  294. F760F79121F21F61006B1A73 /* EmojiCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */; };
  295. F760F79221F21F61006B1A73 /* EmojisCollectionViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */; };
  296. F760F79321F21F61006B1A73 /* CropView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77021F21F61006B1A73 /* CropView.swift */; };
  297. F760F79421F21F61006B1A73 /* ResizeControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77121F21F61006B1A73 /* ResizeControl.swift */; };
  298. F760F79521F21F61006B1A73 /* PhotoEditor+Gestures.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */; };
  299. F760F79621F21F61006B1A73 /* PhotoEditorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */; };
  300. F760F79721F21F61006B1A73 /* StickerCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */; };
  301. F760F79821F21F61006B1A73 /* StickerCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */; };
  302. F760F79921F21F61006B1A73 /* CropViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77621F21F61006B1A73 /* CropViewController.swift */; };
  303. F760F79A21F21F61006B1A73 /* PhotoEditor+Crop.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */; };
  304. F760F79B21F21F61006B1A73 /* ColorCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */; };
  305. F760F79C21F21F61006B1A73 /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77921F21F61006B1A73 /* GradientView.swift */; };
  306. F760F79D21F21F61006B1A73 /* CropRectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760F77A21F21F61006B1A73 /* CropRectView.swift */; };
  307. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA41EACB66200B38484 /* XLFormBaseCell.m */; };
  308. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA61EACB66200B38484 /* XLFormButtonCell.m */; };
  309. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAA81EACB66200B38484 /* XLFormCheckCell.m */; };
  310. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAA1EACB66200B38484 /* XLFormDateCell.m */; };
  311. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */; };
  312. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAAF1EACB66200B38484 /* XLFormImageCell.m */; };
  313. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */; };
  314. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */; };
  315. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB61EACB66200B38484 /* XLFormPickerCell.m */; };
  316. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */; };
  317. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */; };
  318. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABC1EACB66200B38484 /* XLFormSliderCell.m */; };
  319. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */; };
  320. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */; };
  321. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */; };
  322. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */; };
  323. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */; };
  324. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */; };
  325. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACC1EACB66200B38484 /* XLFormViewController.m */; };
  326. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CACF1EACB66200B38484 /* XLFormDescriptor.m */; };
  327. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */; };
  328. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */; };
  329. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */; };
  330. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */; };
  331. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */; };
  332. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */; };
  333. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */; };
  334. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */; };
  335. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */; };
  336. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */; };
  337. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */; };
  338. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEA1EACB66200B38484 /* XLFormTextView.m */; };
  339. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */; };
  340. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */; };
  341. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF11EACB66200B38484 /* XLFormValidator.m */; };
  342. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */ = {isa = PBXBuildFile; fileRef = F762CAF41EACB66200B38484 /* XLForm.m */; };
  343. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F762CAF51EACB66200B38484 /* XLForm.bundle */; };
  344. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */; };
  345. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */; };
  346. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  347. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  348. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608623BF806C00765969 /* QuickLayout.framework */; };
  349. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F765608A23BF80A400765969 /* SwiftEntryKit.framework */; };
  350. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  351. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  352. F765609123BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  353. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  354. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  355. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  356. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  357. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  358. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */; };
  359. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  360. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */; };
  361. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454322E9F142000A798A /* NCShareUserMenuView.swift */; };
  362. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  363. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  364. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  365. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  366. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  367. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  368. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  369. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  370. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  371. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  372. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  373. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F774264022EB3F7300B23912 /* DropDown.framework */; };
  374. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */; };
  375. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  376. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  377. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */; };
  378. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */; };
  379. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */; };
  380. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */; };
  381. F774F5D12407F4EF000C5E86 /* NCViewerImageView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774F5CC2407F4EF000C5E86 /* NCViewerImageView.xib */; };
  382. F774F5D22407F4EF000C5E86 /* NCViewerImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F774F5CD2407F4EF000C5E86 /* NCViewerImageView.swift */; };
  383. F774F5D32407F4EF000C5E86 /* NCViewerImageCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774F5CE2407F4EF000C5E86 /* NCViewerImageCollectionViewCell.xib */; };
  384. F774F5D42407F4EF000C5E86 /* NCViewerImageCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F774F5CF2407F4EF000C5E86 /* NCViewerImageCollectionViewCell.swift */; };
  385. F774F5D52407F4EF000C5E86 /* NCViewerImageNibLoadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F774F5D02407F4EF000C5E86 /* NCViewerImageNibLoadingView.swift */; };
  386. F774F5D72407F547000C5E86 /* NCViewerImageAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = F774F5D62407F547000C5E86 /* NCViewerImageAsset.swift */; };
  387. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */ = {isa = PBXBuildFile; fileRef = F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */; };
  388. F77B0DF41D118A16002130FE /* CCMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211FB1BAC56E9003FC03E /* CCMain.m */; };
  389. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  390. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */; };
  391. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */; };
  392. F77B0E141D118A16002130FE /* CCError.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B881C638A4C00DC4301 /* CCError.m */; };
  393. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F02B41C889183008DAB36 /* AFViewShaker.m */; };
  394. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = F76C3B841C6388BC00DC4301 /* CCGraphics.m */; };
  395. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BFCCC11B68C21900548E76 /* CCManageLocation.m */; };
  396. F77B0E301D118A16002130FE /* CCHud.m in Sources */ = {isa = PBXBuildFile; fileRef = F7514EDB1C7B1336008F3338 /* CCHud.m */; };
  397. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  398. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  399. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* CCSettings.m */; };
  400. F77B0E671D118A16002130FE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F05261C889184008DAB36 /* Reachability.m */; };
  401. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */ = {isa = PBXBuildFile; fileRef = F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */; };
  402. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */; };
  403. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  404. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */; };
  405. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */ = {isa = PBXBuildFile; fileRef = F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */; };
  406. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */ = {isa = PBXBuildFile; fileRef = F70211F51BAC56E9003FC03E /* CCCellMain.m */; };
  407. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  408. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */ = {isa = PBXBuildFile; fileRef = F777F0311C29717F00CE81CB /* PHAsset+Utility.m */; };
  409. F77B0ED91D118A16002130FE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F67BAD1A24D27800EE80DA /* main.m */; };
  410. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */; };
  411. F77B0F481D118A16002130FE /* synchronized.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344751BF259A800188725 /* synchronized.gif */; };
  412. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */ = {isa = PBXBuildFile; fileRef = F76344761BF259A800188725 /* synchronizedcrypto.gif */; };
  413. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  414. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  415. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  416. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F61BAC56E9003FC03E /* CCCellMain.xib */; };
  417. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */; };
  418. F77D49A91DC238E500CDC568 /* loading.gif in Resources */ = {isa = PBXBuildFile; fileRef = F77D49A71DC238E500CDC568 /* loading.gif */; };
  419. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A54C351C6267B500E2C8BF /* CCExifGeo.m */; };
  420. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  421. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  422. F781996922636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  423. F781996A22636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  424. F781996B22636BFA00EBDF6A /* HCFeatures.m in Sources */ = {isa = PBXBuildFile; fileRef = F781996822636BFA00EBDF6A /* HCFeatures.m */; };
  425. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  426. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  427. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  428. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  429. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F78AA20521F783E900D0F205 /* SwiftRichString.framework */; };
  430. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  431. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  432. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  433. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  434. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell.swift */; };
  435. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  436. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4E2190440D0088454D /* NCLayout.swift */; };
  437. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  438. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  439. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD55219047E90088454D /* NCSectionHeader.xib */; };
  440. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  441. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */ = {isa = PBXBuildFile; fileRef = F78B9682234F785300F54315 /* NCSelectDestination.m */; };
  442. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78B9684234F785300F54315 /* NCSelectDestination.storyboard */; };
  443. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */; };
  444. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E7064219F096B006F23E4 /* NCAvatar.swift */; };
  445. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  446. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  447. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  448. F79630EE215527D40015EEA5 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79630ED215527D40015EEA5 /* NCViewerMedia.swift */; };
  449. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */; };
  450. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */; };
  451. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79918A021997F9000C2E308 /* UICKeyChainStore.framework */; };
  452. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  453. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  454. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3214F1E9E2A070069AD1B /* CCFavorites.m */; };
  455. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */; };
  456. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  457. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377141EB2364A002856D3 /* Crashlytics.framework */; };
  458. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7A377151EB2364A002856D3 /* Fabric.framework */; };
  459. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  460. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  461. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  462. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */; };
  463. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */; };
  464. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B174C722FAC0A8000B7579 /* AppDelegate.m */; };
  465. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */; };
  466. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F7B2DEED1F976785007CF4D2 /* english.txt */; };
  467. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B4F1C81F44356F00B53B42 /* NCUchardet.m */; };
  468. F7B6ACD622FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  469. F7B6ACD722FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  470. F7B6ACD822FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */; };
  471. F7B6ACDB22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  472. F7B6ACDC22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  473. F7B6ACDD22FC2D15008AB646 /* NCComments.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B6ACDA22FC2D15008AB646 /* NCComments.m */; };
  474. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */; };
  475. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  476. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  477. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  478. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  479. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF1B401D51E893000854F6 /* CCLogin.m */; };
  480. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */; };
  481. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */; };
  482. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */; };
  483. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF0219994F20004137E /* KTVHTTPCache.framework */; };
  484. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40BF22199978B0004137E /* MBProgressHUD.framework */; };
  485. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C0F2199BA5D0004137E /* Realm.framework */; };
  486. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C40C112199BA620004137E /* RealmSwift.framework */; };
  487. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C5259F1E3B48B700FFE02C /* CCNotification.swift */; };
  488. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */; };
  489. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  490. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  491. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */; };
  492. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */; };
  493. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */; };
  494. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */; };
  495. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */; };
  496. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */; };
  497. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */; };
  498. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */; };
  499. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */; };
  500. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  501. F7D2D127230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  502. F7D2D128230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  503. F7D2D129230804E000FD3ED7 /* NCXMLListParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */; };
  504. F7D4B6852295663D000C2C86 /* GoogleAppMeasurement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */; };
  505. F7D4B6862295663D000C2C86 /* FirebaseCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */; };
  506. F7D4B6872295663D000C2C86 /* FirebaseAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */; };
  507. F7D4B6882295663D000C2C86 /* GoogleUtilities.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */; };
  508. F7D4B6892295663D000C2C86 /* nanopb.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6812295663D000C2C86 /* nanopb.framework */; };
  509. F7D4B68A2295663D000C2C86 /* FIRAnalyticsConnector.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */; };
  510. F7D4B68B2295663D000C2C86 /* FirebaseInstanceID.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */; };
  511. F7D4B68C2295663D000C2C86 /* FirebaseCoreDiagnostics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */; };
  512. F7D4B6952295666E000C2C86 /* Protobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B68E2295666E000C2C86 /* Protobuf.framework */; };
  513. F7D4B6962295666E000C2C86 /* GTMSessionFetcher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */; };
  514. F7D4B6972295666E000C2C86 /* GoogleAPIClientForREST.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */; };
  515. F7D4B6982295666E000C2C86 /* FirebaseMLVision.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */; };
  516. F7D4B6992295666E000C2C86 /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */; };
  517. F7D4B69A2295666E000C2C86 /* FirebaseMLCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */; };
  518. F7D4B69B2295666E000C2C86 /* GoogleMobileVision.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */; };
  519. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D6650620FF341600BFBA9E /* NCMainCommon.swift */; };
  520. F7D91AAA23FBDED60038FC09 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  521. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */; };
  522. F7DBC37F23325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  523. F7DBC38023325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  524. F7DBC38123325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */; };
  525. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */; };
  526. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */; };
  527. F7DFB7E0219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  528. F7DFB7E1219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  529. F7DFB7E2219C312D00680748 /* NCRichDocumentTemplate.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */; };
  530. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */; };
  531. F7DFB7F2219C5C0000680748 /* NCCreateFormUploadFileText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */; };
  532. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */; };
  533. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */; };
  534. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */; };
  535. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */; };
  536. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */; };
  537. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */; };
  538. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareComments.swift */; };
  539. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E9C41820F4CA870040CF18 /* CCTransfers.m */; };
  540. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */; };
  541. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CAF1E5B14C700E19C62 /* ImageError.png */; };
  542. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */; };
  543. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */; };
  544. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */; };
  545. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */; };
  546. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */; };
  547. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */; };
  548. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */; };
  549. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */; };
  550. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */; };
  551. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */; };
  552. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */; };
  553. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */; };
  554. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */; };
  555. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */; };
  556. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */; };
  557. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */; };
  558. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */; };
  559. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */; };
  560. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */; };
  561. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */; };
  562. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */; };
  563. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */; };
  564. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */; };
  565. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */; };
  566. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */; };
  567. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */; };
  568. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */; };
  569. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */; };
  570. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */; };
  571. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */; };
  572. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */; };
  573. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */; };
  574. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */; };
  575. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CD81E5B14C700E19C62 /* MWPhoto.m */; };
  576. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */; };
  577. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */; };
  578. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */; };
  579. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */; };
  580. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */; };
  581. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  582. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  583. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */; };
  584. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */; };
  585. F7FB1D3E215E191D00D669EA /* NCViewerDocumentWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */; };
  586. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = F7FC7D551DC1F93800BB2C6A /* libz.tbd */; };
  587. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */; };
  588. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */; };
  589. /* End PBXBuildFile section */
  590. /* Begin PBXContainerItemProxy section */
  591. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  592. isa = PBXContainerItemProxy;
  593. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  594. proxyType = 1;
  595. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  596. remoteInfo = "Notification Service Extension";
  597. };
  598. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  599. isa = PBXContainerItemProxy;
  600. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  601. proxyType = 1;
  602. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  603. remoteInfo = "Share Ext Nextcloud";
  604. };
  605. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  606. isa = PBXContainerItemProxy;
  607. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  608. proxyType = 1;
  609. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  610. remoteInfo = "File Provider Extension";
  611. };
  612. /* End PBXContainerItemProxy section */
  613. /* Begin PBXCopyFilesBuildPhase section */
  614. F736B556234DCF7C008A5C9F /* Embed Frameworks */ = {
  615. isa = PBXCopyFilesBuildPhase;
  616. buildActionMask = 2147483647;
  617. dstPath = "";
  618. dstSubfolderSpec = 10;
  619. files = (
  620. );
  621. name = "Embed Frameworks";
  622. runOnlyForDeploymentPostprocessing = 0;
  623. };
  624. F736B559234DCF93008A5C9F /* Embed Frameworks */ = {
  625. isa = PBXCopyFilesBuildPhase;
  626. buildActionMask = 2147483647;
  627. dstPath = "";
  628. dstSubfolderSpec = 10;
  629. files = (
  630. );
  631. name = "Embed Frameworks";
  632. runOnlyForDeploymentPostprocessing = 0;
  633. };
  634. F77B0F981D118A16002130FE /* Embed App Extensions */ = {
  635. isa = PBXCopyFilesBuildPhase;
  636. buildActionMask = 2147483647;
  637. dstPath = "";
  638. dstSubfolderSpec = 13;
  639. files = (
  640. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed App Extensions */,
  641. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed App Extensions */,
  642. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed App Extensions */,
  643. );
  644. name = "Embed App Extensions";
  645. runOnlyForDeploymentPostprocessing = 0;
  646. };
  647. /* End PBXCopyFilesBuildPhase section */
  648. /* Begin PBXFileReference section */
  649. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  650. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  651. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  652. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  653. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  654. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  655. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  656. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  657. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  658. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainMenuTableViewController.swift; sourceTree = "<group>"; };
  659. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  660. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuPanelController.swift; sourceTree = "<group>"; };
  661. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  662. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCMain+Menu.swift"; sourceTree = "<group>"; };
  663. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CCFavorites+Menu.swift"; sourceTree = "<group>"; };
  664. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
  665. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  666. F70022661EC4C9100080073F /* OCActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCActivity.h; sourceTree = "<group>"; };
  667. F70022671EC4C9100080073F /* OCActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCActivity.m; sourceTree = "<group>"; };
  668. F70022681EC4C9100080073F /* OCCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCapabilities.h; sourceTree = "<group>"; };
  669. F70022691EC4C9100080073F /* OCCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCapabilities.m; sourceTree = "<group>"; };
  670. F700226A1EC4C9100080073F /* OCCommunication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCCommunication.h; sourceTree = "<group>"; };
  671. F700226B1EC4C9100080073F /* OCCommunication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCCommunication.m; sourceTree = "<group>"; };
  672. F700226C1EC4C9100080073F /* OCErrorMsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCErrorMsg.h; sourceTree = "<group>"; };
  673. F700226D1EC4C9100080073F /* OCExternalSites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCExternalSites.h; sourceTree = "<group>"; };
  674. F700226E1EC4C9100080073F /* OCExternalSites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCExternalSites.m; sourceTree = "<group>"; };
  675. F700226F1EC4C9100080073F /* OCFileDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFileDto.h; sourceTree = "<group>"; };
  676. F70022701EC4C9100080073F /* OCFileDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCFileDto.m; sourceTree = "<group>"; };
  677. F70022711EC4C9100080073F /* OCFrameworkConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCFrameworkConstants.h; sourceTree = "<group>"; };
  678. F70022721EC4C9100080073F /* OCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotifications.h; sourceTree = "<group>"; };
  679. F70022731EC4C9100080073F /* OCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotifications.m; sourceTree = "<group>"; };
  680. F70022741EC4C9100080073F /* OCNotificationsAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNotificationsAction.h; sourceTree = "<group>"; };
  681. F70022751EC4C9100080073F /* OCNotificationsAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNotificationsAction.m; sourceTree = "<group>"; };
  682. F70022761EC4C9100080073F /* OCRichObjectStrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCRichObjectStrings.h; sourceTree = "<group>"; };
  683. F70022771EC4C9100080073F /* OCRichObjectStrings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCRichObjectStrings.m; sourceTree = "<group>"; };
  684. F70022781EC4C9100080073F /* OCSharedDto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCSharedDto.h; sourceTree = "<group>"; };
  685. F70022791EC4C9100080073F /* OCSharedDto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCSharedDto.m; sourceTree = "<group>"; };
  686. F700227A1EC4C9100080073F /* OCShareUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCShareUser.h; sourceTree = "<group>"; };
  687. F700227B1EC4C9100080073F /* OCShareUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCShareUser.m; sourceTree = "<group>"; };
  688. F700227C1EC4C9100080073F /* OCUserProfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCUserProfile.h; sourceTree = "<group>"; };
  689. F700227D1EC4C9100080073F /* OCUserProfile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCUserProfile.m; sourceTree = "<group>"; };
  690. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+ISO8601.h"; sourceTree = "<group>"; };
  691. F70022801EC4C9100080073F /* NSDate+ISO8601.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+ISO8601.m"; sourceTree = "<group>"; };
  692. F70022811EC4C9100080073F /* NSDate+RFC1123.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+RFC1123.h"; sourceTree = "<group>"; };
  693. F70022821EC4C9100080073F /* NSDate+RFC1123.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+RFC1123.m"; sourceTree = "<group>"; };
  694. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCHTTPRequestOperation.h; sourceTree = "<group>"; };
  695. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCHTTPRequestOperation.m; sourceTree = "<group>"; };
  696. F70022851EC4C9100080073F /* OCWebDAVClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCWebDAVClient.h; sourceTree = "<group>"; };
  697. F70022861EC4C9100080073F /* OCWebDAVClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCWebDAVClient.m; sourceTree = "<group>"; };
  698. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLServerErrorsParser.h; sourceTree = "<group>"; };
  699. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLServerErrorsParser.m; sourceTree = "<group>"; };
  700. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLShareByLinkParser.h; sourceTree = "<group>"; };
  701. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLShareByLinkParser.m; sourceTree = "<group>"; };
  702. F70022901EC4C9100080073F /* OCXMLSharedParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCXMLSharedParser.h; sourceTree = "<group>"; };
  703. F70022911EC4C9100080073F /* OCXMLSharedParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCXMLSharedParser.m; sourceTree = "<group>"; };
  704. F700229C1EC4C9100080073F /* NSString+Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Encode.h"; sourceTree = "<group>"; };
  705. F700229D1EC4C9100080073F /* NSString+Encode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Encode.m"; sourceTree = "<group>"; };
  706. F700229E1EC4C9100080073F /* OCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCConstants.h; sourceTree = "<group>"; };
  707. F700229F1EC4C9100080073F /* UtilsFramework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsFramework.h; sourceTree = "<group>"; };
  708. F70022A01EC4C9100080073F /* UtilsFramework.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UtilsFramework.m; sourceTree = "<group>"; };
  709. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  710. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  711. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  712. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  713. F70211F51BAC56E9003FC03E /* CCCellMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMain.m; sourceTree = "<group>"; };
  714. F70211F61BAC56E9003FC03E /* CCCellMain.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMain.xib; sourceTree = "<group>"; };
  715. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellMainTransfer.h; sourceTree = "<group>"; };
  716. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellMainTransfer.m; sourceTree = "<group>"; };
  717. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellMainTransfer.xib; sourceTree = "<group>"; };
  718. F70211FA1BAC56E9003FC03E /* CCMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMain.h; sourceTree = "<group>"; };
  719. F70211FB1BAC56E9003FC03E /* CCMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCMain.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  720. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IMImagemeterViewer.swift; sourceTree = "<group>"; };
  721. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  722. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  723. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  724. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  725. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  726. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  727. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  728. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  729. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  730. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  731. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+adjust.swift"; sourceTree = "<group>"; };
  732. F70F02B31C889183008DAB36 /* AFViewShaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFViewShaker.h; sourceTree = "<group>"; };
  733. F70F02B41C889183008DAB36 /* AFViewShaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFViewShaker.m; sourceTree = "<group>"; };
  734. F70F05251C889184008DAB36 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  735. F70F05261C889184008DAB36 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  736. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  737. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  738. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  739. F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
  740. F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDetailNavigationController.swift; sourceTree = "<group>"; };
  741. F710D1F824057C9D00A6033D /* NCDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDetailViewController.swift; sourceTree = "<group>"; };
  742. F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeader.swift; sourceTree = "<group>"; };
  743. F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCActionSheetHeaderView.swift; sourceTree = "<group>"; };
  744. F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCActionSheetHeaderView.xib; sourceTree = "<group>"; };
  745. F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCDetailNavigationController+Menu.swift"; sourceTree = "<group>"; };
  746. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ImagesIntro.xcassets; sourceTree = "<group>"; };
  747. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  748. F7169A171EE590930086BD69 /* NCShares.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCShares.h; sourceTree = "<group>"; };
  749. F7169A181EE590930086BD69 /* NCShares.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCShares.m; sourceTree = "<group>"; };
  750. F7169A191EE590930086BD69 /* NCSharesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSharesCell.h; sourceTree = "<group>"; };
  751. F7169A1A1EE590930086BD69 /* NCSharesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSharesCell.m; sourceTree = "<group>"; };
  752. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSharesCell.xib; sourceTree = "<group>"; };
  753. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  754. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  755. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  756. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+NetworkingDelegate.swift"; sourceTree = "<group>"; };
  757. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  758. F722814223C8C34500C41898 /* NCRichWorkspace.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCRichWorkspace.xib; sourceTree = "<group>"; };
  759. F7229B491DF71BB300E8C4E7 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = SOURCE_ROOT; };
  760. F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLVisionTextModel.framework; sourceTree = "<group>"; };
  761. F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = GoogleMVTextDetectorResources.bundle; sourceTree = "<group>"; };
  762. F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  763. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  764. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  765. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  766. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Notification_Service_Extension.plist; sourceTree = "<group>"; };
  767. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Notification_Service_Extension.entitlements; sourceTree = "<group>"; };
  768. F7296A661C8880ED001A7809 /* CCloadItemData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCloadItemData.swift; sourceTree = "<group>"; };
  769. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheet.h; sourceTree = "<group>"; };
  770. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheet.m; sourceTree = "<group>"; };
  771. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AHKActionSheetViewController.h; sourceTree = "<group>"; };
  772. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AHKActionSheetViewController.m; sourceTree = "<group>"; };
  773. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  774. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  775. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  776. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  777. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+TruncateToWidth.h"; sourceTree = "<group>"; };
  778. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+TruncateToWidth.m"; sourceTree = "<group>"; };
  779. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  780. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  781. F732BA031D76CE1500E9878B /* CCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNetworking.h; sourceTree = "<group>"; };
  782. F732BA041D76CE1500E9878B /* CCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNetworking.m; sourceTree = "<group>"; };
  783. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  784. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  785. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  786. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  787. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  788. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCManageEndToEndEncryption.h; sourceTree = "<group>"; };
  789. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCManageEndToEndEncryption.m; sourceTree = "<group>"; };
  790. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionMediaHeader.xib; sourceTree = "<group>"; };
  791. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Big5Freq.tab; sourceTree = "<group>"; };
  792. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CharDistribution.cpp; sourceTree = "<group>"; };
  793. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CharDistribution.h; sourceTree = "<group>"; };
  794. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
  795. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCKRFreq.tab; sourceTree = "<group>"; };
  796. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EUCTWFreq.tab; sourceTree = "<group>"; };
  797. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GB2312Freq.tab; sourceTree = "<group>"; };
  798. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = JISFreq.tab; sourceTree = "<group>"; };
  799. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JpCntx.cpp; sourceTree = "<group>"; };
  800. F73B4EB61F470D9100BBEE4B /* JpCntx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JpCntx.h; sourceTree = "<group>"; };
  801. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangArabicModel.cpp; sourceTree = "<group>"; };
  802. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangBulgarianModel.cpp; sourceTree = "<group>"; };
  803. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangDanishModel.cpp; sourceTree = "<group>"; };
  804. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangEsperantoModel.cpp; sourceTree = "<group>"; };
  805. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangFrenchModel.cpp; sourceTree = "<group>"; };
  806. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGermanModel.cpp; sourceTree = "<group>"; };
  807. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangGreekModel.cpp; sourceTree = "<group>"; };
  808. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHebrewModel.cpp; sourceTree = "<group>"; };
  809. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangHungarianModel.cpp; sourceTree = "<group>"; };
  810. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangRussianModel.cpp; sourceTree = "<group>"; };
  811. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangSpanishModel.cpp; sourceTree = "<group>"; };
  812. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangThaiModel.cpp; sourceTree = "<group>"; };
  813. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangTurkishModel.cpp; sourceTree = "<group>"; };
  814. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LangVietnameseModel.cpp; sourceTree = "<group>"; };
  815. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsBig5Prober.cpp; sourceTree = "<group>"; };
  816. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsBig5Prober.h; sourceTree = "<group>"; };
  817. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsCharSetProber.cpp; sourceTree = "<group>"; };
  818. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCharSetProber.h; sourceTree = "<group>"; };
  819. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsCodingStateMachine.h; sourceTree = "<group>"; };
  820. F73B4ECB1F470D9100BBEE4B /* nscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nscore.h; sourceTree = "<group>"; };
  821. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscCharsetProber.cpp; sourceTree = "<group>"; };
  822. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEscCharsetProber.h; sourceTree = "<group>"; };
  823. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEscSM.cpp; sourceTree = "<group>"; };
  824. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCJPProber.cpp; sourceTree = "<group>"; };
  825. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCJPProber.h; sourceTree = "<group>"; };
  826. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCKRProber.cpp; sourceTree = "<group>"; };
  827. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCKRProber.h; sourceTree = "<group>"; };
  828. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsEUCTWProber.cpp; sourceTree = "<group>"; };
  829. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsEUCTWProber.h; sourceTree = "<group>"; };
  830. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsGB2312Prober.cpp; sourceTree = "<group>"; };
  831. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsGB2312Prober.h; sourceTree = "<group>"; };
  832. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsHebrewProber.cpp; sourceTree = "<group>"; };
  833. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsHebrewProber.h; sourceTree = "<group>"; };
  834. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsLatin1Prober.cpp; sourceTree = "<group>"; };
  835. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsLatin1Prober.h; sourceTree = "<group>"; };
  836. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSGroupProber.cpp; sourceTree = "<group>"; };
  837. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsMBCSGroupProber.h; sourceTree = "<group>"; };
  838. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsMBCSSM.cpp; sourceTree = "<group>"; };
  839. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsPkgInt.h; sourceTree = "<group>"; };
  840. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCharSetProber.cpp; sourceTree = "<group>"; };
  841. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCharSetProber.h; sourceTree = "<group>"; };
  842. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSBCSGroupProber.cpp; sourceTree = "<group>"; };
  843. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSBCSGroupProber.h; sourceTree = "<group>"; };
  844. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsSJISProber.cpp; sourceTree = "<group>"; };
  845. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsSJISProber.h; sourceTree = "<group>"; };
  846. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUniversalDetector.cpp; sourceTree = "<group>"; };
  847. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUniversalDetector.h; sourceTree = "<group>"; };
  848. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nsUTF8Prober.cpp; sourceTree = "<group>"; };
  849. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nsUTF8Prober.h; sourceTree = "<group>"; };
  850. F73B4EE91F470D9100BBEE4B /* prmem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prmem.h; sourceTree = "<group>"; };
  851. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = symbols.cmake; sourceTree = "<group>"; };
  852. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchardet.cpp; sourceTree = "<group>"; };
  853. F73B4EED1F470D9100BBEE4B /* uchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchardet.h; sourceTree = "<group>"; };
  854. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  855. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  856. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeDummyViewController.h; sourceTree = "<group>"; };
  857. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeDummyViewController.m; sourceTree = "<group>"; };
  858. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeField.h; sourceTree = "<group>"; };
  859. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeField.m; sourceTree = "<group>"; };
  860. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeInputView.h; sourceTree = "<group>"; };
  861. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeInputView.m; sourceTree = "<group>"; };
  862. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeLockScreenManager.h; sourceTree = "<group>"; };
  863. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeLockScreenManager.m; sourceTree = "<group>"; };
  864. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeUtils.h; sourceTree = "<group>"; };
  865. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKPasscodeViewController.h; sourceTree = "<group>"; };
  866. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKPasscodeViewController.m; sourceTree = "<group>"; };
  867. F73CC0631E813DFF006E3047 /* BKShiftingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKShiftingView.h; sourceTree = "<group>"; };
  868. F73CC0641E813DFF006E3047 /* BKShiftingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKShiftingView.m; sourceTree = "<group>"; };
  869. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDManager.h; sourceTree = "<group>"; };
  870. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDManager.m; sourceTree = "<group>"; };
  871. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BKTouchIDSwitchView.h; sourceTree = "<group>"; };
  872. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BKTouchIDSwitchView.m; sourceTree = "<group>"; };
  873. F73D71611F2673C200E233EB /* NCText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCText.swift; sourceTree = "<group>"; };
  874. F73D71631F2674A400E233EB /* NCText.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCText.storyboard; sourceTree = "<group>"; };
  875. F73F537E1E929C8500F8678D /* CCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CCMore.swift; sourceTree = "<group>"; };
  876. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrashSectionHeaderFooter.swift; sourceTree = "<group>"; };
  877. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  878. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  879. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  880. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  881. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  882. F7496B81208F5651004B299C /* iOSClient.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = iOSClient.plist; sourceTree = "<group>"; };
  883. F7496B83208F5652004B299C /* Share.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Share.plist; sourceTree = "<group>"; };
  884. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  885. F749C10823C4A5330027D966 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  886. F749C10923C4A5330027D966 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  887. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  888. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  889. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  890. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OCNetworking.h; sourceTree = "<group>"; };
  891. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OCNetworking.m; sourceTree = "<group>"; };
  892. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCNetworkingEndToEnd.h; sourceTree = "<group>"; };
  893. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCNetworkingEndToEnd.m; sourceTree = "<group>"; };
  894. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  895. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  896. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ALView+PureLayout.h"; sourceTree = "<group>"; };
  897. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ALView+PureLayout.m"; sourceTree = "<group>"; };
  898. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+PureLayout.h"; sourceTree = "<group>"; };
  899. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+PureLayout.m"; sourceTree = "<group>"; };
  900. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PureLayout.h"; sourceTree = "<group>"; };
  901. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PureLayout.m"; sourceTree = "<group>"; };
  902. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PureLayout+Internal.h"; sourceTree = "<group>"; };
  903. F750374A1DBFA91A008FB480 /* PureLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayout.h; sourceTree = "<group>"; };
  904. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PureLayoutDefines.h; sourceTree = "<group>"; };
  905. F7514EDA1C7B1336008F3338 /* CCHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHud.h; sourceTree = "<group>"; };
  906. F7514EDB1C7B1336008F3338 /* CCHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHud.m; sourceTree = "<group>"; };
  907. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  908. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  909. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  910. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  911. F754EEC421772B6100BB1CDF /* DropdownItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownItem.swift; sourceTree = "<group>"; };
  912. F754EEC521772B6100BB1CDF /* DropUpMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropUpMenu.swift; sourceTree = "<group>"; };
  913. F754EEC621772B6100BB1CDF /* DropdownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DropdownMenu.h; sourceTree = "<group>"; };
  914. F754EEC721772B6100BB1CDF /* DropdownMenu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropdownMenu.swift; sourceTree = "<group>"; };
  915. F754EEC821772B6100BB1CDF /* SectionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SectionHeader.swift; sourceTree = "<group>"; };
  916. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  917. F758B457212C564000515F55 /* Scan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Scan.storyboard; sourceTree = "<group>"; };
  918. F758B45D212C569C00515F55 /* ScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCell.swift; sourceTree = "<group>"; };
  919. F758B45F212C56A400515F55 /* ScanCollectionView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanCollectionView.swift; sourceTree = "<group>"; };
  920. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  921. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  922. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCLogin.storyboard; sourceTree = "<group>"; };
  923. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  924. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  925. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  926. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  927. F75CDBF51DF063AD00116AD0 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = "<group>"; };
  928. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  929. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  930. F760F75721F21F61006B1A73 /* icomoon.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = icomoon.ttf; sourceTree = "<group>"; };
  931. F760F75821F21F61006B1A73 /* StickersViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickersViewController.xib; sourceTree = "<group>"; };
  932. F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsCollectionViewDelegate.swift; sourceTree = "<group>"; };
  933. F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Keyboard.swift"; sourceTree = "<group>"; };
  934. F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Controls.swift"; sourceTree = "<group>"; };
  935. F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhotoEditorViewController.xib; sourceTree = "<group>"; };
  936. F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+StickersViewController.swift"; sourceTree = "<group>"; };
  937. F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+UITextView.swift"; sourceTree = "<group>"; };
  938. F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+Alpha.swift"; sourceTree = "<group>"; };
  939. F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ColorCollectionViewCell.xib; sourceTree = "<group>"; };
  940. F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EmojiCollectionViewCell.xib; sourceTree = "<group>"; };
  941. F760F76321F21F61006B1A73 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  942. F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Font.swift"; sourceTree = "<group>"; };
  943. F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PhotoCropEditorBorder@2x.png"; sourceTree = "<group>"; };
  944. F760F76621F21F61006B1A73 /* UIView+Image.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Image.swift"; sourceTree = "<group>"; };
  945. F760F76721F21F61006B1A73 /* UIImage+Size.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Size.swift"; sourceTree = "<group>"; };
  946. F760F76821F21F61006B1A73 /* UIImage+Crop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Crop.swift"; sourceTree = "<group>"; };
  947. F760F76921F21F61006B1A73 /* StickersViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StickersViewController.swift; sourceTree = "<group>"; };
  948. F760F76A21F21F61006B1A73 /* Protocols.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protocols.swift; sourceTree = "<group>"; };
  949. F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Drawing.swift"; sourceTree = "<group>"; };
  950. F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PhotoCropEditorBorder@3x.png"; sourceTree = "<group>"; };
  951. F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PhotoCropEditorBorder.png; sourceTree = "<group>"; };
  952. F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmojiCollectionViewCell.swift; sourceTree = "<group>"; };
  953. F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmojisCollectionViewDelegate.swift; sourceTree = "<group>"; };
  954. F760F77021F21F61006B1A73 /* CropView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropView.swift; sourceTree = "<group>"; };
  955. F760F77121F21F61006B1A73 /* ResizeControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResizeControl.swift; sourceTree = "<group>"; };
  956. F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Gestures.swift"; sourceTree = "<group>"; };
  957. F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhotoEditorViewController.swift; sourceTree = "<group>"; };
  958. F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = StickerCollectionViewCell.xib; sourceTree = "<group>"; };
  959. F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StickerCollectionViewCell.swift; sourceTree = "<group>"; };
  960. F760F77621F21F61006B1A73 /* CropViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropViewController.swift; sourceTree = "<group>"; };
  961. F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "PhotoEditor+Crop.swift"; sourceTree = "<group>"; };
  962. F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorCollectionViewCell.swift; sourceTree = "<group>"; };
  963. F760F77921F21F61006B1A73 /* GradientView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GradientView.swift; sourceTree = "<group>"; };
  964. F760F77A21F21F61006B1A73 /* CropRectView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CropRectView.swift; sourceTree = "<group>"; };
  965. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormBaseCell.h; sourceTree = "<group>"; };
  966. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormBaseCell.m; sourceTree = "<group>"; };
  967. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormButtonCell.h; sourceTree = "<group>"; };
  968. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormButtonCell.m; sourceTree = "<group>"; };
  969. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormCheckCell.h; sourceTree = "<group>"; };
  970. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormCheckCell.m; sourceTree = "<group>"; };
  971. F762CAA91EACB66200B38484 /* XLFormDateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDateCell.h; sourceTree = "<group>"; };
  972. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDateCell.m; sourceTree = "<group>"; };
  973. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDatePickerCell.h; sourceTree = "<group>"; };
  974. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDatePickerCell.m; sourceTree = "<group>"; };
  975. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorCell.h; sourceTree = "<group>"; };
  976. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormImageCell.h; sourceTree = "<group>"; };
  977. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormImageCell.m; sourceTree = "<group>"; };
  978. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineRowDescriptorCell.h; sourceTree = "<group>"; };
  979. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormInlineSelectorCell.h; sourceTree = "<group>"; };
  980. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormInlineSelectorCell.m; sourceTree = "<group>"; };
  981. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormLeftRightSelectorCell.h; sourceTree = "<group>"; };
  982. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormLeftRightSelectorCell.m; sourceTree = "<group>"; };
  983. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormPickerCell.h; sourceTree = "<group>"; };
  984. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormPickerCell.m; sourceTree = "<group>"; };
  985. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSegmentedCell.h; sourceTree = "<group>"; };
  986. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSegmentedCell.m; sourceTree = "<group>"; };
  987. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSelectorCell.h; sourceTree = "<group>"; };
  988. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSelectorCell.m; sourceTree = "<group>"; };
  989. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSliderCell.h; sourceTree = "<group>"; };
  990. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSliderCell.m; sourceTree = "<group>"; };
  991. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormStepCounterCell.h; sourceTree = "<group>"; };
  992. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormStepCounterCell.m; sourceTree = "<group>"; };
  993. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSwitchCell.h; sourceTree = "<group>"; };
  994. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSwitchCell.m; sourceTree = "<group>"; };
  995. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextFieldCell.h; sourceTree = "<group>"; };
  996. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextFieldCell.m; sourceTree = "<group>"; };
  997. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextViewCell.h; sourceTree = "<group>"; };
  998. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextViewCell.m; sourceTree = "<group>"; };
  999. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsObject.h; sourceTree = "<group>"; };
  1000. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsObject.m; sourceTree = "<group>"; };
  1001. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormOptionsViewController.h; sourceTree = "<group>"; };
  1002. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormOptionsViewController.m; sourceTree = "<group>"; };
  1003. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptorViewController.h; sourceTree = "<group>"; };
  1004. F762CACB1EACB66200B38484 /* XLFormViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormViewController.h; sourceTree = "<group>"; };
  1005. F762CACC1EACB66200B38484 /* XLFormViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormViewController.m; sourceTree = "<group>"; };
  1006. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptor.h; sourceTree = "<group>"; };
  1007. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormDescriptor.m; sourceTree = "<group>"; };
  1008. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormDescriptorDelegate.h; sourceTree = "<group>"; };
  1009. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowDescriptor.h; sourceTree = "<group>"; };
  1010. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowDescriptor.m; sourceTree = "<group>"; };
  1011. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormSectionDescriptor.h; sourceTree = "<group>"; };
  1012. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormSectionDescriptor.m; sourceTree = "<group>"; };
  1013. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+XLFormAdditions.h"; sourceTree = "<group>"; };
  1014. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+XLFormAdditions.m"; sourceTree = "<group>"; };
  1015. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSExpression+XLFormAdditions.h"; sourceTree = "<group>"; };
  1016. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSExpression+XLFormAdditions.m"; sourceTree = "<group>"; };
  1017. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+XLFormAdditions.h"; sourceTree = "<group>"; };
  1018. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+XLFormAdditions.m"; sourceTree = "<group>"; };
  1019. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSPredicate+XLFormAdditions.h"; sourceTree = "<group>"; };
  1020. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSPredicate+XLFormAdditions.m"; sourceTree = "<group>"; };
  1021. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+XLFormAdditions.h"; sourceTree = "<group>"; };
  1022. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+XLFormAdditions.m"; sourceTree = "<group>"; };
  1023. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XLFormAdditions.h"; sourceTree = "<group>"; };
  1024. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XLFormAdditions.m"; sourceTree = "<group>"; };
  1025. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightDetailCell.h; sourceTree = "<group>"; };
  1026. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightDetailCell.m; sourceTree = "<group>"; };
  1027. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRightImageButton.h; sourceTree = "<group>"; };
  1028. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRightImageButton.m; sourceTree = "<group>"; };
  1029. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRowNavigationAccessoryView.h; sourceTree = "<group>"; };
  1030. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRowNavigationAccessoryView.m; sourceTree = "<group>"; };
  1031. F762CAE91EACB66200B38484 /* XLFormTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormTextView.h; sourceTree = "<group>"; };
  1032. F762CAEA1EACB66200B38484 /* XLFormTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormTextView.m; sourceTree = "<group>"; };
  1033. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormRegexValidator.h; sourceTree = "<group>"; };
  1034. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormRegexValidator.m; sourceTree = "<group>"; };
  1035. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidationStatus.h; sourceTree = "<group>"; };
  1036. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidationStatus.m; sourceTree = "<group>"; };
  1037. F762CAF01EACB66200B38484 /* XLFormValidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidator.h; sourceTree = "<group>"; };
  1038. F762CAF11EACB66200B38484 /* XLFormValidator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLFormValidator.m; sourceTree = "<group>"; };
  1039. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLFormValidatorProtocol.h; sourceTree = "<group>"; };
  1040. F762CAF31EACB66200B38484 /* XLForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XLForm.h; sourceTree = "<group>"; };
  1041. F762CAF41EACB66200B38484 /* XLForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XLForm.m; sourceTree = "<group>"; };
  1042. F762CAF51EACB66200B38484 /* XLForm.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XLForm.bundle; sourceTree = "<group>"; };
  1043. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1044. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCTrashSectionFooter.xib; sourceTree = "<group>"; };
  1045. F76344751BF259A800188725 /* synchronized.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronized.gif; sourceTree = "<group>"; };
  1046. F76344761BF259A800188725 /* synchronizedcrypto.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = synchronizedcrypto.gif; sourceTree = "<group>"; };
  1047. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  1048. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  1049. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  1050. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  1051. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  1052. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  1053. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  1054. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  1055. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  1056. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserMenuView.xib; sourceTree = "<group>"; };
  1057. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  1058. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkMenuView.swift; sourceTree = "<group>"; };
  1059. F769454322E9F142000A798A /* NCShareUserMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserMenuView.swift; sourceTree = "<group>"; };
  1060. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  1061. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  1062. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  1063. F76C3B831C6388BC00DC4301 /* CCGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGraphics.h; sourceTree = "<group>"; };
  1064. F76C3B841C6388BC00DC4301 /* CCGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGraphics.m; sourceTree = "<group>"; };
  1065. F76C3B871C638A4C00DC4301 /* CCError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCError.h; sourceTree = "<group>"; };
  1066. F76C3B881C638A4C00DC4301 /* CCError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCError.m; sourceTree = "<group>"; };
  1067. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  1068. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  1069. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1070. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  1071. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  1072. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  1073. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  1074. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  1075. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  1076. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = File_Provider_Extension.entitlements; sourceTree = "<group>"; };
  1077. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = File_Provider_Extension.plist; sourceTree = "<group>"; };
  1078. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  1079. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserDropDownCell.xib; sourceTree = "<group>"; };
  1080. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1081. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1082. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1083. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1084. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1085. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1086. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1087. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1088. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1089. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1090. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1091. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1092. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1093. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1094. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1095. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1096. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1097. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1098. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  1099. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  1100. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPhotosPickerViewController.swift; sourceTree = "<group>"; };
  1101. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@1x.png"; sourceTree = "<group>"; };
  1102. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@2x.png"; sourceTree = "<group>"; };
  1103. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iTunesArtwork@3x.png"; sourceTree = "<group>"; };
  1104. F774F5CC2407F4EF000C5E86 /* NCViewerImageView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerImageView.xib; sourceTree = "<group>"; };
  1105. F774F5CD2407F4EF000C5E86 /* NCViewerImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageView.swift; sourceTree = "<group>"; };
  1106. F774F5CE2407F4EF000C5E86 /* NCViewerImageCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerImageCollectionViewCell.xib; sourceTree = "<group>"; };
  1107. F774F5CF2407F4EF000C5E86 /* NCViewerImageCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageCollectionViewCell.swift; sourceTree = "<group>"; };
  1108. F774F5D02407F4EF000C5E86 /* NCViewerImageNibLoadingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageNibLoadingView.swift; sourceTree = "<group>"; };
  1109. F774F5D62407F547000C5E86 /* NCViewerImageAsset.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerImageAsset.swift; sourceTree = "<group>"; };
  1110. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+Utility.h"; sourceTree = "<group>"; };
  1111. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+Utility.m"; sourceTree = "<group>"; };
  1112. F77D49A71DC238E500CDC568 /* loading.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = loading.gif; sourceTree = "<group>"; };
  1113. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1114. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1115. F781996722636BFA00EBDF6A /* HCFeatures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HCFeatures.h; sourceTree = "<group>"; };
  1116. F781996822636BFA00EBDF6A /* HCFeatures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HCFeatures.m; sourceTree = "<group>"; };
  1117. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  1118. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  1119. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  1120. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  1121. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  1122. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  1123. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  1124. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  1125. F78ACD4821903F850088454D /* NCTrashListCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTrashListCell.swift; sourceTree = "<group>"; };
  1126. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  1127. F78ACD4E2190440D0088454D /* NCLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLayout.swift; sourceTree = "<group>"; };
  1128. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
  1129. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  1130. F78ACD55219047E90088454D /* NCSectionHeader.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
  1131. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1132. F78B9682234F785300F54315 /* NCSelectDestination.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSelectDestination.m; sourceTree = "<group>"; };
  1133. F78B9683234F785300F54315 /* NCSelectDestination.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSelectDestination.h; sourceTree = "<group>"; };
  1134. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCSelectDestination.storyboard; sourceTree = "<group>"; };
  1135. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  1136. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1137. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1138. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1139. F78E7064219F096B006F23E4 /* NCAvatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAvatar.swift; sourceTree = "<group>"; };
  1140. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSection.h; sourceTree = "<group>"; };
  1141. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSection.m; sourceTree = "<group>"; };
  1142. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  1143. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  1144. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  1145. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUploadFromOtherUpp.h; sourceTree = "<group>"; };
  1146. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUploadFromOtherUpp.m; sourceTree = "<group>"; };
  1147. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCUploadFromOtherUpp.storyboard; sourceTree = "<group>"; };
  1148. F79630ED215527D40015EEA5 /* NCViewerMedia.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
  1149. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkFolderMenuView.xib; sourceTree = "<group>"; };
  1150. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserFolderMenuView.xib; sourceTree = "<group>"; };
  1151. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  1152. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  1153. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  1154. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  1155. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFavorites.h; sourceTree = "<group>"; };
  1156. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = CCFavorites.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1157. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuAccount.h; sourceTree = "<group>"; };
  1158. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuAccount.m; sourceTree = "<group>"; };
  1159. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1160. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1161. F7A377141EB2364A002856D3 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
  1162. F7A377151EB2364A002856D3 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Fabric.framework; sourceTree = "<group>"; };
  1163. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCExifGeo.h; sourceTree = "<group>"; };
  1164. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCExifGeo.m; sourceTree = "<group>"; };
  1165. F7A582D71A24DAB500E903D7 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = AppDelegate.h; sourceTree = "<group>"; };
  1166. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1167. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1168. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1169. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1170. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1171. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1172. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1173. F7ACE4301BAC0268006C0017 /* CCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSettings.h; sourceTree = "<group>"; };
  1174. F7ACE4311BAC0268006C0017 /* CCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSettings.m; sourceTree = "<group>"; };
  1175. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  1176. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  1177. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  1178. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSynchronize.h; sourceTree = "<group>"; };
  1179. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSynchronize.m; sourceTree = "<group>"; };
  1180. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCAutoUpload.h; sourceTree = "<group>"; };
  1181. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCAutoUpload.m; sourceTree = "<group>"; };
  1182. F7B174C722FAC0A8000B7579 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  1183. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1184. F7B2DEED1F976785007CF4D2 /* english.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  1185. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  1186. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  1187. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCUchardet.h; sourceTree = "<group>"; };
  1188. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCUchardet.m; sourceTree = "<group>"; };
  1189. F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLCommentsParser.m; sourceTree = "<group>"; };
  1190. F7B6ACD522FC2BD4008AB646 /* NCXMLCommentsParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLCommentsParser.h; sourceTree = "<group>"; };
  1191. F7B6ACD922FC2D14008AB646 /* NCComments.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCComments.h; sourceTree = "<group>"; };
  1192. F7B6ACDA22FC2D15008AB646 /* NCComments.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCComments.m; sourceTree = "<group>"; };
  1193. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+fixedOrientation.swift"; sourceTree = "<group>"; };
  1194. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1195. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1196. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1197. F7BF1B3F1D51E893000854F6 /* CCLogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLogin.h; sourceTree = "<group>"; };
  1198. F7BF1B401D51E893000854F6 /* CCLogin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLogin.m; sourceTree = "<group>"; };
  1199. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageLocation.h; sourceTree = "<group>"; };
  1200. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageLocation.m; sourceTree = "<group>"; };
  1201. F7C0F46E1C8880540059EC54 /* ShareViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ShareViewController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
  1202. F7C0F46F1C8880540059EC54 /* ShareViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = ShareViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
  1203. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  1204. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  1205. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  1206. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  1207. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  1208. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  1209. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  1210. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  1211. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  1212. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  1213. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  1214. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CCNotification.swift; path = Notification/CCNotification.swift; sourceTree = "<group>"; };
  1215. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CCNotification.storyboard; path = Notification/CCNotification.storyboard; sourceTree = "<group>"; };
  1216. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = iOSClient.entitlements; sourceTree = "<group>"; };
  1217. F7C742D01E7BD35B00D9C973 /* Share.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Share.entitlements; sourceTree = "<group>"; };
  1218. F7C8C1901B482CEA0048180E /* CCGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGlobal.h; sourceTree = "<group>"; };
  1219. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  1220. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  1221. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+PKDownloadButton.m"; sourceTree = "<group>"; };
  1222. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKBorderedButton.h; sourceTree = "<group>"; };
  1223. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleProgressView.m; sourceTree = "<group>"; };
  1224. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKDownloadButton.h; sourceTree = "<group>"; };
  1225. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+PKDownloadButtonAnimations.h"; sourceTree = "<group>"; };
  1226. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKCircleView.m; sourceTree = "<group>"; };
  1227. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKStopDownloadButton.m; sourceTree = "<group>"; };
  1228. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKPendingView.m; sourceTree = "<group>"; };
  1229. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+PKDownloadButton.h"; sourceTree = "<group>"; };
  1230. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKMacros.h; sourceTree = "<group>"; };
  1231. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+PKDownloadButtonAnimations.m"; sourceTree = "<group>"; };
  1232. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKDownloadButton.m; sourceTree = "<group>"; };
  1233. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleProgressView.h; sourceTree = "<group>"; };
  1234. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PKBorderedButton.m; sourceTree = "<group>"; };
  1235. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+PKDownloadButton.h"; sourceTree = "<group>"; };
  1236. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKStopDownloadButton.h; sourceTree = "<group>"; };
  1237. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKCircleView.h; sourceTree = "<group>"; };
  1238. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+PKDownloadButton.m"; sourceTree = "<group>"; };
  1239. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PKPendingView.h; sourceTree = "<group>"; };
  1240. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1241. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1242. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1243. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  1244. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  1245. F7D2D125230804DF00FD3ED7 /* NCXMLListParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLListParser.h; sourceTree = "<group>"; };
  1246. F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLListParser.m; sourceTree = "<group>"; };
  1247. F7D4B67B22956610000C2C86 /* Firebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Firebase.h; sourceTree = "<group>"; };
  1248. F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleAppMeasurement.framework; sourceTree = "<group>"; };
  1249. F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  1250. F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  1251. F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleUtilities.framework; sourceTree = "<group>"; };
  1252. F7D4B6812295663D000C2C86 /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = nanopb.framework; sourceTree = "<group>"; };
  1253. F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
  1254. F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  1255. F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
  1256. F7D4B68E2295666E000C2C86 /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Protobuf.framework; sourceTree = "<group>"; };
  1257. F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GTMSessionFetcher.framework; sourceTree = "<group>"; };
  1258. F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleAPIClientForREST.framework; sourceTree = "<group>"; };
  1259. F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLVision.framework; sourceTree = "<group>"; };
  1260. F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  1261. F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseMLCommon.framework; sourceTree = "<group>"; };
  1262. F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMobileVision.framework; sourceTree = "<group>"; };
  1263. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1264. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1265. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1266. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1267. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1268. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainCommon.swift; sourceTree = "<group>"; };
  1269. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAppConfigView.swift; sourceTree = "<group>"; };
  1270. F7DBC37D23325E2D001A85BA /* NCXMLGetAppPasswordParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCXMLGetAppPasswordParser.h; sourceTree = "<group>"; };
  1271. F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCXMLGetAppPasswordParser.m; sourceTree = "<group>"; };
  1272. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  1273. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1274. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkMenuView.xib; sourceTree = "<group>"; };
  1275. F7DFB7DE219C312D00680748 /* NCRichDocumentTemplate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCRichDocumentTemplate.h; sourceTree = "<group>"; };
  1276. F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCRichDocumentTemplate.m; sourceTree = "<group>"; };
  1277. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadAssets.swift; sourceTree = "<group>"; };
  1278. F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadFileText.swift; sourceTree = "<group>"; };
  1279. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadScanDocument.swift; sourceTree = "<group>"; };
  1280. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMainRefreshControl.swift; sourceTree = "<group>"; };
  1281. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCSplitViewController.swift; sourceTree = "<group>"; };
  1282. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMasterNavigationController.swift; sourceTree = "<group>"; };
  1283. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  1284. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  1285. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1286. F7E4D9C322ED929B003675FD /* NCShareComments.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareComments.swift; sourceTree = "<group>"; };
  1287. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  1288. F7E9C41520F4CA870040CF18 /* CCTransfers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransfers.h; sourceTree = "<group>"; };
  1289. F7E9C41820F4CA870040CF18 /* CCTransfers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransfers.m; sourceTree = "<group>"; };
  1290. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoCloud.pch; sourceTree = "<group>"; };
  1291. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspace.swift; sourceTree = "<group>"; };
  1292. F7F54CAF1E5B14C700E19C62 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
  1293. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
  1294. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
  1295. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
  1296. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
  1297. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
  1298. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
  1299. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
  1300. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
  1301. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
  1302. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
  1303. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
  1304. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
  1305. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
  1306. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
  1307. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
  1308. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
  1309. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
  1310. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
  1311. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
  1312. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
  1313. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
  1314. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
  1315. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
  1316. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
  1317. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
  1318. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
  1319. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
  1320. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
  1321. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
  1322. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
  1323. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
  1324. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
  1325. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
  1326. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
  1327. F7F54CD21E5B14C700E19C62 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
  1328. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
  1329. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
  1330. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
  1331. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
  1332. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
  1333. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
  1334. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
  1335. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
  1336. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
  1337. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
  1338. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
  1339. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
  1340. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
  1341. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
  1342. F7F67BAD1A24D27800EE80DA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  1343. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1344. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1345. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCellShareExt.h; sourceTree = "<group>"; };
  1346. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCellShareExt.m; sourceTree = "<group>"; };
  1347. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CCCellShareExt.xib; sourceTree = "<group>"; };
  1348. F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerDocumentWeb.swift; sourceTree = "<group>"; };
  1349. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1350. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = CCPeekPop.storyboard; sourceTree = "<group>"; };
  1351. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCPeekPop.h; sourceTree = "<group>"; };
  1352. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCPeekPop.m; sourceTree = "<group>"; };
  1353. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBKPasscode.h; sourceTree = "<group>"; };
  1354. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBKPasscode.m; sourceTree = "<group>"; };
  1355. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CCCellMain.h; sourceTree = "<group>"; };
  1356. /* End PBXFileReference section */
  1357. /* Begin PBXFrameworksBuildPhase section */
  1358. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  1359. isa = PBXFrameworksBuildPhase;
  1360. buildActionMask = 2147483647;
  1361. files = (
  1362. );
  1363. runOnlyForDeploymentPostprocessing = 0;
  1364. };
  1365. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1366. isa = PBXFrameworksBuildPhase;
  1367. buildActionMask = 2147483647;
  1368. files = (
  1369. );
  1370. runOnlyForDeploymentPostprocessing = 0;
  1371. };
  1372. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1373. isa = PBXFrameworksBuildPhase;
  1374. buildActionMask = 2147483647;
  1375. files = (
  1376. );
  1377. runOnlyForDeploymentPostprocessing = 0;
  1378. };
  1379. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1380. isa = PBXFrameworksBuildPhase;
  1381. buildActionMask = 2147483647;
  1382. files = (
  1383. F716FE7823795E5000FABE50 /* NCCommunication.framework in Frameworks */,
  1384. F74C4FBB2328C3C200A23E25 /* OpenSSL.framework in Frameworks */,
  1385. F7421EAF2294044B00C4B7C1 /* Accelerate.framework in Frameworks */,
  1386. F7D4B68C2295663D000C2C86 /* FirebaseCoreDiagnostics.framework in Frameworks */,
  1387. F7D4B6992295666E000C2C86 /* GoogleToolboxForMac.framework in Frameworks */,
  1388. F7267A82225DFCE100D6DB7D /* AFNetworking.framework in Frameworks */,
  1389. F7C40BF32199978B0004137E /* MBProgressHUD.framework in Frameworks */,
  1390. F7D4B69A2295666E000C2C86 /* FirebaseMLCommon.framework in Frameworks */,
  1391. F7D4B6962295666E000C2C86 /* GTMSessionFetcher.framework in Frameworks */,
  1392. F79918A221997FA300C2E308 /* UICKeyChainStore.framework in Frameworks */,
  1393. F75EDFBF1E8C116D00E6F369 /* libstdc++.tbd in Frameworks */,
  1394. F75EDFBD1E8C112F00E6F369 /* libsqlite3.0.tbd in Frameworks */,
  1395. F7A377161EB2364A002856D3 /* Crashlytics.framework in Frameworks */,
  1396. F733B65221997CC2001C1FFA /* TLPhotoPicker.framework in Frameworks */,
  1397. F7D4B6872295663D000C2C86 /* FirebaseAnalytics.framework in Frameworks */,
  1398. F7FC7D561DC1F93800BB2C6A /* libz.tbd in Frameworks */,
  1399. F7C40BE521998D5B0004137E /* MGSwipeTableCell.framework in Frameworks */,
  1400. F7D4B68B2295663D000C2C86 /* FirebaseInstanceID.framework in Frameworks */,
  1401. F745B251222D871800346520 /* QRCodeReader.framework in Frameworks */,
  1402. F765608723BF806D00765969 /* QuickLayout.framework in Frameworks */,
  1403. F7A3771A1EB2364A002856D3 /* Fabric.framework in Frameworks */,
  1404. F72382C32295856A005B8A07 /* GoogleToolboxForMac.framework in Frameworks */,
  1405. F72E0B9D21AD60BC00898D7B /* WeScan.framework in Frameworks */,
  1406. F7063DED2199E55F003F38DA /* SVGKit.framework in Frameworks */,
  1407. F7D4B6892295663D000C2C86 /* nanopb.framework in Frameworks */,
  1408. F7063DEF2199E568003F38DA /* CocoaLumberjack.framework in Frameworks */,
  1409. F765608B23BF80A400765969 /* SwiftEntryKit.framework in Frameworks */,
  1410. F72382C02295856A005B8A07 /* FirebaseMLVisionTextModel.framework in Frameworks */,
  1411. F7063DF12199E56F003F38DA /* CocoaLumberjackSwift.framework in Frameworks */,
  1412. F7D4B6952295666E000C2C86 /* Protobuf.framework in Frameworks */,
  1413. F7D4B6852295663D000C2C86 /* GoogleAppMeasurement.framework in Frameworks */,
  1414. F7C40BE721998F410004137E /* DZNEmptyDataSet.framework in Frameworks */,
  1415. F7C40BEF219994ED0004137E /* KTVCocoaHTTPServer.framework in Frameworks */,
  1416. F7C40BF1219994F20004137E /* KTVHTTPCache.framework in Frameworks */,
  1417. F7C40C102199BA5D0004137E /* Realm.framework in Frameworks */,
  1418. F774264122EB3F7300B23912 /* DropDown.framework in Frameworks */,
  1419. F7D4B69B2295666E000C2C86 /* GoogleMobileVision.framework in Frameworks */,
  1420. F75153242226920200323DDC /* FastScroll.framework in Frameworks */,
  1421. F7C40C122199BA620004137E /* RealmSwift.framework in Frameworks */,
  1422. F78AA20621F783E900D0F205 /* SwiftRichString.framework in Frameworks */,
  1423. F7DBD82C23E46A4700ECB7C6 /* MarkdownKit.framework in Frameworks */,
  1424. F74AFCE922E8B025003DE61F /* FSCalendar.framework in Frameworks */,
  1425. F7D4B6982295666E000C2C86 /* FirebaseMLVision.framework in Frameworks */,
  1426. F7D4B6862295663D000C2C86 /* FirebaseCore.framework in Frameworks */,
  1427. F7D4B68A2295663D000C2C86 /* FIRAnalyticsConnector.framework in Frameworks */,
  1428. F700510322DF6897003A3356 /* Parchment.framework in Frameworks */,
  1429. F7D4B6882295663D000C2C86 /* GoogleUtilities.framework in Frameworks */,
  1430. 371B5A3323D0BD5500FAFAE9 /* FloatingPanel.framework in Frameworks */,
  1431. F70F2BA5225F2D8900EBB73E /* ZIPFoundation.framework in Frameworks */,
  1432. F7D4B6972295666E000C2C86 /* GoogleAPIClientForREST.framework in Frameworks */,
  1433. );
  1434. runOnlyForDeploymentPostprocessing = 0;
  1435. };
  1436. /* End PBXFrameworksBuildPhase section */
  1437. /* Begin PBXGroup section */
  1438. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  1439. isa = PBXGroup;
  1440. children = (
  1441. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  1442. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  1443. );
  1444. path = "Notification Service Extension";
  1445. sourceTree = "<group>";
  1446. };
  1447. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  1448. isa = PBXGroup;
  1449. children = (
  1450. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  1451. 3781B9B323DB2BC9006B4B1D /* CCFavorites+Menu.swift */,
  1452. 3781B9B123DB2B9F006B4B1D /* CCMain+Menu.swift */,
  1453. F710D2012405826100A6033D /* NCDetailNavigationController+Menu.swift */,
  1454. 371B5A2D23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift */,
  1455. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  1456. 37ECC83A23D0C7400082EFA2 /* NCMenuAction.swift */,
  1457. 3757A35423D9D76300EC369E /* NCMenuPanelController.swift */,
  1458. );
  1459. path = Menu;
  1460. sourceTree = "<group>";
  1461. };
  1462. F70022561EC4C9100080073F /* OCCommunicationLib */ = {
  1463. isa = PBXGroup;
  1464. children = (
  1465. F7DFB7DE219C312D00680748 /* NCRichDocumentTemplate.h */,
  1466. F7DFB7DF219C312D00680748 /* NCRichDocumentTemplate.m */,
  1467. F781996722636BFA00EBDF6A /* HCFeatures.h */,
  1468. F781996822636BFA00EBDF6A /* HCFeatures.m */,
  1469. F7B6ACD922FC2D14008AB646 /* NCComments.h */,
  1470. F7B6ACDA22FC2D15008AB646 /* NCComments.m */,
  1471. F70022661EC4C9100080073F /* OCActivity.h */,
  1472. F70022671EC4C9100080073F /* OCActivity.m */,
  1473. F70022681EC4C9100080073F /* OCCapabilities.h */,
  1474. F70022691EC4C9100080073F /* OCCapabilities.m */,
  1475. F700226A1EC4C9100080073F /* OCCommunication.h */,
  1476. F700226B1EC4C9100080073F /* OCCommunication.m */,
  1477. F700226C1EC4C9100080073F /* OCErrorMsg.h */,
  1478. F700226D1EC4C9100080073F /* OCExternalSites.h */,
  1479. F700226E1EC4C9100080073F /* OCExternalSites.m */,
  1480. F700226F1EC4C9100080073F /* OCFileDto.h */,
  1481. F70022701EC4C9100080073F /* OCFileDto.m */,
  1482. F70022711EC4C9100080073F /* OCFrameworkConstants.h */,
  1483. F70022721EC4C9100080073F /* OCNotifications.h */,
  1484. F70022731EC4C9100080073F /* OCNotifications.m */,
  1485. F70022741EC4C9100080073F /* OCNotificationsAction.h */,
  1486. F70022751EC4C9100080073F /* OCNotificationsAction.m */,
  1487. F70022761EC4C9100080073F /* OCRichObjectStrings.h */,
  1488. F70022771EC4C9100080073F /* OCRichObjectStrings.m */,
  1489. F70022781EC4C9100080073F /* OCSharedDto.h */,
  1490. F70022791EC4C9100080073F /* OCSharedDto.m */,
  1491. F700227A1EC4C9100080073F /* OCShareUser.h */,
  1492. F700227B1EC4C9100080073F /* OCShareUser.m */,
  1493. F700227C1EC4C9100080073F /* OCUserProfile.h */,
  1494. F700227D1EC4C9100080073F /* OCUserProfile.m */,
  1495. F700227E1EC4C9100080073F /* OCWebDavClient */,
  1496. F700229B1EC4C9100080073F /* Utils */,
  1497. );
  1498. name = OCCommunicationLib;
  1499. path = Library/OCCommunicationLib;
  1500. sourceTree = "<group>";
  1501. };
  1502. F700227E1EC4C9100080073F /* OCWebDavClient */ = {
  1503. isa = PBXGroup;
  1504. children = (
  1505. F700227F1EC4C9100080073F /* NSDate+ISO8601.h */,
  1506. F70022801EC4C9100080073F /* NSDate+ISO8601.m */,
  1507. F70022811EC4C9100080073F /* NSDate+RFC1123.h */,
  1508. F70022821EC4C9100080073F /* NSDate+RFC1123.m */,
  1509. F70022831EC4C9100080073F /* OCHTTPRequestOperation.h */,
  1510. F70022841EC4C9100080073F /* OCHTTPRequestOperation.m */,
  1511. F70022851EC4C9100080073F /* OCWebDAVClient.h */,
  1512. F70022861EC4C9100080073F /* OCWebDAVClient.m */,
  1513. F70022871EC4C9100080073F /* Parsers */,
  1514. );
  1515. path = OCWebDavClient;
  1516. sourceTree = "<group>";
  1517. };
  1518. F70022871EC4C9100080073F /* Parsers */ = {
  1519. isa = PBXGroup;
  1520. children = (
  1521. F7DBC37D23325E2D001A85BA /* NCXMLGetAppPasswordParser.h */,
  1522. F7DBC37E23325E2E001A85BA /* NCXMLGetAppPasswordParser.m */,
  1523. F7B6ACD522FC2BD4008AB646 /* NCXMLCommentsParser.h */,
  1524. F7B6ACD422FC2BD3008AB646 /* NCXMLCommentsParser.m */,
  1525. F7D2D125230804DF00FD3ED7 /* NCXMLListParser.h */,
  1526. F7D2D126230804E000FD3ED7 /* NCXMLListParser.m */,
  1527. F700228C1EC4C9100080073F /* OCXMLServerErrorsParser.h */,
  1528. F700228D1EC4C9100080073F /* OCXMLServerErrorsParser.m */,
  1529. F700228E1EC4C9100080073F /* OCXMLShareByLinkParser.h */,
  1530. F700228F1EC4C9100080073F /* OCXMLShareByLinkParser.m */,
  1531. F70022901EC4C9100080073F /* OCXMLSharedParser.h */,
  1532. F70022911EC4C9100080073F /* OCXMLSharedParser.m */,
  1533. );
  1534. path = Parsers;
  1535. sourceTree = "<group>";
  1536. };
  1537. F700229B1EC4C9100080073F /* Utils */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. F700229C1EC4C9100080073F /* NSString+Encode.h */,
  1541. F700229D1EC4C9100080073F /* NSString+Encode.m */,
  1542. F700229E1EC4C9100080073F /* OCConstants.h */,
  1543. F700229F1EC4C9100080073F /* UtilsFramework.h */,
  1544. F70022A01EC4C9100080073F /* UtilsFramework.m */,
  1545. );
  1546. path = Utils;
  1547. sourceTree = "<group>";
  1548. };
  1549. F70211F31BAC56E9003FC03E /* Main */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. F710D1FA24057E5E00A6033D /* ActionSheetHeaderView */,
  1553. F70211FA1BAC56E9003FC03E /* CCMain.h */,
  1554. F70211FB1BAC56E9003FC03E /* CCMain.m */,
  1555. F73F537E1E929C8500F8678D /* CCMore.swift */,
  1556. F78F6FAE1CC8CCB700F4EA25 /* CCSection.h */,
  1557. F78F6FAF1CC8CCB700F4EA25 /* CCSection.m */,
  1558. F78ACD3E21903BA20088454D /* Cell */,
  1559. F7DFB7E9219C5A0500680748 /* Create cloud */,
  1560. F78ACD4D219043E70088454D /* Layout */,
  1561. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1562. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  1563. F710D1F624057C9400A6033D /* NCDetailNavigationController.swift */,
  1564. F710D1F824057C9D00A6033D /* NCDetailViewController.swift */,
  1565. F7D6650620FF341600BFBA9E /* NCMainCommon.swift */,
  1566. F7E09CE223E3087F00FB3E9E /* NCMainRefreshControl.swift */,
  1567. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  1568. F7E09CE623E308AD00FB3E9E /* NCMasterNavigationController.swift */,
  1569. F77444F7222816D5000D5EB0 /* NCPhotosPickerViewController.swift */,
  1570. F7E09CE423E3088A00FB3E9E /* NCSplitViewController.swift */,
  1571. F78ACD50219046AC0088454D /* Section */,
  1572. );
  1573. path = Main;
  1574. sourceTree = "<group>";
  1575. };
  1576. F704FA5A232A341800BBA952 /* Imagemeter */ = {
  1577. isa = PBXGroup;
  1578. children = (
  1579. F704FA5B232A343F00BBA952 /* IMImagemeterViewer.swift */,
  1580. );
  1581. path = Imagemeter;
  1582. sourceTree = "<group>";
  1583. };
  1584. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */ = {
  1585. isa = PBXGroup;
  1586. children = (
  1587. F7956FC91B4886E60085DEA3 /* CCUploadFromOtherUpp.h */,
  1588. F7956FCA1B4886E60085DEA3 /* CCUploadFromOtherUpp.m */,
  1589. F7956FCB1B4886E60085DEA3 /* CCUploadFromOtherUpp.storyboard */,
  1590. );
  1591. path = UploadFromOtherUpp;
  1592. sourceTree = "<group>";
  1593. };
  1594. F70F02A81C889183008DAB36 /* Libraries external */ = {
  1595. isa = PBXGroup;
  1596. children = (
  1597. F70F02B21C889183008DAB36 /* AFViewShaker */,
  1598. F7A377131EB2364A002856D3 /* Fabric */,
  1599. F7D4B67A22956610000C2C86 /* Firebase */,
  1600. F704FA5A232A341800BBA952 /* Imagemeter */,
  1601. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */,
  1602. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */,
  1603. F75037421DBFA91A008FB480 /* PureLayout */,
  1604. F70F05241C889184008DAB36 /* Reachability */,
  1605. F70F05561C889184008DAB36 /* UIImage+animatedGIF */,
  1606. );
  1607. path = "Libraries external";
  1608. sourceTree = SOURCE_ROOT;
  1609. };
  1610. F70F02B21C889183008DAB36 /* AFViewShaker */ = {
  1611. isa = PBXGroup;
  1612. children = (
  1613. F70F02B31C889183008DAB36 /* AFViewShaker.h */,
  1614. F70F02B41C889183008DAB36 /* AFViewShaker.m */,
  1615. );
  1616. path = AFViewShaker;
  1617. sourceTree = "<group>";
  1618. };
  1619. F70F05241C889184008DAB36 /* Reachability */ = {
  1620. isa = PBXGroup;
  1621. children = (
  1622. F70F05251C889184008DAB36 /* Reachability.h */,
  1623. F70F05261C889184008DAB36 /* Reachability.m */,
  1624. );
  1625. path = Reachability;
  1626. sourceTree = "<group>";
  1627. };
  1628. F70F05561C889184008DAB36 /* UIImage+animatedGIF */ = {
  1629. isa = PBXGroup;
  1630. children = (
  1631. F70F05571C889184008DAB36 /* UIImage+animatedGIF.h */,
  1632. F70F05581C889184008DAB36 /* UIImage+animatedGIF.m */,
  1633. );
  1634. path = "UIImage+animatedGIF";
  1635. sourceTree = "<group>";
  1636. };
  1637. F710D1FA24057E5E00A6033D /* ActionSheetHeaderView */ = {
  1638. isa = PBXGroup;
  1639. children = (
  1640. F710D1FB24057E5E00A6033D /* NCActionSheetHeader.swift */,
  1641. F710D1FC24057E5E00A6033D /* NCActionSheetHeaderView.swift */,
  1642. F710D1FD24057E5E00A6033D /* NCActionSheetHeaderView.xib */,
  1643. );
  1644. path = ActionSheetHeaderView;
  1645. sourceTree = "<group>";
  1646. };
  1647. F710E80C1EF95C9C00DC2427 /* Intro */ = {
  1648. isa = PBXGroup;
  1649. children = (
  1650. F710E80F1EF95C9C00DC2427 /* ImagesIntro.xcassets */,
  1651. F749C10923C4A5330027D966 /* NCIntro.storyboard */,
  1652. F749C10723C4A5330027D966 /* NCIntroCollectionViewCell.swift */,
  1653. F749C10A23C4A5340027D966 /* NCIntroCollectionViewCell.xib */,
  1654. F749C10823C4A5330027D966 /* NCIntroViewController.swift */,
  1655. );
  1656. path = Intro;
  1657. sourceTree = "<group>";
  1658. };
  1659. F7169A161EE590930086BD69 /* Shares */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. F7169A171EE590930086BD69 /* NCShares.h */,
  1663. F7169A181EE590930086BD69 /* NCShares.m */,
  1664. F7169A191EE590930086BD69 /* NCSharesCell.h */,
  1665. F7169A1A1EE590930086BD69 /* NCSharesCell.m */,
  1666. F7169A1B1EE590930086BD69 /* NCSharesCell.xib */,
  1667. );
  1668. path = Shares;
  1669. sourceTree = "<group>";
  1670. };
  1671. F72382BA22958569005B8A07 /* MLVisionTextModel */ = {
  1672. isa = PBXGroup;
  1673. children = (
  1674. F72382BB22958569005B8A07 /* FirebaseMLVisionTextModel.framework */,
  1675. F72382BD22958569005B8A07 /* Resources */,
  1676. F72382BF22958569005B8A07 /* GoogleToolboxForMac.framework */,
  1677. );
  1678. path = MLVisionTextModel;
  1679. sourceTree = "<group>";
  1680. };
  1681. F72382BD22958569005B8A07 /* Resources */ = {
  1682. isa = PBXGroup;
  1683. children = (
  1684. F72382BE22958569005B8A07 /* GoogleMVTextDetectorResources.bundle */,
  1685. );
  1686. path = Resources;
  1687. sourceTree = "<group>";
  1688. };
  1689. F728CE741BF6322C00E69702 /* Share */ = {
  1690. isa = PBXGroup;
  1691. children = (
  1692. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1693. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1694. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1695. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1696. F7DFAA8922E22EF100FC4527 /* NCShareLinkMenuView.xib */,
  1697. F79728D322F96F2D003CACA7 /* NCShareLinkFolderMenuView.xib */,
  1698. F769453D22E9E97D000A798A /* NCShareUserMenuView.xib */,
  1699. F79728D522F9A0B0003CACA7 /* NCShareUserFolderMenuView.xib */,
  1700. F774264822EB4D0000B23912 /* NCShareUserDropDownCell.xib */,
  1701. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1702. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1703. F700510422DF6A89003A3356 /* NCShare.swift */,
  1704. F7E4D9C322ED929B003675FD /* NCShareComments.swift */,
  1705. F769454122E9F0EE000A798A /* NCShareLinkMenuView.swift */,
  1706. F769454322E9F142000A798A /* NCShareUserMenuView.swift */,
  1707. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1708. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1709. );
  1710. path = Share;
  1711. sourceTree = "<group>";
  1712. };
  1713. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */ = {
  1714. isa = PBXGroup;
  1715. children = (
  1716. F72AAEC21E5C60C700BB17E1 /* AHKActionSheet.h */,
  1717. F72AAEC31E5C60C700BB17E1 /* AHKActionSheet.m */,
  1718. F72AAEC41E5C60C700BB17E1 /* AHKActionSheetViewController.h */,
  1719. F72AAEC51E5C60C700BB17E1 /* AHKActionSheetViewController.m */,
  1720. );
  1721. path = AHKActionSheet;
  1722. sourceTree = "<group>";
  1723. };
  1724. F72B60941A24F04E004EF66F /* Localizations */ = {
  1725. isa = PBXGroup;
  1726. children = (
  1727. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1728. );
  1729. name = Localizations;
  1730. sourceTree = "<group>";
  1731. };
  1732. F7381ED9218218A4000B1560 /* Offline */ = {
  1733. isa = PBXGroup;
  1734. children = (
  1735. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1736. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1737. );
  1738. path = Offline;
  1739. sourceTree = "<group>";
  1740. };
  1741. F73B4EAC1F470D9100BBEE4B /* src */ = {
  1742. isa = PBXGroup;
  1743. children = (
  1744. F73B4EAD1F470D9100BBEE4B /* Big5Freq.tab */,
  1745. F73B4EAE1F470D9100BBEE4B /* CharDistribution.cpp */,
  1746. F73B4EAF1F470D9100BBEE4B /* CharDistribution.h */,
  1747. F73B4EB01F470D9100BBEE4B /* CMakeLists.txt */,
  1748. F73B4EB11F470D9100BBEE4B /* EUCKRFreq.tab */,
  1749. F73B4EB21F470D9100BBEE4B /* EUCTWFreq.tab */,
  1750. F73B4EB31F470D9100BBEE4B /* GB2312Freq.tab */,
  1751. F73B4EB41F470D9100BBEE4B /* JISFreq.tab */,
  1752. F73B4EB51F470D9100BBEE4B /* JpCntx.cpp */,
  1753. F73B4EB61F470D9100BBEE4B /* JpCntx.h */,
  1754. F73B4EB71F470D9100BBEE4B /* LangModels */,
  1755. F73B4EC61F470D9100BBEE4B /* nsBig5Prober.cpp */,
  1756. F73B4EC71F470D9100BBEE4B /* nsBig5Prober.h */,
  1757. F73B4EC81F470D9100BBEE4B /* nsCharSetProber.cpp */,
  1758. F73B4EC91F470D9100BBEE4B /* nsCharSetProber.h */,
  1759. F73B4ECA1F470D9100BBEE4B /* nsCodingStateMachine.h */,
  1760. F73B4ECB1F470D9100BBEE4B /* nscore.h */,
  1761. F73B4ECC1F470D9100BBEE4B /* nsEscCharsetProber.cpp */,
  1762. F73B4ECD1F470D9100BBEE4B /* nsEscCharsetProber.h */,
  1763. F73B4ECE1F470D9100BBEE4B /* nsEscSM.cpp */,
  1764. F73B4ECF1F470D9100BBEE4B /* nsEUCJPProber.cpp */,
  1765. F73B4ED01F470D9100BBEE4B /* nsEUCJPProber.h */,
  1766. F73B4ED11F470D9100BBEE4B /* nsEUCKRProber.cpp */,
  1767. F73B4ED21F470D9100BBEE4B /* nsEUCKRProber.h */,
  1768. F73B4ED31F470D9100BBEE4B /* nsEUCTWProber.cpp */,
  1769. F73B4ED41F470D9100BBEE4B /* nsEUCTWProber.h */,
  1770. F73B4ED51F470D9100BBEE4B /* nsGB2312Prober.cpp */,
  1771. F73B4ED61F470D9100BBEE4B /* nsGB2312Prober.h */,
  1772. F73B4ED71F470D9100BBEE4B /* nsHebrewProber.cpp */,
  1773. F73B4ED81F470D9100BBEE4B /* nsHebrewProber.h */,
  1774. F73B4ED91F470D9100BBEE4B /* nsLatin1Prober.cpp */,
  1775. F73B4EDA1F470D9100BBEE4B /* nsLatin1Prober.h */,
  1776. F73B4EDB1F470D9100BBEE4B /* nsMBCSGroupProber.cpp */,
  1777. F73B4EDC1F470D9100BBEE4B /* nsMBCSGroupProber.h */,
  1778. F73B4EDD1F470D9100BBEE4B /* nsMBCSSM.cpp */,
  1779. F73B4EDE1F470D9100BBEE4B /* nsPkgInt.h */,
  1780. F73B4EDF1F470D9100BBEE4B /* nsSBCharSetProber.cpp */,
  1781. F73B4EE01F470D9100BBEE4B /* nsSBCharSetProber.h */,
  1782. F73B4EE11F470D9100BBEE4B /* nsSBCSGroupProber.cpp */,
  1783. F73B4EE21F470D9100BBEE4B /* nsSBCSGroupProber.h */,
  1784. F73B4EE31F470D9100BBEE4B /* nsSJISProber.cpp */,
  1785. F73B4EE41F470D9100BBEE4B /* nsSJISProber.h */,
  1786. F73B4EE51F470D9100BBEE4B /* nsUniversalDetector.cpp */,
  1787. F73B4EE61F470D9100BBEE4B /* nsUniversalDetector.h */,
  1788. F73B4EE71F470D9100BBEE4B /* nsUTF8Prober.cpp */,
  1789. F73B4EE81F470D9100BBEE4B /* nsUTF8Prober.h */,
  1790. F73B4EE91F470D9100BBEE4B /* prmem.h */,
  1791. F73B4EEA1F470D9100BBEE4B /* symbols.cmake */,
  1792. F73B4EEC1F470D9100BBEE4B /* uchardet.cpp */,
  1793. F73B4EED1F470D9100BBEE4B /* uchardet.h */,
  1794. );
  1795. path = src;
  1796. sourceTree = "<group>";
  1797. };
  1798. F73B4EB71F470D9100BBEE4B /* LangModels */ = {
  1799. isa = PBXGroup;
  1800. children = (
  1801. F73B4EB81F470D9100BBEE4B /* LangArabicModel.cpp */,
  1802. F73B4EB91F470D9100BBEE4B /* LangBulgarianModel.cpp */,
  1803. F73B4EBA1F470D9100BBEE4B /* LangDanishModel.cpp */,
  1804. F73B4EBB1F470D9100BBEE4B /* LangEsperantoModel.cpp */,
  1805. F73B4EBC1F470D9100BBEE4B /* LangFrenchModel.cpp */,
  1806. F73B4EBD1F470D9100BBEE4B /* LangGermanModel.cpp */,
  1807. F73B4EBE1F470D9100BBEE4B /* LangGreekModel.cpp */,
  1808. F73B4EBF1F470D9100BBEE4B /* LangHebrewModel.cpp */,
  1809. F73B4EC01F470D9100BBEE4B /* LangHungarianModel.cpp */,
  1810. F73B4EC11F470D9100BBEE4B /* LangRussianModel.cpp */,
  1811. F73B4EC21F470D9100BBEE4B /* LangSpanishModel.cpp */,
  1812. F73B4EC31F470D9100BBEE4B /* LangThaiModel.cpp */,
  1813. F73B4EC41F470D9100BBEE4B /* LangTurkishModel.cpp */,
  1814. F73B4EC51F470D9100BBEE4B /* LangVietnameseModel.cpp */,
  1815. );
  1816. path = LangModels;
  1817. sourceTree = "<group>";
  1818. };
  1819. F73CC0571E813DFF006E3047 /* BKPasscodeView */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. F73CC0581E813DFF006E3047 /* BKPasscodeDummyViewController.h */,
  1823. F73CC0591E813DFF006E3047 /* BKPasscodeDummyViewController.m */,
  1824. F73CC05A1E813DFF006E3047 /* BKPasscodeField.h */,
  1825. F73CC05B1E813DFF006E3047 /* BKPasscodeField.m */,
  1826. F73CC05C1E813DFF006E3047 /* BKPasscodeInputView.h */,
  1827. F73CC05D1E813DFF006E3047 /* BKPasscodeInputView.m */,
  1828. F73CC05E1E813DFF006E3047 /* BKPasscodeLockScreenManager.h */,
  1829. F73CC05F1E813DFF006E3047 /* BKPasscodeLockScreenManager.m */,
  1830. F73CC0601E813DFF006E3047 /* BKPasscodeUtils.h */,
  1831. F73CC0611E813DFF006E3047 /* BKPasscodeViewController.h */,
  1832. F73CC0621E813DFF006E3047 /* BKPasscodeViewController.m */,
  1833. F73CC0631E813DFF006E3047 /* BKShiftingView.h */,
  1834. F73CC0641E813DFF006E3047 /* BKShiftingView.m */,
  1835. F73CC0651E813DFF006E3047 /* BKTouchIDManager.h */,
  1836. F73CC0661E813DFF006E3047 /* BKTouchIDManager.m */,
  1837. F73CC0671E813DFF006E3047 /* BKTouchIDSwitchView.h */,
  1838. F73CC0681E813DFF006E3047 /* BKTouchIDSwitchView.m */,
  1839. );
  1840. path = BKPasscodeView;
  1841. sourceTree = "<group>";
  1842. };
  1843. F73D71561F26739100E233EB /* Text */ = {
  1844. isa = PBXGroup;
  1845. children = (
  1846. F73D71611F2673C200E233EB /* NCText.swift */,
  1847. F73D71631F2674A400E233EB /* NCText.storyboard */,
  1848. );
  1849. path = Text;
  1850. sourceTree = "<group>";
  1851. };
  1852. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1853. isa = PBXGroup;
  1854. children = (
  1855. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1856. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1857. F732BA031D76CE1500E9878B /* CCNetworking.h */,
  1858. F732BA041D76CE1500E9878B /* CCNetworking.m */,
  1859. F74D3DBD1BAC1941000BAE4B /* OCNetworking.h */,
  1860. F74D3DBE1BAC1941000BAE4B /* OCNetworking.m */,
  1861. F74E432420B5547700C2E54C /* NCNetworkingEndToEnd.h */,
  1862. F74E432520B5547700C2E54C /* NCNetworkingEndToEnd.m */,
  1863. );
  1864. path = Networking;
  1865. sourceTree = "<group>";
  1866. };
  1867. F75037421DBFA91A008FB480 /* PureLayout */ = {
  1868. isa = PBXGroup;
  1869. children = (
  1870. F75037431DBFA91A008FB480 /* ALView+PureLayout.h */,
  1871. F75037441DBFA91A008FB480 /* ALView+PureLayout.m */,
  1872. F75037451DBFA91A008FB480 /* NSArray+PureLayout.h */,
  1873. F75037461DBFA91A008FB480 /* NSArray+PureLayout.m */,
  1874. F75037471DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.h */,
  1875. F75037481DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m */,
  1876. F75037491DBFA91A008FB480 /* PureLayout+Internal.h */,
  1877. F750374A1DBFA91A008FB480 /* PureLayout.h */,
  1878. F750374B1DBFA91A008FB480 /* PureLayoutDefines.h */,
  1879. );
  1880. path = PureLayout;
  1881. sourceTree = "<group>";
  1882. };
  1883. F754EEC321772B6100BB1CDF /* DropdownMenu */ = {
  1884. isa = PBXGroup;
  1885. children = (
  1886. F754EEC421772B6100BB1CDF /* DropdownItem.swift */,
  1887. F754EEC521772B6100BB1CDF /* DropUpMenu.swift */,
  1888. F754EEC621772B6100BB1CDF /* DropdownMenu.h */,
  1889. F754EEC721772B6100BB1CDF /* DropdownMenu.swift */,
  1890. F754EEC821772B6100BB1CDF /* SectionHeader.swift */,
  1891. );
  1892. path = DropdownMenu;
  1893. sourceTree = "<group>";
  1894. };
  1895. F758B41E212C516300515F55 /* ScanDocument */ = {
  1896. isa = PBXGroup;
  1897. children = (
  1898. F758B45F212C56A400515F55 /* ScanCollectionView.swift */,
  1899. F758B45D212C569C00515F55 /* ScanCell.swift */,
  1900. F758B457212C564000515F55 /* Scan.storyboard */,
  1901. );
  1902. path = ScanDocument;
  1903. sourceTree = "<group>";
  1904. };
  1905. F760F75621F21F61006B1A73 /* PhotoEditor */ = {
  1906. isa = PBXGroup;
  1907. children = (
  1908. F760F77821F21F61006B1A73 /* ColorCollectionViewCell.swift */,
  1909. F760F76021F21F61006B1A73 /* ColorCollectionViewCell.xib */,
  1910. F760F75921F21F61006B1A73 /* ColorsCollectionViewDelegate.swift */,
  1911. F760F77A21F21F61006B1A73 /* CropRectView.swift */,
  1912. F760F77021F21F61006B1A73 /* CropView.swift */,
  1913. F760F77621F21F61006B1A73 /* CropViewController.swift */,
  1914. F760F76E21F21F61006B1A73 /* EmojiCollectionViewCell.swift */,
  1915. F760F76121F21F61006B1A73 /* EmojiCollectionViewCell.xib */,
  1916. F760F76F21F21F61006B1A73 /* EmojisCollectionViewDelegate.swift */,
  1917. F760F77921F21F61006B1A73 /* GradientView.swift */,
  1918. F760F75721F21F61006B1A73 /* icomoon.ttf */,
  1919. F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */,
  1920. F760F76D21F21F61006B1A73 /* PhotoCropEditorBorder.png */,
  1921. F760F76521F21F61006B1A73 /* PhotoCropEditorBorder@2x.png */,
  1922. F760F76C21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png */,
  1923. F760F75B21F21F61006B1A73 /* PhotoEditor+Controls.swift */,
  1924. F760F77721F21F61006B1A73 /* PhotoEditor+Crop.swift */,
  1925. F760F76B21F21F61006B1A73 /* PhotoEditor+Drawing.swift */,
  1926. F760F76421F21F61006B1A73 /* PhotoEditor+Font.swift */,
  1927. F760F77221F21F61006B1A73 /* PhotoEditor+Gestures.swift */,
  1928. F760F75A21F21F61006B1A73 /* PhotoEditor+Keyboard.swift */,
  1929. F760F75D21F21F61006B1A73 /* PhotoEditor+StickersViewController.swift */,
  1930. F760F75E21F21F61006B1A73 /* PhotoEditor+UITextView.swift */,
  1931. F760F77321F21F61006B1A73 /* PhotoEditorViewController.swift */,
  1932. F760F75C21F21F61006B1A73 /* PhotoEditorViewController.xib */,
  1933. F760F76A21F21F61006B1A73 /* Protocols.swift */,
  1934. F760F77121F21F61006B1A73 /* ResizeControl.swift */,
  1935. F760F77521F21F61006B1A73 /* StickerCollectionViewCell.swift */,
  1936. F760F77421F21F61006B1A73 /* StickerCollectionViewCell.xib */,
  1937. F760F76921F21F61006B1A73 /* StickersViewController.swift */,
  1938. F760F75821F21F61006B1A73 /* StickersViewController.xib */,
  1939. F760F76821F21F61006B1A73 /* UIImage+Crop.swift */,
  1940. F760F76721F21F61006B1A73 /* UIImage+Size.swift */,
  1941. F760F75F21F21F61006B1A73 /* UIImageView+Alpha.swift */,
  1942. F760F76621F21F61006B1A73 /* UIView+Image.swift */,
  1943. );
  1944. path = PhotoEditor;
  1945. sourceTree = "<group>";
  1946. };
  1947. F762CA9F1EACB66200B38484 /* XLForm */ = {
  1948. isa = PBXGroup;
  1949. children = (
  1950. F762CAA11EACB66200B38484 /* XL */,
  1951. F762CAF51EACB66200B38484 /* XLForm.bundle */,
  1952. );
  1953. path = XLForm;
  1954. sourceTree = "<group>";
  1955. };
  1956. F762CAA11EACB66200B38484 /* XL */ = {
  1957. isa = PBXGroup;
  1958. children = (
  1959. F762CAA21EACB66200B38484 /* Cell */,
  1960. F762CAC51EACB66200B38484 /* Controllers */,
  1961. F762CACD1EACB66200B38484 /* Descriptors */,
  1962. F762CAD51EACB66200B38484 /* Helpers */,
  1963. F762CAEB1EACB66200B38484 /* Validation */,
  1964. F762CAF31EACB66200B38484 /* XLForm.h */,
  1965. F762CAF41EACB66200B38484 /* XLForm.m */,
  1966. );
  1967. path = XL;
  1968. sourceTree = "<group>";
  1969. };
  1970. F762CAA21EACB66200B38484 /* Cell */ = {
  1971. isa = PBXGroup;
  1972. children = (
  1973. F762CAA31EACB66200B38484 /* XLFormBaseCell.h */,
  1974. F762CAA41EACB66200B38484 /* XLFormBaseCell.m */,
  1975. F762CAA51EACB66200B38484 /* XLFormButtonCell.h */,
  1976. F762CAA61EACB66200B38484 /* XLFormButtonCell.m */,
  1977. F762CAA71EACB66200B38484 /* XLFormCheckCell.h */,
  1978. F762CAA81EACB66200B38484 /* XLFormCheckCell.m */,
  1979. F762CAA91EACB66200B38484 /* XLFormDateCell.h */,
  1980. F762CAAA1EACB66200B38484 /* XLFormDateCell.m */,
  1981. F762CAAB1EACB66200B38484 /* XLFormDatePickerCell.h */,
  1982. F762CAAC1EACB66200B38484 /* XLFormDatePickerCell.m */,
  1983. F762CAAD1EACB66200B38484 /* XLFormDescriptorCell.h */,
  1984. F762CAAE1EACB66200B38484 /* XLFormImageCell.h */,
  1985. F762CAAF1EACB66200B38484 /* XLFormImageCell.m */,
  1986. F762CAB01EACB66200B38484 /* XLFormInlineRowDescriptorCell.h */,
  1987. F762CAB11EACB66200B38484 /* XLFormInlineSelectorCell.h */,
  1988. F762CAB21EACB66200B38484 /* XLFormInlineSelectorCell.m */,
  1989. F762CAB31EACB66200B38484 /* XLFormLeftRightSelectorCell.h */,
  1990. F762CAB41EACB66200B38484 /* XLFormLeftRightSelectorCell.m */,
  1991. F762CAB51EACB66200B38484 /* XLFormPickerCell.h */,
  1992. F762CAB61EACB66200B38484 /* XLFormPickerCell.m */,
  1993. F762CAB71EACB66200B38484 /* XLFormSegmentedCell.h */,
  1994. F762CAB81EACB66200B38484 /* XLFormSegmentedCell.m */,
  1995. F762CAB91EACB66200B38484 /* XLFormSelectorCell.h */,
  1996. F762CABA1EACB66200B38484 /* XLFormSelectorCell.m */,
  1997. F762CABB1EACB66200B38484 /* XLFormSliderCell.h */,
  1998. F762CABC1EACB66200B38484 /* XLFormSliderCell.m */,
  1999. F762CABD1EACB66200B38484 /* XLFormStepCounterCell.h */,
  2000. F762CABE1EACB66200B38484 /* XLFormStepCounterCell.m */,
  2001. F762CABF1EACB66200B38484 /* XLFormSwitchCell.h */,
  2002. F762CAC01EACB66200B38484 /* XLFormSwitchCell.m */,
  2003. F762CAC11EACB66200B38484 /* XLFormTextFieldCell.h */,
  2004. F762CAC21EACB66200B38484 /* XLFormTextFieldCell.m */,
  2005. F762CAC31EACB66200B38484 /* XLFormTextViewCell.h */,
  2006. F762CAC41EACB66200B38484 /* XLFormTextViewCell.m */,
  2007. );
  2008. path = Cell;
  2009. sourceTree = "<group>";
  2010. };
  2011. F762CAC51EACB66200B38484 /* Controllers */ = {
  2012. isa = PBXGroup;
  2013. children = (
  2014. F762CAC61EACB66200B38484 /* XLFormOptionsObject.h */,
  2015. F762CAC71EACB66200B38484 /* XLFormOptionsObject.m */,
  2016. F762CAC81EACB66200B38484 /* XLFormOptionsViewController.h */,
  2017. F762CAC91EACB66200B38484 /* XLFormOptionsViewController.m */,
  2018. F762CACA1EACB66200B38484 /* XLFormRowDescriptorViewController.h */,
  2019. F762CACB1EACB66200B38484 /* XLFormViewController.h */,
  2020. F762CACC1EACB66200B38484 /* XLFormViewController.m */,
  2021. );
  2022. path = Controllers;
  2023. sourceTree = "<group>";
  2024. };
  2025. F762CACD1EACB66200B38484 /* Descriptors */ = {
  2026. isa = PBXGroup;
  2027. children = (
  2028. F762CACE1EACB66200B38484 /* XLFormDescriptor.h */,
  2029. F762CACF1EACB66200B38484 /* XLFormDescriptor.m */,
  2030. F762CAD01EACB66200B38484 /* XLFormDescriptorDelegate.h */,
  2031. F762CAD11EACB66200B38484 /* XLFormRowDescriptor.h */,
  2032. F762CAD21EACB66200B38484 /* XLFormRowDescriptor.m */,
  2033. F762CAD31EACB66200B38484 /* XLFormSectionDescriptor.h */,
  2034. F762CAD41EACB66200B38484 /* XLFormSectionDescriptor.m */,
  2035. );
  2036. path = Descriptors;
  2037. sourceTree = "<group>";
  2038. };
  2039. F762CAD51EACB66200B38484 /* Helpers */ = {
  2040. isa = PBXGroup;
  2041. children = (
  2042. F762CAD61EACB66200B38484 /* NSArray+XLFormAdditions.h */,
  2043. F762CAD71EACB66200B38484 /* NSArray+XLFormAdditions.m */,
  2044. F762CAD81EACB66200B38484 /* NSExpression+XLFormAdditions.h */,
  2045. F762CAD91EACB66200B38484 /* NSExpression+XLFormAdditions.m */,
  2046. F762CADA1EACB66200B38484 /* NSObject+XLFormAdditions.h */,
  2047. F762CADB1EACB66200B38484 /* NSObject+XLFormAdditions.m */,
  2048. F762CADC1EACB66200B38484 /* NSPredicate+XLFormAdditions.h */,
  2049. F762CADD1EACB66200B38484 /* NSPredicate+XLFormAdditions.m */,
  2050. F762CADE1EACB66200B38484 /* NSString+XLFormAdditions.h */,
  2051. F762CADF1EACB66200B38484 /* NSString+XLFormAdditions.m */,
  2052. F762CAE01EACB66200B38484 /* UIView+XLFormAdditions.h */,
  2053. F762CAE11EACB66200B38484 /* UIView+XLFormAdditions.m */,
  2054. F762CAE21EACB66200B38484 /* Views */,
  2055. );
  2056. path = Helpers;
  2057. sourceTree = "<group>";
  2058. };
  2059. F762CAE21EACB66200B38484 /* Views */ = {
  2060. isa = PBXGroup;
  2061. children = (
  2062. F762CAE31EACB66200B38484 /* XLFormRightDetailCell.h */,
  2063. F762CAE41EACB66200B38484 /* XLFormRightDetailCell.m */,
  2064. F762CAE51EACB66200B38484 /* XLFormRightImageButton.h */,
  2065. F762CAE61EACB66200B38484 /* XLFormRightImageButton.m */,
  2066. F762CAE71EACB66200B38484 /* XLFormRowNavigationAccessoryView.h */,
  2067. F762CAE81EACB66200B38484 /* XLFormRowNavigationAccessoryView.m */,
  2068. F762CAE91EACB66200B38484 /* XLFormTextView.h */,
  2069. F762CAEA1EACB66200B38484 /* XLFormTextView.m */,
  2070. );
  2071. path = Views;
  2072. sourceTree = "<group>";
  2073. };
  2074. F762CAEB1EACB66200B38484 /* Validation */ = {
  2075. isa = PBXGroup;
  2076. children = (
  2077. F762CAEC1EACB66200B38484 /* XLFormRegexValidator.h */,
  2078. F762CAED1EACB66200B38484 /* XLFormRegexValidator.m */,
  2079. F762CAEE1EACB66200B38484 /* XLFormValidationStatus.h */,
  2080. F762CAEF1EACB66200B38484 /* XLFormValidationStatus.m */,
  2081. F762CAF01EACB66200B38484 /* XLFormValidator.h */,
  2082. F762CAF11EACB66200B38484 /* XLFormValidator.m */,
  2083. F762CAF21EACB66200B38484 /* XLFormValidatorProtocol.h */,
  2084. );
  2085. path = Validation;
  2086. sourceTree = "<group>";
  2087. };
  2088. F7632FC32183667400721B71 /* Section */ = {
  2089. isa = PBXGroup;
  2090. children = (
  2091. F7632FC0218353AA00721B71 /* NCTrashSectionFooter.xib */,
  2092. F7632FBE21832F8700721B71 /* NCTrashSectionHeaderMenu.xib */,
  2093. F7417DB2216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift */,
  2094. );
  2095. path = Section;
  2096. sourceTree = "<group>";
  2097. };
  2098. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  2099. isa = PBXGroup;
  2100. children = (
  2101. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  2102. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  2103. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  2104. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  2105. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  2106. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  2107. F716FE7923795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift */,
  2108. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  2109. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  2110. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  2111. );
  2112. path = "File Provider Extension";
  2113. sourceTree = "<group>";
  2114. };
  2115. F774F5CB2407F4EF000C5E86 /* NCViewerImage */ = {
  2116. isa = PBXGroup;
  2117. children = (
  2118. F774F5D62407F547000C5E86 /* NCViewerImageAsset.swift */,
  2119. F774F5CC2407F4EF000C5E86 /* NCViewerImageView.xib */,
  2120. F774F5CD2407F4EF000C5E86 /* NCViewerImageView.swift */,
  2121. F774F5CE2407F4EF000C5E86 /* NCViewerImageCollectionViewCell.xib */,
  2122. F774F5CF2407F4EF000C5E86 /* NCViewerImageCollectionViewCell.swift */,
  2123. F774F5D02407F4EF000C5E86 /* NCViewerImageNibLoadingView.swift */,
  2124. );
  2125. path = NCViewerImage;
  2126. sourceTree = "<group>";
  2127. };
  2128. F78ACD3E21903BA20088454D /* Cell */ = {
  2129. isa = PBXGroup;
  2130. children = (
  2131. F7FFEACE1F82BB23005E5C17 /* CCCellMain.h */,
  2132. F70211F51BAC56E9003FC03E /* CCCellMain.m */,
  2133. F70211F61BAC56E9003FC03E /* CCCellMain.xib */,
  2134. F70211F71BAC56E9003FC03E /* CCCellMainTransfer.h */,
  2135. F70211F81BAC56E9003FC03E /* CCCellMainTransfer.m */,
  2136. F70211F91BAC56E9003FC03E /* CCCellMainTransfer.xib */,
  2137. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  2138. F78ACD4521903D010088454D /* NCGridCell.xib */,
  2139. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  2140. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  2141. F78ACD4121903CE00088454D /* NCListCell.swift */,
  2142. F78ACD4321903CF20088454D /* NCListCell.xib */,
  2143. );
  2144. path = Cell;
  2145. sourceTree = "<group>";
  2146. };
  2147. F78ACD4721903F850088454D /* Cell */ = {
  2148. isa = PBXGroup;
  2149. children = (
  2150. F78ACD4821903F850088454D /* NCTrashListCell.swift */,
  2151. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  2152. );
  2153. path = Cell;
  2154. sourceTree = "<group>";
  2155. };
  2156. F78ACD4D219043E70088454D /* Layout */ = {
  2157. isa = PBXGroup;
  2158. children = (
  2159. F78ACD4E2190440D0088454D /* NCLayout.swift */,
  2160. );
  2161. path = Layout;
  2162. sourceTree = "<group>";
  2163. };
  2164. F78ACD50219046AC0088454D /* Section */ = {
  2165. isa = PBXGroup;
  2166. children = (
  2167. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
  2168. F7395139221B127F00D986C8 /* NCSectionMediaHeader.xib */,
  2169. F78ACD55219047E90088454D /* NCSectionHeader.xib */,
  2170. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  2171. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  2172. );
  2173. path = Section;
  2174. sourceTree = "<group>";
  2175. };
  2176. F78F74322163753B00C2ADAD /* Trash */ = {
  2177. isa = PBXGroup;
  2178. children = (
  2179. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  2180. F78F74352163781100C2ADAD /* NCTrash.swift */,
  2181. F78ACD4721903F850088454D /* Cell */,
  2182. F7632FC32183667400721B71 /* Section */,
  2183. );
  2184. path = Trash;
  2185. sourceTree = "<group>";
  2186. };
  2187. F79630EC215526B60015EEA5 /* Viewer */ = {
  2188. isa = PBXGroup;
  2189. children = (
  2190. F774F5CB2407F4EF000C5E86 /* NCViewerImage */,
  2191. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  2192. F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
  2193. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  2194. F7FB1D3D215E191D00D669EA /* NCViewerDocumentWeb.swift */,
  2195. F79630ED215527D40015EEA5 /* NCViewerMedia.swift */,
  2196. );
  2197. path = Viewer;
  2198. sourceTree = "<group>";
  2199. };
  2200. F79A65C12191D8DC00FF6DCC /* Select */ = {
  2201. isa = PBXGroup;
  2202. children = (
  2203. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  2204. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  2205. );
  2206. path = Select;
  2207. sourceTree = "<group>";
  2208. };
  2209. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  2210. isa = PBXGroup;
  2211. children = (
  2212. F7A3214E1E9E2A070069AD1B /* CCFavorites.h */,
  2213. F7A3214F1E9E2A070069AD1B /* CCFavorites.m */,
  2214. );
  2215. path = Favorites;
  2216. sourceTree = "<group>";
  2217. };
  2218. F7A321621E9E37960069AD1B /* Activity */ = {
  2219. isa = PBXGroup;
  2220. children = (
  2221. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  2222. F7C9555421F0C5470024296E /* NCActivity.swift */,
  2223. );
  2224. path = Activity;
  2225. sourceTree = "<group>";
  2226. };
  2227. F7A321891E9E42B20069AD1B /* MenuAccount */ = {
  2228. isa = PBXGroup;
  2229. children = (
  2230. F7A3218A1E9E42B30069AD1B /* CCMenuAccount.h */,
  2231. F7A3218B1E9E42B30069AD1B /* CCMenuAccount.m */,
  2232. );
  2233. path = MenuAccount;
  2234. sourceTree = "<group>";
  2235. };
  2236. F7A377131EB2364A002856D3 /* Fabric */ = {
  2237. isa = PBXGroup;
  2238. children = (
  2239. F7A377141EB2364A002856D3 /* Crashlytics.framework */,
  2240. F7A377151EB2364A002856D3 /* Fabric.framework */,
  2241. );
  2242. name = Fabric;
  2243. path = "Libraries external/Fabric";
  2244. sourceTree = SOURCE_ROOT;
  2245. };
  2246. F7ACE4281BAC0268006C0017 /* Settings */ = {
  2247. isa = PBXGroup;
  2248. children = (
  2249. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  2250. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  2251. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  2252. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  2253. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  2254. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  2255. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  2256. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  2257. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  2258. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  2259. F7ACE4301BAC0268006C0017 /* CCSettings.h */,
  2260. F7ACE4311BAC0268006C0017 /* CCSettings.m */,
  2261. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  2262. F738E8401F90FFD100F95C8E /* NCManageEndToEndEncryption.h */,
  2263. F738E8411F90FFD100F95C8E /* NCManageEndToEndEncryption.m */,
  2264. );
  2265. path = Settings;
  2266. sourceTree = "<group>";
  2267. };
  2268. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  2269. isa = PBXGroup;
  2270. children = (
  2271. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  2272. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  2273. );
  2274. path = BrowserWeb;
  2275. sourceTree = "<group>";
  2276. };
  2277. F7B0C0CA1EE7E7750033AC24 /* Synchronize */ = {
  2278. isa = PBXGroup;
  2279. children = (
  2280. F7B0C0CB1EE7E7750033AC24 /* CCSynchronize.h */,
  2281. F7B0C0CC1EE7E7750033AC24 /* CCSynchronize.m */,
  2282. );
  2283. path = Synchronize;
  2284. sourceTree = "<group>";
  2285. };
  2286. F7B0C1701EE8397E0033AC24 /* AutoUpload */ = {
  2287. isa = PBXGroup;
  2288. children = (
  2289. F7B0C1731EE839A30033AC24 /* NCAutoUpload.h */,
  2290. F7B0C1741EE839A30033AC24 /* NCAutoUpload.m */,
  2291. );
  2292. path = AutoUpload;
  2293. sourceTree = "<group>";
  2294. };
  2295. F7B2DEEB1F976785007CF4D2 /* NYMnemonic */ = {
  2296. isa = PBXGroup;
  2297. children = (
  2298. F7B2DEEC1F976785007CF4D2 /* languages */,
  2299. F7B2DEEE1F976785007CF4D2 /* NYMnemonic.h */,
  2300. F7B2DEEF1F976785007CF4D2 /* NYMnemonic.m */,
  2301. );
  2302. path = NYMnemonic;
  2303. sourceTree = "<group>";
  2304. };
  2305. F7B2DEEC1F976785007CF4D2 /* languages */ = {
  2306. isa = PBXGroup;
  2307. children = (
  2308. F7B2DEED1F976785007CF4D2 /* english.txt */,
  2309. );
  2310. path = languages;
  2311. sourceTree = "<group>";
  2312. };
  2313. F7B4F1C51F44356F00B53B42 /* NCUchardet */ = {
  2314. isa = PBXGroup;
  2315. children = (
  2316. F73B4EAC1F470D9100BBEE4B /* src */,
  2317. F7B4F1C71F44356F00B53B42 /* NCUchardet.h */,
  2318. F7B4F1C81F44356F00B53B42 /* NCUchardet.m */,
  2319. );
  2320. path = NCUchardet;
  2321. sourceTree = "<group>";
  2322. };
  2323. F7BAAD951ED5A63D00B7EAD4 /* Database */ = {
  2324. isa = PBXGroup;
  2325. children = (
  2326. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  2327. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  2328. );
  2329. path = Database;
  2330. sourceTree = "<group>";
  2331. };
  2332. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */ = {
  2333. isa = PBXGroup;
  2334. children = (
  2335. F7BFCCC01B68C21900548E76 /* CCManageLocation.h */,
  2336. F7BFCCC11B68C21900548E76 /* CCManageLocation.m */,
  2337. F777F0301C29717F00CE81CB /* PHAsset+Utility.h */,
  2338. F777F0311C29717F00CE81CB /* PHAsset+Utility.m */,
  2339. );
  2340. path = "ManageLocation+ManageAsset";
  2341. sourceTree = "<group>";
  2342. };
  2343. F7BFFA621A24D7300044ED85 /* Login */ = {
  2344. isa = PBXGroup;
  2345. children = (
  2346. F75ADF441DC75FFE008A7347 /* CCLogin.storyboard */,
  2347. F7BF1B3F1D51E893000854F6 /* CCLogin.h */,
  2348. F7BF1B401D51E893000854F6 /* CCLogin.m */,
  2349. F7DBC37B23325E01001A85BA /* NCAppConfigView.swift */,
  2350. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  2351. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  2352. );
  2353. path = Login;
  2354. sourceTree = "<group>";
  2355. };
  2356. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2357. isa = PBXGroup;
  2358. children = (
  2359. F76C3B871C638A4C00DC4301 /* CCError.h */,
  2360. F76C3B881C638A4C00DC4301 /* CCError.m */,
  2361. F7A54C341C6267B500E2C8BF /* CCExifGeo.h */,
  2362. F7A54C351C6267B500E2C8BF /* CCExifGeo.m */,
  2363. F76C3B831C6388BC00DC4301 /* CCGraphics.h */,
  2364. F76C3B841C6388BC00DC4301 /* CCGraphics.m */,
  2365. F7514EDA1C7B1336008F3338 /* CCHud.h */,
  2366. F7514EDB1C7B1336008F3338 /* CCHud.m */,
  2367. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2368. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2369. F78E7064219F096B006F23E4 /* NCAvatar.swift */,
  2370. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  2371. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  2372. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2373. F70CEF5523E9C7E50007035B /* UIColor+adjust.swift */,
  2374. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  2375. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  2376. F73049B81CB567F000C7C320 /* NSString+TruncateToWidth.h */,
  2377. F73049B91CB567F000C7C320 /* NSString+TruncateToWidth.m */,
  2378. F7B7504A2397D38E004E13EC /* UIImage+fixedOrientation.swift */,
  2379. );
  2380. path = Utility;
  2381. sourceTree = "<group>";
  2382. };
  2383. F7C0F46D1C8880540059EC54 /* Share */ = {
  2384. isa = PBXGroup;
  2385. children = (
  2386. F78B9683234F785300F54315 /* NCSelectDestination.h */,
  2387. F78B9682234F785300F54315 /* NCSelectDestination.m */,
  2388. F78B9684234F785300F54315 /* NCSelectDestination.storyboard */,
  2389. F7F8D7191ED6183000E711F3 /* CCCellShareExt.h */,
  2390. F7F8D71A1ED6183000E711F3 /* CCCellShareExt.m */,
  2391. F7F8D71B1ED6183000E711F3 /* CCCellShareExt.xib */,
  2392. F78BFEDE1D31126B00E513CF /* MainInterface.storyboard */,
  2393. F7C0F46E1C8880540059EC54 /* ShareViewController.h */,
  2394. F7C0F46F1C8880540059EC54 /* ShareViewController.m */,
  2395. F7296A661C8880ED001A7809 /* CCloadItemData.swift */,
  2396. F76F23321ED4600700C40023 /* Share-Bridging-Header.h */,
  2397. );
  2398. path = Share;
  2399. sourceTree = "<group>";
  2400. };
  2401. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2402. isa = PBXGroup;
  2403. children = (
  2404. F7C742D31E7BD36600D9C973 /* Supporting Files */,
  2405. F710E80C1EF95C9C00DC2427 /* Intro */,
  2406. F700222B1EC479840080073F /* Custom.xcassets */,
  2407. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  2408. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2409. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2410. );
  2411. path = Brand;
  2412. sourceTree = "<group>";
  2413. };
  2414. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. F7C5259F1E3B48B700FFE02C /* CCNotification.swift */,
  2418. F7C525A11E3B6DA800FFE02C /* CCNotification.storyboard */,
  2419. );
  2420. name = Notification;
  2421. sourceTree = "<group>";
  2422. };
  2423. F7C742D31E7BD36600D9C973 /* Supporting Files */ = {
  2424. isa = PBXGroup;
  2425. children = (
  2426. F771E3FB20E23A8700AFB62D /* File_Provider_Extension.entitlements */,
  2427. F771E3FC20E23A8800AFB62D /* File_Provider_Extension.plist */,
  2428. F7C742C01E7BD01F00D9C973 /* iOSClient.entitlements */,
  2429. F7496B81208F5651004B299C /* iOSClient.plist */,
  2430. F728B2BC23E83AD200E12DA0 /* Notification_Service_Extension.entitlements */,
  2431. F728B2BB23E83AD200E12DA0 /* Notification_Service_Extension.plist */,
  2432. F7C742D01E7BD35B00D9C973 /* Share.entitlements */,
  2433. F7496B83208F5652004B299C /* Share.plist */,
  2434. );
  2435. name = "Supporting Files";
  2436. sourceTree = "<group>";
  2437. };
  2438. F7CA1EBB20E7E3FE002CC65E /* PKDownloadButton */ = {
  2439. isa = PBXGroup;
  2440. children = (
  2441. F7CA1EBC20E7E3FE002CC65E /* UIImage+PKDownloadButton.m */,
  2442. F7CA1EBD20E7E3FE002CC65E /* PKBorderedButton.h */,
  2443. F7CA1EBE20E7E3FE002CC65E /* PKCircleProgressView.m */,
  2444. F7CA1EBF20E7E3FE002CC65E /* PKDownloadButton.h */,
  2445. F7CA1EC020E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.h */,
  2446. F7CA1EC120E7E3FE002CC65E /* PKCircleView.m */,
  2447. F7CA1EC220E7E3FE002CC65E /* PKStopDownloadButton.m */,
  2448. F7CA1EC320E7E3FE002CC65E /* PKPendingView.m */,
  2449. F7CA1EC420E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.h */,
  2450. F7CA1EC620E7E3FE002CC65E /* PKMacros.h */,
  2451. F7CA1EC720E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m */,
  2452. F7CA1EC820E7E3FE002CC65E /* PKDownloadButton.m */,
  2453. F7CA1EC920E7E3FE002CC65E /* PKCircleProgressView.h */,
  2454. F7CA1ECA20E7E3FE002CC65E /* PKBorderedButton.m */,
  2455. F7CA1ECB20E7E3FE002CC65E /* UIImage+PKDownloadButton.h */,
  2456. F7CA1ECC20E7E3FE002CC65E /* PKStopDownloadButton.h */,
  2457. F7CA1ECD20E7E3FE002CC65E /* PKCircleView.h */,
  2458. F7CA1ECE20E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m */,
  2459. F7CA1ECF20E7E3FE002CC65E /* PKPendingView.h */,
  2460. );
  2461. path = PKDownloadButton;
  2462. sourceTree = "<group>";
  2463. };
  2464. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  2465. isa = PBXGroup;
  2466. children = (
  2467. F7F4B1D723C74B3E00D82A6E /* NCRichWorkspace.swift */,
  2468. F722814223C8C34500C41898 /* NCRichWorkspace.xib */,
  2469. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  2470. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  2471. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  2472. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  2473. );
  2474. path = RichWorkspace;
  2475. sourceTree = "<group>";
  2476. };
  2477. F7D4B67A22956610000C2C86 /* Firebase */ = {
  2478. isa = PBXGroup;
  2479. children = (
  2480. F7D4B67C2295663D000C2C86 /* Analytics */,
  2481. F7D4B68D2295666E000C2C86 /* MLVision */,
  2482. F72382BA22958569005B8A07 /* MLVisionTextModel */,
  2483. F7D4B67B22956610000C2C86 /* Firebase.h */,
  2484. );
  2485. path = Firebase;
  2486. sourceTree = "<group>";
  2487. };
  2488. F7D4B67C2295663D000C2C86 /* Analytics */ = {
  2489. isa = PBXGroup;
  2490. children = (
  2491. F7D4B67D2295663D000C2C86 /* GoogleAppMeasurement.framework */,
  2492. F7D4B67E2295663D000C2C86 /* FirebaseCore.framework */,
  2493. F7D4B67F2295663D000C2C86 /* FirebaseAnalytics.framework */,
  2494. F7D4B6802295663D000C2C86 /* GoogleUtilities.framework */,
  2495. F7D4B6812295663D000C2C86 /* nanopb.framework */,
  2496. F7D4B6822295663D000C2C86 /* FIRAnalyticsConnector.framework */,
  2497. F7D4B6832295663D000C2C86 /* FirebaseInstanceID.framework */,
  2498. F7D4B6842295663D000C2C86 /* FirebaseCoreDiagnostics.framework */,
  2499. );
  2500. path = Analytics;
  2501. sourceTree = "<group>";
  2502. };
  2503. F7D4B68D2295666E000C2C86 /* MLVision */ = {
  2504. isa = PBXGroup;
  2505. children = (
  2506. F7D4B68E2295666E000C2C86 /* Protobuf.framework */,
  2507. F7D4B68F2295666E000C2C86 /* GTMSessionFetcher.framework */,
  2508. F7D4B6902295666E000C2C86 /* GoogleAPIClientForREST.framework */,
  2509. F7D4B6912295666E000C2C86 /* FirebaseMLVision.framework */,
  2510. F7D4B6922295666E000C2C86 /* GoogleToolboxForMac.framework */,
  2511. F7D4B6932295666E000C2C86 /* FirebaseMLCommon.framework */,
  2512. F7D4B6942295666E000C2C86 /* GoogleMobileVision.framework */,
  2513. );
  2514. path = MLVision;
  2515. sourceTree = "<group>";
  2516. };
  2517. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  2518. isa = PBXGroup;
  2519. children = (
  2520. F7DFB7EF219C5B8000680748 /* NCCreateFormUploadAssets.swift */,
  2521. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  2522. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  2523. F7DFB7F1219C5C0000680748 /* NCCreateFormUploadFileText.swift */,
  2524. F7DFB7F3219C5CA800680748 /* NCCreateFormUploadScanDocument.swift */,
  2525. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  2526. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  2527. );
  2528. path = "Create cloud";
  2529. sourceTree = "<group>";
  2530. };
  2531. F7E0E1DA22327885006B0911 /* AudioRecorder */ = {
  2532. isa = PBXGroup;
  2533. children = (
  2534. F7E0E1DB22327885006B0911 /* NCAudioRecorderViewController.swift */,
  2535. F7E0E1DD22327DBA006B0911 /* NCAudioRecorderViewController.storyboard */,
  2536. );
  2537. path = AudioRecorder;
  2538. sourceTree = "<group>";
  2539. };
  2540. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  2541. isa = PBXGroup;
  2542. children = (
  2543. F7E9C41520F4CA870040CF18 /* CCTransfers.h */,
  2544. F7E9C41820F4CA870040CF18 /* CCTransfers.m */,
  2545. );
  2546. path = Transfers;
  2547. sourceTree = "<group>";
  2548. };
  2549. F7EC9CB921185F2000F1C5CE /* Media */ = {
  2550. isa = PBXGroup;
  2551. children = (
  2552. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  2553. F7501C312212E57400FB1415 /* NCMedia.swift */,
  2554. );
  2555. path = Media;
  2556. sourceTree = "<group>";
  2557. };
  2558. F7F54CAC1E5B143100E19C62 /* Library */ = {
  2559. isa = PBXGroup;
  2560. children = (
  2561. F72AAEC11E5C60C700BB17E1 /* AHKActionSheet */,
  2562. F73CC0571E813DFF006E3047 /* BKPasscodeView */,
  2563. F754EEC321772B6100BB1CDF /* DropdownMenu */,
  2564. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */,
  2565. F7B4F1C51F44356F00B53B42 /* NCUchardet */,
  2566. F760F75621F21F61006B1A73 /* PhotoEditor */,
  2567. F762CA9F1EACB66200B38484 /* XLForm */,
  2568. );
  2569. path = Library;
  2570. sourceTree = "<group>";
  2571. };
  2572. F7F54CAD1E5B14C700E19C62 /* MWPhotoBrowser */ = {
  2573. isa = PBXGroup;
  2574. children = (
  2575. F7F54CAE1E5B14C700E19C62 /* Assets */,
  2576. F7F54CD01E5B14C700E19C62 /* MWCaptionView.h */,
  2577. F7F54CD11E5B14C700E19C62 /* MWCaptionView.m */,
  2578. F7F54CD21E5B14C700E19C62 /* MWCommon.h */,
  2579. F7F54CD71E5B14C700E19C62 /* MWPhoto.h */,
  2580. F7F54CD81E5B14C700E19C62 /* MWPhoto.m */,
  2581. F7F54CD91E5B14C700E19C62 /* MWPhotoBrowser.h */,
  2582. F7F54CDA1E5B14C700E19C62 /* MWPhotoBrowser.m */,
  2583. F7F54CDB1E5B14C700E19C62 /* MWPhotoBrowserPrivate.h */,
  2584. F7F54CDC1E5B14C700E19C62 /* MWPhotoProtocol.h */,
  2585. F7F54CDD1E5B14C700E19C62 /* MWTapDetectingImageView.h */,
  2586. F7F54CDE1E5B14C700E19C62 /* MWTapDetectingImageView.m */,
  2587. F7F54CDF1E5B14C700E19C62 /* MWTapDetectingView.h */,
  2588. F7F54CE01E5B14C700E19C62 /* MWTapDetectingView.m */,
  2589. F7F54CE11E5B14C700E19C62 /* MWZoomingScrollView.h */,
  2590. F7F54CE21E5B14C700E19C62 /* MWZoomingScrollView.m */,
  2591. F7F54CE31E5B14C700E19C62 /* UIImage+MWPhotoBrowser.h */,
  2592. F7F54CE41E5B14C700E19C62 /* UIImage+MWPhotoBrowser.m */,
  2593. );
  2594. path = MWPhotoBrowser;
  2595. sourceTree = "<group>";
  2596. };
  2597. F7F54CAE1E5B14C700E19C62 /* Assets */ = {
  2598. isa = PBXGroup;
  2599. children = (
  2600. F7F54CAF1E5B14C700E19C62 /* ImageError.png */,
  2601. F7F54CB01E5B14C700E19C62 /* ImageError@2x.png */,
  2602. F7F54CB11E5B14C700E19C62 /* ImageError@3x.png */,
  2603. F7F54CB21E5B14C700E19C62 /* ImageSelectedOff.png */,
  2604. F7F54CB31E5B14C700E19C62 /* ImageSelectedOff@2x.png */,
  2605. F7F54CB41E5B14C700E19C62 /* ImageSelectedOff@3x.png */,
  2606. F7F54CB51E5B14C700E19C62 /* ImageSelectedOn.png */,
  2607. F7F54CB61E5B14C700E19C62 /* ImageSelectedOn@2x.png */,
  2608. F7F54CB71E5B14C700E19C62 /* ImageSelectedOn@3x.png */,
  2609. F7F54CB81E5B14C700E19C62 /* ImageSelectedSmallOff.png */,
  2610. F7F54CB91E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png */,
  2611. F7F54CBA1E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png */,
  2612. F7F54CBB1E5B14C700E19C62 /* ImageSelectedSmallOn.png */,
  2613. F7F54CBC1E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png */,
  2614. F7F54CBD1E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png */,
  2615. F7F54CBE1E5B14C700E19C62 /* PlayButtonOverlayLarge.png */,
  2616. F7F54CBF1E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png */,
  2617. F7F54CC01E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png */,
  2618. F7F54CC11E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png */,
  2619. F7F54CC21E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png */,
  2620. F7F54CC31E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png */,
  2621. F7F54CC41E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png */,
  2622. F7F54CC51E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png */,
  2623. F7F54CC61E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png */,
  2624. F7F54CC71E5B14C700E19C62 /* UIBarButtonItemArrowRight.png */,
  2625. F7F54CC81E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png */,
  2626. F7F54CC91E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png */,
  2627. F7F54CCA1E5B14C700E19C62 /* UIBarButtonItemGrid.png */,
  2628. F7F54CCB1E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png */,
  2629. F7F54CCC1E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png */,
  2630. F7F54CCD1E5B14C700E19C62 /* VideoOverlay.png */,
  2631. F7F54CCE1E5B14C700E19C62 /* VideoOverlay@2x.png */,
  2632. F7F54CCF1E5B14C700E19C62 /* VideoOverlay@3x.png */,
  2633. );
  2634. path = Assets;
  2635. sourceTree = "<group>";
  2636. };
  2637. F7F67B9F1A24D27800EE80DA = {
  2638. isa = PBXGroup;
  2639. children = (
  2640. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2641. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2642. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2643. F7C0F46D1C8880540059EC54 /* Share */,
  2644. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  2645. F7FC7D651DC1F98700BB2C6A /* Products */,
  2646. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  2647. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  2648. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  2649. );
  2650. sourceTree = "<group>";
  2651. };
  2652. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  2653. isa = PBXGroup;
  2654. children = (
  2655. F70F02A81C889183008DAB36 /* Libraries external */,
  2656. F70022561EC4C9100080073F /* OCCommunicationLib */,
  2657. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  2658. F70211F31BAC56E9003FC03E /* Main */,
  2659. F7A582D71A24DAB500E903D7 /* AppDelegate.h */,
  2660. F7B174C722FAC0A8000B7579 /* AppDelegate.m */,
  2661. F7C8C1901B482CEA0048180E /* CCGlobal.h */,
  2662. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  2663. F7A321621E9E37960069AD1B /* Activity */,
  2664. F7E0E1DA22327885006B0911 /* AudioRecorder */,
  2665. F7B0C1701EE8397E0033AC24 /* AutoUpload */,
  2666. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  2667. F7BAAD951ED5A63D00B7EAD4 /* Database */,
  2668. F7A3214D1E9E2A070069AD1B /* Favorites */,
  2669. F7F54CAC1E5B143100E19C62 /* Library */,
  2670. F7BFFA621A24D7300044ED85 /* Login */,
  2671. F7BFCCBD1B68C21900548E76 /* ManageLocation+ManageAsset */,
  2672. F7EC9CB921185F2000F1C5CE /* Media */,
  2673. F7A321891E9E42B20069AD1B /* MenuAccount */,
  2674. F74D3DB81BAC1941000BAE4B /* Networking */,
  2675. F7C5259A1E3B441D00FFE02C /* Notification */,
  2676. F7381ED9218218A4000B1560 /* Offline */,
  2677. F7FCFFD51D70798C000E6E29 /* PeekPop */,
  2678. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  2679. F758B41E212C516300515F55 /* ScanDocument */,
  2680. F7FE125B1BAC03FB0041924B /* Security */,
  2681. F79A65C12191D8DC00FF6DCC /* Select */,
  2682. F7ACE4281BAC0268006C0017 /* Settings */,
  2683. F728CE741BF6322C00E69702 /* Share */,
  2684. F7169A161EE590930086BD69 /* Shares */,
  2685. F7B0C0CA1EE7E7750033AC24 /* Synchronize */,
  2686. F73D71561F26739100E233EB /* Text */,
  2687. F7E9C41320F4CA870040CF18 /* Transfers */,
  2688. F78F74322163753B00C2ADAD /* Trash */,
  2689. F70784811A2C8A0D00AC9FFF /* UploadFromOtherUpp */,
  2690. F7BFFA991A24D7BB0044ED85 /* Utility */,
  2691. F79630EC215526B60015EEA5 /* Viewer */,
  2692. );
  2693. path = iOSClient;
  2694. sourceTree = "<group>";
  2695. };
  2696. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  2697. isa = PBXGroup;
  2698. children = (
  2699. F72B60941A24F04E004EF66F /* Localizations */,
  2700. F75CDBF51DF063AD00116AD0 /* .gitignore */,
  2701. F774DF0C1FCC26BD002AF9FC /* iTunesArtwork@1x.png */,
  2702. F774DF0D1FCC26BD002AF9FC /* iTunesArtwork@2x.png */,
  2703. F774DF0E1FCC26BE002AF9FC /* iTunesArtwork@3x.png */,
  2704. F7229B491DF71BB300E8C4E7 /* AUTHORS */,
  2705. F7F0617A1BAACDD300846525 /* CryptoCloud.pch */,
  2706. F77D49A71DC238E500CDC568 /* loading.gif */,
  2707. F7F67BAD1A24D27800EE80DA /* main.m */,
  2708. F7D154271E2392A300202FD9 /* Nextcloud-Bridging-Header.h */,
  2709. F76344751BF259A800188725 /* synchronized.gif */,
  2710. F76344761BF259A800188725 /* synchronizedcrypto.gif */,
  2711. );
  2712. name = "Supporting Files";
  2713. path = iOSClient;
  2714. sourceTree = "<group>";
  2715. };
  2716. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  2717. isa = PBXGroup;
  2718. children = (
  2719. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  2720. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  2721. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  2722. F765608623BF806C00765969 /* QuickLayout.framework */,
  2723. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  2724. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  2725. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  2726. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  2727. F774264022EB3F7300B23912 /* DropDown.framework */,
  2728. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  2729. F700510222DF6897003A3356 /* Parchment.framework */,
  2730. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  2731. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  2732. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  2733. F76E71E42244DF6900690001 /* Zip.framework */,
  2734. F745B250222D871800346520 /* QRCodeReader.framework */,
  2735. F75153232226920200323DDC /* FastScroll.framework */,
  2736. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  2737. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  2738. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  2739. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  2740. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  2741. F7C40C112199BA620004137E /* RealmSwift.framework */,
  2742. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  2743. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  2744. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  2745. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  2746. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  2747. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  2748. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  2749. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  2750. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  2751. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  2752. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  2753. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  2754. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  2755. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  2756. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  2757. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  2758. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  2759. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  2760. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  2761. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  2762. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  2763. );
  2764. name = Frameworks;
  2765. sourceTree = "<group>";
  2766. };
  2767. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  2768. isa = PBXGroup;
  2769. children = (
  2770. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  2771. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  2772. );
  2773. name = Products;
  2774. sourceTree = "<group>";
  2775. };
  2776. F7FCFFD51D70798C000E6E29 /* PeekPop */ = {
  2777. isa = PBXGroup;
  2778. children = (
  2779. F7FCFFD61D70798C000E6E29 /* CCPeekPop.storyboard */,
  2780. F7FCFFDD1D707B83000E6E29 /* CCPeekPop.h */,
  2781. F7FCFFDE1D707B83000E6E29 /* CCPeekPop.m */,
  2782. );
  2783. path = PeekPop;
  2784. sourceTree = "<group>";
  2785. };
  2786. F7FE125B1BAC03FB0041924B /* Security */ = {
  2787. isa = PBXGroup;
  2788. children = (
  2789. F7FE125C1BAC03FB0041924B /* CCBKPasscode.h */,
  2790. F7FE125D1BAC03FB0041924B /* CCBKPasscode.m */,
  2791. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  2792. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  2793. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  2794. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  2795. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  2796. );
  2797. path = Security;
  2798. sourceTree = "<group>";
  2799. };
  2800. /* End PBXGroup section */
  2801. /* Begin PBXNativeTarget section */
  2802. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  2803. isa = PBXNativeTarget;
  2804. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  2805. buildPhases = (
  2806. 2C33C47B23E2C475005F963B /* Sources */,
  2807. 2C33C47C23E2C475005F963B /* Frameworks */,
  2808. 2C33C47D23E2C475005F963B /* Resources */,
  2809. );
  2810. buildRules = (
  2811. );
  2812. dependencies = (
  2813. );
  2814. name = "Notification Service Extension";
  2815. productName = "Notification Service Extension";
  2816. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  2817. productType = "com.apple.product-type.app-extension";
  2818. };
  2819. F71459B41D12E3B700CAFEEC /* Share */ = {
  2820. isa = PBXNativeTarget;
  2821. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  2822. buildPhases = (
  2823. F71459B51D12E3B700CAFEEC /* Sources */,
  2824. F7145A141D12E3B700CAFEEC /* Frameworks */,
  2825. F7145A181D12E3B700CAFEEC /* Resources */,
  2826. F736B556234DCF7C008A5C9F /* Embed Frameworks */,
  2827. );
  2828. buildRules = (
  2829. );
  2830. dependencies = (
  2831. );
  2832. name = Share;
  2833. productName = "Share Ext";
  2834. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  2835. productType = "com.apple.product-type.app-extension";
  2836. };
  2837. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  2838. isa = PBXNativeTarget;
  2839. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  2840. buildPhases = (
  2841. F771E3CC20E2392D00AFB62D /* Sources */,
  2842. F771E3CD20E2392D00AFB62D /* Frameworks */,
  2843. F771E3CE20E2392D00AFB62D /* Resources */,
  2844. F736B559234DCF93008A5C9F /* Embed Frameworks */,
  2845. );
  2846. buildRules = (
  2847. );
  2848. dependencies = (
  2849. );
  2850. name = "File Provider Extension";
  2851. productName = "File Provider Extension";
  2852. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  2853. productType = "com.apple.product-type.app-extension";
  2854. };
  2855. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  2856. isa = PBXNativeTarget;
  2857. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  2858. buildPhases = (
  2859. F77B0DEF1D118A16002130FE /* Sources */,
  2860. F77B0EDC1D118A16002130FE /* Frameworks */,
  2861. F77B0EE91D118A16002130FE /* Resources */,
  2862. F77B0F981D118A16002130FE /* Embed App Extensions */,
  2863. F73B02C01DC0F1C900EC2C33 /* ShellScript */,
  2864. F7A377371EB24469002856D3 /* ShellScript */,
  2865. F75A40001EBCB82B00B213E8 /* ShellScript */,
  2866. );
  2867. buildRules = (
  2868. );
  2869. dependencies = (
  2870. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  2871. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  2872. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  2873. );
  2874. name = Nextcloud;
  2875. productName = "Crypto Cloud";
  2876. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  2877. productType = "com.apple.product-type.application";
  2878. };
  2879. /* End PBXNativeTarget section */
  2880. /* Begin PBXProject section */
  2881. F7F67BA01A24D27800EE80DA /* Project object */ = {
  2882. isa = PBXProject;
  2883. attributes = {
  2884. LastSwiftUpdateCheck = 1130;
  2885. LastUpgradeCheck = 1020;
  2886. ORGANIZATIONNAME = "Marino Faggiana";
  2887. TargetAttributes = {
  2888. 2C33C47E23E2C475005F963B = {
  2889. CreatedOnToolsVersion = 11.3.1;
  2890. DevelopmentTeam = 6JLRKY9ZV7;
  2891. ProvisioningStyle = Automatic;
  2892. };
  2893. F71459B41D12E3B700CAFEEC = {
  2894. DevelopmentTeam = 6JLRKY9ZV7;
  2895. LastSwiftMigration = 1020;
  2896. SystemCapabilities = {
  2897. com.apple.ApplicationGroups.iOS = {
  2898. enabled = 1;
  2899. };
  2900. com.apple.iCloud = {
  2901. enabled = 0;
  2902. };
  2903. };
  2904. };
  2905. F771E3CF20E2392D00AFB62D = {
  2906. CreatedOnToolsVersion = 9.4.1;
  2907. DevelopmentTeam = 6JLRKY9ZV7;
  2908. LastSwiftMigration = 1020;
  2909. ProvisioningStyle = Automatic;
  2910. };
  2911. F77B0DEB1D118A16002130FE = {
  2912. DevelopmentTeam = 6JLRKY9ZV7;
  2913. LastSwiftMigration = 1020;
  2914. ProvisioningStyle = Automatic;
  2915. SystemCapabilities = {
  2916. com.apple.Push = {
  2917. enabled = 1;
  2918. };
  2919. com.apple.iCloud = {
  2920. enabled = 1;
  2921. };
  2922. };
  2923. };
  2924. };
  2925. };
  2926. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  2927. compatibilityVersion = "Xcode 3.2";
  2928. developmentRegion = en;
  2929. hasScannedForEncodings = 0;
  2930. knownRegions = (
  2931. en,
  2932. Base,
  2933. de,
  2934. fr,
  2935. "pt-BR",
  2936. ru,
  2937. it,
  2938. tr,
  2939. "es-MX",
  2940. "nb-NO",
  2941. pl,
  2942. sv,
  2943. es,
  2944. is,
  2945. nl,
  2946. "sk-SK",
  2947. "en-GB",
  2948. "zh-Hans",
  2949. "ka-GE",
  2950. hu,
  2951. "zh-Hant-TW",
  2952. sr,
  2953. "es-CL",
  2954. "es-CO",
  2955. "es-CR",
  2956. "es-DO",
  2957. "es-EC",
  2958. "es-GT",
  2959. "es-HN",
  2960. "es-NI",
  2961. "es-PA",
  2962. "es-PE",
  2963. "es-PR",
  2964. "es-PY",
  2965. "es-SV",
  2966. "es-UY",
  2967. "cs-CZ",
  2968. ko,
  2969. "es-419",
  2970. "pt-PT",
  2971. "ja-JP",
  2972. gl,
  2973. ca,
  2974. da,
  2975. );
  2976. mainGroup = F7F67B9F1A24D27800EE80DA;
  2977. productRefGroup = F7F67B9F1A24D27800EE80DA;
  2978. projectDirPath = "";
  2979. projectRoot = "";
  2980. targets = (
  2981. F77B0DEB1D118A16002130FE /* Nextcloud */,
  2982. F71459B41D12E3B700CAFEEC /* Share */,
  2983. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  2984. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  2985. );
  2986. };
  2987. /* End PBXProject section */
  2988. /* Begin PBXResourcesBuildPhase section */
  2989. 2C33C47D23E2C475005F963B /* Resources */ = {
  2990. isa = PBXResourcesBuildPhase;
  2991. buildActionMask = 2147483647;
  2992. files = (
  2993. );
  2994. runOnlyForDeploymentPostprocessing = 0;
  2995. };
  2996. F7145A181D12E3B700CAFEEC /* Resources */ = {
  2997. isa = PBXResourcesBuildPhase;
  2998. buildActionMask = 2147483647;
  2999. files = (
  3000. F78B9686234F785300F54315 /* NCSelectDestination.storyboard in Resources */,
  3001. F78BFEE11D31126B00E513CF /* MainInterface.storyboard in Resources */,
  3002. F7145A1A1D12E3B700CAFEEC /* Images.xcassets in Resources */,
  3003. F7F8D71D1ED6183000E711F3 /* CCCellShareExt.xib in Resources */,
  3004. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  3005. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  3006. );
  3007. runOnlyForDeploymentPostprocessing = 0;
  3008. };
  3009. F771E3CE20E2392D00AFB62D /* Resources */ = {
  3010. isa = PBXResourcesBuildPhase;
  3011. buildActionMask = 2147483647;
  3012. files = (
  3013. );
  3014. runOnlyForDeploymentPostprocessing = 0;
  3015. };
  3016. F77B0EE91D118A16002130FE /* Resources */ = {
  3017. isa = PBXResourcesBuildPhase;
  3018. buildActionMask = 2147483647;
  3019. files = (
  3020. F79728D422F96F2E003CACA7 /* NCShareLinkFolderMenuView.xib in Resources */,
  3021. F760F78421F21F61006B1A73 /* ColorCollectionViewCell.xib in Resources */,
  3022. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  3023. F75ADF451DC75FFE008A7347 /* CCLogin.storyboard in Resources */,
  3024. F7F54CED1E5B14C700E19C62 /* ImageSelectedOn@3x.png in Resources */,
  3025. F7F54CF41E5B14C700E19C62 /* PlayButtonOverlayLarge.png in Resources */,
  3026. F7F54D041E5B14C800E19C62 /* VideoOverlay@2x.png in Resources */,
  3027. F7F54CF51E5B14C700E19C62 /* PlayButtonOverlayLarge@2x.png in Resources */,
  3028. F77D49A91DC238E500CDC568 /* loading.gif in Resources */,
  3029. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  3030. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  3031. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  3032. F7F54CF91E5B14C700E19C62 /* PlayButtonOverlayLargeTap@3x.png in Resources */,
  3033. F73B4EF21F470D9100BBEE4B /* EUCTWFreq.tab in Resources */,
  3034. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  3035. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  3036. F710D20024057E5E00A6033D /* NCActionSheetHeaderView.xib in Resources */,
  3037. F758B45A212C564000515F55 /* Scan.storyboard in Resources */,
  3038. F77B0EFE1D118A16002130FE /* CCUploadFromOtherUpp.storyboard in Resources */,
  3039. F7F54CF81E5B14C700E19C62 /* PlayButtonOverlayLargeTap@2x.png in Resources */,
  3040. F73B4EEE1F470D9100BBEE4B /* Big5Freq.tab in Resources */,
  3041. F760F78821F21F61006B1A73 /* PhotoCropEditorBorder@2x.png in Resources */,
  3042. F7F54CF31E5B14C700E19C62 /* ImageSelectedSmallOn@3x.png in Resources */,
  3043. F7F54CFA1E5B14C700E19C62 /* UIBarButtonItemArrowLeft.png in Resources */,
  3044. F7FCFFD81D70798C000E6E29 /* CCPeekPop.storyboard in Resources */,
  3045. F774F5D32407F4EF000C5E86 /* NCViewerImageCollectionViewCell.xib in Resources */,
  3046. F7F54CF61E5B14C700E19C62 /* PlayButtonOverlayLarge@3x.png in Resources */,
  3047. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  3048. F760F78521F21F61006B1A73 /* EmojiCollectionViewCell.xib in Resources */,
  3049. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  3050. F7F54D001E5B14C700E19C62 /* UIBarButtonItemGrid.png in Resources */,
  3051. F7F54CFE1E5B14C700E19C62 /* UIBarButtonItemArrowRight@2x.png in Resources */,
  3052. F7F54D031E5B14C800E19C62 /* VideoOverlay.png in Resources */,
  3053. F7F54CE81E5B14C700E19C62 /* ImageSelectedOff.png in Resources */,
  3054. F7169A1E1EE590930086BD69 /* NCSharesCell.xib in Resources */,
  3055. F73D71641F2674A400E233EB /* NCText.storyboard in Resources */,
  3056. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  3057. F7632FBF21832F8700721B71 /* NCTrashSectionHeaderMenu.xib in Resources */,
  3058. F739513A221B127F00D986C8 /* NCSectionMediaHeader.xib in Resources */,
  3059. F77B0F481D118A16002130FE /* synchronized.gif in Resources */,
  3060. F7F54CF71E5B14C700E19C62 /* PlayButtonOverlayLargeTap.png in Resources */,
  3061. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  3062. F7E0E1DE22327DBA006B0911 /* NCAudioRecorderViewController.storyboard in Resources */,
  3063. F710E8111EF95C9C00DC2427 /* ImagesIntro.xcassets in Resources */,
  3064. F7F54D021E5B14C700E19C62 /* UIBarButtonItemGrid@3x.png in Resources */,
  3065. F7F54CEA1E5B14C700E19C62 /* ImageSelectedOff@3x.png in Resources */,
  3066. F760F78621F21F61006B1A73 /* LaunchScreen.storyboard in Resources */,
  3067. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  3068. F769453E22E9E97E000A798A /* NCShareUserMenuView.xib in Resources */,
  3069. F749C10E23C4A5340027D966 /* NCIntroCollectionViewCell.xib in Resources */,
  3070. F7F54CF11E5B14C700E19C62 /* ImageSelectedSmallOn.png in Resources */,
  3071. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  3072. F760F77C21F21F61006B1A73 /* StickersViewController.xib in Resources */,
  3073. F762CB1B1EACB66200B38484 /* XLForm.bundle in Resources */,
  3074. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  3075. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  3076. F77B0F571D118A16002130FE /* synchronizedcrypto.gif in Resources */,
  3077. F72382C22295856A005B8A07 /* GoogleMVTextDetectorResources.bundle in Resources */,
  3078. F7F54CEE1E5B14C700E19C62 /* ImageSelectedSmallOff.png in Resources */,
  3079. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  3080. F760F79721F21F61006B1A73 /* StickerCollectionViewCell.xib in Resources */,
  3081. F749C10D23C4A5340027D966 /* NCIntro.storyboard in Resources */,
  3082. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  3083. F73B4EF31F470D9100BBEE4B /* GB2312Freq.tab in Resources */,
  3084. F7B2DEF11F976859007CF4D2 /* english.txt in Resources */,
  3085. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  3086. F7F54D051E5B14C800E19C62 /* VideoOverlay@3x.png in Resources */,
  3087. F7F54D011E5B14C700E19C62 /* UIBarButtonItemGrid@2x.png in Resources */,
  3088. F79728D622F9A0B1003CACA7 /* NCShareUserFolderMenuView.xib in Resources */,
  3089. F7DFAA8A22E22EF100FC4527 /* NCShareLinkMenuView.xib in Resources */,
  3090. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  3091. F7F54CE71E5B14C700E19C62 /* ImageError@3x.png in Resources */,
  3092. F760F78F21F21F61006B1A73 /* PhotoCropEditorBorder@3x.png in Resources */,
  3093. F7F54CE61E5B14C700E19C62 /* ImageError@2x.png in Resources */,
  3094. F7F54CEF1E5B14C700E19C62 /* ImageSelectedSmallOff@2x.png in Resources */,
  3095. F7F54CFF1E5B14C700E19C62 /* UIBarButtonItemArrowRight@3x.png in Resources */,
  3096. F774DF0F1FCC26BE002AF9FC /* iTunesArtwork@1x.png in Resources */,
  3097. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  3098. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  3099. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  3100. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  3101. F7632FC1218353AA00721B71 /* NCTrashSectionFooter.xib in Resources */,
  3102. F7F54CFB1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@2x.png in Resources */,
  3103. F7C525A21E3B6DA800FFE02C /* CCNotification.storyboard in Resources */,
  3104. F7F54CEB1E5B14C700E19C62 /* ImageSelectedOn.png in Resources */,
  3105. F7F54CF01E5B14C700E19C62 /* ImageSelectedSmallOff@3x.png in Resources */,
  3106. F73B4EF01F470D9100BBEE4B /* CMakeLists.txt in Resources */,
  3107. F7F54CEC1E5B14C700E19C62 /* ImageSelectedOn@2x.png in Resources */,
  3108. F73B4F151F470D9100BBEE4B /* symbols.cmake in Resources */,
  3109. F7F54CF21E5B14C700E19C62 /* ImageSelectedSmallOn@2x.png in Resources */,
  3110. F774264A22EB4D0000B23912 /* NCShareUserDropDownCell.xib in Resources */,
  3111. F722814323C8C34500C41898 /* NCRichWorkspace.xib in Resources */,
  3112. F7F54CE51E5B14C700E19C62 /* ImageError.png in Resources */,
  3113. F7F54CFC1E5B14C700E19C62 /* UIBarButtonItemArrowLeft@3x.png in Resources */,
  3114. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  3115. F760F79021F21F61006B1A73 /* PhotoCropEditorBorder.png in Resources */,
  3116. F78ACD56219047E90088454D /* NCSectionHeader.xib in Resources */,
  3117. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  3118. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  3119. F7F54CE91E5B14C700E19C62 /* ImageSelectedOff@2x.png in Resources */,
  3120. F77B0F8A1D118A16002130FE /* CCCellMain.xib in Resources */,
  3121. F774F5D12407F4EF000C5E86 /* NCViewerImageView.xib in Resources */,
  3122. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  3123. F77B0F8C1D118A16002130FE /* CCCellMainTransfer.xib in Resources */,
  3124. F73B4EF41F470D9100BBEE4B /* JISFreq.tab in Resources */,
  3125. F760F77B21F21F61006B1A73 /* icomoon.ttf in Resources */,
  3126. F760F78021F21F61006B1A73 /* PhotoEditorViewController.xib in Resources */,
  3127. F774DF101FCC26BE002AF9FC /* iTunesArtwork@2x.png in Resources */,
  3128. F73B4EF11F470D9100BBEE4B /* EUCKRFreq.tab in Resources */,
  3129. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  3130. F774DF111FCC26BE002AF9FC /* iTunesArtwork@3x.png in Resources */,
  3131. F7F54CFD1E5B14C700E19C62 /* UIBarButtonItemArrowRight.png in Resources */,
  3132. );
  3133. runOnlyForDeploymentPostprocessing = 0;
  3134. };
  3135. /* End PBXResourcesBuildPhase section */
  3136. /* Begin PBXShellScriptBuildPhase section */
  3137. F73B02C01DC0F1C900EC2C33 /* ShellScript */ = {
  3138. isa = PBXShellScriptBuildPhase;
  3139. buildActionMask = 2147483647;
  3140. files = (
  3141. );
  3142. inputPaths = (
  3143. );
  3144. outputPaths = (
  3145. );
  3146. runOnlyForDeploymentPostprocessing = 0;
  3147. shellPath = /bin/sh;
  3148. 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\"\n";
  3149. };
  3150. F75A40001EBCB82B00B213E8 /* ShellScript */ = {
  3151. isa = PBXShellScriptBuildPhase;
  3152. buildActionMask = 2147483647;
  3153. files = (
  3154. );
  3155. inputPaths = (
  3156. "$(SRCROOT)/Carthage/Build/iOS/Sheeeeeeeeet.framework",
  3157. "$(SRCROOT)/Carthage/Build/iOS/TLPhotoPicker.framework",
  3158. "$(SRCROOT)/Carthage/Build/iOS/UICKeyChainStore.framework",
  3159. "$(SRCROOT)/Carthage/Build/iOS/MGSwipeTableCell.framework",
  3160. "$(SRCROOT)/Carthage/Build/iOS/DZNEmptyDataSet.framework",
  3161. "$(SRCROOT)/Carthage/Build/iOS/KTVHTTPCache.framework",
  3162. "$(SRCROOT)/Carthage/Build/iOS/KTVCocoaHTTPServer.framework",
  3163. "$(SRCROOT)/Carthage/Build/iOS/MBProgressHUD.framework",
  3164. "$(SRCROOT)/Carthage/Build/iOS/Realm.framework",
  3165. "$(SRCROOT)/Carthage/Build/iOS/RealmSwift.framework",
  3166. "$(SRCROOT)/Carthage/Build/iOS/SVGKit.framework",
  3167. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjack.framework",
  3168. "$(SRCROOT)/Carthage/Build/iOS/CocoaLumberjackSwift.framework",
  3169. "$(SRCROOT)/Carthage/Build/iOS/WeScan.framework",
  3170. "$(SRCROOT)/Carthage/Build/iOS/SwiftRichString.framework",
  3171. "$(SRCROOT)/Carthage/Build/iOS/FastScroll.framework",
  3172. "$(SRCROOT)/Carthage/Build/iOS/QRCodeReader.framework",
  3173. "$(SRCROOT)/Carthage/Build/iOS/AFNetworking.framework",
  3174. "$(SRCROOT)/Carthage/Build/iOS/ZIPFoundation.framework",
  3175. "$(SRCROOT)/Carthage/Build/iOS/Parchment.framework",
  3176. "$(SRCROOT)/Carthage/Build/iOS/FSCalendar.framework",
  3177. "$(SRCROOT)/Carthage/Build/iOS/DropDown.framework",
  3178. "$(SRCROOT)/Carthage/Build/iOS/OpenSSL.framework",
  3179. "$(SRCROOT)/Carthage/Build/iOS/Alamofire.framework",
  3180. "$(SRCROOT)/Carthage/Build/iOS/SwiftyXMLParser.framework",
  3181. "$(SRCROOT)/Carthage/Build/iOS/NCCommunication.framework",
  3182. "$(SRCROOT)/Carthage/Build/iOS/SwiftyJSON.framework",
  3183. "$(SRCROOT)/Carthage/Build/iOS/QuickLayout.framework",
  3184. "$(SRCROOT)/Carthage/Build/iOS/SwiftEntryKit.framework",
  3185. "$(SRCROOT)/Carthage/Build/iOS/FloatingPanel.framework",
  3186. "$(SRCROOT)/Carthage/Build/iOS/MarkdownKit.framework",
  3187. );
  3188. outputPaths = (
  3189. );
  3190. runOnlyForDeploymentPostprocessing = 0;
  3191. shellPath = /bin/sh;
  3192. shellScript = "/usr/local/bin/carthage copy-frameworks\n";
  3193. };
  3194. F7A377371EB24469002856D3 /* ShellScript */ = {
  3195. isa = PBXShellScriptBuildPhase;
  3196. buildActionMask = 2147483647;
  3197. files = (
  3198. );
  3199. inputPaths = (
  3200. );
  3201. outputPaths = (
  3202. );
  3203. runOnlyForDeploymentPostprocessing = 0;
  3204. shellPath = /bin/sh;
  3205. shellScript = "\"${PROJECT_DIR}/Libraries external/Fabric/Fabric.framework/run\" 52fe877f4a4ff58868da789df0b0eb915fd94ae1 3d6e5abfdc40776a4a8468ddf5910958596ccbccc341e19f7aaf0fbeb4ff6cf5\n";
  3206. };
  3207. /* End PBXShellScriptBuildPhase section */
  3208. /* Begin PBXSourcesBuildPhase section */
  3209. 2C33C47B23E2C475005F963B /* Sources */ = {
  3210. isa = PBXSourcesBuildPhase;
  3211. buildActionMask = 2147483647;
  3212. files = (
  3213. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  3214. 2CB7D1C923E2E40B00376EF9 /* NCUtility.swift in Sources */,
  3215. F70CEF5923E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3216. 2C59AC5A23E2E01A00733BE8 /* OCCapabilities.m in Sources */,
  3217. 2C1D5D7723E2DE5F00334ABB /* CCUtility.m in Sources */,
  3218. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  3219. 2C1D5D7823E2DE6A00334ABB /* CCGraphics.m in Sources */,
  3220. 2C59AC5B23E2E02700733BE8 /* OCExternalSites.m in Sources */,
  3221. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  3222. F7D91AAA23FBDED60038FC09 /* NCContentPresenter.swift in Sources */,
  3223. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  3224. 2C59AC5C23E2E03400733BE8 /* OCSharedDto.m in Sources */,
  3225. 2C59AC5923E2E00F00733BE8 /* OCActivity.m in Sources */,
  3226. 2CB7D1CA23E2EDCB00376EF9 /* NCPushNotificationEncryption.m in Sources */,
  3227. 2C1D5D7B23E2DED200334ABB /* NCComments.m in Sources */,
  3228. 2C59AC5823E2DFEE00733BE8 /* OCUserProfile.m in Sources */,
  3229. 2C1D5D7A23E2DEBF00334ABB /* HCFeatures.m in Sources */,
  3230. );
  3231. runOnlyForDeploymentPostprocessing = 0;
  3232. };
  3233. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3234. isa = PBXSourcesBuildPhase;
  3235. buildActionMask = 2147483647;
  3236. files = (
  3237. F71459B81D12E3B700CAFEEC /* CCError.m in Sources */,
  3238. F73CC0701E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3239. F71459BA1D12E3B700CAFEEC /* NSString+TruncateToWidth.m in Sources */,
  3240. F71459BC1D12E3B700CAFEEC /* Reachability.m in Sources */,
  3241. F71459BD1D12E3B700CAFEEC /* UIImage+animatedGIF.m in Sources */,
  3242. F73CC06D1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3243. F70022C01EC4C9100080073F /* OCFileDto.m in Sources */,
  3244. F71459C21D12E3B700CAFEEC /* ShareViewController.m in Sources */,
  3245. F77EB6281EC08036003F814F /* CCExifGeo.m in Sources */,
  3246. F73CC0731E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3247. F73CC06A1E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3248. F73CC07C1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3249. F7B6ACD722FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3250. F70022B71EC4C9100080073F /* OCCapabilities.m in Sources */,
  3251. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3252. F70022FF1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3253. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3254. F70022BA1EC4C9100080073F /* OCCommunication.m in Sources */,
  3255. F7DFB7E1219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3256. F70022ED1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3257. F70022D51EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3258. F70022FC1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3259. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3260. F71459C91D12E3B700CAFEEC /* OCNetworking.m in Sources */,
  3261. F7DBC38023325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3262. F71459CD1D12E3B700CAFEEC /* AFViewShaker.m in Sources */,
  3263. F7D2D128230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3264. F74E432720B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3265. F73CC0791E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3266. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3267. F71459D31D12E3B700CAFEEC /* CCBKPasscode.m in Sources */,
  3268. F7F8D71C1ED6183000E711F3 /* CCCellShareExt.m in Sources */,
  3269. F732BA0B1D76DBA500E9878B /* CCNetworking.m in Sources */,
  3270. F70022CF1EC4C9100080073F /* OCShareUser.m in Sources */,
  3271. F71459E11D12E3B700CAFEEC /* CCHud.m in Sources */,
  3272. F765609023BF813600765969 /* NCContentPresenter.swift in Sources */,
  3273. F70022EA1EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3274. F70022D81EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3275. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3276. F70022E71EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3277. F781996A22636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3278. F70022C91EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3279. F70022C31EC4C9100080073F /* OCNotifications.m in Sources */,
  3280. F71459F71D12E3B700CAFEEC /* CCGraphics.m in Sources */,
  3281. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3282. F70022BD1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3283. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3284. F78B9685234F785300F54315 /* NCSelectDestination.m in Sources */,
  3285. F70022B41EC4C9100080073F /* OCActivity.m in Sources */,
  3286. F70022CC1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3287. F70022DB1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3288. F7B6ACDC22FC2D15008AB646 /* NCComments.m in Sources */,
  3289. F7145A041D12E3B700CAFEEC /* CCloadItemData.swift in Sources */,
  3290. F73CC07F1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3291. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3292. F70CEF5723E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3293. F73CC0761E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3294. F70022D21EC4C9100080073F /* OCUserProfile.m in Sources */,
  3295. F70022C61EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3296. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3297. F70022DE1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3298. );
  3299. runOnlyForDeploymentPostprocessing = 0;
  3300. };
  3301. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3302. isa = PBXSourcesBuildPhase;
  3303. buildActionMask = 2147483647;
  3304. files = (
  3305. F781996B22636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3306. F7434B3C20E2403D00417916 /* OCCommunication.m in Sources */,
  3307. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3308. F7434B3720E23FF200417916 /* NCUtility.swift in Sources */,
  3309. F7B6ACD822FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3310. F7434B5120E2409500417916 /* OCXMLServerErrorsParser.m in Sources */,
  3311. F7DFB7E2219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3312. F7434B3A20E2403500417916 /* OCActivity.m in Sources */,
  3313. F7434B6220E249F700417916 /* NSNotificationCenter+MainThread.m in Sources */,
  3314. F7434B3B20E2403900417916 /* OCCapabilities.m in Sources */,
  3315. F7434B4B20E2408000417916 /* NSDate+ISO8601.m in Sources */,
  3316. F7434B4C20E2408300417916 /* NSDate+RFC1123.m in Sources */,
  3317. F7434B5920E241B600417916 /* OCNetworking.m in Sources */,
  3318. F7434B5520E240A900417916 /* UtilsFramework.m in Sources */,
  3319. F75A9EE823796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3320. F7434B4120E2405200417916 /* OCRichObjectStrings.m in Sources */,
  3321. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  3322. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3323. F7434B4020E2404E00417916 /* OCNotificationsAction.m in Sources */,
  3324. F7434B5320E2409E00417916 /* OCXMLSharedParser.m in Sources */,
  3325. F7434B4320E2405900417916 /* OCShareUser.m in Sources */,
  3326. F7434B5A20E241BB00417916 /* NCNetworkingEndToEnd.m in Sources */,
  3327. F76673EE22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3328. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3329. F7434B6320E249FB00417916 /* NSString+TruncateToWidth.m in Sources */,
  3330. F7434B5620E2412900417916 /* CCError.m in Sources */,
  3331. F7434B5C20E241D500417916 /* NCEndToEndEncryption.m in Sources */,
  3332. F7434B3E20E2404700417916 /* OCFileDto.m in Sources */,
  3333. F7434B3D20E2404300417916 /* OCExternalSites.m in Sources */,
  3334. F7D2D129230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3335. F7434B4420E2405C00417916 /* OCUserProfile.m in Sources */,
  3336. F7DBC38123325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3337. F7434B5E20E241EC00417916 /* CCGraphics.m in Sources */,
  3338. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3339. F70CEF5823E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3340. F7434B5B20E241D100417916 /* NCEndToEndMetadata.swift in Sources */,
  3341. F7B6ACDD22FC2D15008AB646 /* NCComments.m in Sources */,
  3342. F7434B5D20E241E800417916 /* CCUtility.m in Sources */,
  3343. F7434B5220E2409900417916 /* OCXMLShareByLinkParser.m in Sources */,
  3344. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3345. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3346. F716FE7A23795EC500FABE50 /* FileProviderExtension+NetworkingDelegate.swift in Sources */,
  3347. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3348. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3349. F7434B4220E2405500417916 /* OCSharedDto.m in Sources */,
  3350. F7434B3F20E2404B00417916 /* OCNotifications.m in Sources */,
  3351. F7434B6020E2445200417916 /* CCExifGeo.m in Sources */,
  3352. F7434B5420E240A300417916 /* NSString+Encode.m in Sources */,
  3353. F765609123BF813600765969 /* NCContentPresenter.swift in Sources */,
  3354. F7434B4E20E2408A00417916 /* OCWebDAVClient.m in Sources */,
  3355. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3356. F7434B4D20E2408600417916 /* OCHTTPRequestOperation.m in Sources */,
  3357. F7434B5820E241B100417916 /* CCNetworking.m in Sources */,
  3358. );
  3359. runOnlyForDeploymentPostprocessing = 0;
  3360. };
  3361. F77B0DEF1D118A16002130FE /* Sources */ = {
  3362. isa = PBXSourcesBuildPhase;
  3363. buildActionMask = 2147483647;
  3364. files = (
  3365. F760F79521F21F61006B1A73 /* PhotoEditor+Gestures.swift in Sources */,
  3366. F70022D71EC4C9100080073F /* NSDate+RFC1123.m in Sources */,
  3367. F762CAFD1EACB66200B38484 /* XLFormInlineSelectorCell.m in Sources */,
  3368. F77B0DF21D118A16002130FE /* CCUploadFromOtherUpp.m in Sources */,
  3369. F754EECB21772B6100BB1CDF /* DropdownMenu.swift in Sources */,
  3370. F760F78221F21F61006B1A73 /* PhotoEditor+UITextView.swift in Sources */,
  3371. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  3372. F7E09CE323E3088000FB3E9E /* NCMainRefreshControl.swift in Sources */,
  3373. F77B0DF41D118A16002130FE /* CCMain.m in Sources */,
  3374. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  3375. F7E9C41B20F4CA870040CF18 /* CCTransfers.m in Sources */,
  3376. F73B4F0D1F470D9100BBEE4B /* nsLatin1Prober.cpp in Sources */,
  3377. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3378. F762CB071EACB66200B38484 /* XLFormOptionsObject.m in Sources */,
  3379. F7C525A01E3B48B700FFE02C /* CCNotification.swift in Sources */,
  3380. F7F54D0E1E5B14C800E19C62 /* UIImage+MWPhotoBrowser.m in Sources */,
  3381. F7F54D091E5B14C800E19C62 /* MWPhoto.m in Sources */,
  3382. F73B4F041F470D9100BBEE4B /* nsBig5Prober.cpp in Sources */,
  3383. F760F78321F21F61006B1A73 /* UIImageView+Alpha.swift in Sources */,
  3384. F73B4EEF1F470D9100BBEE4B /* CharDistribution.cpp in Sources */,
  3385. F7B0C0CD1EE7E7750033AC24 /* CCSynchronize.m in Sources */,
  3386. F710D1FE24057E5E00A6033D /* NCActionSheetHeader.swift in Sources */,
  3387. F754EEC921772B6100BB1CDF /* DropdownItem.swift in Sources */,
  3388. F77B0DFF1D118A16002130FE /* OCNetworking.m in Sources */,
  3389. F73B4F081F470D9100BBEE4B /* nsEUCJPProber.cpp in Sources */,
  3390. F70022DA1EC4C9100080073F /* OCHTTPRequestOperation.m in Sources */,
  3391. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  3392. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  3393. F762CB041EACB66200B38484 /* XLFormSwitchCell.m in Sources */,
  3394. F73B4F0F1F470D9100BBEE4B /* nsMBCSSM.cpp in Sources */,
  3395. F754EECA21772B6100BB1CDF /* DropUpMenu.swift in Sources */,
  3396. F77B0E041D118A16002130FE /* UIImage+animatedGIF.m in Sources */,
  3397. 37ECC83B23D0C7410082EFA2 /* NCMenuAction.swift in Sources */,
  3398. F73B4EFE1F470D9100BBEE4B /* LangHungarianModel.cpp in Sources */,
  3399. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  3400. F760F79921F21F61006B1A73 /* CropViewController.swift in Sources */,
  3401. F70022EC1EC4C9100080073F /* OCXMLSharedParser.m in Sources */,
  3402. F7F54D061E5B14C800E19C62 /* MWCaptionView.m in Sources */,
  3403. F762CB001EACB66200B38484 /* XLFormSegmentedCell.m in Sources */,
  3404. F732BA061D76CE1500E9878B /* CCNetworking.m in Sources */,
  3405. F762CB061EACB66200B38484 /* XLFormTextViewCell.m in Sources */,
  3406. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  3407. F78ACD4F2190440D0088454D /* NCLayout.swift in Sources */,
  3408. F760F79C21F21F61006B1A73 /* GradientView.swift in Sources */,
  3409. F73F537F1E929C8500F8678D /* CCMore.swift in Sources */,
  3410. F73B4EF71F470D9100BBEE4B /* LangBulgarianModel.cpp in Sources */,
  3411. F7F54D0C1E5B14C800E19C62 /* MWTapDetectingView.m in Sources */,
  3412. F7FB1D3E215E191D00D669EA /* NCViewerDocumentWeb.swift in Sources */,
  3413. F78E7065219F096B006F23E4 /* NCAvatar.swift in Sources */,
  3414. F7DFB7F0219C5B8000680748 /* NCCreateFormUploadAssets.swift in Sources */,
  3415. F762CB0C1EACB66200B38484 /* XLFormSectionDescriptor.m in Sources */,
  3416. F760F79421F21F61006B1A73 /* ResizeControl.swift in Sources */,
  3417. F7DFB7F2219C5C0000680748 /* NCCreateFormUploadFileText.swift in Sources */,
  3418. 371B5A2E23D0B04500FAFAE9 /* NCMainMenuTableViewController.swift in Sources */,
  3419. F760F79121F21F61006B1A73 /* EmojiCollectionViewCell.swift in Sources */,
  3420. F750374F1DBFA91A008FB480 /* NSArray+PureLayout.m in Sources */,
  3421. F77444F8222816D5000D5EB0 /* NCPhotosPickerViewController.swift in Sources */,
  3422. F774F5D42407F4EF000C5E86 /* NCViewerImageCollectionViewCell.swift in Sources */,
  3423. F77B0E141D118A16002130FE /* CCError.m in Sources */,
  3424. F7E09CE523E3088C00FB3E9E /* NCSplitViewController.swift in Sources */,
  3425. F73B4F131F470D9100BBEE4B /* nsUniversalDetector.cpp in Sources */,
  3426. F710D1F724057C9400A6033D /* NCDetailNavigationController.swift in Sources */,
  3427. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  3428. F7B0C1751EE839A30033AC24 /* NCAutoUpload.m in Sources */,
  3429. F77B0E161D118A16002130FE /* AFViewShaker.m in Sources */,
  3430. F760F77E21F21F61006B1A73 /* PhotoEditor+Keyboard.swift in Sources */,
  3431. F73B4F111F470D9100BBEE4B /* nsSBCSGroupProber.cpp in Sources */,
  3432. F7B6ACD622FC2BD4008AB646 /* NCXMLCommentsParser.m in Sources */,
  3433. F738E8421F90FFD100F95C8E /* NCManageEndToEndEncryption.m in Sources */,
  3434. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  3435. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  3436. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3437. F760F79D21F21F61006B1A73 /* CropRectView.swift in Sources */,
  3438. F73B4F091F470D9100BBEE4B /* nsEUCKRProber.cpp in Sources */,
  3439. F758B460212C56A400515F55 /* ScanCollectionView.swift in Sources */,
  3440. F762CB021EACB66200B38484 /* XLFormSliderCell.m in Sources */,
  3441. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
  3442. F749C10C23C4A5340027D966 /* NCIntroViewController.swift in Sources */,
  3443. F77B0E1B1D118A16002130FE /* CCGraphics.m in Sources */,
  3444. F710D2022405826100A6033D /* NCDetailNavigationController+Menu.swift in Sources */,
  3445. F70022CB1EC4C9100080073F /* OCSharedDto.m in Sources */,
  3446. 3757A35523D9D76300EC369E /* NCMenuPanelController.swift in Sources */,
  3447. F7CA1ED320E7E3FE002CC65E /* PKStopDownloadButton.m in Sources */,
  3448. F762CB111EACB66200B38484 /* NSString+XLFormAdditions.m in Sources */,
  3449. F7F54D0A1E5B14C800E19C62 /* MWPhotoBrowser.m in Sources */,
  3450. F762CB081EACB66200B38484 /* XLFormOptionsViewController.m in Sources */,
  3451. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  3452. F73CC0721E813DFF006E3047 /* BKPasscodeLockScreenManager.m in Sources */,
  3453. F760F78B21F21F61006B1A73 /* UIImage+Crop.swift in Sources */,
  3454. F73B4F101F470D9100BBEE4B /* nsSBCharSetProber.cpp in Sources */,
  3455. F762CB0E1EACB66200B38484 /* NSExpression+XLFormAdditions.m in Sources */,
  3456. F73B4F071F470D9100BBEE4B /* nsEscSM.cpp in Sources */,
  3457. F77B0E221D118A16002130FE /* CCManageLocation.m in Sources */,
  3458. F70022C51EC4C9100080073F /* OCNotificationsAction.m in Sources */,
  3459. F7D6650720FF341600BFBA9E /* NCMainCommon.swift in Sources */,
  3460. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  3461. F762CAF81EACB66200B38484 /* XLFormButtonCell.m in Sources */,
  3462. F7CA1ED120E7E3FE002CC65E /* PKCircleProgressView.m in Sources */,
  3463. F762CAFC1EACB66200B38484 /* XLFormImageCell.m in Sources */,
  3464. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  3465. F70022D11EC4C9100080073F /* OCUserProfile.m in Sources */,
  3466. F774F5D72407F547000C5E86 /* NCViewerImageAsset.swift in Sources */,
  3467. F73B4EF61F470D9100BBEE4B /* LangArabicModel.cpp in Sources */,
  3468. F7CA1ED420E7E3FE002CC65E /* PKPendingView.m in Sources */,
  3469. F7DFB7E0219C312D00680748 /* NCRichDocumentTemplate.m in Sources */,
  3470. F769454222E9F0EE000A798A /* NCShareLinkMenuView.swift in Sources */,
  3471. F73B4F0B1F470D9100BBEE4B /* nsGB2312Prober.cpp in Sources */,
  3472. F762CAFE1EACB66200B38484 /* XLFormLeftRightSelectorCell.m in Sources */,
  3473. F774F5D52407F4EF000C5E86 /* NCViewerImageNibLoadingView.swift in Sources */,
  3474. F77B0E301D118A16002130FE /* CCHud.m in Sources */,
  3475. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3476. F70022E91EC4C9100080073F /* OCXMLShareByLinkParser.m in Sources */,
  3477. F77B0E311D118A16002130FE /* CCExifGeo.m in Sources */,
  3478. F73B4F0E1F470D9100BBEE4B /* nsMBCSGroupProber.cpp in Sources */,
  3479. F73B4F171F470D9100BBEE4B /* uchardet.cpp in Sources */,
  3480. F7B6ACDB22FC2D15008AB646 /* NCComments.m in Sources */,
  3481. F73B4F121F470D9100BBEE4B /* nsSJISProber.cpp in Sources */,
  3482. F760F78121F21F61006B1A73 /* PhotoEditor+StickersViewController.swift in Sources */,
  3483. F760F78D21F21F61006B1A73 /* Protocols.swift in Sources */,
  3484. F762CAFF1EACB66200B38484 /* XLFormPickerCell.m in Sources */,
  3485. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3486. F73CC0781E813DFF006E3047 /* BKShiftingView.m in Sources */,
  3487. F7A3218C1E9E42B30069AD1B /* CCMenuAccount.m in Sources */,
  3488. F762CB191EACB66200B38484 /* XLFormValidator.m in Sources */,
  3489. F760F78C21F21F61006B1A73 /* StickersViewController.swift in Sources */,
  3490. F762CB0D1EACB66200B38484 /* NSArray+XLFormAdditions.m in Sources */,
  3491. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3492. F7FCFFE01D707B83000E6E29 /* CCPeekPop.m in Sources */,
  3493. F760F77D21F21F61006B1A73 /* ColorsCollectionViewDelegate.swift in Sources */,
  3494. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3495. F70022E61EC4C9100080073F /* OCXMLServerErrorsParser.m in Sources */,
  3496. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  3497. F762CB171EACB66200B38484 /* XLFormRegexValidator.m in Sources */,
  3498. F760F78721F21F61006B1A73 /* PhotoEditor+Font.swift in Sources */,
  3499. F73CC0691E813DFF006E3047 /* BKPasscodeDummyViewController.m in Sources */,
  3500. F762CB1A1EACB66200B38484 /* XLForm.m in Sources */,
  3501. F73B4EFC1F470D9100BBEE4B /* LangGreekModel.cpp in Sources */,
  3502. F762CB051EACB66200B38484 /* XLFormTextFieldCell.m in Sources */,
  3503. F7B4F1CB1F44356F00B53B42 /* NCUchardet.m in Sources */,
  3504. F78ACD4A21903F850088454D /* NCTrashListCell.swift in Sources */,
  3505. F73B4EFB1F470D9100BBEE4B /* LangGermanModel.cpp in Sources */,
  3506. F73B4F061F470D9100BBEE4B /* nsEscCharsetProber.cpp in Sources */,
  3507. F73B4EFA1F470D9100BBEE4B /* LangFrenchModel.cpp in Sources */,
  3508. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  3509. F762CAF91EACB66200B38484 /* XLFormCheckCell.m in Sources */,
  3510. F762CB101EACB66200B38484 /* NSPredicate+XLFormAdditions.m in Sources */,
  3511. F73CC07E1E813DFF006E3047 /* BKTouchIDSwitchView.m in Sources */,
  3512. F77B0E5F1D118A16002130FE /* CCSettings.m in Sources */,
  3513. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  3514. 3781B9B223DB2B9F006B4B1D /* CCMain+Menu.swift in Sources */,
  3515. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  3516. F7417DB3216CE925007D05F5 /* NCTrashSectionHeaderFooter.swift in Sources */,
  3517. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3518. F7DBC37C23325E02001A85BA /* NCAppConfigView.swift in Sources */,
  3519. F762CB141EACB66200B38484 /* XLFormRightImageButton.m in Sources */,
  3520. F73D71621F2673C200E233EB /* NCText.swift in Sources */,
  3521. F73B4EF81F470D9100BBEE4B /* LangDanishModel.cpp in Sources */,
  3522. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  3523. F73B4F051F470D9100BBEE4B /* nsCharSetProber.cpp in Sources */,
  3524. F77B0E671D118A16002130FE /* Reachability.m in Sources */,
  3525. F762CB121EACB66200B38484 /* UIView+XLFormAdditions.m in Sources */,
  3526. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
  3527. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  3528. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3529. F73CC06F1E813DFF006E3047 /* BKPasscodeInputView.m in Sources */,
  3530. F754EECC21772B6100BB1CDF /* SectionHeader.swift in Sources */,
  3531. F7B174C822FAC0A8000B7579 /* AppDelegate.m in Sources */,
  3532. F73CC0751E813DFF006E3047 /* BKPasscodeViewController.m in Sources */,
  3533. F749C10B23C4A5340027D966 /* NCIntroCollectionViewCell.swift in Sources */,
  3534. F7DBC37F23325E2E001A85BA /* NCXMLGetAppPasswordParser.m in Sources */,
  3535. F750374D1DBFA91A008FB480 /* ALView+PureLayout.m in Sources */,
  3536. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  3537. F73B4EF51F470D9100BBEE4B /* JpCntx.cpp in Sources */,
  3538. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3539. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3540. F7BF1B431D51E893000854F6 /* CCLogin.m in Sources */,
  3541. F760F79821F21F61006B1A73 /* StickerCollectionViewCell.swift in Sources */,
  3542. F70022FB1EC4C9100080073F /* NSString+Encode.m in Sources */,
  3543. F769454422E9F142000A798A /* NCShareUserMenuView.swift in Sources */,
  3544. F75037511DBFA91A008FB480 /* NSLayoutConstraint+PureLayout.m in Sources */,
  3545. F762CAFA1EACB66200B38484 /* XLFormDateCell.m in Sources */,
  3546. F70022B91EC4C9100080073F /* OCCommunication.m in Sources */,
  3547. F762CB181EACB66200B38484 /* XLFormValidationStatus.m in Sources */,
  3548. F73B4EF91F470D9100BBEE4B /* LangEsperantoModel.cpp in Sources */,
  3549. F77B0E8F1D118A16002130FE /* CCSection.m in Sources */,
  3550. F7CA1ED720E7E3FE002CC65E /* PKDownloadButton.m in Sources */,
  3551. F72AAECB1E5C60C700BB17E1 /* AHKActionSheetViewController.m in Sources */,
  3552. F760F79B21F21F61006B1A73 /* ColorCollectionViewCell.swift in Sources */,
  3553. F77B0E921D118A16002130FE /* CCCellMainTransfer.m in Sources */,
  3554. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3555. F762CB011EACB66200B38484 /* XLFormSelectorCell.m in Sources */,
  3556. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3557. F77B0E9B1D118A16002130FE /* CCBKPasscode.m in Sources */,
  3558. F760F77F21F21F61006B1A73 /* PhotoEditor+Controls.swift in Sources */,
  3559. F7169A1D1EE590930086BD69 /* NCSharesCell.m in Sources */,
  3560. F7B7504B2397D38F004E13EC /* UIImage+fixedOrientation.swift in Sources */,
  3561. F77B0EA61D118A16002130FE /* NSString+TruncateToWidth.m in Sources */,
  3562. F70022C21EC4C9100080073F /* OCNotifications.m in Sources */,
  3563. F70022BF1EC4C9100080073F /* OCFileDto.m in Sources */,
  3564. F7CA1ED020E7E3FE002CC65E /* UIImage+PKDownloadButton.m in Sources */,
  3565. F7D2D127230804E000FD3ED7 /* NCXMLListParser.m in Sources */,
  3566. F7DFB7F4219C5CA800680748 /* NCCreateFormUploadScanDocument.swift in Sources */,
  3567. F73B4F011F470D9100BBEE4B /* LangThaiModel.cpp in Sources */,
  3568. F70022DD1EC4C9100080073F /* OCWebDAVClient.m in Sources */,
  3569. F73B4F001F470D9100BBEE4B /* LangSpanishModel.cpp in Sources */,
  3570. F70022BC1EC4C9100080073F /* OCExternalSites.m in Sources */,
  3571. F73CC07B1E813DFF006E3047 /* BKTouchIDManager.m in Sources */,
  3572. F762CB031EACB66200B38484 /* XLFormStepCounterCell.m in Sources */,
  3573. F760F79321F21F61006B1A73 /* CropView.swift in Sources */,
  3574. F762CAF71EACB66200B38484 /* XLFormBaseCell.m in Sources */,
  3575. F760F78A21F21F61006B1A73 /* UIImage+Size.swift in Sources */,
  3576. F710D1FF24057E5E00A6033D /* NCActionSheetHeaderView.swift in Sources */,
  3577. F70022B31EC4C9100080073F /* OCActivity.m in Sources */,
  3578. F7E09CE723E308AD00FB3E9E /* NCMasterNavigationController.swift in Sources */,
  3579. F70022D41EC4C9100080073F /* NSDate+ISO8601.m in Sources */,
  3580. F762CB151EACB66200B38484 /* XLFormRowNavigationAccessoryView.m in Sources */,
  3581. F762CB0A1EACB66200B38484 /* XLFormDescriptor.m in Sources */,
  3582. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  3583. F774F5D22407F4EF000C5E86 /* NCViewerImageView.swift in Sources */,
  3584. F7F4B1D823C74B3E00D82A6E /* NCRichWorkspace.swift in Sources */,
  3585. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3586. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  3587. F7E0E1DC22327885006B0911 /* NCAudioRecorderViewController.swift in Sources */,
  3588. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3589. 3781B9B423DB2BC9006B4B1D /* CCFavorites+Menu.swift in Sources */,
  3590. F710D1F924057C9D00A6033D /* NCDetailViewController.swift in Sources */,
  3591. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  3592. F73B4F0C1F470D9100BBEE4B /* nsHebrewProber.cpp in Sources */,
  3593. F762CAFB1EACB66200B38484 /* XLFormDatePickerCell.m in Sources */,
  3594. F762CB0F1EACB66200B38484 /* NSObject+XLFormAdditions.m in Sources */,
  3595. F7B2DEF01F976854007CF4D2 /* NYMnemonic.m in Sources */,
  3596. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  3597. F73B4EFF1F470D9100BBEE4B /* LangRussianModel.cpp in Sources */,
  3598. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3599. F7A321551E9E2A070069AD1B /* CCFavorites.m in Sources */,
  3600. F704FA5C232A343F00BBA952 /* IMImagemeterViewer.swift in Sources */,
  3601. F73B4F031F470D9100BBEE4B /* LangVietnameseModel.cpp in Sources */,
  3602. F73B4F021F470D9100BBEE4B /* LangTurkishModel.cpp in Sources */,
  3603. F7F54D0B1E5B14C800E19C62 /* MWTapDetectingImageView.m in Sources */,
  3604. F760F79A21F21F61006B1A73 /* PhotoEditor+Crop.swift in Sources */,
  3605. F7CA1ED220E7E3FE002CC65E /* PKCircleView.m in Sources */,
  3606. F7F54D0D1E5B14C800E19C62 /* MWZoomingScrollView.m in Sources */,
  3607. F760F78E21F21F61006B1A73 /* PhotoEditor+Drawing.swift in Sources */,
  3608. F762CB0B1EACB66200B38484 /* XLFormRowDescriptor.m in Sources */,
  3609. F760F78921F21F61006B1A73 /* UIView+Image.swift in Sources */,
  3610. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  3611. F760F79221F21F61006B1A73 /* EmojisCollectionViewDelegate.swift in Sources */,
  3612. F7169A1C1EE590930086BD69 /* NCShares.m in Sources */,
  3613. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  3614. F77B0EC61D118A16002130FE /* CCCellMain.m in Sources */,
  3615. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  3616. F70022B61EC4C9100080073F /* OCCapabilities.m in Sources */,
  3617. F762CB131EACB66200B38484 /* XLFormRightDetailCell.m in Sources */,
  3618. F7CA1ED820E7E3FE002CC65E /* PKBorderedButton.m in Sources */,
  3619. F73B4F0A1F470D9100BBEE4B /* nsEUCTWProber.cpp in Sources */,
  3620. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  3621. F762CB091EACB66200B38484 /* XLFormViewController.m in Sources */,
  3622. F760F79621F21F61006B1A73 /* PhotoEditorViewController.swift in Sources */,
  3623. F762CB161EACB66200B38484 /* XLFormTextView.m in Sources */,
  3624. F70CEF5623E9C7E50007035B /* UIColor+adjust.swift in Sources */,
  3625. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3626. F79630EE215527D40015EEA5 /* NCViewerMedia.swift in Sources */,
  3627. F7CA1ED620E7E3FE002CC65E /* CALayer+PKDownloadButtonAnimations.m in Sources */,
  3628. F758B45E212C569D00515F55 /* ScanCell.swift in Sources */,
  3629. F781996922636BFA00EBDF6A /* HCFeatures.m in Sources */,
  3630. F70022FE1EC4C9100080073F /* UtilsFramework.m in Sources */,
  3631. F72AAECA1E5C60C700BB17E1 /* AHKActionSheet.m in Sources */,
  3632. F7CA1ED920E7E3FE002CC65E /* NSLayoutConstraint+PKDownloadButton.m in Sources */,
  3633. F74E432620B5547700C2E54C /* NCNetworkingEndToEnd.m in Sources */,
  3634. F73B4F141F470D9100BBEE4B /* nsUTF8Prober.cpp in Sources */,
  3635. F70022C81EC4C9100080073F /* OCRichObjectStrings.m in Sources */,
  3636. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3637. F7E4D9C422ED929B003675FD /* NCShareComments.swift in Sources */,
  3638. F73CC06C1E813DFF006E3047 /* BKPasscodeField.m in Sources */,
  3639. F77B0ED51D118A16002130FE /* PHAsset+Utility.m in Sources */,
  3640. F73B4EFD1F470D9100BBEE4B /* LangHebrewModel.cpp in Sources */,
  3641. F70022CE1EC4C9100080073F /* OCShareUser.m in Sources */,
  3642. F77B0ED91D118A16002130FE /* main.m in Sources */,
  3643. );
  3644. runOnlyForDeploymentPostprocessing = 0;
  3645. };
  3646. /* End PBXSourcesBuildPhase section */
  3647. /* Begin PBXTargetDependency section */
  3648. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  3649. isa = PBXTargetDependency;
  3650. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  3651. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  3652. };
  3653. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3654. isa = PBXTargetDependency;
  3655. target = F71459B41D12E3B700CAFEEC /* Share */;
  3656. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3657. };
  3658. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3659. isa = PBXTargetDependency;
  3660. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3661. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3662. };
  3663. /* End PBXTargetDependency section */
  3664. /* Begin PBXVariantGroup section */
  3665. F760F76221F21F61006B1A73 /* LaunchScreen.storyboard */ = {
  3666. isa = PBXVariantGroup;
  3667. children = (
  3668. F760F76321F21F61006B1A73 /* Base */,
  3669. );
  3670. name = LaunchScreen.storyboard;
  3671. sourceTree = "<group>";
  3672. };
  3673. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  3674. isa = PBXVariantGroup;
  3675. children = (
  3676. F7151A811D477A4B00E6AF45 /* en */,
  3677. F7B1A7761EBB3C8000BFB6D1 /* de */,
  3678. F75B91E21ECAE17800199C96 /* fr */,
  3679. F75B91F71ECAE26300199C96 /* pt-BR */,
  3680. F75B923D1ECAE55E00199C96 /* ru */,
  3681. F7169A301EE59BB70086BD69 /* it */,
  3682. F7169A4C1EE59C640086BD69 /* tr */,
  3683. F78D6F461F0B7CB9002F9619 /* es-MX */,
  3684. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  3685. F78D6F541F0B7D47002F9619 /* pl */,
  3686. F7DE9AB01F482FA5008DFE10 /* sv */,
  3687. F7CC04E61F5AD50D00378CEF /* es */,
  3688. F7D532461F5D4123006568B1 /* is */,
  3689. F7D5324D1F5D4137006568B1 /* nl */,
  3690. F7D532541F5D4155006568B1 /* sk-SK */,
  3691. F7D5328F1F5D443B006568B1 /* en-GB */,
  3692. F7D532A41F5D4461006568B1 /* zh-Hans */,
  3693. F77438EB1FCD694900662C46 /* ka-GE */,
  3694. F77438F21FCD69D300662C46 /* hu */,
  3695. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  3696. F77439001FCD6B7F00662C46 /* sr */,
  3697. F77439071FCD6BF000662C46 /* es-CL */,
  3698. F774390E1FCD6C0C00662C46 /* es-CO */,
  3699. F77439151FCD6C4A00662C46 /* es-CR */,
  3700. F774391C1FCD6C6700662C46 /* es-DO */,
  3701. F77439231FCD6C8700662C46 /* es-EC */,
  3702. F774392A1FCD6CAA00662C46 /* es-GT */,
  3703. F77439311FCD6CC400662C46 /* es-HN */,
  3704. F77439381FCD6CDE00662C46 /* es-NI */,
  3705. F774393F1FCD6D0B00662C46 /* es-PA */,
  3706. F77439461FCD6D2300662C46 /* es-PE */,
  3707. F774394D1FCD6D3E00662C46 /* es-PR */,
  3708. F77439541FCD6D6100662C46 /* es-PY */,
  3709. F774395B1FCD6D8200662C46 /* es-SV */,
  3710. F77439621FCD6D9C00662C46 /* es-UY */,
  3711. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  3712. F7320934201B812F008A0888 /* ko */,
  3713. F732093B201B81E4008A0888 /* es-419 */,
  3714. F70A07C8205285FB00DC1231 /* pt-PT */,
  3715. F7E45E6D21E75BF200579249 /* ja-JP */,
  3716. F753701822723D620041C76C /* gl */,
  3717. F753701922723E0D0041C76C /* ca */,
  3718. F753701A22723EC80041C76C /* da */,
  3719. );
  3720. name = Localizable.strings;
  3721. path = "Supporting Files";
  3722. sourceTree = "<group>";
  3723. };
  3724. /* End PBXVariantGroup section */
  3725. /* Begin XCBuildConfiguration section */
  3726. 2C33C48723E2C475005F963B /* Debug */ = {
  3727. isa = XCBuildConfiguration;
  3728. buildSettings = {
  3729. APPLICATION_EXTENSION_API_ONLY = NO;
  3730. CLANG_ANALYZER_NONNULL = YES;
  3731. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3732. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3733. CLANG_ENABLE_OBJC_WEAK = YES;
  3734. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3735. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3736. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3737. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3738. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3739. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  3740. CODE_SIGN_IDENTITY = "iPhone Developer";
  3741. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3742. CODE_SIGN_STYLE = Automatic;
  3743. CURRENT_PROJECT_VERSION = 0;
  3744. DEBUG_INFORMATION_FORMAT = dwarf;
  3745. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3746. FRAMEWORK_SEARCH_PATHS = (
  3747. "$(inherited)",
  3748. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3749. );
  3750. GCC_C_LANGUAGE_STANDARD = gnu11;
  3751. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3752. GCC_PREPROCESSOR_DEFINITIONS = (
  3753. "$(inherited)",
  3754. EXTENSION,
  3755. EXTENSION_NOTIFICATION_SERVICE,
  3756. );
  3757. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3758. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  3759. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3760. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3761. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3762. MARKETING_VERSION = 3.00.0;
  3763. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3764. MTL_FAST_MATH = YES;
  3765. OTHER_LDFLAGS = "-ObjC";
  3766. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3767. PRODUCT_NAME = "$(TARGET_NAME)";
  3768. SKIP_INSTALL = YES;
  3769. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3770. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3771. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3772. SWIFT_VERSION = 5.0;
  3773. TARGETED_DEVICE_FAMILY = "1,2";
  3774. };
  3775. name = Debug;
  3776. };
  3777. 2C33C48823E2C475005F963B /* Release */ = {
  3778. isa = XCBuildConfiguration;
  3779. buildSettings = {
  3780. APPLICATION_EXTENSION_API_ONLY = NO;
  3781. CLANG_ANALYZER_NONNULL = YES;
  3782. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3783. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3784. CLANG_ENABLE_OBJC_WEAK = YES;
  3785. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3786. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3787. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3788. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3789. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3790. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.entitlements";
  3791. CODE_SIGN_IDENTITY = "iPhone Developer";
  3792. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3793. CODE_SIGN_STYLE = Automatic;
  3794. CURRENT_PROJECT_VERSION = 0;
  3795. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3796. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3797. FRAMEWORK_SEARCH_PATHS = (
  3798. "$(inherited)",
  3799. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3800. );
  3801. GCC_C_LANGUAGE_STANDARD = gnu11;
  3802. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3803. GCC_PREPROCESSOR_DEFINITIONS = (
  3804. "$(inherited)",
  3805. EXTENSION,
  3806. EXTENSION_NOTIFICATION_SERVICE,
  3807. );
  3808. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3809. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Notification_Service_Extension.plist";
  3810. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3811. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3812. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3813. MARKETING_VERSION = 3.00.0;
  3814. MTL_FAST_MATH = YES;
  3815. OTHER_LDFLAGS = "-ObjC";
  3816. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3817. PRODUCT_NAME = "$(TARGET_NAME)";
  3818. SKIP_INSTALL = YES;
  3819. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3820. SWIFT_OBJC_BRIDGING_HEADER = "Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3821. SWIFT_VERSION = 5.0;
  3822. TARGETED_DEVICE_FAMILY = "1,2";
  3823. };
  3824. name = Release;
  3825. };
  3826. F7145A261D12E3B700CAFEEC /* Debug */ = {
  3827. isa = XCBuildConfiguration;
  3828. buildSettings = {
  3829. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3830. APPLICATION_EXTENSION_API_ONLY = NO;
  3831. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3832. CLANG_ENABLE_MODULES = YES;
  3833. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3834. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  3835. CODE_SIGN_IDENTITY = "iPhone Developer";
  3836. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3837. CURRENT_PROJECT_VERSION = 0;
  3838. DEBUG_INFORMATION_FORMAT = dwarf;
  3839. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3840. FRAMEWORK_SEARCH_PATHS = (
  3841. "$(inherited)",
  3842. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3843. );
  3844. GCC_NO_COMMON_BLOCKS = YES;
  3845. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3846. GCC_PREPROCESSOR_DEFINITIONS = (
  3847. "$(inherited)",
  3848. EXTENSION,
  3849. EXTENSION_SHARE,
  3850. );
  3851. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3852. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  3853. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3854. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3855. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3856. MARKETING_VERSION = 3.00.0;
  3857. OTHER_LDFLAGS = "-ObjC";
  3858. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  3859. PRODUCT_NAME = "$(TARGET_NAME)";
  3860. SKIP_INSTALL = YES;
  3861. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3862. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  3863. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3864. SWIFT_VERSION = 5.0;
  3865. TARGETED_DEVICE_FAMILY = "1,2";
  3866. USE_HEADERMAP = YES;
  3867. };
  3868. name = Debug;
  3869. };
  3870. F7145A271D12E3B700CAFEEC /* Release */ = {
  3871. isa = XCBuildConfiguration;
  3872. buildSettings = {
  3873. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3874. APPLICATION_EXTENSION_API_ONLY = NO;
  3875. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3876. CLANG_ENABLE_MODULES = YES;
  3877. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3878. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/Share.entitlements;
  3879. CODE_SIGN_IDENTITY = "iPhone Developer";
  3880. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3881. CURRENT_PROJECT_VERSION = 0;
  3882. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3883. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3884. FRAMEWORK_SEARCH_PATHS = (
  3885. "$(inherited)",
  3886. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3887. );
  3888. GCC_NO_COMMON_BLOCKS = YES;
  3889. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3890. GCC_PREPROCESSOR_DEFINITIONS = (
  3891. "$(inherited)",
  3892. EXTENSION,
  3893. EXTENSION_SHARE,
  3894. );
  3895. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3896. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/Share.plist";
  3897. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  3898. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3899. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3900. MARKETING_VERSION = 3.00.0;
  3901. OTHER_LDFLAGS = "-ObjC";
  3902. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  3903. PRODUCT_NAME = "$(TARGET_NAME)";
  3904. SKIP_INSTALL = YES;
  3905. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3906. SWIFT_OBJC_BRIDGING_HEADER = "Share/Share-Bridging-Header.h";
  3907. SWIFT_VERSION = 5.0;
  3908. TARGETED_DEVICE_FAMILY = "1,2";
  3909. USE_HEADERMAP = YES;
  3910. };
  3911. name = Release;
  3912. };
  3913. F771E3F020E2392E00AFB62D /* Debug */ = {
  3914. isa = XCBuildConfiguration;
  3915. buildSettings = {
  3916. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3917. APPLICATION_EXTENSION_API_ONLY = NO;
  3918. CLANG_ANALYZER_NONNULL = YES;
  3919. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3920. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3921. CLANG_ENABLE_OBJC_WEAK = YES;
  3922. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  3923. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3924. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3925. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3926. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3927. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  3928. CODE_SIGN_IDENTITY = "iPhone Developer";
  3929. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3930. CODE_SIGN_STYLE = Automatic;
  3931. CURRENT_PROJECT_VERSION = 0;
  3932. DEBUG_INFORMATION_FORMAT = dwarf;
  3933. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3934. FRAMEWORK_SEARCH_PATHS = (
  3935. "$(inherited)",
  3936. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3937. );
  3938. GCC_C_LANGUAGE_STANDARD = gnu11;
  3939. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3940. GCC_PREPROCESSOR_DEFINITIONS = (
  3941. "$(inherited)",
  3942. EXTENSION,
  3943. EXTENSION_FILE_PROVIDER_EXTENSION,
  3944. );
  3945. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3946. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  3947. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3948. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3949. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  3950. MARKETING_VERSION = 3.00.0;
  3951. OTHER_LDFLAGS = "-ObjC";
  3952. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  3953. PRODUCT_NAME = "$(TARGET_NAME)";
  3954. SKIP_INSTALL = YES;
  3955. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  3956. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  3957. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3958. SWIFT_VERSION = 5.0;
  3959. TARGETED_DEVICE_FAMILY = "1,2";
  3960. };
  3961. name = Debug;
  3962. };
  3963. F771E3F120E2392E00AFB62D /* Release */ = {
  3964. isa = XCBuildConfiguration;
  3965. buildSettings = {
  3966. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  3967. APPLICATION_EXTENSION_API_ONLY = NO;
  3968. CLANG_ANALYZER_NONNULL = YES;
  3969. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3970. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3971. CLANG_ENABLE_OBJC_WEAK = YES;
  3972. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = NO;
  3973. CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
  3974. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3975. CLANG_WARN_STRICT_PROTOTYPES = NO;
  3976. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3977. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.entitlements";
  3978. CODE_SIGN_IDENTITY = "iPhone Developer";
  3979. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  3980. CODE_SIGN_STYLE = Automatic;
  3981. CURRENT_PROJECT_VERSION = 0;
  3982. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3983. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  3984. FRAMEWORK_SEARCH_PATHS = (
  3985. "$(inherited)",
  3986. "$(PROJECT_DIR)/Carthage/Build/iOS",
  3987. );
  3988. GCC_C_LANGUAGE_STANDARD = gnu11;
  3989. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  3990. GCC_PREPROCESSOR_DEFINITIONS = (
  3991. "$(inherited)",
  3992. EXTENSION,
  3993. EXTENSION_FILE_PROVIDER_EXTENSION,
  3994. );
  3995. HEADER_SEARCH_PATHS = "\"Libraries external\"/**";
  3996. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/File_Provider_Extension.plist";
  3997. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3998. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  3999. LIBRARY_SEARCH_PATHS = "\"Libraries external\"/**";
  4000. MARKETING_VERSION = 3.00.0;
  4001. OTHER_LDFLAGS = "-ObjC";
  4002. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  4003. PRODUCT_NAME = "$(TARGET_NAME)";
  4004. SKIP_INSTALL = YES;
  4005. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4006. SWIFT_OBJC_BRIDGING_HEADER = "File Provider Extension/FileProviderExtension-Bridging-Header.h";
  4007. SWIFT_VERSION = 5.0;
  4008. TARGETED_DEVICE_FAMILY = "1,2";
  4009. };
  4010. name = Release;
  4011. };
  4012. F77B0F9B1D118A16002130FE /* Debug */ = {
  4013. isa = XCBuildConfiguration;
  4014. buildSettings = {
  4015. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4016. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4017. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4018. CLANG_ENABLE_MODULES = YES;
  4019. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4020. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4021. CODE_SIGN_IDENTITY = "iPhone Developer";
  4022. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4023. CURRENT_PROJECT_VERSION = 0;
  4024. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4025. ENABLE_BITCODE = YES;
  4026. FRAMEWORK_SEARCH_PATHS = (
  4027. "$(inherited)",
  4028. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4029. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4030. "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
  4031. );
  4032. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4033. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4034. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  4035. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4036. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  4037. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4038. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4039. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4040. LIBRARY_SEARCH_PATHS = "";
  4041. MARKETING_VERSION = 3.00.0;
  4042. OTHER_LDFLAGS = "-ObjC";
  4043. OTHER_SWIFT_FLAGS = "";
  4044. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4045. PRODUCT_NAME = "$(TARGET_NAME)";
  4046. PROVISIONING_PROFILE = "";
  4047. PROVISIONING_PROFILE_SPECIFIER = "";
  4048. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4049. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4050. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4051. SWIFT_VERSION = 5.0;
  4052. TARGETED_DEVICE_FAMILY = "1,2";
  4053. USE_HEADERMAP = YES;
  4054. VERSIONING_SYSTEM = "";
  4055. };
  4056. name = Debug;
  4057. };
  4058. F77B0F9C1D118A16002130FE /* Release */ = {
  4059. isa = XCBuildConfiguration;
  4060. buildSettings = {
  4061. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4062. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4063. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4064. CLANG_ENABLE_MODULES = YES;
  4065. CLANG_WARN_STRICT_PROTOTYPES = NO;
  4066. CODE_SIGN_ENTITLEMENTS = iOSClient/Brand/iOSClient.entitlements;
  4067. CODE_SIGN_IDENTITY = "iPhone Developer";
  4068. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4069. COPY_PHASE_STRIP = NO;
  4070. CURRENT_PROJECT_VERSION = 0;
  4071. DEVELOPMENT_TEAM = 6JLRKY9ZV7;
  4072. ENABLE_BITCODE = YES;
  4073. FRAMEWORK_SEARCH_PATHS = (
  4074. "$(inherited)",
  4075. "$(PROJECT_DIR)/Carthage/Build/iOS",
  4076. "$(PROJECT_DIR)\"/Libraries external/Fabric\"",
  4077. "$(PROJECT_DIR)\"/Libraries external/Firebase\"/**",
  4078. );
  4079. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  4080. GCC_PREFIX_HEADER = iOSClient/CryptoCloud.pch;
  4081. GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
  4082. HEADER_SEARCH_PATHS = "$(PROJECT_DIR)\"/Libraries external/openssl\"";
  4083. INFOPLIST_FILE = "$(SRCROOT)/iOSClient/Brand/iOSClient.plist";
  4084. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4085. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  4086. LIBRARY_SEARCH_PATHS = "";
  4087. MARKETING_VERSION = 3.00.0;
  4088. OTHER_LDFLAGS = "-ObjC";
  4089. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  4090. PRODUCT_NAME = "$(TARGET_NAME)";
  4091. PROVISIONING_PROFILE = "";
  4092. PROVISIONING_PROFILE_SPECIFIER = "";
  4093. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
  4094. SWIFT_OBJC_BRIDGING_HEADER = "iOSClient/Nextcloud-Bridging-Header.h";
  4095. SWIFT_VERSION = 5.0;
  4096. TARGETED_DEVICE_FAMILY = "1,2";
  4097. USE_HEADERMAP = YES;
  4098. VERSIONING_SYSTEM = "";
  4099. };
  4100. name = Release;
  4101. };
  4102. F7F67BC91A24D27800EE80DA /* Debug */ = {
  4103. isa = XCBuildConfiguration;
  4104. buildSettings = {
  4105. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4106. ALWAYS_SEARCH_USER_PATHS = NO;
  4107. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4108. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4109. CLANG_CXX_LIBRARY = "libc++";
  4110. CLANG_ENABLE_MODULES = YES;
  4111. CLANG_ENABLE_OBJC_ARC = YES;
  4112. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4113. CLANG_WARN_BOOL_CONVERSION = YES;
  4114. CLANG_WARN_COMMA = YES;
  4115. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4116. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4117. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4118. CLANG_WARN_EMPTY_BODY = YES;
  4119. CLANG_WARN_ENUM_CONVERSION = YES;
  4120. CLANG_WARN_INFINITE_RECURSION = YES;
  4121. CLANG_WARN_INT_CONVERSION = YES;
  4122. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4123. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4124. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4125. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4126. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4127. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4128. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4129. CLANG_WARN_UNREACHABLE_CODE = YES;
  4130. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4131. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4132. COPY_PHASE_STRIP = NO;
  4133. DEFINES_MODULE = YES;
  4134. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4135. ENABLE_TESTABILITY = YES;
  4136. GCC_C_LANGUAGE_STANDARD = gnu99;
  4137. GCC_DYNAMIC_NO_PIC = NO;
  4138. GCC_NO_COMMON_BLOCKS = YES;
  4139. GCC_OPTIMIZATION_LEVEL = 0;
  4140. GCC_PREPROCESSOR_DEFINITIONS = (
  4141. "$(inherited)",
  4142. DEBUG,
  4143. NC,
  4144. );
  4145. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  4146. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4147. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4148. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4149. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4150. GCC_WARN_UNUSED_FUNCTION = YES;
  4151. GCC_WARN_UNUSED_VARIABLE = YES;
  4152. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4153. MTL_ENABLE_DEBUG_INFO = YES;
  4154. ONLY_ACTIVE_ARCH = YES;
  4155. OTHER_LDFLAGS = (
  4156. "-Obj-C",
  4157. "-all_load",
  4158. );
  4159. SDKROOT = iphoneos;
  4160. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  4161. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4162. };
  4163. name = Debug;
  4164. };
  4165. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4166. isa = XCBuildConfiguration;
  4167. buildSettings = {
  4168. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  4169. ALWAYS_SEARCH_USER_PATHS = NO;
  4170. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4171. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  4172. CLANG_CXX_LIBRARY = "libc++";
  4173. CLANG_ENABLE_MODULES = YES;
  4174. CLANG_ENABLE_OBJC_ARC = YES;
  4175. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4176. CLANG_WARN_BOOL_CONVERSION = YES;
  4177. CLANG_WARN_COMMA = YES;
  4178. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4179. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4180. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4181. CLANG_WARN_EMPTY_BODY = YES;
  4182. CLANG_WARN_ENUM_CONVERSION = YES;
  4183. CLANG_WARN_INFINITE_RECURSION = YES;
  4184. CLANG_WARN_INT_CONVERSION = YES;
  4185. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4186. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4187. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4188. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4189. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4190. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4191. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4192. CLANG_WARN_UNREACHABLE_CODE = YES;
  4193. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4194. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  4195. COPY_PHASE_STRIP = NO;
  4196. DEFINES_MODULE = YES;
  4197. ENABLE_NS_ASSERTIONS = NO;
  4198. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4199. GCC_C_LANGUAGE_STANDARD = gnu99;
  4200. GCC_NO_COMMON_BLOCKS = YES;
  4201. GCC_PREPROCESSOR_DEFINITIONS = (
  4202. "$(inherited)",
  4203. NC,
  4204. );
  4205. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4206. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4207. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4208. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4209. GCC_WARN_UNUSED_FUNCTION = YES;
  4210. GCC_WARN_UNUSED_VARIABLE = YES;
  4211. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  4212. MTL_ENABLE_DEBUG_INFO = NO;
  4213. OTHER_LDFLAGS = (
  4214. "-Obj-C",
  4215. "-all_load",
  4216. );
  4217. SDKROOT = iphoneos;
  4218. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG NC";
  4219. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  4220. SWIFT_SWIFT3_OBJC_INFERENCE = Off;
  4221. VALIDATE_PRODUCT = YES;
  4222. };
  4223. name = Release;
  4224. };
  4225. /* End XCBuildConfiguration section */
  4226. /* Begin XCConfigurationList section */
  4227. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  4228. isa = XCConfigurationList;
  4229. buildConfigurations = (
  4230. 2C33C48723E2C475005F963B /* Debug */,
  4231. 2C33C48823E2C475005F963B /* Release */,
  4232. );
  4233. defaultConfigurationIsVisible = 0;
  4234. defaultConfigurationName = Release;
  4235. };
  4236. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4237. isa = XCConfigurationList;
  4238. buildConfigurations = (
  4239. F7145A261D12E3B700CAFEEC /* Debug */,
  4240. F7145A271D12E3B700CAFEEC /* Release */,
  4241. );
  4242. defaultConfigurationIsVisible = 0;
  4243. defaultConfigurationName = Release;
  4244. };
  4245. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4246. isa = XCConfigurationList;
  4247. buildConfigurations = (
  4248. F771E3F020E2392E00AFB62D /* Debug */,
  4249. F771E3F120E2392E00AFB62D /* Release */,
  4250. );
  4251. defaultConfigurationIsVisible = 0;
  4252. defaultConfigurationName = Release;
  4253. };
  4254. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4255. isa = XCConfigurationList;
  4256. buildConfigurations = (
  4257. F77B0F9B1D118A16002130FE /* Debug */,
  4258. F77B0F9C1D118A16002130FE /* Release */,
  4259. );
  4260. defaultConfigurationIsVisible = 0;
  4261. defaultConfigurationName = Release;
  4262. };
  4263. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4264. isa = XCConfigurationList;
  4265. buildConfigurations = (
  4266. F7F67BC91A24D27800EE80DA /* Debug */,
  4267. F7F67BCA1A24D27800EE80DA /* Release */,
  4268. );
  4269. defaultConfigurationIsVisible = 0;
  4270. defaultConfigurationName = Release;
  4271. };
  4272. /* End XCConfigurationList section */
  4273. };
  4274. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4275. }