project.pbxproj 351 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  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. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  12. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33C48123E2C475005F963B /* NotificationService.swift */; };
  13. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  14. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3704EB2923D5A58400455C5B /* NCMenu.storyboard */; };
  15. 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
  16. 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */; };
  17. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */; };
  18. 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */; };
  19. AF1A9B6427D0CA1E00F17A9E /* UIAlertController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */; };
  20. AF1A9B6527D0CC0500F17A9E /* UIAlertController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */; };
  21. AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  22. AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  23. AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  24. AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  25. AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */; };
  26. AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */; };
  27. AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */; };
  28. AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */; };
  29. AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */; };
  30. AF36077127BFA4E8001A243D /* ParallelWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF36077027BFA4E8001A243D /* ParallelWorker.swift */; };
  31. AF36077627BFB019001A243D /* ParallelWorkerTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF36077527BFB019001A243D /* ParallelWorkerTest.swift */; };
  32. AF3F909A28213BEA0048A93E /* UserAgentTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF3F909928213BEA0048A93E /* UserAgentTests.swift */; };
  33. AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */; };
  34. AF3FDCC32796F3FB00710F60 /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */; };
  35. AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  36. AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  37. AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  38. AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  39. AF4BF61927562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  40. AF4BF61A27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  41. AF4BF61B27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  42. AF4BF61C27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  43. AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  44. AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  45. AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  46. AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  47. AF56C1DC2784856200D8BAE2 /* NCActivityCommentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */; };
  48. AF68326A27BE65A90010BF0B /* NCMenuAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF68326927BE65A90010BF0B /* NCMenuAction.swift */; };
  49. AF70C14D27F3484D00E13DF2 /* SharePermissionTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF70C14C27F3484D00E13DF2 /* SharePermissionTest.swift */; };
  50. AF730AF827834B1400B7520E /* NCShare+NCCellDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */; };
  51. AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */; };
  52. AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */; };
  53. AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */; };
  54. AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  55. AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  56. AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  57. AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  58. AF8ED1FC2757821000B8DBC4 /* NextcloudTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */; };
  59. AF8ED2032757822700B8DBC4 /* NCGlobalTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */; };
  60. AF93471227E2341B002537EE /* NCShare+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471127E2341B002537EE /* NCShare+Menu.swift */; };
  61. AF93471927E2361E002537EE /* NCShareAdvancePermissionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */; };
  62. AF93471A27E2361E002537EE /* NCShareAdvancePermissionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */; };
  63. AF93471B27E2361E002537EE /* NCShareAdvancePermission.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */; };
  64. AF93471C27E2361E002537EE /* NCShareAdvancePermissionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */; };
  65. AF93471D27E2361E002537EE /* NCShareAdvancePermissionFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */; };
  66. AF93474C27E34120002537EE /* NCUtility+Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93474B27E34120002537EE /* NCUtility+Image.swift */; };
  67. AF93474E27E3F212002537EE /* NCShareNewUserAddComment.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */; };
  68. AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */; };
  69. AFA2AC8527849604008E1EA7 /* NCActivityCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */; };
  70. AFCE353327E4ED1900FEA6C2 /* UIToolbar+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */; };
  71. AFCE353527E4ED5900FEA6C2 /* DateFormatter+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */; };
  72. AFCE353727E4ED7B00FEA6C2 /* NCShareCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */; };
  73. AFCE353927E5DE0500FEA6C2 /* NCShare+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */; };
  74. AFD33240276A02C100F5AE02 /* UIApplication+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */; };
  75. D575039F27146F93008DC9DC /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  76. D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */; };
  77. F343A4B32A1E01FF00DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  78. F343A4B42A1E084100DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  79. F343A4B52A1E084200DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  80. F343A4B62A1E084200DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  81. F343A4B72A1E084300DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  82. F343A4B82A1E084300DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  83. F343A4B92A1E084400DDA874 /* PHAsset+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */; };
  84. F343A4BB2A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  85. F343A4BC2A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  86. F343A4BD2A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  87. F343A4BE2A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  88. F343A4BF2A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  89. F343A4C02A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  90. F343A4C12A1E734600DDA874 /* Optional+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */; };
  91. F700222C1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  92. F700222D1EC479840080073F /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  93. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F700510022DF63AC003A3356 /* NCShare.storyboard */; };
  94. F700510522DF6A89003A3356 /* NCShare.swift in Sources */ = {isa = PBXBuildFile; fileRef = F700510422DF6A89003A3356 /* NCShare.swift */; };
  95. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */; };
  96. F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */; };
  97. F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  98. F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  99. F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  100. F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  101. F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */; };
  102. F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */; };
  103. F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */; };
  104. F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2F625EE5CEC008F8E80 /* NCLogin.swift */; };
  105. F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */ = {isa = PBXBuildFile; fileRef = F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */; };
  106. F702F30225EE5D2C008F8E80 /* english.txt in Resources */ = {isa = PBXBuildFile; fileRef = F702F2FF25EE5D2C008F8E80 /* english.txt */; };
  107. F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
  108. F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  109. F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  110. F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  111. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */; };
  112. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */; };
  113. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */; };
  114. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */; };
  115. F70716E62987F81500E72C1D /* DocumentActionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70716E52987F81500E72C1D /* DocumentActionViewController.swift */; };
  116. F70716E92987F81500E72C1D /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70716E72987F81500E72C1D /* MainInterface.storyboard */; };
  117. F70716ED2987F81500E72C1D /* File Provider Extension UI.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F70716E32987F81500E72C1D /* File Provider Extension UI.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  118. F70716F929881CFA00E72C1D /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F70716F829881CFA00E72C1D /* UICKeyChainStore */; };
  119. F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */; };
  120. F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70753F02542A9A200972D44 /* NCViewerMedia.swift */; };
  121. F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */; };
  122. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */ = {isa = PBXBuildFile; fileRef = F707C26421A2DC5200F6181E /* NCStoreReview.swift */; };
  123. F70821D829E59E6D001CA2D7 /* TagListView in Frameworks */ = {isa = PBXBuildFile; productRef = F70821D729E59E6D001CA2D7 /* TagListView */; };
  124. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */; };
  125. F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */ = {isa = PBXBuildFile; productRef = F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */; };
  126. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  127. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  128. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  129. F70CEF5623E9C7E50007035B /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  130. F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */; };
  131. F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
  132. F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
  133. F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */; };
  134. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D1F42405770F00A6033D /* NCViewerPDF.swift */; };
  135. F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F710D2012405826100A6033D /* NCViewer+Menu.swift */; };
  136. F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC79277B7D0000AA9FBF /* Realm */; };
  137. F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7B277B7D0000AA9FBF /* RealmSwift */; };
  138. F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC7F277B7D2700AA9FBF /* RealmSwift */; };
  139. F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC83277B7D3500AA9FBF /* RealmSwift */; };
  140. F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F710FC87277B7D3F00AA9FBF /* RealmSwift */; };
  141. F711D63128F44801003F43C8 /* IntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9739428F17131002C43E2 /* IntentHandler.swift */; };
  142. F7134186259747BA00768D21 /* NCPushNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F7134185259747BA00768D21 /* NCPushNotification.m */; };
  143. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */; };
  144. F7145610296433C80038D028 /* NCDocumentCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = F714560F296433C80038D028 /* NCDocumentCamera.swift */; };
  145. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  146. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  147. F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F714803A262EBE3900693E51 /* MainInterface.storyboard */; };
  148. F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7148040262EBE4000693E51 /* NCShareExtension.swift */; };
  149. F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  150. F7148054262ED51000693E51 /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  151. F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  152. F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  153. F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
  154. F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F717402B24F699A5000C87D5 /* NCFavorite.storyboard */; };
  155. F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */ = {isa = PBXBuildFile; fileRef = F717402C24F699A5000C87D5 /* NCFavorite.swift */; };
  156. F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */; };
  157. F719D9E0288D37A300762E33 /* NCColorPicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */; };
  158. F719D9E2288D396100762E33 /* NCColorPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = F719D9E1288D396100762E33 /* NCColorPicker.swift */; };
  159. F71CD6CA2930D7B1006C95C1 /* NCApplicationHandle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */; };
  160. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7226EDB1EE4089300EBECB1 /* Main.storyboard */; };
  161. F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */; };
  162. F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
  163. F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7239876253D86D300257F49 /* NCEmptyView.xib */; };
  164. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */; };
  165. F7245924289BB50C00474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  166. F7245925289BB59100474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  167. F7245926289BB59300474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  168. F7245927289BB59300474787 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  169. F72685E727C78E490019EF5E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F72685E927C78E490019EF5E /* InfoPlist.strings */; };
  170. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */; };
  171. F72A17D828B221E300F3F159 /* DashboardWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */; };
  172. F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */; };
  173. F72AD70D28C24B93006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD70C28C24B93006CB92D /* NextcloudKit */; };
  174. F72AD70F28C24BA1006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD70E28C24BA1006CB92D /* NextcloudKit */; };
  175. F72AD71128C24BBB006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD71028C24BBB006CB92D /* NextcloudKit */; };
  176. F72AD71328C24BCC006CB92D /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72AD71228C24BCC006CB92D /* NextcloudKit */; };
  177. F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F72CD01127A7E92400E59476 /* JGProgressHUD */; };
  178. F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */; };
  179. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  180. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */; };
  181. F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F72D7EB6263B1207000B3DFC /* MarkdownKit */; };
  182. F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */ = {isa = PBXBuildFile; productRef = F72DA9B325F53E4E00B87DB1 /* SwiftRichString */; };
  183. F72EA95228B7BA2A00C88F0C /* DashboardWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */; };
  184. F72EA95428B7BABA00C88F0C /* FilesWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */; };
  185. F72EA95828B7BC4F00C88F0C /* FilesData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95728B7BC4F00C88F0C /* FilesData.swift */; };
  186. F72EA95A28B7BD0D00C88F0C /* FilesWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */; };
  187. F72FD3B5297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  188. F72FD3B6297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  189. F72FD3B7297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  190. F72FD3B8297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  191. F72FD3B9297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  192. F72FD3BA297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  193. F732D23327CF8AED000B0F1B /* NCPlayerToolBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */; };
  194. F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
  195. F7346E1228B0EF5B006CE2D2 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */; };
  196. F7346E1328B0EF5B006CE2D2 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F79BCEEA270B49C800B5B71F /* SwiftUI.framework */; };
  197. F7346E1628B0EF5C006CE2D2 /* Widget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7346E1528B0EF5C006CE2D2 /* Widget.swift */; };
  198. F7346E1C28B0EF5E006CE2D2 /* Widget.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7346E1028B0EF5B006CE2D2 /* Widget.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  199. F7346E2328B0FEBA006CE2D2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */; };
  200. F7346E2528B0FEFA006CE2D2 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */; };
  201. F7346E2928B0FFF2006CE2D2 /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7346E2828B0FFF2006CE2D2 /* RealmSwift */; };
  202. F734B06628E75C0100E180D5 /* TLPhotoPicker in Frameworks */ = {isa = PBXBuildFile; productRef = F734B06528E75C0100E180D5 /* TLPhotoPicker */; };
  203. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */; };
  204. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7381EDA218218C9000B1560 /* NCOffline.swift */; };
  205. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7381EDE218218C9000B1560 /* NCOffline.storyboard */; };
  206. F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */; };
  207. F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD1B265546890069EA0D /* SwiftEntryKit */; };
  208. F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2026554F8E0069EA0D /* SwiftEntryKit */; };
  209. F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  210. F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F73ADD2326554FE20069EA0D /* SwiftEntryKit */; };
  211. F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73B42292476764F00A30FD3 /* NCNotification.storyboard */; };
  212. F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73B422A2476764F00A30FD3 /* NCNotification.swift */; };
  213. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */; };
  214. F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */; };
  215. F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  216. F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  217. F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  218. F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  219. F73F537F1E929C8500F8678D /* NCMore.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73F537E1E929C8500F8678D /* NCMore.swift */; };
  220. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  221. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  222. F7434B3820E2400600417916 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  223. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F745B252222D88AE00346520 /* NCLoginQRCode.swift */; };
  224. F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  225. F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  226. F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  227. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */; };
  228. F7490E6B29882A92009DCE94 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  229. F7490E6C29882AEA009DCE94 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  230. F7490E6E29882B56009DCE94 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  231. F7490E6F29882B67009DCE94 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  232. F7490E7029882B9B009DCE94 /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  233. F7490E7229882BB4009DCE94 /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7490E7129882BB4009DCE94 /* RealmSwift */; };
  234. F7490E7329882BC8009DCE94 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  235. F7490E7429882BCC009DCE94 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  236. F7490E7529882BE2009DCE94 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  237. F7490E7629882BF3009DCE94 /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  238. F7490E7729882C10009DCE94 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  239. F7490E7829882C28009DCE94 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  240. F7490E7929882C2F009DCE94 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  241. F7490E7E29882C6E009DCE94 /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  242. F7490E7F29882C73009DCE94 /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  243. F7490E8029882C76009DCE94 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  244. F7490E8129882C79009DCE94 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  245. F7490E8229882C80009DCE94 /* NCManageDatabase+E2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */; };
  246. F7490E8329882C84009DCE94 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  247. F7490E8429882C89009DCE94 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  248. F7490E8529882C8C009DCE94 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  249. F7490E8629882C99009DCE94 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  250. F7490E8729882CA8009DCE94 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  251. F7490E8929882CC8009DCE94 /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7490E8829882CC8009DCE94 /* SwiftEntryKit */; };
  252. F7490E8B29882CE4009DCE94 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7490E8A29882CE4009DCE94 /* NextcloudKit */; };
  253. F7490E8C29882D02009DCE94 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  254. F7490E8D29882F5B009DCE94 /* Custom.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F700222B1EC479840080073F /* Custom.xcassets */; };
  255. F7490E8E2988334A009DCE94 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  256. F749B64A297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  257. F749B64B297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  258. F749B64C297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  259. F749B64D297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  260. F749B64E297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  261. F749B64F297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */; };
  262. F749B651297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  263. F749B652297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  264. F749B653297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  265. F749B654297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  266. F749B655297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  267. F749B656297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */; };
  268. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  269. F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  270. F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  271. F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  272. F74C0436253F1CDC009762AB /* NCShares.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74C0434253F1CDC009762AB /* NCShares.swift */; };
  273. F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74C0435253F1CDC009762AB /* NCShares.storyboard */; };
  274. F74DE14325135B6800917068 /* NCTransfers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74DE14125135B6800917068 /* NCTransfers.swift */; };
  275. F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F74DE14225135B6800917068 /* NCTransfers.storyboard */; };
  276. F74E7720277A2EF40013B958 /* XLForm in Frameworks */ = {isa = PBXBuildFile; productRef = F74E771F277A2EF40013B958 /* XLForm */; };
  277. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7501C302212E57400FB1415 /* NCMedia.storyboard */; };
  278. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7501C312212E57400FB1415 /* NCMedia.swift */; };
  279. F753BA93281FD8020015BFB6 /* EasyTipView in Frameworks */ = {isa = PBXBuildFile; productRef = F753BA92281FD8020015BFB6 /* EasyTipView */; };
  280. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */ = {isa = PBXBuildFile; fileRef = F755BD9A20594AC7008C5FBB /* NCService.swift */; };
  281. F757CC8229E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  282. F757CC8329E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  283. F757CC8429E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  284. F757CC8529E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  285. F757CC8629E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  286. F757CC8729E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  287. F757CC8829E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */; };
  288. F757CC8C29E82D0500F31428 /* NCGroupfolders.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F757CC8A29E82D0500F31428 /* NCGroupfolders.storyboard */; };
  289. F757CC8D29E82D0500F31428 /* NCGroupfolders.swift in Sources */ = {isa = PBXBuildFile; fileRef = F757CC8B29E82D0500F31428 /* NCGroupfolders.swift */; };
  290. F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */; };
  291. F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */; };
  292. F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */ = {isa = PBXBuildFile; productRef = F758A01127A7F03E0069468B /* JGProgressHUD */; };
  293. F758B45A212C564000515F55 /* NCScan.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F758B457212C564000515F55 /* NCScan.storyboard */; };
  294. F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45D212C569C00515F55 /* NCScanCell.swift */; };
  295. F758B460212C56A400515F55 /* NCScan.swift in Sources */ = {isa = PBXBuildFile; fileRef = F758B45F212C56A400515F55 /* NCScan.swift */; };
  296. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  297. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  298. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */; };
  299. F75B0ABD244C4DBB00E58DCA /* NCActionCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75B0ABC244C4DBB00E58DCA /* NCActionCenter.swift */; };
  300. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */; };
  301. F75CA1472962F13700B01130 /* HUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75CA1462962F13700B01130 /* HUDView.swift */; };
  302. F75CA1482962F13700B01130 /* HUDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75CA1462962F13700B01130 /* HUDView.swift */; };
  303. F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */; };
  304. F75DD765290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
  305. F75DD766290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
  306. F75DD767290ABB25002EB562 /* Intent.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = F75DD769290ABB25002EB562 /* Intent.intentdefinition */; };
  307. F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */ = {isa = PBXBuildFile; productRef = F75EAED726D2552E00F4320E /* MarqueeLabel */; };
  308. F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F760329D252F0F8E0015A421 /* NCTransferCell.swift */; };
  309. F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F760329E252F0F8E0015A421 /* NCTransferCell.xib */; };
  310. F761856A29E98543006EB3B0 /* NCIntro.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F761856629E98543006EB3B0 /* NCIntro.storyboard */; };
  311. F761856B29E98543006EB3B0 /* NCIntroViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F761856729E98543006EB3B0 /* NCIntroViewController.swift */; };
  312. F761856C29E98543006EB3B0 /* NCIntroCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F761856829E98543006EB3B0 /* NCIntroCollectionViewCell.swift */; };
  313. F761856D29E98543006EB3B0 /* NCIntroCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F761856929E98543006EB3B0 /* NCIntroCollectionViewCell.xib */; };
  314. F763D29D2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  315. F763D29E2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  316. F763D29F2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  317. F763D2A02A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  318. F763D2A12A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  319. F763D2A22A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  320. F763D2A32A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */; };
  321. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */; };
  322. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */; };
  323. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  324. F765E9CD295C585800A09ED8 /* NCUploadScanDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */; };
  325. F765F73125237E3F00391DBE /* NCRecent.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765F72F25237E3F00391DBE /* NCRecent.swift */; };
  326. F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F765F73025237E3F00391DBE /* NCRecent.storyboard */; };
  327. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EC22C901F5007ED366 /* FileProviderDomain.swift */; };
  328. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76673EF22C90433007ED366 /* FileProviderUtility.swift */; };
  329. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */; };
  330. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F769453B22E9CFFF000A798A /* NCShareUserCell.xib */; };
  331. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769453F22E9F077000A798A /* NCSharePaging.swift */; };
  332. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454522E9F1B0000A798A /* NCShareCommon.swift */; };
  333. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769454722E9F20D000A798A /* NCShareNetworking.swift */; };
  334. F769CA172965AB7C00039397 /* NCUploadAssets.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA162965AB7C00039397 /* NCUploadAssets.swift */; };
  335. F769CA192966EA3C00039397 /* ComponentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA182966EA3C00039397 /* ComponentView.swift */; };
  336. F769CA1A2966EA3C00039397 /* ComponentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F769CA182966EA3C00039397 /* ComponentView.swift */; };
  337. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  338. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  339. F76C26A62850D3A500E42BDF /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  340. F76D364628A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  341. F76D364728A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  342. F76D364828A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  343. F76D364928A4F8BF00214537 /* NCActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */; };
  344. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */; };
  345. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */; };
  346. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */; };
  347. F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; };
  348. F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  349. F76DA963277B760E0082465B /* Queuer in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA962277B760E0082465B /* Queuer */; };
  350. F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA965277B76F30082465B /* UICKeyChainStore */; };
  351. F76DA969277B77EA0082465B /* DropDown in Frameworks */ = {isa = PBXBuildFile; productRef = F76DA968277B77EA0082465B /* DropDown */; };
  352. F76DEE9728F808AF0041B1C9 /* LockscreenData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */; };
  353. F76DEE9828F808AF0041B1C9 /* LockscreenWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */; };
  354. F76DEE9928F808AF0041B1C9 /* LockscreenWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */; };
  355. F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  356. F7707689263A896A00A1BA94 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  357. F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  358. F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */ = {isa = PBXBuildFile; productRef = F770768D263A8C3400A1BA94 /* FloatingPanel */; };
  359. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */; };
  360. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D420E2392D00AFB62D /* FileProviderItem.swift */; };
  361. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */; };
  362. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  363. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F220E239A600AFB62D /* FileProviderData.swift */; };
  364. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */; };
  365. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */ = {isa = PBXBuildFile; fileRef = F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */; };
  366. F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7725A5E251F33BB00D125E0 /* NCFiles.swift */; };
  367. F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */; };
  368. F77333882927A72100466E35 /* OpenSSL in Frameworks */ = {isa = PBXBuildFile; productRef = F77333872927A72100466E35 /* OpenSSL */; };
  369. F774264A22EB4D0000B23912 /* NCSearchUserDropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */; };
  370. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F322281649000D5EB0 /* NCGridMediaCell.swift */; };
  371. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F77444F422281649000D5EB0 /* NCGridMediaCell.xib */; };
  372. F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */; };
  373. F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F77910A425DD517B00CEDB9E /* Settings.bundle */; };
  374. F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */; };
  375. F7792DE529EEE02D005930CE /* MobileVLCKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */; };
  376. F7792DE629EEE02D005930CE /* MobileVLCKit.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  377. F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */; };
  378. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  379. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */; };
  380. F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE4311BAC0268006C0017 /* NCSettings.m */; };
  381. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */; };
  382. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */ = {isa = PBXBuildFile; fileRef = F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */; };
  383. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */ = {isa = PBXBuildFile; fileRef = F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */; };
  384. F77B0F631D118A16002130FE /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  385. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  386. F77BB746289984CA0090FC19 /* UIViewController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */; };
  387. F77BB748289985270090FC19 /* UITabBarController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB747289985270090FC19 /* UITabBarController+Extension.swift */; };
  388. F77BB74A2899857B0090FC19 /* UINavigationController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */; };
  389. F77BC3EB293E5268005F2B08 /* Swifter in Frameworks */ = {isa = PBXBuildFile; productRef = F77BC3EA293E5268005F2B08 /* Swifter */; };
  390. F77BC3ED293E528A005F2B08 /* NCConfigServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */; };
  391. F77C97392953131000FDDD09 /* NCCameraRoll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C97382953131000FDDD09 /* NCCameraRoll.swift */; };
  392. F77C973A2953143A00FDDD09 /* NCCameraRoll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77C97382953131000FDDD09 /* NCCameraRoll.swift */; };
  393. F77ED59128C9CE9D00E24ED0 /* ToolbarData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */; };
  394. F77ED59328C9CEA000E24ED0 /* ToolbarWidgetProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */; };
  395. F77ED59528C9CEA400E24ED0 /* ToolbarWidgetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */; };
  396. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  397. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */ = {isa = PBXBuildFile; fileRef = F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */; };
  398. F7817CF829801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  399. F7817CF929801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  400. F7817CFA29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  401. F7817CFB29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  402. F7817CFC29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  403. F7817CFD29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  404. F7817CFE29801A3500FFBC65 /* Data+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7817CF729801A3500FFBC65 /* Data+Extension.swift */; };
  405. F7817CFF29802D1A00FFBC65 /* NCPushNotificationEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */; };
  406. F7817D0029802D3D00FFBC65 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  407. F7817D0129802D5F00FFBC65 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  408. F7817D0229802D7700FFBC65 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  409. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */; };
  410. F782FDC424E6933900666099 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  411. F78302F628B4C3C500B84583 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  412. F78302F728B4C3C900B84583 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  413. F78302F828B4C3E100B84583 /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  414. F78302F928B4C3E600B84583 /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  415. F78302FA28B4C3EA00B84583 /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  416. F78302FB28B4C3EE00B84583 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  417. F78302FC28B4C3F300B84583 /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  418. F78302FD28B4C42B00B84583 /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  419. F78302FE28B4C44700B84583 /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  420. F78302FF28B4C45000B84583 /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  421. F783030028B4C45800B84583 /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  422. F783030128B4C49700B84583 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  423. F783030228B4C4B800B84583 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  424. F783030328B4C4DD00B84583 /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  425. F783030628B4C51E00B84583 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  426. F783030728B4C52800B84583 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  427. F783030D28B4C59A00B84583 /* SwiftEntryKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783030C28B4C59A00B84583 /* SwiftEntryKit */; };
  428. F783031228B4C8EC00B84583 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  429. F783034428B5142B00B84583 /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F783034328B5142B00B84583 /* NextcloudKit */; };
  430. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  431. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  432. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  433. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  434. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  435. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F787704E22E7019900F287A9 /* NCShareLinkCell.xib */; };
  436. F787AC09298BCB4A0001BB00 /* SVGKitSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F787AC08298BCB4A0001BB00 /* SVGKitSwift */; };
  437. F787AC0B298BCB540001BB00 /* SVGKitSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F787AC0A298BCB540001BB00 /* SVGKitSwift */; };
  438. F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */ = {isa = PBXBuildFile; productRef = F788ECC6263AAAFA00ADC67F /* MarkdownKit */; };
  439. F78A10BF29322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  440. F78A10C029322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  441. F78A10C129322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  442. F78A10C229322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  443. F78A10C329322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  444. F78A10C429322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */; };
  445. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */; };
  446. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */; };
  447. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  448. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  449. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4321903CF20088454D /* NCListCell.xib */; };
  450. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4521903D010088454D /* NCGridCell.xib */; };
  451. F78ACD4A21903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */; };
  452. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD4921903F850088454D /* NCTrashListCell.xib */; };
  453. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  454. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD53219047D40088454D /* NCSectionFooter.xib */; };
  455. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */; };
  456. F78C6FDE296D677300C952C3 /* NCContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78C6FDD296D677300C952C3 /* NCContextMenu.swift */; };
  457. F78E2D6529AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  458. F78E2D6629AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  459. F78E2D6729AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  460. F78E2D6829AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  461. F78E2D6929AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  462. F78E2D6A29AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  463. F78E2D6B29AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  464. F78E2D6C29AF02DB0024D4F3 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78E2D6429AF02DB0024D4F3 /* Database.swift */; };
  465. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F78F74332163757000C2ADAD /* NCTrash.storyboard */; };
  466. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78F74352163781100C2ADAD /* NCTrash.swift */; };
  467. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */; };
  468. F793E59D28B761E7005E4B02 /* NCNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = F75A9EE523796C6F0044CFCE /* NCNetworking.swift */; };
  469. F793E59E28B763C2005E4B02 /* NCAskAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F733598025C1C188002ABA72 /* NCAskAuthorization.swift */; };
  470. F793E59F28B764F6005E4B02 /* NCContentPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F765608E23BF813500765969 /* NCContentPresenter.swift */; };
  471. F793E5A128B76541005E4B02 /* NotificationCenter+MainThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */; };
  472. F793E5A228B76580005E4B02 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  473. F798F0E225880608000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  474. F798F0E725880609000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  475. F798F0EC2588060A000DAFFD /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  476. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */; };
  477. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79A65C52191D95E00FF6DCC /* NCSelect.swift */; };
  478. F79B646026CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  479. F79B646126CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  480. F79B646226CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  481. F79B646326CA661600838ACA /* UIControl+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B645F26CA661600838ACA /* UIControl+Extension.swift */; };
  482. F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */; };
  483. F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */; };
  484. F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */; };
  485. F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */; };
  486. F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */; };
  487. F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F79EDAA126B004980007D134 /* NCPlayer.swift */; };
  488. F7A0D1352591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  489. F7A0D1362591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  490. F7A0D1372591FBC5008F8A13 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  491. F7A1050E29E587AF00FFD92B /* TagListView in Frameworks */ = {isa = PBXBuildFile; productRef = F7A1050D29E587AF00FFD92B /* TagListView */; };
  492. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */; };
  493. F7A48413297022E000BD1B49 /* ViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */; };
  494. F7A48415297028FC00BD1B49 /* Nextcloud Hub.png in Resources */ = {isa = PBXBuildFile; fileRef = F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */; };
  495. F7A60F86292D215000FCE1F2 /* NCShareAccounts.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A60F84292D215000FCE1F2 /* NCShareAccounts.swift */; };
  496. F7A60F87292D215000FCE1F2 /* NCShareAccounts.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7A60F85292D215000FCE1F2 /* NCShareAccounts.storyboard */; };
  497. F7A76DC8256A71CD00119AB3 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  498. F7A76DCD256A71CE00119AB3 /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  499. F7A7FA6329265CF4000603EF /* NCManageE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */; };
  500. F7A8D72428F1771B008BBE1C /* NextcloudKit in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72328F1771B008BBE1C /* NextcloudKit */; };
  501. F7A8D72828F17728008BBE1C /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72728F17728008BBE1C /* RealmSwift */; };
  502. F7A8D72E28F17764008BBE1C /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7A8D72D28F17764008BBE1C /* UICKeyChainStore */; };
  503. F7A8D73428F17E12008BBE1C /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  504. F7A8D73528F17E16008BBE1C /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  505. F7A8D73628F17E1A008BBE1C /* NCManageDatabase+Activity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */; };
  506. F7A8D73728F17E1E008BBE1C /* NCManageDatabase+Account.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */; };
  507. F7A8D73828F17E21008BBE1C /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  508. F7A8D73928F17E25008BBE1C /* NCManageDatabase+Metadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */; };
  509. F7A8D73A28F17E28008BBE1C /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  510. F7A8D73B28F17E2C008BBE1C /* NCElementsJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */; };
  511. F7A8D73C28F181BC008BBE1C /* NCBrand.swift in Sources */ = {isa = PBXBuildFile; fileRef = F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */; };
  512. F7A8D73D28F181D3008BBE1C /* NCUtilityFileSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */; };
  513. F7A8D73E28F181E2008BBE1C /* NCUserBaseUrl.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */; };
  514. F7A8D73F28F181EF008BBE1C /* NCGlobal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */; };
  515. F7A8D74028F18212008BBE1C /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  516. F7A8D74128F18254008BBE1C /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */; };
  517. F7A8D74228F18261008BBE1C /* NCUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F70BFC7320E0FA7C00C67599 /* NCUtility.swift */; };
  518. F7A8D74328F1826F008BBE1C /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A0D1342591FBC5008F8A13 /* String+Extension.swift */; };
  519. F7A8D74428F1827B008BBE1C /* ThreadSafeDictionary.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */; };
  520. F7A8D74528F1828E008BBE1C /* CCUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7053E3D1C639DF500741EA5 /* CCUtility.m */; };
  521. F7AC1CB028AB94490032D99F /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AC1CAF28AB94490032D99F /* Array+Extension.swift */; };
  522. F7AC934A296193050002BC0F /* Reasons to use Nextcloud.pdf in Resources */ = {isa = PBXBuildFile; fileRef = F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */; };
  523. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */; };
  524. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */; };
  525. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */; };
  526. F7B6B70427C4E7FA00A7F6EB /* NCScan+CollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */; };
  527. F7B7504B2397D38F004E13EC /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */; };
  528. F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = F7B8B82F25681C3400967775 /* GoogleService-Info.plist */; };
  529. F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  530. F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  531. F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */; };
  532. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  533. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */; };
  534. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  535. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */; };
  536. F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */ = {isa = PBXBuildFile; productRef = F7BB7E4627A18C56009B9F29 /* Parchment */; };
  537. F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */; };
  538. F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */; };
  539. F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */ = {isa = PBXBuildFile; fileRef = F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */; };
  540. F7BF9D822934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  541. F7BF9D832934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  542. F7BF9D842934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  543. F7BF9D852934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  544. F7BF9D862934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  545. F7BF9D872934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */; };
  546. F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
  547. F7C30DF6291BC0CA0017149B /* NCNetworkingE2EEUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */; };
  548. F7C30DF7291BC0D30017149B /* NCNetworkingE2EEUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */; };
  549. F7C30DFA291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */; };
  550. F7C30DFB291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */; };
  551. F7C30DFD291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */; };
  552. F7C30DFE291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */; };
  553. F7C30E00291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */; };
  554. F7C30E01291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */; };
  555. F7C7B25028B8AD4500E7115D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F7E70DE91A24DE4100E1B66A /* Localizable.strings */; };
  556. F7C7B25128B8B0C400E7115D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F7F67BB81A24D27800EE80DA /* Images.xcassets */; };
  557. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */; };
  558. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7C9555221F0C4CA0024296E /* NCActivity.storyboard */; };
  559. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9555421F0C5470024296E /* NCActivity.swift */; };
  560. F7C9739228F17131002C43E2 /* Intents.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7C9739128F17131002C43E2 /* Intents.framework */; };
  561. F7C9739528F17131002C43E2 /* IntentHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C9739428F17131002C43E2 /* IntentHandler.swift */; };
  562. F7C9739928F17131002C43E2 /* WidgetDashboardIntentHandler.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  563. F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
  564. F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
  565. F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB68992541676B0050EC94 /* NCMore.storyboard */; };
  566. F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CB689F254169530050EC94 /* NCSettings.storyboard */; };
  567. F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */; };
  568. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */; };
  569. F7D56B1A2972405500FA46C4 /* Mantis in Frameworks */ = {isa = PBXBuildFile; productRef = F7D56B192972405500FA46C4 /* Mantis */; };
  570. F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */; };
  571. F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CA212B25F1333200826ABB /* NCAccountRequest.swift */; };
  572. F7D68FCC28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  573. F7D68FCD28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  574. F7D68FCE28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  575. F7D68FCF28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  576. F7D68FD028CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */; };
  577. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */; };
  578. F7E0710128B13BB00001B882 /* DashboardData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E0710028B13BB00001B882 /* DashboardData.swift */; };
  579. F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */; };
  580. F7E41316294A19B300839300 /* UIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E41315294A19B300839300 /* UIView+Extension.swift */; };
  581. F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */; };
  582. F7E8A391295DC5E0006CB2D0 /* View+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */; };
  583. F7E98C1627E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  584. F7E98C1727E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  585. F7E98C1827E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  586. F7E98C1927E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */; };
  587. F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */; };
  588. F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */; };
  589. F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */ = {isa = PBXBuildFile; productRef = F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */; };
  590. F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */ = {isa = PBXBuildFile; productRef = F7ED547B25EEA65400956C55 /* QRCodeReader */; };
  591. F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7239870253D86B600257F49 /* NCEmptyDataSet.swift */; };
  592. F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7C1EEA425053A9C00866ACC /* NCDataSource.swift */; };
  593. F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD4121903CE00088454D /* NCListCell.swift */; };
  594. F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */; };
  595. F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD3F21903CC20088454D /* NCGridCell.swift */; };
  596. F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */; };
  597. F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */; };
  598. F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */; };
  599. F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */; };
  600. F7EE66AD2A20B226009AE765 /* UILabel+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */; };
  601. F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */; };
  602. F7EFC0C6256BC77700461AAD /* NCMoreUserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */; };
  603. F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */; };
  604. F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */; };
  605. F7F4F10527ECDBDB008676F9 /* Inconsolata-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */; };
  606. F7F4F10627ECDBDB008676F9 /* Inconsolata-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */; };
  607. F7F4F10727ECDBDB008676F9 /* Inconsolata-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */; };
  608. F7F4F10827ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */; };
  609. F7F4F10927ECDBDB008676F9 /* Inconsolata-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */; };
  610. F7F4F10A27ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */; };
  611. F7F4F10B27ECDBDB008676F9 /* Inconsolata-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */; };
  612. F7F4F10C27ECDBDB008676F9 /* Inconsolata-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */; };
  613. F7F4F11027ECDC4A008676F9 /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */; };
  614. F7F4F11227ECDC52008676F9 /* UIFont+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */; };
  615. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  616. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */; };
  617. F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */; };
  618. F7FAFD3A28BFA948000777FE /* NCNotification+Menu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */; };
  619. F7FC5EE12A1768D700D921F5 /* NCCapabilitiesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FC5EE02A1768D700D921F5 /* NCCapabilitiesView.swift */; };
  620. F7FF2CB12842159500EBB7A1 /* NCSectionHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */; };
  621. /* End PBXBuildFile section */
  622. /* Begin PBXContainerItemProxy section */
  623. 2C33C48423E2C475005F963B /* PBXContainerItemProxy */ = {
  624. isa = PBXContainerItemProxy;
  625. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  626. proxyType = 1;
  627. remoteGlobalIDString = 2C33C47E23E2C475005F963B;
  628. remoteInfo = "Notification Service Extension";
  629. };
  630. AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */ = {
  631. isa = PBXContainerItemProxy;
  632. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  633. proxyType = 1;
  634. remoteGlobalIDString = F77B0DEB1D118A16002130FE;
  635. remoteInfo = Nextcloud;
  636. };
  637. F70716EB2987F81500E72C1D /* PBXContainerItemProxy */ = {
  638. isa = PBXContainerItemProxy;
  639. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  640. proxyType = 1;
  641. remoteGlobalIDString = F70716E22987F81400E72C1D;
  642. remoteInfo = "File Provider Extension UI";
  643. };
  644. F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */ = {
  645. isa = PBXContainerItemProxy;
  646. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  647. proxyType = 1;
  648. remoteGlobalIDString = F71459B41D12E3B700CAFEEC;
  649. remoteInfo = "Share Ext Nextcloud";
  650. };
  651. F7346E1A28B0EF5E006CE2D2 /* PBXContainerItemProxy */ = {
  652. isa = PBXContainerItemProxy;
  653. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  654. proxyType = 1;
  655. remoteGlobalIDString = F7346E0F28B0EF5B006CE2D2;
  656. remoteInfo = DashboardWidgetExtension;
  657. };
  658. F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */ = {
  659. isa = PBXContainerItemProxy;
  660. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  661. proxyType = 1;
  662. remoteGlobalIDString = F771E3CF20E2392D00AFB62D;
  663. remoteInfo = "File Provider Extension";
  664. };
  665. F7C9739728F17131002C43E2 /* PBXContainerItemProxy */ = {
  666. isa = PBXContainerItemProxy;
  667. containerPortal = F7F67BA01A24D27800EE80DA /* Project object */;
  668. proxyType = 1;
  669. remoteGlobalIDString = F7C9738F28F17131002C43E2;
  670. remoteInfo = WidgetDashboardIntentHandler;
  671. };
  672. /* End PBXContainerItemProxy section */
  673. /* Begin PBXCopyFilesBuildPhase section */
  674. F76DA934277B75710082465B /* Embed Frameworks */ = {
  675. isa = PBXCopyFilesBuildPhase;
  676. buildActionMask = 2147483647;
  677. dstPath = "";
  678. dstSubfolderSpec = 10;
  679. files = (
  680. F7792DE629EEE02D005930CE /* MobileVLCKit.xcframework in Embed Frameworks */,
  681. F76DA95C277B75A90082465B /* TOPasscodeViewController.xcframework in Embed Frameworks */,
  682. );
  683. name = "Embed Frameworks";
  684. runOnlyForDeploymentPostprocessing = 0;
  685. };
  686. F77B0F981D118A16002130FE /* Embed Foundation Extensions */ = {
  687. isa = PBXCopyFilesBuildPhase;
  688. buildActionMask = 2147483647;
  689. dstPath = "";
  690. dstSubfolderSpec = 13;
  691. files = (
  692. F771E3EB20E2392E00AFB62D /* File Provider Extension.appex in Embed Foundation Extensions */,
  693. F749E4E91DC1FB38009BA2FD /* Share.appex in Embed Foundation Extensions */,
  694. F70716ED2987F81500E72C1D /* File Provider Extension UI.appex in Embed Foundation Extensions */,
  695. 2C33C48623E2C475005F963B /* Notification Service Extension.appex in Embed Foundation Extensions */,
  696. F7C9739928F17131002C43E2 /* WidgetDashboardIntentHandler.appex in Embed Foundation Extensions */,
  697. F7346E1C28B0EF5E006CE2D2 /* Widget.appex in Embed Foundation Extensions */,
  698. );
  699. name = "Embed Foundation Extensions";
  700. runOnlyForDeploymentPostprocessing = 0;
  701. };
  702. /* End PBXCopyFilesBuildPhase section */
  703. /* Begin PBXFileReference section */
  704. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  705. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  706. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  707. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  708. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleToolboxForMac.framework; sourceTree = "<group>"; };
  709. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  710. 2C33C48123E2C475005F963B /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
  711. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Notification_Service_Extension-Bridging-Header.h"; sourceTree = "<group>"; };
  712. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMenu.storyboard; sourceTree = "<group>"; };
  713. 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCellProtocol.swift; sourceTree = "<group>"; };
  714. 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenu.swift; sourceTree = "<group>"; };
  715. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FloatingPanel.framework; path = Carthage/Build/iOS/FloatingPanel.framework; sourceTree = "<group>"; };
  716. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Menu.swift"; sourceTree = "<group>"; };
  717. 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+Menu.swift"; sourceTree = "<group>"; };
  718. AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIAlertController+Extension.swift"; sourceTree = "<group>"; };
  719. AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCell.swift; sourceTree = "<group>"; };
  720. AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+DataSource.swift"; sourceTree = "<group>"; };
  721. AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+Files.swift"; sourceTree = "<group>"; };
  722. AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareLinkCell.swift; sourceTree = "<group>"; };
  723. AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareUserCell.swift; sourceTree = "<group>"; };
  724. AF36077027BFA4E8001A243D /* ParallelWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallelWorker.swift; sourceTree = "<group>"; };
  725. AF36077527BFB019001A243D /* ParallelWorkerTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParallelWorkerTest.swift; sourceTree = "<group>"; };
  726. AF3F909928213BEA0048A93E /* UserAgentTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserAgentTests.swift; sourceTree = "<group>"; };
  727. AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCTrash+CollectionView.swift"; sourceTree = "<group>"; };
  728. AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Account.swift"; sourceTree = "<group>"; };
  729. AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Metadata.swift"; sourceTree = "<group>"; };
  730. AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Activity.swift"; sourceTree = "<group>"; };
  731. AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCActivityCommentView.xib; sourceTree = "<group>"; };
  732. AF68326927BE65A90010BF0B /* NCMenuAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMenuAction.swift; sourceTree = "<group>"; };
  733. AF70C14C27F3484D00E13DF2 /* SharePermissionTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SharePermissionTest.swift; sourceTree = "<group>"; };
  734. AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+NCCellDelegate.swift"; sourceTree = "<group>"; };
  735. AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShareExtension+NCDelegate.swift"; sourceTree = "<group>"; };
  736. AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIBarButton+Extension.swift"; sourceTree = "<group>"; };
  737. AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelectableNavigationView.swift; sourceTree = "<group>"; };
  738. AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserBaseUrl.swift; sourceTree = "<group>"; };
  739. AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NextcloudTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  740. AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextcloudTests.swift; sourceTree = "<group>"; };
  741. AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGlobalTests.swift; sourceTree = "<group>"; };
  742. AF93471127E2341B002537EE /* NCShare+Menu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+Menu.swift"; sourceTree = "<group>"; };
  743. AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareAdvancePermissionFooter.xib; sourceTree = "<group>"; };
  744. AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermissionHeader.swift; sourceTree = "<group>"; };
  745. AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermission.swift; sourceTree = "<group>"; };
  746. AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareAdvancePermissionHeader.xib; sourceTree = "<group>"; };
  747. AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAdvancePermissionFooter.swift; sourceTree = "<group>"; };
  748. AF93474B27E34120002537EE /* NCUtility+Image.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCUtility+Image.swift"; sourceTree = "<group>"; };
  749. AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareNewUserAddComment.swift; sourceTree = "<group>"; };
  750. AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCMenu+FloatingPanel.swift"; sourceTree = "<group>"; };
  751. AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityCommentView.swift; sourceTree = "<group>"; };
  752. AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIToolbar+Extension.swift"; sourceTree = "<group>"; };
  753. AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "DateFormatter+Extension.swift"; sourceTree = "<group>"; };
  754. AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCells.swift; sourceTree = "<group>"; };
  755. AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCShare+Helper.swift"; sourceTree = "<group>"; };
  756. AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIApplication+Extension.swift"; sourceTree = "<group>"; };
  757. D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityTableViewCell.swift; sourceTree = "<group>"; };
  758. F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PHAsset+Extension.swift"; sourceTree = "<group>"; };
  759. F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Optional+Extensions.swift"; sourceTree = "<group>"; };
  760. F700222B1EC479840080073F /* Custom.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Custom.xcassets; sourceTree = "<group>"; };
  761. F700510022DF63AC003A3356 /* NCShare.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCShare.storyboard; sourceTree = "<group>"; };
  762. F700510222DF6897003A3356 /* Parchment.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parchment.framework; path = Carthage/Build/iOS/Parchment.framework; sourceTree = "<group>"; };
  763. F700510422DF6A89003A3356 /* NCShare.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShare.swift; sourceTree = "<group>"; };
  764. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadVoiceNote.swift; sourceTree = "<group>"; };
  765. F702864D27735D1400ADA8BE /* libavdevice.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavdevice.xcframework; path = ffmpeg/libavdevice.xcframework; sourceTree = "<group>"; };
  766. F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ffmpegkit.xcframework; path = ffmpeg/ffmpegkit.xcframework; sourceTree = "<group>"; };
  767. F702864F27735D1500ADA8BE /* libnettle.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libnettle.xcframework; path = ffmpeg/libnettle.xcframework; sourceTree = "<group>"; };
  768. F702865027735D1500ADA8BE /* libswscale.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswscale.xcframework; path = ffmpeg/libswscale.xcframework; sourceTree = "<group>"; };
  769. F702865127735D1500ADA8BE /* gmp.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gmp.xcframework; path = ffmpeg/gmp.xcframework; sourceTree = "<group>"; };
  770. F702865227735D1500ADA8BE /* libavcodec.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavcodec.xcframework; path = ffmpeg/libavcodec.xcframework; sourceTree = "<group>"; };
  771. F702865327735D1500ADA8BE /* libavutil.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavutil.xcframework; path = ffmpeg/libavutil.xcframework; sourceTree = "<group>"; };
  772. F702865427735D1500ADA8BE /* openh264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = openh264.xcframework; path = ffmpeg/openh264.xcframework; sourceTree = "<group>"; };
  773. F702865527735D1600ADA8BE /* libavfilter.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavfilter.xcframework; path = ffmpeg/libavfilter.xcframework; sourceTree = "<group>"; };
  774. F702865627735D1600ADA8BE /* libhogweed.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libhogweed.xcframework; path = ffmpeg/libhogweed.xcframework; sourceTree = "<group>"; };
  775. F702865727735D1600ADA8BE /* x264.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = x264.xcframework; path = ffmpeg/x264.xcframework; sourceTree = "<group>"; };
  776. F702865827735D1600ADA8BE /* libavformat.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libavformat.xcframework; path = ffmpeg/libavformat.xcframework; sourceTree = "<group>"; };
  777. F702865927735D1600ADA8BE /* libswresample.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = libswresample.xcframework; path = ffmpeg/libswresample.xcframework; sourceTree = "<group>"; };
  778. F702865A27735D1700ADA8BE /* gnutls.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = gnutls.xcframework; path = ffmpeg/gnutls.xcframework; sourceTree = "<group>"; };
  779. F702867E2773609C00ADA8BE /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  780. F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  781. F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGlobal.swift; sourceTree = "<group>"; };
  782. F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAudioRecorderViewController.swift; sourceTree = "<group>"; };
  783. F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAudioRecorderViewController.storyboard; sourceTree = "<group>"; };
  784. F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCLogin.storyboard; sourceTree = "<group>"; };
  785. F702F2F625EE5CEC008F8E80 /* NCLogin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLogin.swift; sourceTree = "<group>"; };
  786. F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NYMnemonic.m; sourceTree = "<group>"; };
  787. F702F2FF25EE5D2C008F8E80 /* english.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = english.txt; sourceTree = "<group>"; };
  788. F702F30025EE5D2C008F8E80 /* NYMnemonic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NYMnemonic.h; sourceTree = "<group>"; };
  789. F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPopupViewController.swift; sourceTree = "<group>"; };
  790. F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NotificationCenter+MainThread.swift"; sourceTree = "<group>"; };
  791. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCCreateFormUploadConflict.storyboard; sourceTree = "<group>"; };
  792. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflict.swift; sourceTree = "<group>"; };
  793. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCCreateFormUploadConflictCell.xib; sourceTree = "<group>"; };
  794. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadConflictCell.swift; sourceTree = "<group>"; };
  795. F7053E3C1C639DF500741EA5 /* CCUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCUtility.h; sourceTree = "<group>"; };
  796. F7053E3D1C639DF500741EA5 /* CCUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCUtility.m; sourceTree = "<group>"; };
  797. F7063DEC2199E55F003F38DA /* SVGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SVGKit.framework; path = Carthage/Build/iOS/SVGKit.framework; sourceTree = "<group>"; };
  798. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjack.framework; path = Carthage/Build/iOS/CocoaLumberjack.framework; sourceTree = "<group>"; };
  799. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CocoaLumberjackSwift.framework; path = Carthage/Build/iOS/CocoaLumberjackSwift.framework; sourceTree = "<group>"; };
  800. F70716E32987F81500E72C1D /* File Provider Extension UI.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension UI.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  801. F70716E52987F81500E72C1D /* DocumentActionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DocumentActionViewController.swift; sourceTree = "<group>"; };
  802. F70716E82987F81500E72C1D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = "<group>"; };
  803. F70716F52987FA2F00E72C1D /* FileProviderExtensionUI-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtensionUI-Bridging-Header.h"; sourceTree = "<group>"; };
  804. F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMediaPage.swift; sourceTree = "<group>"; };
  805. F70753F02542A9A200972D44 /* NCViewerMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerMedia.swift; sourceTree = "<group>"; };
  806. F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerMediaPage.storyboard; sourceTree = "<group>"; };
  807. F707C26421A2DC5200F6181E /* NCStoreReview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCStoreReview.swift; sourceTree = "<group>"; };
  808. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCLivePhoto.swift; sourceTree = "<group>"; };
  809. F70A07C8205285FB00DC1231 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  810. F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ChromaColorPicker.xcframework; path = Carthage/Build/ChromaColorPicker.xcframework; sourceTree = "<group>"; };
  811. F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVHTTPCache.xcframework; path = Carthage/Build/KTVHTTPCache.xcframework; sourceTree = "<group>"; };
  812. F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TLPhotoPicker.xcframework; path = Carthage/Build/TLPhotoPicker.xcframework; sourceTree = "<group>"; };
  813. F70B867B2642CF5300ED5349 /* XLForm.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = XLForm.xcframework; path = Carthage/Build/XLForm.xcframework; sourceTree = "<group>"; };
  814. F70B867C2642CF5300ED5349 /* Queuer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Queuer.xcframework; path = Carthage/Build/Queuer.xcframework; sourceTree = "<group>"; };
  815. F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = UICKeyChainStore.xcframework; path = Carthage/Build/UICKeyChainStore.xcframework; sourceTree = "<group>"; };
  816. F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = KTVCocoaHTTPServer.xcframework; path = Carthage/Build/KTVCocoaHTTPServer.xcframework; sourceTree = "<group>"; };
  817. F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = QuickLayout.xcframework; path = Carthage/Build/QuickLayout.xcframework; sourceTree = "<group>"; };
  818. F70B86802642CF5400ED5349 /* OpenSSL.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = OpenSSL.xcframework; path = Carthage/Build/OpenSSL.xcframework; sourceTree = "<group>"; };
  819. F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = SwiftEntryKit.xcframework; path = Carthage/Build/SwiftEntryKit.xcframework; sourceTree = "<group>"; };
  820. F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TOPasscodeViewController.xcframework; path = Carthage/Build/TOPasscodeViewController.xcframework; sourceTree = "<group>"; };
  821. F70B86832642CF5500ED5349 /* FSCalendar.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = FSCalendar.xcframework; path = Carthage/Build/FSCalendar.xcframework; sourceTree = "<group>"; };
  822. F70B86842642CF5500ED5349 /* DropDown.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = DropDown.xcframework; path = Carthage/Build/DropDown.xcframework; sourceTree = "<group>"; };
  823. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtility.swift; sourceTree = "<group>"; };
  824. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCEndToEndEncryption.h; sourceTree = "<group>"; };
  825. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCEndToEndEncryption.m; sourceTree = "<group>"; };
  826. F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = "<group>"; };
  827. F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCollectionViewCommon.swift; sourceTree = "<group>"; };
  828. F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRenameFile.storyboard; sourceTree = "<group>"; };
  829. F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRenameFile.swift; sourceTree = "<group>"; };
  830. F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingProcessUpload.swift; sourceTree = "<group>"; };
  831. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZIPFoundation.framework; path = Carthage/Build/iOS/ZIPFoundation.framework; sourceTree = "<group>"; };
  832. F70F96AF2874394B006C8379 /* Nextcloud-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Nextcloud-Bridging-Header.h"; sourceTree = "<group>"; };
  833. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sentry.framework; path = Carthage/Build/iOS/Sentry.framework; sourceTree = "<group>"; };
  834. F710D1F42405770F00A6033D /* NCViewerPDF.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerPDF.swift; sourceTree = "<group>"; };
  835. F710D2012405826100A6033D /* NCViewer+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCViewer+Menu.swift"; sourceTree = "<group>"; };
  836. F7134184259747BA00768D21 /* NCPushNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NCPushNotification.h; sourceTree = "<group>"; };
  837. F7134185259747BA00768D21 /* NCPushNotification.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NCPushNotification.m; sourceTree = "<group>"; };
  838. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+animatedGIF.h"; sourceTree = "<group>"; };
  839. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+animatedGIF.m"; sourceTree = "<group>"; };
  840. F714560F296433C80038D028 /* NCDocumentCamera.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDocumentCamera.swift; sourceTree = "<group>"; };
  841. F714803A262EBE3900693E51 /* MainInterface.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = "<group>"; };
  842. F7148040262EBE4000693E51 /* NCShareExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareExtension.swift; sourceTree = "<group>"; };
  843. F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Share-Bridging-Header.h"; sourceTree = "<group>"; };
  844. F7151A811D477A4B00E6AF45 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  845. F7169A301EE59BB70086BD69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  846. F7169A4C1EE59C640086BD69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  847. F716FE7723795E5000FABE50 /* NCCommunication.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NCCommunication.framework; path = Carthage/Build/iOS/NCCommunication.framework; sourceTree = "<group>"; };
  848. F717402B24F699A5000C87D5 /* NCFavorite.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFavorite.storyboard; sourceTree = "<group>"; };
  849. F717402C24F699A5000C87D5 /* NCFavorite.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFavorite.swift; sourceTree = "<group>"; };
  850. F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCrashlytics.framework; path = Carthage/Build/iOS/FirebaseCrashlytics.framework; sourceTree = "<group>"; };
  851. F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Carthage/Build/iOS/FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
  852. F7176DB0256672630017E83C /* GoogleDataTransport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleDataTransport.framework; path = Carthage/Build/iOS/GoogleDataTransport.framework; sourceTree = "<group>"; };
  853. F7176DB1256672630017E83C /* FirebaseInstallations.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstallations.framework; path = Carthage/Build/iOS/FirebaseInstallations.framework; sourceTree = "<group>"; };
  854. F7176DB2256672630017E83C /* PromisesObjC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromisesObjC.framework; path = Carthage/Build/iOS/PromisesObjC.framework; sourceTree = "<group>"; };
  855. F7176DB3256672630017E83C /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Carthage/Build/iOS/GoogleUtilities.framework; sourceTree = "<group>"; };
  856. F7176DB4256672630017E83C /* nanopb.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = nanopb.framework; path = Carthage/Build/iOS/nanopb.framework; sourceTree = "<group>"; };
  857. F7176DB5256672640017E83C /* Protobuf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Protobuf.framework; path = Carthage/Build/iOS/Protobuf.framework; sourceTree = "<group>"; };
  858. F7176DB6256672640017E83C /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Carthage/Build/iOS/FirebaseCore.framework; sourceTree = "<group>"; };
  859. F7176DB7256672640017E83C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Carthage/Build/iOS/FirebaseAnalytics.framework; sourceTree = "<group>"; };
  860. F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Carthage/Build/iOS/GoogleAppMeasurement.framework; sourceTree = "<group>"; };
  861. F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Carthage/Build/iOS/FIRAnalyticsConnector.framework; sourceTree = "<group>"; };
  862. F7176DDA256672D90017E83C /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  863. F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerMediaDetailView.swift; sourceTree = "<group>"; };
  864. F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCColorPicker.storyboard; sourceTree = "<group>"; };
  865. F719D9E1288D396100762E33 /* NCColorPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCColorPicker.swift; sourceTree = "<group>"; };
  866. F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCApplicationHandle.swift; sourceTree = "<group>"; };
  867. F7226EDB1EE4089300EBECB1 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  868. F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichdocument.storyboard; sourceTree = "<group>"; };
  869. F7239870253D86B600257F49 /* NCEmptyDataSet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEmptyDataSet.swift; sourceTree = "<group>"; };
  870. F7239876253D86D300257F49 /* NCEmptyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCEmptyView.xib; sourceTree = "<group>"; };
  871. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareCommentsCell.xib; sourceTree = "<group>"; };
  872. F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThreadSafeDictionary.swift; sourceTree = "<group>"; };
  873. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AFNetworking.framework; path = Carthage/Build/iOS/AFNetworking.framework; sourceTree = "<group>"; };
  874. F72685E827C78E490019EF5E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  875. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCEndToEndInitialize.swift; sourceTree = "<group>"; };
  876. F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DashboardWidgetView.swift; sourceTree = "<group>"; };
  877. F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCOperationQueue.swift; sourceTree = "<group>"; };
  878. F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAutoUpload.swift; sourceTree = "<group>"; };
  879. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCPushNotificationEncryption.m; sourceTree = "<group>"; };
  880. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCPushNotificationEncryption.h; sourceTree = "<group>"; };
  881. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCViewerNextcloudText.swift; sourceTree = "<group>"; };
  882. F72E0B9C21AD60BC00898D7B /* WeScan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WeScan.framework; path = Carthage/Build/iOS/WeScan.framework; sourceTree = "<group>"; };
  883. F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardWidgetProvider.swift; sourceTree = "<group>"; };
  884. F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesWidgetProvider.swift; sourceTree = "<group>"; };
  885. F72EA95728B7BC4F00C88F0C /* FilesData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesData.swift; sourceTree = "<group>"; };
  886. F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilesWidgetView.swift; sourceTree = "<group>"; };
  887. F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+E2EE.swift"; sourceTree = "<group>"; };
  888. F7320934201B812F008A0888 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  889. F732093B201B81E4008A0888 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Localizable.strings"; sourceTree = "<group>"; };
  890. F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCPlayerToolBar.xib; sourceTree = "<group>"; };
  891. F733598025C1C188002ABA72 /* NCAskAuthorization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCAskAuthorization.swift; sourceTree = "<group>"; };
  892. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TLPhotoPicker.framework; path = Carthage/Build/iOS/TLPhotoPicker.framework; sourceTree = "<group>"; };
  893. F7346E1028B0EF5B006CE2D2 /* Widget.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Widget.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  894. F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  895. F7346E1528B0EF5C006CE2D2 /* Widget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Widget.swift; sourceTree = "<group>"; };
  896. F7346E2028B0FA3A006CE2D2 /* Widget-Brinding-header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Widget-Brinding-header.h"; sourceTree = "<group>"; };
  897. F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  898. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
  899. F736B551234DCF57008A5C9F /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = "<group>"; };
  900. F7381EDA218218C9000B1560 /* NCOffline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCOffline.swift; sourceTree = "<group>"; };
  901. F7381EDE218218C9000B1560 /* NCOffline.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCOffline.storyboard; sourceTree = "<group>"; };
  902. F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginNavigationController.swift; sourceTree = "<group>"; };
  903. F73B42292476764F00A30FD3 /* NCNotification.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = NCNotification.storyboard; path = Notification/NCNotification.storyboard; sourceTree = "<group>"; };
  904. F73B422A2476764F00A30FD3 /* NCNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCNotification.swift; path = Notification/NCNotification.swift; sourceTree = "<group>"; };
  905. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCShareHeaderView.xib; sourceTree = "<group>"; };
  906. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCBridgeSwift.h; sourceTree = "<group>"; };
  907. F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerNextcloudText.storyboard; sourceTree = "<group>"; };
  908. F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCElementsJSON.swift; sourceTree = "<group>"; };
  909. F73F537E1E929C8500F8678D /* NCMore.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMore.swift; sourceTree = "<group>"; };
  910. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  911. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FileProviderExtension-Bridging-Header.h"; sourceTree = "<group>"; };
  912. F745B250222D871800346520 /* QRCodeReader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QRCodeReader.framework; path = Carthage/Build/iOS/QRCodeReader.framework; sourceTree = "<group>"; };
  913. F745B252222D88AE00346520 /* NCLoginQRCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginQRCode.swift; sourceTree = "<group>"; };
  914. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadVoiceNote.storyboard; sourceTree = "<group>"; };
  915. F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Share.swift"; sourceTree = "<group>"; };
  916. F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Avatar.swift"; sourceTree = "<group>"; };
  917. F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUtilityFileSystem.swift; sourceTree = "<group>"; };
  918. F74AFCE822E8B024003DE61F /* FSCalendar.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FSCalendar.framework; path = Carthage/Build/iOS/FSCalendar.framework; sourceTree = "<group>"; };
  919. F74C0434253F1CDC009762AB /* NCShares.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShares.swift; sourceTree = "<group>"; };
  920. F74C0435253F1CDC009762AB /* NCShares.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCShares.storyboard; sourceTree = "<group>"; };
  921. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = Carthage/Build/iOS/OpenSSL.framework; sourceTree = "<group>"; };
  922. F74DE14125135B6800917068 /* NCTransfers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCTransfers.swift; sourceTree = "<group>"; };
  923. F74DE14225135B6800917068 /* NCTransfers.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCTransfers.storyboard; sourceTree = "<group>"; };
  924. F7501C302212E57400FB1415 /* NCMedia.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCMedia.storyboard; sourceTree = "<group>"; };
  925. F7501C312212E57400FB1415 /* NCMedia.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCMedia.swift; sourceTree = "<group>"; };
  926. F75153232226920200323DDC /* FastScroll.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastScroll.framework; path = Carthage/Build/iOS/FastScroll.framework; sourceTree = "<group>"; };
  927. F753701822723D620041C76C /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  928. F753701922723E0D0041C76C /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  929. F753701A22723EC80041C76C /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  930. F755BD9A20594AC7008C5FBB /* NCService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCService.swift; sourceTree = "<group>"; };
  931. F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Groupfolders.swift"; sourceTree = "<group>"; };
  932. F757CC8A29E82D0500F31428 /* NCGroupfolders.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCGroupfolders.storyboard; sourceTree = "<group>"; };
  933. F757CC8B29E82D0500F31428 /* NCGroupfolders.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGroupfolders.swift; sourceTree = "<group>"; };
  934. F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCLoginWeb+Menu.swift"; sourceTree = "<group>"; };
  935. F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCMedia+Menu.swift"; sourceTree = "<group>"; };
  936. F758B457212C564000515F55 /* NCScan.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCScan.storyboard; sourceTree = "<group>"; };
  937. F758B45D212C569C00515F55 /* NCScanCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScanCell.swift; sourceTree = "<group>"; };
  938. F758B45F212C56A400515F55 /* NCScan.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCScan.swift; sourceTree = "<group>"; };
  939. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworking.swift; sourceTree = "<group>"; };
  940. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageAutoUploadFileName.swift; sourceTree = "<group>"; };
  941. F75B0ABC244C4DBB00E58DCA /* NCActionCenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActionCenter.swift; sourceTree = "<group>"; };
  942. F75B91E21ECAE17800199C96 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  943. F75B91F71ECAE26300199C96 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  944. F75B923D1ECAE55E00199C96 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  945. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCRichWorkspaceCommon.swift; sourceTree = "<group>"; };
  946. F75CA1462962F13700B01130 /* HUDView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HUDView.swift; sourceTree = "<group>"; };
  947. F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrash+Menu.swift"; sourceTree = "<group>"; };
  948. F75DD768290ABB25002EB562 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Intent.intentdefinition; sourceTree = "<group>"; };
  949. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
  950. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
  951. F760329D252F0F8E0015A421 /* NCTransferCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = NCTransferCell.swift; path = iOSClient/Transfers/NCTransferCell.swift; sourceTree = SOURCE_ROOT; };
  952. F760329E252F0F8E0015A421 /* NCTransferCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = NCTransferCell.xib; path = iOSClient/Transfers/NCTransferCell.xib; sourceTree = SOURCE_ROOT; };
  953. F761856629E98543006EB3B0 /* NCIntro.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCIntro.storyboard; sourceTree = "<group>"; };
  954. F761856729E98543006EB3B0 /* NCIntroViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroViewController.swift; sourceTree = "<group>"; };
  955. F761856829E98543006EB3B0 /* NCIntroCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCIntroCollectionViewCell.swift; sourceTree = "<group>"; };
  956. F761856929E98543006EB3B0 /* NCIntroCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCIntroCollectionViewCell.xib; sourceTree = "<group>"; };
  957. F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Capabilities.swift"; sourceTree = "<group>"; };
  958. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCCreateFormUploadDocuments.storyboard; sourceTree = "<group>"; };
  959. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCCreateFormUploadDocuments.swift; sourceTree = "<group>"; };
  960. F765608623BF806C00765969 /* QuickLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLayout.framework; path = Carthage/Build/iOS/QuickLayout.framework; sourceTree = "<group>"; };
  961. F765608A23BF80A400765969 /* SwiftEntryKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftEntryKit.framework; path = Carthage/Build/iOS/SwiftEntryKit.framework; sourceTree = "<group>"; };
  962. F765608E23BF813500765969 /* NCContentPresenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCContentPresenter.swift; sourceTree = "<group>"; };
  963. F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUploadScanDocument.swift; sourceTree = "<group>"; };
  964. F765F72F25237E3F00391DBE /* NCRecent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCRecent.swift; sourceTree = "<group>"; };
  965. F765F73025237E3F00391DBE /* NCRecent.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCRecent.storyboard; sourceTree = "<group>"; };
  966. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderDomain.swift; sourceTree = "<group>"; };
  967. F76673EF22C90433007ED366 /* FileProviderUtility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderUtility.swift; sourceTree = "<group>"; };
  968. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCMainTabBar.swift; sourceTree = "<group>"; };
  969. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareUserCell.xib; sourceTree = "<group>"; };
  970. F769453F22E9F077000A798A /* NCSharePaging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSharePaging.swift; sourceTree = "<group>"; };
  971. F769454522E9F1B0000A798A /* NCShareCommon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommon.swift; sourceTree = "<group>"; };
  972. F769454722E9F20D000A798A /* NCShareNetworking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareNetworking.swift; sourceTree = "<group>"; };
  973. F769CA162965AB7C00039397 /* NCUploadAssets.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCUploadAssets.swift; sourceTree = "<group>"; };
  974. F769CA182966EA3C00039397 /* ComponentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentView.swift; sourceTree = "<group>"; };
  975. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCBrand.swift; sourceTree = "<group>"; };
  976. F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivityIndicator.swift; sourceTree = "<group>"; };
  977. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerPDFSearch.swift; sourceTree = "<group>"; };
  978. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCViewerPDFSearchCell.xib; sourceTree = "<group>"; };
  979. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCViewerPDF.storyboard; sourceTree = "<group>"; };
  980. F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenData.swift; sourceTree = "<group>"; };
  981. F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenWidgetProvider.swift; sourceTree = "<group>"; };
  982. F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LockscreenWidgetView.swift; sourceTree = "<group>"; };
  983. F76E71E42244DF6900690001 /* Zip.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Zip.framework; path = Carthage/Build/iOS/Zip.framework; sourceTree = "<group>"; };
  984. F76FDEAA24859C3D0095B6C2 /* Queuer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Queuer.framework; path = Carthage/Build/iOS/Queuer.framework; sourceTree = "<group>"; };
  985. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "File Provider Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  986. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderExtension.swift; sourceTree = "<group>"; };
  987. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderItem.swift; sourceTree = "<group>"; };
  988. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileProviderEnumerator.swift; sourceTree = "<group>"; };
  989. F771E3F220E239A600AFB62D /* FileProviderData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileProviderData.swift; sourceTree = "<group>"; };
  990. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Actions.swift"; sourceTree = "<group>"; };
  991. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "FileProviderExtension+Thumbnail.swift"; sourceTree = "<group>"; };
  992. F7725A5E251F33BB00D125E0 /* NCFiles.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCFiles.swift; sourceTree = "<group>"; };
  993. F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCFiles.storyboard; sourceTree = "<group>"; };
  994. F774264022EB3F7300B23912 /* DropDown.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropDown.framework; path = Carthage/Build/iOS/DropDown.framework; sourceTree = "<group>"; };
  995. F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSearchUserDropDownCell.xib; sourceTree = "<group>"; };
  996. F77438EB1FCD694900662C46 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  997. F77438F21FCD69D300662C46 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  998. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Localizable.strings"; sourceTree = "<group>"; };
  999. F77439001FCD6B7F00662C46 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Localizable.strings; sourceTree = "<group>"; };
  1000. F77439071FCD6BF000662C46 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1001. F774390E1FCD6C0C00662C46 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1002. F77439151FCD6C4A00662C46 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1003. F774391C1FCD6C6700662C46 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1004. F77439231FCD6C8700662C46 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1005. F774392A1FCD6CAA00662C46 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1006. F77439311FCD6CC400662C46 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1007. F77439381FCD6CDE00662C46 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1008. F774393F1FCD6D0B00662C46 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1009. F77439461FCD6D2300662C46 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1010. F774394D1FCD6D3E00662C46 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1011. F77439541FCD6D6100662C46 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1012. F774395B1FCD6D8200662C46 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1013. F77439621FCD6D9C00662C46 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1014. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCGridMediaCell.swift; sourceTree = "<group>"; };
  1015. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCGridMediaCell.xib; sourceTree = "<group>"; };
  1016. F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPickerViewController.swift; sourceTree = "<group>"; };
  1017. F77910A425DD517B00CEDB9E /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
  1018. F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSettingsBundleHelper.swift; sourceTree = "<group>"; };
  1019. F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = MobileVLCKit.xcframework; path = Carthage/Build/MobileVLCKit.xcframework; sourceTree = "<group>"; };
  1020. F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCCollectionViewCommon+Menu.swift"; sourceTree = "<group>"; };
  1021. F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIViewController+Extension.swift"; sourceTree = "<group>"; };
  1022. F77BB747289985270090FC19 /* UITabBarController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UITabBarController+Extension.swift"; sourceTree = "<group>"; };
  1023. F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UINavigationController+Extension.swift"; sourceTree = "<group>"; };
  1024. F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCConfigServer.swift; sourceTree = "<group>"; };
  1025. F77C97382953131000FDDD09 /* NCCameraRoll.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCameraRoll.swift; sourceTree = "<group>"; };
  1026. F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarData.swift; sourceTree = "<group>"; };
  1027. F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarWidgetProvider.swift; sourceTree = "<group>"; };
  1028. F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToolbarWidgetView.swift; sourceTree = "<group>"; };
  1029. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+MainThread.h"; sourceTree = "<group>"; };
  1030. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+MainThread.m"; sourceTree = "<group>"; };
  1031. F7817CF729801A3500FFBC65 /* Data+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Data+Extension.swift"; sourceTree = "<group>"; };
  1032. F783030E28B4C83F00B84583 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  1033. F783031028B4C86200B84583 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
  1034. F783031128B4C86200B84583 /* libc++abi.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++abi.tbd"; path = "usr/lib/libc++abi.tbd"; sourceTree = SDKROOT; };
  1035. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EE.swift; sourceTree = "<group>"; };
  1036. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCShareLinkCell.xib; sourceTree = "<group>"; };
  1037. F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Directory.swift"; sourceTree = "<group>"; };
  1038. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspaceWebView.swift; sourceTree = "<group>"; };
  1039. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichWorkspace.swift; sourceTree = "<group>"; };
  1040. F78AA20521F783E900D0F205 /* SwiftRichString.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftRichString.framework; path = Carthage/Build/iOS/SwiftRichString.framework; sourceTree = "<group>"; };
  1041. F78ACD3F21903CC20088454D /* NCGridCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCGridCell.swift; sourceTree = "<group>"; };
  1042. F78ACD4121903CE00088454D /* NCListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCListCell.swift; sourceTree = "<group>"; };
  1043. F78ACD4321903CF20088454D /* NCListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCListCell.xib; sourceTree = "<group>"; };
  1044. F78ACD4521903D010088454D /* NCGridCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCGridCell.xib; sourceTree = "<group>"; };
  1045. F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCTrashListCell+NCTrashCellProtocol.swift"; sourceTree = "<group>"; };
  1046. F78ACD4921903F850088454D /* NCTrashListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCTrashListCell.xib; sourceTree = "<group>"; };
  1047. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSectionHeaderFooter.swift; sourceTree = "<group>"; };
  1048. F78ACD53219047D40088454D /* NCSectionFooter.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionFooter.xib; sourceTree = "<group>"; };
  1049. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSectionHeaderMenu.xib; sourceTree = "<group>"; };
  1050. F78C6FDD296D677300C952C3 /* NCContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCContextMenu.swift; sourceTree = "<group>"; };
  1051. F78D6F461F0B7CB9002F9619 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1052. F78D6F4D1F0B7CE4002F9619 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1053. F78D6F541F0B7D47002F9619 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1054. F78E2D6429AF02DB0024D4F3 /* Database.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Database.swift; sourceTree = "<group>"; };
  1055. F78F74332163757000C2ADAD /* NCTrash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCTrash.storyboard; sourceTree = "<group>"; };
  1056. F78F74352163781100C2ADAD /* NCTrash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCTrash.swift; sourceTree = "<group>"; };
  1057. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerRichdocument.swift; sourceTree = "<group>"; };
  1058. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ATGMediaBrowser.framework; path = Carthage/Build/iOS/ATGMediaBrowser.framework; sourceTree = "<group>"; };
  1059. F79131C628AFB86E00577277 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Localizable.strings; sourceTree = "<group>"; };
  1060. F79131C728AFB86E00577277 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1061. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UICKeyChainStore.framework; path = Carthage/Build/iOS/UICKeyChainStore.framework; sourceTree = "<group>"; };
  1062. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sheeeeeeeeet.framework; path = Carthage/Build/iOS/Sheeeeeeeeet.framework; sourceTree = "<group>"; };
  1063. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSelect.storyboard; sourceTree = "<group>"; };
  1064. F79A65C52191D95E00FF6DCC /* NCSelect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSelect.swift; sourceTree = "<group>"; };
  1065. F79B645F26CA661600838ACA /* UIControl+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIControl+Extension.swift"; sourceTree = "<group>"; };
  1066. F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSMutableAttributedString+Extension.swift"; sourceTree = "<group>"; };
  1067. F79BCEEA270B49C800B5B71F /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  1068. F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayerToolBar.swift; sourceTree = "<group>"; };
  1069. F79EDAA126B004980007D134 /* NCPlayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCPlayer.swift; sourceTree = "<group>"; };
  1070. F7A0D1342591FBC5008F8A13 /* String+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extension.swift"; sourceTree = "<group>"; };
  1071. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAdvanced.h; sourceTree = "<group>"; };
  1072. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAdvanced.m; sourceTree = "<group>"; };
  1073. F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewerQuickLook.swift; sourceTree = "<group>"; };
  1074. F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Nextcloud Hub.png"; sourceTree = SOURCE_ROOT; };
  1075. F7A60F84292D215000FCE1F2 /* NCShareAccounts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCShareAccounts.swift; sourceTree = "<group>"; };
  1076. F7A60F85292D215000FCE1F2 /* NCShareAccounts.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCShareAccounts.storyboard; sourceTree = "<group>"; };
  1077. F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCManageE2EE.swift; sourceTree = "<group>"; };
  1078. F7A8D72228F176B6008BBE1C /* WidgetDashboardIntentHandler-Brinding-header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "WidgetDashboardIntentHandler-Brinding-header.h"; sourceTree = "<group>"; };
  1079. F7AA41B827C7CF4600494705 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1080. F7AA41B927C7CF4B00494705 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1081. F7AA41BA27C7CF5000494705 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1082. F7AA41BB27C7CF5100494705 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1083. F7AA41BC27C7CF5300494705 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1084. F7AA41BD27C7CF5400494705 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1085. F7AA41BE27C7CF5600494705 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1086. F7AA41BF27C7CF5700494705 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1087. F7AA41C027C7CF5800494705 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1088. F7AA41C127C7CF5900494705 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1089. F7AA41C227C7CF5A00494705 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1090. F7AA41C327C7CF5B00494705 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1091. F7AA41C427C7CF5C00494705 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1092. F7AA41C527C7CF5D00494705 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1093. F7AA41C627C7CF5E00494705 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1094. F7AA41C727C7CF6000494705 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1095. F7AA41C827C7CF6200494705 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1096. F7AA41C927C7CF6300494705 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1097. F7AA41CA27C7CF6400494705 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1098. F7AA41CB27C7CF6500494705 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1099. F7AA41CC27C7CF6600494705 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1100. F7AA41CD27C7CF6700494705 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1101. F7AA41CE27C7CF6800494705 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1102. F7AA41CF27C7CF6900494705 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1103. F7AA41D027C7CF6900494705 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1104. F7AA41D127C7CF6A00494705 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1105. F7AA41D227C7CF6C00494705 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1106. F7AA41D327C7CF6D00494705 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1107. F7AA41D427C7CF6E00494705 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1108. F7AA41D527C7CF6F00494705 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1109. F7AA41D627C7CF7100494705 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1110. F7AA41D727C7CF7200494705 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1111. F7AA41D827C7CF7300494705 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1112. F7AA41D927C7CF7500494705 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1113. F7AA41DA27C7CF7600494705 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  1114. F7AA41DB27C7CF7800494705 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1115. F7AA41DC27C7CF7900494705 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1116. F7AA41DD27C7CF7B00494705 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1117. F7AA41DE27C7CF7D00494705 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1118. F7AA41DF27C7CF7E00494705 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1119. F7AA41E027C7CF8000494705 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1120. F7AA41E127C7CF8100494705 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  1121. F7AC1CAF28AB94490032D99F /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1122. F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "Reasons to use Nextcloud.pdf"; sourceTree = SOURCE_ROOT; };
  1123. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Acknowledgements.h; sourceTree = "<group>"; };
  1124. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Acknowledgements.m; sourceTree = "<group>"; };
  1125. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.rtf; path = Acknowledgements.rtf; sourceTree = "<group>"; };
  1126. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAccount.h; sourceTree = "<group>"; };
  1127. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAccount.m; sourceTree = "<group>"; };
  1128. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCManageAutoUpload.h; sourceTree = "<group>"; };
  1129. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCManageAutoUpload.m; sourceTree = "<group>"; };
  1130. F7ACE4301BAC0268006C0017 /* NCSettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NCSettings.h; sourceTree = "<group>"; };
  1131. F7ACE4311BAC0268006C0017 /* NCSettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NCSettings.m; sourceTree = "<group>"; };
  1132. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCLoginWeb.swift; sourceTree = "<group>"; };
  1133. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCBrowserWeb.swift; sourceTree = "<group>"; };
  1134. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCBrowserWeb.storyboard; sourceTree = "<group>"; };
  1135. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = TOPasscodeViewController.framework; path = Carthage/Build/iOS/TOPasscodeViewController.framework; sourceTree = "<group>"; };
  1136. F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = BackgroundTasks.framework; path = System/Library/Frameworks/BackgroundTasks.framework; sourceTree = SDKROOT; };
  1137. F7B1A7761EBB3C8000BFB6D1 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  1138. F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCScan+CollectionView.swift"; sourceTree = "<group>"; };
  1139. F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+Extension.swift"; sourceTree = "<group>"; };
  1140. F7B8B82F25681C3400967775 /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "GoogleService-Info.plist"; sourceTree = SOURCE_ROOT; };
  1141. F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingChunkedUpload.swift; sourceTree = "<group>"; };
  1142. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCDatabase.swift; sourceTree = "<group>"; };
  1143. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCManageDatabase.swift; sourceTree = "<group>"; };
  1144. F7BB04851FD58ACB00BBFD2A /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1145. F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewCertificateDetails.storyboard; sourceTree = "<group>"; };
  1146. F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewCertificateDetails.swift; sourceTree = "<group>"; };
  1147. F7BE7C25290AC8C9002ABB61 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Intent.strings; sourceTree = "<group>"; };
  1148. F7BE7C27290ADEFD002ABB61 /* eu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eu; path = eu.lproj/Intent.strings; sourceTree = "<group>"; };
  1149. F7BE7C29290ADEFD002ABB61 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Intent.strings; sourceTree = "<group>"; };
  1150. F7BE7C2B290ADEFE002ABB61 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Intent.strings"; sourceTree = "<group>"; };
  1151. F7BE7C2D290ADEFF002ABB61 /* cs-CZ */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "cs-CZ"; path = "cs-CZ.lproj/Intent.strings"; sourceTree = "<group>"; };
  1152. F7BE7C2F290ADF00002ABB61 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/Intent.strings"; sourceTree = "<group>"; };
  1153. F7BE7C31290ADF00002ABB61 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Intent.strings; sourceTree = "<group>"; };
  1154. F7BE7C33290ADF01002ABB61 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Intent.strings; sourceTree = "<group>"; };
  1155. F7BE7C35290ADF03002ABB61 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intent.strings; sourceTree = "<group>"; };
  1156. F7BE7C37290ADF03002ABB61 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Intent.strings; sourceTree = "<group>"; };
  1157. F7BE7C39290ADF04002ABB61 /* es-UY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-UY"; path = "es-UY.lproj/Intent.strings"; sourceTree = "<group>"; };
  1158. F7BE7C3B290ADF04002ABB61 /* es-PR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PR"; path = "es-PR.lproj/Intent.strings"; sourceTree = "<group>"; };
  1159. F7BE7C3D290ADF05002ABB61 /* es-PE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PE"; path = "es-PE.lproj/Intent.strings"; sourceTree = "<group>"; };
  1160. F7BE7C3F290ADF06002ABB61 /* es-PY */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PY"; path = "es-PY.lproj/Intent.strings"; sourceTree = "<group>"; };
  1161. F7BE7C41290ADF06002ABB61 /* es-PA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-PA"; path = "es-PA.lproj/Intent.strings"; sourceTree = "<group>"; };
  1162. F7BE7C43290ADF06002ABB61 /* es-NI */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-NI"; path = "es-NI.lproj/Intent.strings"; sourceTree = "<group>"; };
  1163. F7BE7C45290ADF07002ABB61 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Intent.strings"; sourceTree = "<group>"; };
  1164. F7BE7C47290ADF07002ABB61 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-419"; path = "es-419.lproj/Intent.strings"; sourceTree = "<group>"; };
  1165. F7BE7C49290ADF08002ABB61 /* es-HN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-HN"; path = "es-HN.lproj/Intent.strings"; sourceTree = "<group>"; };
  1166. F7BE7C4B290ADF09002ABB61 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intent.strings; sourceTree = "<group>"; };
  1167. F7BE7C4D290ADF0A002ABB61 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Intent.strings; sourceTree = "<group>"; };
  1168. F7BE7C4F290ADF0A002ABB61 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Intent.strings"; sourceTree = "<group>"; };
  1169. F7BE7C51290ADF0B002ABB61 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Intent.strings; sourceTree = "<group>"; };
  1170. F7BE7C53290ADF0B002ABB61 /* es-CL */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CL"; path = "es-CL.lproj/Intent.strings"; sourceTree = "<group>"; };
  1171. F7BE7C55290ADF0C002ABB61 /* es-CO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CO"; path = "es-CO.lproj/Intent.strings"; sourceTree = "<group>"; };
  1172. F7BE7C57290ADF0C002ABB61 /* es-CR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-CR"; path = "es-CR.lproj/Intent.strings"; sourceTree = "<group>"; };
  1173. F7BE7C59290ADF0D002ABB61 /* es-DO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-DO"; path = "es-DO.lproj/Intent.strings"; sourceTree = "<group>"; };
  1174. F7BE7C5B290ADF0D002ABB61 /* es-EC */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-EC"; path = "es-EC.lproj/Intent.strings"; sourceTree = "<group>"; };
  1175. F7BE7C5D290ADF0E002ABB61 /* es-SV */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-SV"; path = "es-SV.lproj/Intent.strings"; sourceTree = "<group>"; };
  1176. F7BE7C5F290ADF0E002ABB61 /* es-GT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-GT"; path = "es-GT.lproj/Intent.strings"; sourceTree = "<group>"; };
  1177. F7BE7C61290ADF10002ABB61 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Intent.strings"; sourceTree = "<group>"; };
  1178. F7BE7C63290ADF10002ABB61 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Intent.strings; sourceTree = "<group>"; };
  1179. F7BE7C65290ADF10002ABB61 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Intent.strings; sourceTree = "<group>"; };
  1180. F7BE7C67290ADF11002ABB61 /* ka-GE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ka-GE"; path = "ka-GE.lproj/Intent.strings"; sourceTree = "<group>"; };
  1181. F7BE7C69290ADF11002ABB61 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Intent.strings; sourceTree = "<group>"; };
  1182. F7BE7C6B290ADF12002ABB61 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Intent.strings; sourceTree = "<group>"; };
  1183. F7BE7C6D290ADF12002ABB61 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Intent.strings; sourceTree = "<group>"; };
  1184. F7BE7C6F290ADF13002ABB61 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intent.strings; sourceTree = "<group>"; };
  1185. F7BE7C71290ADF13002ABB61 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Intent.strings"; sourceTree = "<group>"; };
  1186. F7BE7C73290ADF14002ABB61 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Intent.strings; sourceTree = "<group>"; };
  1187. F7BE7C75290ADF14002ABB61 /* nb-NO */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "nb-NO"; path = "nb-NO.lproj/Intent.strings"; sourceTree = "<group>"; };
  1188. F7BE7C77290ADF15002ABB61 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Intent.strings; sourceTree = "<group>"; };
  1189. F7BE7C79290ADF16002ABB61 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Intent.strings"; sourceTree = "<group>"; };
  1190. F7BE7C7B290ADF16002ABB61 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Intent.strings"; sourceTree = "<group>"; };
  1191. F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+LayoutForView.swift"; sourceTree = "<group>"; };
  1192. F7C1EEA425053A9C00866ACC /* NCDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCDataSource.swift; sourceTree = "<group>"; };
  1193. F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EEUpload.swift; sourceTree = "<group>"; };
  1194. F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EECreateFolder.swift; sourceTree = "<group>"; };
  1195. F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EEDelete.swift; sourceTree = "<group>"; };
  1196. F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCNetworkingE2EERename.swift; sourceTree = "<group>"; };
  1197. F7C40BE221998C050004137E /* PDFGenerator.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PDFGenerator.framework; path = Carthage/Build/iOS/PDFGenerator.framework; sourceTree = "<group>"; };
  1198. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MGSwipeTableCell.framework; path = Carthage/Build/iOS/MGSwipeTableCell.framework; sourceTree = "<group>"; };
  1199. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DZNEmptyDataSet.framework; path = Carthage/Build/iOS/DZNEmptyDataSet.framework; sourceTree = "<group>"; };
  1200. F7C40BE8219991A60004137E /* EAIntroView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EAIntroView.framework; path = Carthage/Build/iOS/EAIntroView.framework; sourceTree = "<group>"; };
  1201. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = EARestrictedScrollView.framework; path = Carthage/Build/iOS/EARestrictedScrollView.framework; sourceTree = "<group>"; };
  1202. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JDStatusBarNotification.framework; path = Carthage/Build/iOS/JDStatusBarNotification.framework; sourceTree = "<group>"; };
  1203. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVCocoaHTTPServer.framework; path = Carthage/Build/iOS/KTVCocoaHTTPServer.framework; sourceTree = "<group>"; };
  1204. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = KTVHTTPCache.framework; path = Carthage/Build/iOS/KTVHTTPCache.framework; sourceTree = "<group>"; };
  1205. F7C40BF22199978B0004137E /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = "<group>"; };
  1206. F7C40C0F2199BA5D0004137E /* Realm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Realm.framework; path = Carthage/Build/iOS/Realm.framework; sourceTree = "<group>"; };
  1207. F7C40C112199BA620004137E /* RealmSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RealmSwift.framework; path = Carthage/Build/iOS/RealmSwift.framework; sourceTree = "<group>"; };
  1208. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerQuickLook.swift; sourceTree = "<group>"; };
  1209. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCActivity.storyboard; sourceTree = "<group>"; };
  1210. F7C9555421F0C5470024296E /* NCActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCActivity.swift; sourceTree = "<group>"; };
  1211. F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = WidgetDashboardIntentHandler.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1212. F7C9739128F17131002C43E2 /* Intents.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Intents.framework; path = System/Library/Frameworks/Intents.framework; sourceTree = SDKROOT; };
  1213. F7C9739428F17131002C43E2 /* IntentHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntentHandler.swift; sourceTree = "<group>"; };
  1214. F7CA212B25F1333200826ABB /* NCAccountRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCAccountRequest.swift; sourceTree = "<group>"; };
  1215. F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NCAccountRequest.storyboard; sourceTree = "<group>"; };
  1216. F7CB68992541676B0050EC94 /* NCMore.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCMore.storyboard; sourceTree = "<group>"; };
  1217. F7CB689F254169530050EC94 /* NCSettings.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCSettings.storyboard; sourceTree = "<group>"; };
  1218. F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCSortMenu.swift; sourceTree = "<group>"; };
  1219. F7CC04E61F5AD50D00378CEF /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  1220. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Nextcloud.app; sourceTree = BUILT_PRODUCTS_DIR; };
  1221. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Share.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  1222. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCViewerRichWorkspace.storyboard; sourceTree = "<group>"; };
  1223. F7D2C772246470CA008513AE /* XLForm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XLForm.framework; path = Carthage/Build/iOS/XLForm.framework; sourceTree = "<group>"; };
  1224. F7D532461F5D4123006568B1 /* is */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = is; path = is.lproj/Localizable.strings; sourceTree = "<group>"; };
  1225. F7D5324D1F5D4137006568B1 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  1226. F7D532541F5D4155006568B1 /* sk-SK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sk-SK"; path = "sk-SK.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1227. F7D5328F1F5D443B006568B1 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1228. F7D532A41F5D4461006568B1 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1229. F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+DashboardWidget.swift"; sourceTree = "<group>"; };
  1230. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NCNetworkingCheckRemoteUser.swift; sourceTree = "<group>"; };
  1231. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MarkdownKit.framework; path = Carthage/Build/iOS/MarkdownKit.framework; sourceTree = "<group>"; };
  1232. F7DE9AB01F482FA5008DFE10 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  1233. F7E0710028B13BB00001B882 /* DashboardData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardData.swift; sourceTree = "<group>"; };
  1234. F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = NCUserStatus.storyboard; sourceTree = "<group>"; };
  1235. F7E41315294A19B300839300 /* UIView+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Extension.swift"; sourceTree = "<group>"; };
  1236. F7E45E6D21E75BF200579249 /* ja-JP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ja-JP"; path = "ja-JP.lproj/Localizable.strings"; sourceTree = "<group>"; };
  1237. F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCShareCommentsCell.swift; sourceTree = "<group>"; };
  1238. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyXMLParser.framework; path = Carthage/Build/iOS/SwiftyXMLParser.framework; sourceTree = "<group>"; };
  1239. F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Extension.swift"; sourceTree = "<group>"; };
  1240. F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NCManageDatabase+Video.swift"; sourceTree = "<group>"; };
  1241. F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCSelectCommandViewSelect.xib; sourceTree = "<group>"; };
  1242. F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "NCSelectCommandViewSelect+CreateFolder.xib"; sourceTree = "<group>"; };
  1243. F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSelectCommandViewCopyMove.xib; sourceTree = "<group>"; };
  1244. F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UILabel+Extension.swift"; sourceTree = "<group>"; };
  1245. F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewerProviderContextMenu.swift; sourceTree = "<group>"; };
  1246. F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCMoreUserCell.xib; sourceTree = "<group>"; };
  1247. F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCUserStatus.swift; sourceTree = "<group>"; };
  1248. F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NCMediaCommandView.xib; sourceTree = "<group>"; };
  1249. F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CollaboraOnlineWebViewKeyboardManager.framework; path = Carthage/Build/iOS/CollaboraOnlineWebViewKeyboardManager.framework; sourceTree = "<group>"; };
  1250. F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-SemiBold.ttf"; sourceTree = "<group>"; };
  1251. F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Medium.ttf"; sourceTree = "<group>"; };
  1252. F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Black.ttf"; sourceTree = "<group>"; };
  1253. F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-ExtraLight.ttf"; sourceTree = "<group>"; };
  1254. F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Bold.ttf"; sourceTree = "<group>"; };
  1255. F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-ExtraBold.ttf"; sourceTree = "<group>"; };
  1256. F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Light.ttf"; sourceTree = "<group>"; };
  1257. F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Inconsolata-Regular.ttf"; sourceTree = "<group>"; };
  1258. F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extension.swift"; sourceTree = "<group>"; };
  1259. F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIFont+Extension.swift"; sourceTree = "<group>"; };
  1260. F7F67BB81A24D27800EE80DA /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  1261. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCEndToEndMetadata.swift; sourceTree = "<group>"; };
  1262. F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCViewer.swift; sourceTree = "<group>"; };
  1263. F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NCNotification+Menu.swift"; sourceTree = "<group>"; };
  1264. F7FC5EE02A1768D700D921F5 /* NCCapabilitiesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NCCapabilitiesView.swift; sourceTree = "<group>"; };
  1265. F7FC7D551DC1F93800BB2C6A /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  1266. F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NCSectionHeader.xib; sourceTree = "<group>"; };
  1267. /* End PBXFileReference section */
  1268. /* Begin PBXFrameworksBuildPhase section */
  1269. 2C33C47C23E2C475005F963B /* Frameworks */ = {
  1270. isa = PBXFrameworksBuildPhase;
  1271. buildActionMask = 2147483647;
  1272. files = (
  1273. F72AD71128C24BBB006CB92D /* NextcloudKit in Frameworks */,
  1274. F710FC88277B7D3F00AA9FBF /* RealmSwift in Frameworks */,
  1275. F7EBCDD3277B821700A4EF67 /* UICKeyChainStore in Frameworks */,
  1276. );
  1277. runOnlyForDeploymentPostprocessing = 0;
  1278. };
  1279. AF8ED1F62757821000B8DBC4 /* Frameworks */ = {
  1280. isa = PBXFrameworksBuildPhase;
  1281. buildActionMask = 2147483647;
  1282. files = (
  1283. );
  1284. runOnlyForDeploymentPostprocessing = 0;
  1285. };
  1286. F70716E02987F81400E72C1D /* Frameworks */ = {
  1287. isa = PBXFrameworksBuildPhase;
  1288. buildActionMask = 2147483647;
  1289. files = (
  1290. F7490E8B29882CE4009DCE94 /* NextcloudKit in Frameworks */,
  1291. F7490E8929882CC8009DCE94 /* SwiftEntryKit in Frameworks */,
  1292. F7490E7229882BB4009DCE94 /* RealmSwift in Frameworks */,
  1293. F70716F929881CFA00E72C1D /* UICKeyChainStore in Frameworks */,
  1294. );
  1295. runOnlyForDeploymentPostprocessing = 0;
  1296. };
  1297. F7145A141D12E3B700CAFEEC /* Frameworks */ = {
  1298. isa = PBXFrameworksBuildPhase;
  1299. buildActionMask = 2147483647;
  1300. files = (
  1301. F710FC80277B7D2700AA9FBF /* RealmSwift in Frameworks */,
  1302. F72AD70F28C24BA1006CB92D /* NextcloudKit in Frameworks */,
  1303. F72CD01227A7E92400E59476 /* JGProgressHUD in Frameworks */,
  1304. F73ADD2126554F8E0069EA0D /* SwiftEntryKit in Frameworks */,
  1305. F7EBCDCF277B81FF00A4EF67 /* UICKeyChainStore in Frameworks */,
  1306. F70821D829E59E6D001CA2D7 /* TagListView in Frameworks */,
  1307. F72D7EB7263B1207000B3DFC /* MarkdownKit in Frameworks */,
  1308. );
  1309. runOnlyForDeploymentPostprocessing = 0;
  1310. };
  1311. F7346E0D28B0EF5B006CE2D2 /* Frameworks */ = {
  1312. isa = PBXFrameworksBuildPhase;
  1313. buildActionMask = 2147483647;
  1314. files = (
  1315. F787AC0B298BCB540001BB00 /* SVGKitSwift in Frameworks */,
  1316. F7346E2528B0FEFA006CE2D2 /* UICKeyChainStore in Frameworks */,
  1317. F783034428B5142B00B84583 /* NextcloudKit in Frameworks */,
  1318. F7346E1328B0EF5B006CE2D2 /* SwiftUI.framework in Frameworks */,
  1319. F7346E2928B0FFF2006CE2D2 /* RealmSwift in Frameworks */,
  1320. F783030D28B4C59A00B84583 /* SwiftEntryKit in Frameworks */,
  1321. F7346E1228B0EF5B006CE2D2 /* WidgetKit.framework in Frameworks */,
  1322. );
  1323. runOnlyForDeploymentPostprocessing = 0;
  1324. };
  1325. F771E3CD20E2392D00AFB62D /* Frameworks */ = {
  1326. isa = PBXFrameworksBuildPhase;
  1327. buildActionMask = 2147483647;
  1328. files = (
  1329. F7EBCDD1277B820D00A4EF67 /* UICKeyChainStore in Frameworks */,
  1330. F73ADD2426554FE20069EA0D /* SwiftEntryKit in Frameworks */,
  1331. F710FC84277B7D3500AA9FBF /* RealmSwift in Frameworks */,
  1332. F72AD71328C24BCC006CB92D /* NextcloudKit in Frameworks */,
  1333. );
  1334. runOnlyForDeploymentPostprocessing = 0;
  1335. };
  1336. F77B0EDC1D118A16002130FE /* Frameworks */ = {
  1337. isa = PBXFrameworksBuildPhase;
  1338. buildActionMask = 2147483647;
  1339. files = (
  1340. F7D56B1A2972405500FA46C4 /* Mantis in Frameworks */,
  1341. F7ED547C25EEA65400956C55 /* QRCodeReader in Frameworks */,
  1342. F788ECC7263AAAFA00ADC67F /* MarkdownKit in Frameworks */,
  1343. F77BC3EB293E5268005F2B08 /* Swifter in Frameworks */,
  1344. F7BB7E4727A18C56009B9F29 /* Parchment in Frameworks */,
  1345. F734B06628E75C0100E180D5 /* TLPhotoPicker in Frameworks */,
  1346. F787AC09298BCB4A0001BB00 /* SVGKitSwift in Frameworks */,
  1347. F770768E263A8C3400A1BA94 /* FloatingPanel in Frameworks */,
  1348. F710FC7C277B7D0000AA9FBF /* RealmSwift in Frameworks */,
  1349. F758A01227A7F03E0069468B /* JGProgressHUD in Frameworks */,
  1350. F77333882927A72100466E35 /* OpenSSL in Frameworks */,
  1351. F76DA966277B76F30082465B /* UICKeyChainStore in Frameworks */,
  1352. F7792DE529EEE02D005930CE /* MobileVLCKit.xcframework in Frameworks */,
  1353. F753BA93281FD8020015BFB6 /* EasyTipView in Frameworks */,
  1354. F76DA95B277B75A90082465B /* TOPasscodeViewController.xcframework in Frameworks */,
  1355. F76DA963277B760E0082465B /* Queuer in Frameworks */,
  1356. F72AD70D28C24B93006CB92D /* NextcloudKit in Frameworks */,
  1357. F70B86752642CE3B00ED5349 /* FirebaseCrashlytics in Frameworks */,
  1358. F7A1050E29E587AF00FFD92B /* TagListView in Frameworks */,
  1359. F76DA969277B77EA0082465B /* DropDown in Frameworks */,
  1360. F75EAED826D2552E00F4320E /* MarqueeLabel in Frameworks */,
  1361. F710FC7A277B7D0000AA9FBF /* Realm in Frameworks */,
  1362. F72DA9B425F53E4E00B87DB1 /* SwiftRichString in Frameworks */,
  1363. F74E7720277A2EF40013B958 /* XLForm in Frameworks */,
  1364. F73ADD1C265546890069EA0D /* SwiftEntryKit in Frameworks */,
  1365. );
  1366. runOnlyForDeploymentPostprocessing = 0;
  1367. };
  1368. F7C9738D28F17131002C43E2 /* Frameworks */ = {
  1369. isa = PBXFrameworksBuildPhase;
  1370. buildActionMask = 2147483647;
  1371. files = (
  1372. F7A8D72828F17728008BBE1C /* RealmSwift in Frameworks */,
  1373. F7A8D72E28F17764008BBE1C /* UICKeyChainStore in Frameworks */,
  1374. F7A8D72428F1771B008BBE1C /* NextcloudKit in Frameworks */,
  1375. F7C9739228F17131002C43E2 /* Intents.framework in Frameworks */,
  1376. );
  1377. runOnlyForDeploymentPostprocessing = 0;
  1378. };
  1379. /* End PBXFrameworksBuildPhase section */
  1380. /* Begin PBXGroup section */
  1381. 2C33C48023E2C475005F963B /* Notification Service Extension */ = {
  1382. isa = PBXGroup;
  1383. children = (
  1384. 2C33C48123E2C475005F963B /* NotificationService.swift */,
  1385. 2C33C48A23E2CC26005F963B /* Notification_Service_Extension-Bridging-Header.h */,
  1386. );
  1387. path = "Notification Service Extension";
  1388. sourceTree = "<group>";
  1389. };
  1390. 371B5A2F23D0B04B00FAFAE9 /* Menu */ = {
  1391. isa = PBXGroup;
  1392. children = (
  1393. 3704EB2923D5A58400455C5B /* NCMenu.storyboard */,
  1394. 371B5A2D23D0B04500FAFAE9 /* NCMenu.swift */,
  1395. AF68326927BE65A90010BF0B /* NCMenuAction.swift */,
  1396. F7FAFD3928BFA947000777FE /* NCNotification+Menu.swift */,
  1397. AF935066276B84E700BD078F /* NCMenu+FloatingPanel.swift */,
  1398. 3781B9AF23DB2B7E006B4B1D /* AppDelegate+Menu.swift */,
  1399. 8491B1CC273BBA82001C8C5B /* UIViewController+Menu.swift */,
  1400. F77A697C250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift */,
  1401. F7581D1925EFDA60004DC699 /* NCLoginWeb+Menu.swift */,
  1402. F7581D2325EFDDDF004DC699 /* NCMedia+Menu.swift */,
  1403. F7CBC31B24F78E79004D3812 /* NCSortMenu.swift */,
  1404. F75D19E225EFE09000D74598 /* NCTrash+Menu.swift */,
  1405. AF93471127E2341B002537EE /* NCShare+Menu.swift */,
  1406. F710D2012405826100A6033D /* NCViewer+Menu.swift */,
  1407. F78C6FDD296D677300C952C3 /* NCContextMenu.swift */,
  1408. );
  1409. path = Menu;
  1410. sourceTree = "<group>";
  1411. };
  1412. AF8ED1FA2757821000B8DBC4 /* NextcloudTests */ = {
  1413. isa = PBXGroup;
  1414. children = (
  1415. AF8ED2022757822700B8DBC4 /* NCGlobalTests.swift */,
  1416. AF36077527BFB019001A243D /* ParallelWorkerTest.swift */,
  1417. AF70C14C27F3484D00E13DF2 /* SharePermissionTest.swift */,
  1418. AF3F909928213BEA0048A93E /* UserAgentTests.swift */,
  1419. AF8ED1FB2757821000B8DBC4 /* NextcloudTests.swift */,
  1420. );
  1421. path = NextcloudTests;
  1422. sourceTree = "<group>";
  1423. };
  1424. AF93471327E235EB002537EE /* Advanced */ = {
  1425. isa = PBXGroup;
  1426. children = (
  1427. AF93471627E2361E002537EE /* NCShareAdvancePermission.swift */,
  1428. AF93471827E2361E002537EE /* NCShareAdvancePermissionFooter.swift */,
  1429. AF93471427E2361E002537EE /* NCShareAdvancePermissionFooter.xib */,
  1430. AF93471527E2361E002537EE /* NCShareAdvancePermissionHeader.swift */,
  1431. AF93471727E2361E002537EE /* NCShareAdvancePermissionHeader.xib */,
  1432. AFCE353627E4ED7B00FEA6C2 /* NCShareCells.swift */,
  1433. AF93474D27E3F211002537EE /* NCShareNewUserAddComment.swift */,
  1434. );
  1435. path = Advanced;
  1436. sourceTree = "<group>";
  1437. };
  1438. F70211F31BAC56E9003FC03E /* Main */ = {
  1439. isa = PBXGroup;
  1440. children = (
  1441. F702F2E325EE5C82008F8E80 /* AudioRecorder */,
  1442. F7DFB7E9219C5A0500680748 /* Create cloud */,
  1443. F78ACD50219046AC0088454D /* Section Header Footer */,
  1444. F7603298252F0E550015A421 /* Collection Common */,
  1445. 370D26AE248A3D7A00121797 /* NCCellProtocol.swift */,
  1446. F7226EDB1EE4089300EBECB1 /* Main.storyboard */,
  1447. F7682FDF23C36B0500983A04 /* NCMainTabBar.swift */,
  1448. F75B0ABC244C4DBB00E58DCA /* NCActionCenter.swift */,
  1449. F77444F7222816D5000D5EB0 /* NCPickerViewController.swift */,
  1450. );
  1451. path = Main;
  1452. sourceTree = "<group>";
  1453. };
  1454. F702F2E325EE5C82008F8E80 /* AudioRecorder */ = {
  1455. isa = PBXGroup;
  1456. children = (
  1457. F702F2E425EE5C82008F8E80 /* NCAudioRecorderViewController.swift */,
  1458. F702F2E525EE5C82008F8E80 /* NCAudioRecorderViewController.storyboard */,
  1459. );
  1460. path = AudioRecorder;
  1461. sourceTree = "<group>";
  1462. };
  1463. F702F2FC25EE5D2C008F8E80 /* NYMnemonic */ = {
  1464. isa = PBXGroup;
  1465. children = (
  1466. F702F2FD25EE5D2C008F8E80 /* NYMnemonic.m */,
  1467. F702F2FE25EE5D2C008F8E80 /* languages */,
  1468. F702F30025EE5D2C008F8E80 /* NYMnemonic.h */,
  1469. );
  1470. path = NYMnemonic;
  1471. sourceTree = "<group>";
  1472. };
  1473. F702F2FE25EE5D2C008F8E80 /* languages */ = {
  1474. isa = PBXGroup;
  1475. children = (
  1476. F702F2FF25EE5D2C008F8E80 /* english.txt */,
  1477. );
  1478. path = languages;
  1479. sourceTree = "<group>";
  1480. };
  1481. F70716E42987F81500E72C1D /* File Provider Extension UI */ = {
  1482. isa = PBXGroup;
  1483. children = (
  1484. F70716F52987FA2F00E72C1D /* FileProviderExtensionUI-Bridging-Header.h */,
  1485. F70716E52987F81500E72C1D /* DocumentActionViewController.swift */,
  1486. F70716E72987F81500E72C1D /* MainInterface.storyboard */,
  1487. );
  1488. path = "File Provider Extension UI";
  1489. sourceTree = "<group>";
  1490. };
  1491. F70B866A2642A21300ED5349 /* Color */ = {
  1492. isa = PBXGroup;
  1493. children = (
  1494. F719D9DF288D37A300762E33 /* NCColorPicker.storyboard */,
  1495. F719D9E1288D396100762E33 /* NCColorPicker.swift */,
  1496. );
  1497. path = Color;
  1498. sourceTree = "<group>";
  1499. };
  1500. F70D87CC25EE6E58008CBBBD /* Rename file */ = {
  1501. isa = PBXGroup;
  1502. children = (
  1503. F70D87CD25EE6E58008CBBBD /* NCRenameFile.storyboard */,
  1504. F70D87CE25EE6E58008CBBBD /* NCRenameFile.swift */,
  1505. );
  1506. path = "Rename file";
  1507. sourceTree = "<group>";
  1508. };
  1509. F713418B2597513800768D21 /* PushNotification */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. F7134184259747BA00768D21 /* NCPushNotification.h */,
  1513. F7134185259747BA00768D21 /* NCPushNotification.m */,
  1514. F72D1006210B6882009C96B7 /* NCPushNotificationEncryption.h */,
  1515. F72D1005210B6882009C96B7 /* NCPushNotificationEncryption.m */,
  1516. );
  1517. path = PushNotification;
  1518. sourceTree = "<group>";
  1519. };
  1520. F7169A161EE590930086BD69 /* Shares */ = {
  1521. isa = PBXGroup;
  1522. children = (
  1523. F74C0435253F1CDC009762AB /* NCShares.storyboard */,
  1524. F74C0434253F1CDC009762AB /* NCShares.swift */,
  1525. );
  1526. path = Shares;
  1527. sourceTree = "<group>";
  1528. };
  1529. F720B5B72507B9A5008C94E5 /* Cell */ = {
  1530. isa = PBXGroup;
  1531. children = (
  1532. F77444F322281649000D5EB0 /* NCGridMediaCell.swift */,
  1533. F77444F422281649000D5EB0 /* NCGridMediaCell.xib */,
  1534. );
  1535. path = Cell;
  1536. sourceTree = "<group>";
  1537. };
  1538. F7239861253C95D500257F49 /* NCViewerRichdocument */ = {
  1539. isa = PBXGroup;
  1540. children = (
  1541. F790110D21415BF600D7B136 /* NCViewerRichdocument.swift */,
  1542. F723985B253C95CE00257F49 /* NCViewerRichdocument.storyboard */,
  1543. );
  1544. path = NCViewerRichdocument;
  1545. sourceTree = "<group>";
  1546. };
  1547. F723986A253C9C0E00257F49 /* NCViewerQuickLook */ = {
  1548. isa = PBXGroup;
  1549. children = (
  1550. F7C7B488245EBA4100D93E60 /* NCViewerQuickLook.swift */,
  1551. F7A48412297022E000BD1B49 /* ViewerQuickLook.swift */,
  1552. );
  1553. path = NCViewerQuickLook;
  1554. sourceTree = "<group>";
  1555. };
  1556. F723986F253D867900257F49 /* EmptyView */ = {
  1557. isa = PBXGroup;
  1558. children = (
  1559. F7239870253D86B600257F49 /* NCEmptyDataSet.swift */,
  1560. F7239876253D86D300257F49 /* NCEmptyView.xib */,
  1561. );
  1562. path = EmptyView;
  1563. sourceTree = "<group>";
  1564. };
  1565. F728CE741BF6322C00E69702 /* Share */ = {
  1566. isa = PBXGroup;
  1567. children = (
  1568. AF93471327E235EB002537EE /* Advanced */,
  1569. F700510022DF63AC003A3356 /* NCShare.storyboard */,
  1570. F700510422DF6A89003A3356 /* NCShare.swift */,
  1571. AFCE353827E5DE0400FEA6C2 /* NCShare+Helper.swift */,
  1572. AF730AF727834B1400B7520E /* NCShare+NCCellDelegate.swift */,
  1573. F723B3DC22FC6D1C00301EFE /* NCShareCommentsCell.xib */,
  1574. F7E4D9C322ED929B003675FD /* NCShareCommentsCell.swift */,
  1575. F769454522E9F1B0000A798A /* NCShareCommon.swift */,
  1576. F73CB3B122E072A000AD728E /* NCShareHeaderView.xib */,
  1577. F787704E22E7019900F287A9 /* NCShareLinkCell.xib */,
  1578. AF2D7C7B2742556F00ADF566 /* NCShareLinkCell.swift */,
  1579. F769454722E9F20D000A798A /* NCShareNetworking.swift */,
  1580. F769453F22E9F077000A798A /* NCSharePaging.swift */,
  1581. F774264822EB4D0000B23912 /* NCSearchUserDropDownCell.xib */,
  1582. F769453B22E9CFFF000A798A /* NCShareUserCell.xib */,
  1583. AF2D7C7D2742559100ADF566 /* NCShareUserCell.swift */,
  1584. );
  1585. path = Share;
  1586. sourceTree = "<group>";
  1587. };
  1588. F72B60941A24F04E004EF66F /* Localizations */ = {
  1589. isa = PBXGroup;
  1590. children = (
  1591. F7E70DE91A24DE4100E1B66A /* Localizable.strings */,
  1592. F72685E927C78E490019EF5E /* InfoPlist.strings */,
  1593. );
  1594. name = Localizations;
  1595. sourceTree = "<group>";
  1596. };
  1597. F72EA95528B7BAD100C88F0C /* Dashboard */ = {
  1598. isa = PBXGroup;
  1599. children = (
  1600. F7E0710028B13BB00001B882 /* DashboardData.swift */,
  1601. F72EA95128B7BA2A00C88F0C /* DashboardWidgetProvider.swift */,
  1602. F72A17D728B221E300F3F159 /* DashboardWidgetView.swift */,
  1603. );
  1604. path = Dashboard;
  1605. sourceTree = "<group>";
  1606. };
  1607. F72EA95628B7BAE700C88F0C /* Files */ = {
  1608. isa = PBXGroup;
  1609. children = (
  1610. F72EA95728B7BC4F00C88F0C /* FilesData.swift */,
  1611. F72EA95328B7BABA00C88F0C /* FilesWidgetProvider.swift */,
  1612. F72EA95928B7BD0D00C88F0C /* FilesWidgetView.swift */,
  1613. );
  1614. path = Files;
  1615. sourceTree = "<group>";
  1616. };
  1617. F7346E1428B0EF5B006CE2D2 /* Widget */ = {
  1618. isa = PBXGroup;
  1619. children = (
  1620. F7346E2228B0FEBA006CE2D2 /* Assets.xcassets */,
  1621. F72EA95528B7BAD100C88F0C /* Dashboard */,
  1622. F72EA95628B7BAE700C88F0C /* Files */,
  1623. F76DEE9A28F808BC0041B1C9 /* Lockscreen */,
  1624. F77ED59628C9CEEE00E24ED0 /* Toolbar */,
  1625. F75DD764290AB369002EB562 /* Intent */,
  1626. F7346E2028B0FA3A006CE2D2 /* Widget-Brinding-header.h */,
  1627. F7346E1528B0EF5C006CE2D2 /* Widget.swift */,
  1628. );
  1629. path = Widget;
  1630. sourceTree = "<group>";
  1631. };
  1632. F7381ED9218218A4000B1560 /* Offline */ = {
  1633. isa = PBXGroup;
  1634. children = (
  1635. F7381EDE218218C9000B1560 /* NCOffline.storyboard */,
  1636. F7381EDA218218C9000B1560 /* NCOffline.swift */,
  1637. );
  1638. path = Offline;
  1639. sourceTree = "<group>";
  1640. };
  1641. F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */ = {
  1642. isa = PBXGroup;
  1643. children = (
  1644. F72D404823D2082500A97FD0 /* NCViewerNextcloudText.swift */,
  1645. F73D11F9253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard */,
  1646. );
  1647. path = NCViewerNextcloudText;
  1648. sourceTree = "<group>";
  1649. };
  1650. F73FAEE224D2CA830090692E /* Diagnostics */ = {
  1651. isa = PBXGroup;
  1652. children = (
  1653. F7FC5EE02A1768D700D921F5 /* NCCapabilitiesView.swift */,
  1654. );
  1655. path = Diagnostics;
  1656. sourceTree = "<group>";
  1657. };
  1658. F74D3DB81BAC1941000BAE4B /* Networking */ = {
  1659. isa = PBXGroup;
  1660. children = (
  1661. F7C30DF8291BCBF00017149B /* E2EE */,
  1662. F72CD63925C19EBF00F46F9A /* NCAutoUpload.swift */,
  1663. F75A9EE523796C6F0044CFCE /* NCNetworking.swift */,
  1664. F7D96FCB246ED7E100536D73 /* NCNetworkingCheckRemoteUser.swift */,
  1665. F7B8CD90261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift */,
  1666. F70D8D8024A4A9BF000A5756 /* NCNetworkingProcessUpload.swift */,
  1667. F72A47EB2487B06B005AD489 /* NCOperationQueue.swift */,
  1668. F755BD9A20594AC7008C5FBB /* NCService.swift */,
  1669. F77BC3EC293E528A005F2B08 /* NCConfigServer.swift */,
  1670. );
  1671. path = Networking;
  1672. sourceTree = "<group>";
  1673. };
  1674. F757CC8929E82D0500F31428 /* Groupfolders */ = {
  1675. isa = PBXGroup;
  1676. children = (
  1677. F757CC8A29E82D0500F31428 /* NCGroupfolders.storyboard */,
  1678. F757CC8B29E82D0500F31428 /* NCGroupfolders.swift */,
  1679. );
  1680. path = Groupfolders;
  1681. sourceTree = "<group>";
  1682. };
  1683. F758B41E212C516300515F55 /* Scan document */ = {
  1684. isa = PBXGroup;
  1685. children = (
  1686. F758B457212C564000515F55 /* NCScan.storyboard */,
  1687. F758B45D212C569C00515F55 /* NCScanCell.swift */,
  1688. F758B45F212C56A400515F55 /* NCScan.swift */,
  1689. F7B6B70327C4E7FA00A7F6EB /* NCScan+CollectionView.swift */,
  1690. F765E9CC295C585800A09ED8 /* NCUploadScanDocument.swift */,
  1691. F714560F296433C80038D028 /* NCDocumentCamera.swift */,
  1692. );
  1693. path = "Scan document";
  1694. sourceTree = "<group>";
  1695. };
  1696. F75DD764290AB369002EB562 /* Intent */ = {
  1697. isa = PBXGroup;
  1698. children = (
  1699. F75DD769290ABB25002EB562 /* Intent.intentdefinition */,
  1700. );
  1701. path = Intent;
  1702. sourceTree = "<group>";
  1703. };
  1704. F7603298252F0E550015A421 /* Collection Common */ = {
  1705. isa = PBXGroup;
  1706. children = (
  1707. F70D7C3525FFBF81002B9E34 /* NCCollectionViewCommon.swift */,
  1708. AF7E504F27A2D92300B5E4AF /* NCSelectableNavigationView.swift */,
  1709. F78ACD3F21903CC20088454D /* NCGridCell.swift */,
  1710. F78ACD4521903D010088454D /* NCGridCell.xib */,
  1711. F78ACD4121903CE00088454D /* NCListCell.swift */,
  1712. F78ACD4321903CF20088454D /* NCListCell.xib */,
  1713. );
  1714. path = "Collection Common";
  1715. sourceTree = "<group>";
  1716. };
  1717. F761856529E98543006EB3B0 /* Intro */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. F761856629E98543006EB3B0 /* NCIntro.storyboard */,
  1721. F761856729E98543006EB3B0 /* NCIntroViewController.swift */,
  1722. F761856829E98543006EB3B0 /* NCIntroCollectionViewCell.swift */,
  1723. F761856929E98543006EB3B0 /* NCIntroCollectionViewCell.xib */,
  1724. );
  1725. path = Intro;
  1726. sourceTree = "<group>";
  1727. };
  1728. F765F72E25237E3F00391DBE /* Recent */ = {
  1729. isa = PBXGroup;
  1730. children = (
  1731. F765F73025237E3F00391DBE /* NCRecent.storyboard */,
  1732. F765F72F25237E3F00391DBE /* NCRecent.swift */,
  1733. );
  1734. path = Recent;
  1735. sourceTree = "<group>";
  1736. };
  1737. F769CA1B2966EF4F00039397 /* GUI */ = {
  1738. isa = PBXGroup;
  1739. children = (
  1740. F769CA182966EA3C00039397 /* ComponentView.swift */,
  1741. F75CA1462962F13700B01130 /* HUDView.swift */,
  1742. );
  1743. path = GUI;
  1744. sourceTree = "<group>";
  1745. };
  1746. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */ = {
  1747. isa = PBXGroup;
  1748. children = (
  1749. F76D3CF42428D0C0005DFA87 /* NCViewerPDF.storyboard */,
  1750. F76D3CF22428B94E005DFA87 /* NCViewerPDFSearchCell.xib */,
  1751. F710D1F42405770F00A6033D /* NCViewerPDF.swift */,
  1752. F76D3CF02428B40E005DFA87 /* NCViewerPDFSearch.swift */,
  1753. );
  1754. path = NCViewerPDF;
  1755. sourceTree = "<group>";
  1756. };
  1757. F76DEE9A28F808BC0041B1C9 /* Lockscreen */ = {
  1758. isa = PBXGroup;
  1759. children = (
  1760. F76DEE9428F808AF0041B1C9 /* LockscreenData.swift */,
  1761. F76DEE9528F808AF0041B1C9 /* LockscreenWidgetProvider.swift */,
  1762. F76DEE9628F808AF0041B1C9 /* LockscreenWidgetView.swift */,
  1763. );
  1764. path = Lockscreen;
  1765. sourceTree = "<group>";
  1766. };
  1767. F771E3D120E2392D00AFB62D /* File Provider Extension */ = {
  1768. isa = PBXGroup;
  1769. children = (
  1770. F771E3F220E239A600AFB62D /* FileProviderData.swift */,
  1771. F76673EC22C901F5007ED366 /* FileProviderDomain.swift */,
  1772. F771E3D620E2392D00AFB62D /* FileProviderEnumerator.swift */,
  1773. F7434B5F20E2440600417916 /* FileProviderExtension-Bridging-Header.h */,
  1774. F771E3D220E2392D00AFB62D /* FileProviderExtension.swift */,
  1775. F771E3F420E239B400AFB62D /* FileProviderExtension+Actions.swift */,
  1776. F771E3F520E239B400AFB62D /* FileProviderExtension+Thumbnail.swift */,
  1777. F771E3D420E2392D00AFB62D /* FileProviderItem.swift */,
  1778. F76673EF22C90433007ED366 /* FileProviderUtility.swift */,
  1779. );
  1780. path = "File Provider Extension";
  1781. sourceTree = "<group>";
  1782. };
  1783. F7725A5D251F33BB00D125E0 /* Files */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. F7725A5F251F33BB00D125E0 /* NCFiles.storyboard */,
  1787. F7725A5E251F33BB00D125E0 /* NCFiles.swift */,
  1788. );
  1789. path = Files;
  1790. sourceTree = "<group>";
  1791. };
  1792. F77ED59628C9CEEE00E24ED0 /* Toolbar */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. F77ED59028C9CE9D00E24ED0 /* ToolbarData.swift */,
  1796. F77ED59228C9CEA000E24ED0 /* ToolbarWidgetProvider.swift */,
  1797. F77ED59428C9CEA300E24ED0 /* ToolbarWidgetView.swift */,
  1798. );
  1799. path = Toolbar;
  1800. sourceTree = "<group>";
  1801. };
  1802. F78ACD4721903F850088454D /* Cell */ = {
  1803. isa = PBXGroup;
  1804. children = (
  1805. F78ACD4821903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift */,
  1806. F78ACD4921903F850088454D /* NCTrashListCell.xib */,
  1807. );
  1808. path = Cell;
  1809. sourceTree = "<group>";
  1810. };
  1811. F78ACD50219046AC0088454D /* Section Header Footer */ = {
  1812. isa = PBXGroup;
  1813. children = (
  1814. F78ACD53219047D40088454D /* NCSectionFooter.xib */,
  1815. F7FF2CB02842159500EBB7A1 /* NCSectionHeader.xib */,
  1816. F78ACD57219048040088454D /* NCSectionHeaderMenu.xib */,
  1817. F78ACD51219046DC0088454D /* NCSectionHeaderFooter.swift */,
  1818. );
  1819. path = "Section Header Footer";
  1820. sourceTree = "<group>";
  1821. };
  1822. F78F74322163753B00C2ADAD /* Trash */ = {
  1823. isa = PBXGroup;
  1824. children = (
  1825. F78ACD4721903F850088454D /* Cell */,
  1826. F78F74332163757000C2ADAD /* NCTrash.storyboard */,
  1827. F78F74352163781100C2ADAD /* NCTrash.swift */,
  1828. AF3FDCC12796ECC300710F60 /* NCTrash+CollectionView.swift */,
  1829. );
  1830. path = Trash;
  1831. sourceTree = "<group>";
  1832. };
  1833. F79018B1240962C7007C9B6D /* NCViewerMedia */ = {
  1834. isa = PBXGroup;
  1835. children = (
  1836. F718C24D254D507B00C5C256 /* NCViewerMediaDetailView.swift */,
  1837. F70753F62542A9C000972D44 /* NCViewerMediaPage.storyboard */,
  1838. F70753EA2542A99800972D44 /* NCViewerMediaPage.swift */,
  1839. F70753F02542A9A200972D44 /* NCViewerMedia.swift */,
  1840. F79EDA9E26B004980007D134 /* NCPlayer */,
  1841. );
  1842. path = NCViewerMedia;
  1843. sourceTree = "<group>";
  1844. };
  1845. F7903A4A2948CAC300203DA5 /* ExternalResources */ = {
  1846. isa = PBXGroup;
  1847. children = (
  1848. F71CD6C92930D7B1006C95C1 /* NCApplicationHandle.swift */,
  1849. );
  1850. path = ExternalResources;
  1851. sourceTree = "<group>";
  1852. };
  1853. F79630EC215526B60015EEA5 /* Viewer */ = {
  1854. isa = PBXGroup;
  1855. children = (
  1856. F7F9D1BA25397CE000D9BFF5 /* NCViewer.swift */,
  1857. F7EFA47725ADBA500083159A /* NCViewerProviderContextMenu.swift */,
  1858. F79018B1240962C7007C9B6D /* NCViewerMedia */,
  1859. F723986A253C9C0E00257F49 /* NCViewerQuickLook */,
  1860. F76D3CEF2428B3DD005DFA87 /* NCViewerPDF */,
  1861. F73D11FF253C5F5400DF9BEC /* NCViewerNextcloudText */,
  1862. F7239861253C95D500257F49 /* NCViewerRichdocument */,
  1863. );
  1864. path = Viewer;
  1865. sourceTree = "<group>";
  1866. };
  1867. F79A65C12191D8DC00FF6DCC /* Select */ = {
  1868. isa = PBXGroup;
  1869. children = (
  1870. F79A65C22191D90F00FF6DCC /* NCSelect.storyboard */,
  1871. F79A65C52191D95E00FF6DCC /* NCSelect.swift */,
  1872. F7EDE51A262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib */,
  1873. F7EDE513262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib */,
  1874. F7EDE508262DA9D600414FE6 /* NCSelectCommandViewSelect.xib */,
  1875. );
  1876. path = Select;
  1877. sourceTree = "<group>";
  1878. };
  1879. F79EDA9E26B004980007D134 /* NCPlayer */ = {
  1880. isa = PBXGroup;
  1881. children = (
  1882. F79EDAA126B004980007D134 /* NCPlayer.swift */,
  1883. F732D23227CF8AED000B0F1B /* NCPlayerToolBar.xib */,
  1884. F79EDA9F26B004980007D134 /* NCPlayerToolBar.swift */,
  1885. );
  1886. path = NCPlayer;
  1887. sourceTree = "<group>";
  1888. };
  1889. F7A0D14E259229FA008F8A13 /* Extensions */ = {
  1890. isa = PBXGroup;
  1891. children = (
  1892. F7AC1CAF28AB94490032D99F /* Array+Extension.swift */,
  1893. F7817CF729801A3500FFBC65 /* Data+Extension.swift */,
  1894. AFCE353427E4ED5900FEA6C2 /* DateFormatter+Extension.swift */,
  1895. F70460512499061800BB98A7 /* NotificationCenter+MainThread.swift */,
  1896. F79B869A265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift */,
  1897. F78071071EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.h */,
  1898. F78071081EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m */,
  1899. F343A4BA2A1E734600DDA874 /* Optional+Extensions.swift */,
  1900. F343A4B22A1E01FF00DDA874 /* PHAsset+Extension.swift */,
  1901. F7A0D1342591FBC5008F8A13 /* String+Extension.swift */,
  1902. AF1A9B6327D0CA1E00F17A9E /* UIAlertController+Extension.swift */,
  1903. AFD3323F276A02C000F5AE02 /* UIApplication+Extension.swift */,
  1904. AF7E504D27A2D8FF00B5E4AF /* UIBarButton+Extension.swift */,
  1905. F70CEF5523E9C7E50007035B /* UIColor+Extension.swift */,
  1906. F79B645F26CA661600838ACA /* UIControl+Extension.swift */,
  1907. F7F4F10F27ECDC4A008676F9 /* UIDevice+Extension.swift */,
  1908. F7F4F11127ECDC52008676F9 /* UIFont+Extension.swift */,
  1909. F713FEFE2472764000214AF6 /* UIImage+animatedGIF.h */,
  1910. F713FEFF2472764100214AF6 /* UIImage+animatedGIF.m */,
  1911. F7B7504A2397D38E004E13EC /* UIImage+Extension.swift */,
  1912. F77BB7492899857B0090FC19 /* UINavigationController+Extension.swift */,
  1913. F77BB747289985270090FC19 /* UITabBarController+Extension.swift */,
  1914. AFCE353227E4ED1900FEA6C2 /* UIToolbar+Extension.swift */,
  1915. F7E41315294A19B300839300 /* UIView+Extension.swift */,
  1916. F77BB745289984CA0090FC19 /* UIViewController+Extension.swift */,
  1917. F7E8A390295DC5E0006CB2D0 /* View+Extension.swift */,
  1918. F7EE66AC2A20B226009AE765 /* UILabel+Extension.swift */,
  1919. );
  1920. path = Extensions;
  1921. sourceTree = "<group>";
  1922. };
  1923. F7A3214D1E9E2A070069AD1B /* Favorites */ = {
  1924. isa = PBXGroup;
  1925. children = (
  1926. F717402B24F699A5000C87D5 /* NCFavorite.storyboard */,
  1927. F717402C24F699A5000C87D5 /* NCFavorite.swift */,
  1928. );
  1929. path = Favorites;
  1930. sourceTree = "<group>";
  1931. };
  1932. F7A321621E9E37960069AD1B /* Activity */ = {
  1933. isa = PBXGroup;
  1934. children = (
  1935. F7C9555221F0C4CA0024296E /* NCActivity.storyboard */,
  1936. AF56C1DB2784856200D8BAE2 /* NCActivityCommentView.xib */,
  1937. F7C9555421F0C5470024296E /* NCActivity.swift */,
  1938. AFA2AC8427849604008E1EA7 /* NCActivityCommentView.swift */,
  1939. D5B6AA7727200C7200D49C24 /* NCActivityTableViewCell.swift */,
  1940. );
  1941. path = Activity;
  1942. sourceTree = "<group>";
  1943. };
  1944. F7ACE4281BAC0268006C0017 /* Settings */ = {
  1945. isa = PBXGroup;
  1946. children = (
  1947. F77910A425DD517B00CEDB9E /* Settings.bundle */,
  1948. F77910AA25DD53C700CEDB9E /* NCSettingsBundleHelper.swift */,
  1949. F7CB689F254169530050EC94 /* NCSettings.storyboard */,
  1950. F7ACE4291BAC0268006C0017 /* Acknowledgements.h */,
  1951. F7ACE42B1BAC0268006C0017 /* Acknowledgements.rtf */,
  1952. F7ACE42A1BAC0268006C0017 /* Acknowledgements.m */,
  1953. F7A321AB1E9E6AD50069AD1B /* CCAdvanced.h */,
  1954. F7A321AC1E9E6AD50069AD1B /* CCAdvanced.m */,
  1955. F7ACE42C1BAC0268006C0017 /* CCManageAccount.h */,
  1956. F7ACE42D1BAC0268006C0017 /* CCManageAccount.m */,
  1957. F75AC2421F1F62450073EC19 /* NCManageAutoUploadFileName.swift */,
  1958. F7ACE42E1BAC0268006C0017 /* CCManageAutoUpload.h */,
  1959. F7ACE42F1BAC0268006C0017 /* CCManageAutoUpload.m */,
  1960. F7ACE4301BAC0268006C0017 /* NCSettings.h */,
  1961. F7ACE4311BAC0268006C0017 /* NCSettings.m */,
  1962. F7A7FA6229265CF4000603EF /* NCManageE2EE.swift */,
  1963. F726EEEB1FED1C820030B9C8 /* NCEndToEndInitialize.swift */,
  1964. );
  1965. path = Settings;
  1966. sourceTree = "<group>";
  1967. };
  1968. F7AE00F6230E8191007ACF8A /* BrowserWeb */ = {
  1969. isa = PBXGroup;
  1970. children = (
  1971. F7AE00F9230E81EB007ACF8A /* NCBrowserWeb.storyboard */,
  1972. F7AE00F7230E81CB007ACF8A /* NCBrowserWeb.swift */,
  1973. );
  1974. path = BrowserWeb;
  1975. sourceTree = "<group>";
  1976. };
  1977. F7BAAD951ED5A63D00B7EAD4 /* Data */ = {
  1978. isa = PBXGroup;
  1979. children = (
  1980. F7BAADB41ED5A87C00B7EAD4 /* NCDatabase.swift */,
  1981. F7C1EEA425053A9C00866ACC /* NCDataSource.swift */,
  1982. F73D5E46246DE09200DF6467 /* NCElementsJSON.swift */,
  1983. F7BAADB51ED5A87C00B7EAD4 /* NCManageDatabase.swift */,
  1984. AF4BF613275629E20081CEEF /* NCManageDatabase+Account.swift */,
  1985. AF4BF61D27562B3F0081CEEF /* NCManageDatabase+Activity.swift */,
  1986. F749B650297B0F2400087535 /* NCManageDatabase+Avatar.swift */,
  1987. F763D29C2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift */,
  1988. F7D68FCB28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift */,
  1989. F78A10BE29322E8A008499B8 /* NCManageDatabase+Directory.swift */,
  1990. F72FD3B4297ED49A00075D28 /* NCManageDatabase+E2EE.swift */,
  1991. F757CC8129E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift */,
  1992. F7BF9D812934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift */,
  1993. AF4BF61827562A4B0081CEEF /* NCManageDatabase+Metadata.swift */,
  1994. F749B649297B0CBB00087535 /* NCManageDatabase+Share.swift */,
  1995. F7E98C1527E0D0FC001F9F19 /* NCManageDatabase+Video.swift */,
  1996. );
  1997. path = Data;
  1998. sourceTree = "<group>";
  1999. };
  2000. F7BFFA621A24D7300044ED85 /* Login */ = {
  2001. isa = PBXGroup;
  2002. children = (
  2003. F702F2F025EE5CDA008F8E80 /* NCLogin.storyboard */,
  2004. F702F2F625EE5CEC008F8E80 /* NCLogin.swift */,
  2005. F738D48F2756740100CD1D38 /* NCLoginNavigationController.swift */,
  2006. F745B252222D88AE00346520 /* NCLoginQRCode.swift */,
  2007. F7AE00F4230D5F9E007ACF8A /* NCLoginWeb.swift */,
  2008. F7BC287D26663F6C004D46C5 /* NCViewCertificateDetails.storyboard */,
  2009. F7BC287F26663F85004D46C5 /* NCViewCertificateDetails.swift */,
  2010. );
  2011. path = Login;
  2012. sourceTree = "<group>";
  2013. };
  2014. F7BFFA991A24D7BB0044ED85 /* Utility */ = {
  2015. isa = PBXGroup;
  2016. children = (
  2017. F7053E3C1C639DF500741EA5 /* CCUtility.h */,
  2018. F7053E3D1C639DF500741EA5 /* CCUtility.m */,
  2019. F76D364528A4F8BF00214537 /* NCActivityIndicator.swift */,
  2020. F733598025C1C188002ABA72 /* NCAskAuthorization.swift */,
  2021. F77C97382953131000FDDD09 /* NCCameraRoll.swift */,
  2022. F765608E23BF813500765969 /* NCContentPresenter.swift */,
  2023. F70968A324212C4E00ED60E5 /* NCLivePhoto.swift */,
  2024. F702F30725EE5D47008F8E80 /* NCPopupViewController.swift */,
  2025. F707C26421A2DC5200F6181E /* NCStoreReview.swift */,
  2026. AF817EF0274BC781009ED85B /* NCUserBaseUrl.swift */,
  2027. F70BFC7320E0FA7C00C67599 /* NCUtility.swift */,
  2028. AF93474B27E34120002537EE /* NCUtility+Image.swift */,
  2029. F74AF3A3247FB6AE00AC767B /* NCUtilityFileSystem.swift */,
  2030. F702F2FC25EE5D2C008F8E80 /* NYMnemonic */,
  2031. AF36077027BFA4E8001A243D /* ParallelWorker.swift */,
  2032. F7245923289BB50B00474787 /* ThreadSafeDictionary.swift */,
  2033. );
  2034. path = Utility;
  2035. sourceTree = "<group>";
  2036. };
  2037. F7C0F46D1C8880540059EC54 /* Share */ = {
  2038. isa = PBXGroup;
  2039. children = (
  2040. F714803A262EBE3900693E51 /* MainInterface.storyboard */,
  2041. F7148040262EBE4000693E51 /* NCShareExtension.swift */,
  2042. AF730AF927843E4C00B7520E /* NCShareExtension+NCDelegate.swift */,
  2043. AF22B215277D196700DAB0CC /* NCShareExtension+DataSource.swift */,
  2044. AF22B216277D196700DAB0CC /* NCShareExtension+Files.swift */,
  2045. AF22B20B277C6F4D00DAB0CC /* NCShareCell.swift */,
  2046. F7148046262EBE4B00693E51 /* Share-Bridging-Header.h */,
  2047. );
  2048. path = Share;
  2049. sourceTree = "<group>";
  2050. };
  2051. F7C1CDD91E6DFC6F005D92BE /* Brand */ = {
  2052. isa = PBXGroup;
  2053. children = (
  2054. F761856529E98543006EB3B0 /* Intro */,
  2055. F700222B1EC479840080073F /* Custom.xcassets */,
  2056. F7362A1E220C853A005101B5 /* LaunchScreen.storyboard */,
  2057. F78E2D6429AF02DB0024D4F3 /* Database.swift */,
  2058. F76B3CCD1EAE01BD00921AC9 /* NCBrand.swift */,
  2059. );
  2060. path = Brand;
  2061. sourceTree = "<group>";
  2062. };
  2063. F7C30DF8291BCBF00017149B /* E2EE */ = {
  2064. isa = PBXGroup;
  2065. children = (
  2066. F70CAE381F8CF31A008125FD /* NCEndToEndEncryption.h */,
  2067. F70CAE391F8CF31A008125FD /* NCEndToEndEncryption.m */,
  2068. F7F878AD1FB9E3B900599E4F /* NCEndToEndMetadata.swift */,
  2069. F785EE9C246196DF00B3F945 /* NCNetworkingE2EE.swift */,
  2070. F7C30DF9291BCF790017149B /* NCNetworkingE2EECreateFolder.swift */,
  2071. F7C30DFC291BD0B80017149B /* NCNetworkingE2EEDelete.swift */,
  2072. F7C30DFF291BD2610017149B /* NCNetworkingE2EERename.swift */,
  2073. F7C30DF5291BC0CA0017149B /* NCNetworkingE2EEUpload.swift */,
  2074. );
  2075. path = E2EE;
  2076. sourceTree = "<group>";
  2077. };
  2078. F7C5259A1E3B441D00FFE02C /* Notification */ = {
  2079. isa = PBXGroup;
  2080. children = (
  2081. F73B42292476764F00A30FD3 /* NCNotification.storyboard */,
  2082. F73B422A2476764F00A30FD3 /* NCNotification.swift */,
  2083. );
  2084. name = Notification;
  2085. sourceTree = "<group>";
  2086. };
  2087. F7C9739328F17131002C43E2 /* WidgetDashboardIntentHandler */ = {
  2088. isa = PBXGroup;
  2089. children = (
  2090. F7A8D72228F176B6008BBE1C /* WidgetDashboardIntentHandler-Brinding-header.h */,
  2091. F7C9739428F17131002C43E2 /* IntentHandler.swift */,
  2092. );
  2093. path = WidgetDashboardIntentHandler;
  2094. sourceTree = "<group>";
  2095. };
  2096. F7CA213725F1372B00826ABB /* Account Request */ = {
  2097. isa = PBXGroup;
  2098. children = (
  2099. F7CA212C25F1333200826ABB /* NCAccountRequest.storyboard */,
  2100. F7CA212B25F1333200826ABB /* NCAccountRequest.swift */,
  2101. F7A60F85292D215000FCE1F2 /* NCShareAccounts.storyboard */,
  2102. F7A60F84292D215000FCE1F2 /* NCShareAccounts.swift */,
  2103. );
  2104. path = "Account Request";
  2105. sourceTree = "<group>";
  2106. };
  2107. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */ = {
  2108. isa = PBXGroup;
  2109. children = (
  2110. F75C0C4723D1FAE300163CC8 /* NCRichWorkspaceCommon.swift */,
  2111. F7D1611F23CF19E30039EBBF /* NCViewerRichWorkspace.storyboard */,
  2112. F78A18B723CDE2B300F681F3 /* NCViewerRichWorkspace.swift */,
  2113. F78A18B523CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift */,
  2114. );
  2115. path = RichWorkspace;
  2116. sourceTree = "<group>";
  2117. };
  2118. F7CB68942541670D0050EC94 /* More */ = {
  2119. isa = PBXGroup;
  2120. children = (
  2121. F7EFC0C5256BC77700461AAD /* NCMoreUserCell.xib */,
  2122. F7CB68992541676B0050EC94 /* NCMore.storyboard */,
  2123. F73F537E1E929C8500F8678D /* NCMore.swift */,
  2124. );
  2125. path = More;
  2126. sourceTree = "<group>";
  2127. };
  2128. F7DFB7E9219C5A0500680748 /* Create cloud */ = {
  2129. isa = PBXGroup;
  2130. children = (
  2131. F769CA162965AB7C00039397 /* NCUploadAssets.swift */,
  2132. F704B5E22430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard */,
  2133. F704B5E42430AA8000632F5F /* NCCreateFormUploadConflict.swift */,
  2134. F704B5E82430C0B800632F5F /* NCCreateFormUploadConflictCell.swift */,
  2135. F704B5E62430C06700632F5F /* NCCreateFormUploadConflictCell.xib */,
  2136. F7651A8823A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard */,
  2137. F7651A8923A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift */,
  2138. F747BA1E22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard */,
  2139. F7020FCD2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift */,
  2140. );
  2141. path = "Create cloud";
  2142. sourceTree = "<group>";
  2143. };
  2144. F7E9C41320F4CA870040CF18 /* Transfers */ = {
  2145. isa = PBXGroup;
  2146. children = (
  2147. F760329D252F0F8E0015A421 /* NCTransferCell.swift */,
  2148. F760329E252F0F8E0015A421 /* NCTransferCell.xib */,
  2149. F74DE14225135B6800917068 /* NCTransfers.storyboard */,
  2150. F74DE14125135B6800917068 /* NCTransfers.swift */,
  2151. );
  2152. path = Transfers;
  2153. sourceTree = "<group>";
  2154. };
  2155. F7EC9CB921185F2000F1C5CE /* Media */ = {
  2156. isa = PBXGroup;
  2157. children = (
  2158. F720B5B72507B9A5008C94E5 /* Cell */,
  2159. F7501C302212E57400FB1415 /* NCMedia.storyboard */,
  2160. F7501C312212E57400FB1415 /* NCMedia.swift */,
  2161. F7F1E54B2492369A00E42386 /* NCMediaCommandView.xib */,
  2162. );
  2163. path = Media;
  2164. sourceTree = "<group>";
  2165. };
  2166. F7EFC0CB256BF89300461AAD /* UserStatus */ = {
  2167. isa = PBXGroup;
  2168. children = (
  2169. F7EFC0CC256BF8DD00461AAD /* NCUserStatus.swift */,
  2170. F7E0CDCE265CE8610044854E /* NCUserStatus.storyboard */,
  2171. );
  2172. path = UserStatus;
  2173. sourceTree = "<group>";
  2174. };
  2175. F7F4F0FB27ECDBDA008676F9 /* Font */ = {
  2176. isa = PBXGroup;
  2177. children = (
  2178. F7F4F0FC27ECDBDB008676F9 /* Inconsolata */,
  2179. );
  2180. path = Font;
  2181. sourceTree = "<group>";
  2182. };
  2183. F7F4F0FC27ECDBDB008676F9 /* Inconsolata */ = {
  2184. isa = PBXGroup;
  2185. children = (
  2186. F7F4F0FD27ECDBDB008676F9 /* Inconsolata-SemiBold.ttf */,
  2187. F7F4F0FE27ECDBDB008676F9 /* Inconsolata-Medium.ttf */,
  2188. F7F4F0FF27ECDBDB008676F9 /* Inconsolata-Black.ttf */,
  2189. F7F4F10027ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf */,
  2190. F7F4F10127ECDBDB008676F9 /* Inconsolata-Bold.ttf */,
  2191. F7F4F10227ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf */,
  2192. F7F4F10327ECDBDB008676F9 /* Inconsolata-Light.ttf */,
  2193. F7F4F10427ECDBDB008676F9 /* Inconsolata-Regular.ttf */,
  2194. );
  2195. path = Inconsolata;
  2196. sourceTree = "<group>";
  2197. };
  2198. F7F67B9F1A24D27800EE80DA = {
  2199. isa = PBXGroup;
  2200. children = (
  2201. F7B8B82F25681C3400967775 /* GoogleService-Info.plist */,
  2202. F7C1CDD91E6DFC6F005D92BE /* Brand */,
  2203. F7F67BAA1A24D27800EE80DA /* iOSClient */,
  2204. F7F67BAB1A24D27800EE80DA /* Supporting Files */,
  2205. F771E3D120E2392D00AFB62D /* File Provider Extension */,
  2206. F70716E42987F81500E72C1D /* File Provider Extension UI */,
  2207. F7C0F46D1C8880540059EC54 /* Share */,
  2208. 2C33C48023E2C475005F963B /* Notification Service Extension */,
  2209. AF8ED1FA2757821000B8DBC4 /* NextcloudTests */,
  2210. F7346E1428B0EF5B006CE2D2 /* Widget */,
  2211. F7C9739328F17131002C43E2 /* WidgetDashboardIntentHandler */,
  2212. F7903A4A2948CAC300203DA5 /* ExternalResources */,
  2213. F7FC7D651DC1F98700BB2C6A /* Products */,
  2214. F7FC7D541DC1F93700BB2C6A /* Frameworks */,
  2215. F771E3D020E2392D00AFB62D /* File Provider Extension.appex */,
  2216. 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */,
  2217. AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */,
  2218. F7346E1028B0EF5B006CE2D2 /* Widget.appex */,
  2219. F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */,
  2220. F70716E32987F81500E72C1D /* File Provider Extension UI.appex */,
  2221. );
  2222. sourceTree = "<group>";
  2223. };
  2224. F7F67BAA1A24D27800EE80DA /* iOSClient */ = {
  2225. isa = PBXGroup;
  2226. children = (
  2227. F702F2CC25EE5B4F008F8E80 /* AppDelegate.swift */,
  2228. F702F2CE25EE5B5C008F8E80 /* NCGlobal.swift */,
  2229. F73CB5771ED46807005F2A5A /* NCBridgeSwift.h */,
  2230. F70F96AF2874394B006C8379 /* Nextcloud-Bridging-Header.h */,
  2231. F7F67BB81A24D27800EE80DA /* Images.xcassets */,
  2232. F769CA1B2966EF4F00039397 /* GUI */,
  2233. F70211F31BAC56E9003FC03E /* Main */,
  2234. F7CA213725F1372B00826ABB /* Account Request */,
  2235. F7A321621E9E37960069AD1B /* Activity */,
  2236. F7AE00F6230E8191007ACF8A /* BrowserWeb */,
  2237. F70B866A2642A21300ED5349 /* Color */,
  2238. F7BAAD951ED5A63D00B7EAD4 /* Data */,
  2239. F73FAEE224D2CA830090692E /* Diagnostics */,
  2240. F723986F253D867900257F49 /* EmptyView */,
  2241. F7A0D14E259229FA008F8A13 /* Extensions */,
  2242. F7A3214D1E9E2A070069AD1B /* Favorites */,
  2243. F7725A5D251F33BB00D125E0 /* Files */,
  2244. F757CC8929E82D0500F31428 /* Groupfolders */,
  2245. F7BFFA621A24D7300044ED85 /* Login */,
  2246. F7EC9CB921185F2000F1C5CE /* Media */,
  2247. 371B5A2F23D0B04B00FAFAE9 /* Menu */,
  2248. F7CB68942541670D0050EC94 /* More */,
  2249. F74D3DB81BAC1941000BAE4B /* Networking */,
  2250. F7C5259A1E3B441D00FFE02C /* Notification */,
  2251. F7381ED9218218A4000B1560 /* Offline */,
  2252. F713418B2597513800768D21 /* PushNotification */,
  2253. F765F72E25237E3F00391DBE /* Recent */,
  2254. F70D87CC25EE6E58008CBBBD /* Rename file */,
  2255. F7CADB3D23CCDDA1000EEC78 /* RichWorkspace */,
  2256. F758B41E212C516300515F55 /* Scan document */,
  2257. F79A65C12191D8DC00FF6DCC /* Select */,
  2258. F7ACE4281BAC0268006C0017 /* Settings */,
  2259. F728CE741BF6322C00E69702 /* Share */,
  2260. F7169A161EE590930086BD69 /* Shares */,
  2261. F7E9C41320F4CA870040CF18 /* Transfers */,
  2262. F78F74322163753B00C2ADAD /* Trash */,
  2263. F7EFC0CB256BF89300461AAD /* UserStatus */,
  2264. F7BFFA991A24D7BB0044ED85 /* Utility */,
  2265. F79630EC215526B60015EEA5 /* Viewer */,
  2266. );
  2267. path = iOSClient;
  2268. sourceTree = "<group>";
  2269. };
  2270. F7F67BAB1A24D27800EE80DA /* Supporting Files */ = {
  2271. isa = PBXGroup;
  2272. children = (
  2273. F7AC9349296193050002BC0F /* Reasons to use Nextcloud.pdf */,
  2274. F7A48414297028FC00BD1B49 /* Nextcloud Hub.png */,
  2275. F7F4F0FB27ECDBDA008676F9 /* Font */,
  2276. F72B60941A24F04E004EF66F /* Localizations */,
  2277. );
  2278. name = "Supporting Files";
  2279. path = iOSClient;
  2280. sourceTree = "<group>";
  2281. };
  2282. F7FC7D541DC1F93700BB2C6A /* Frameworks */ = {
  2283. isa = PBXGroup;
  2284. children = (
  2285. F7792DE429EEE02D005930CE /* MobileVLCKit.xcframework */,
  2286. F783031028B4C86200B84583 /* libc++.1.tbd */,
  2287. F783031128B4C86200B84583 /* libc++abi.tbd */,
  2288. F783030E28B4C83F00B84583 /* libc++.tbd */,
  2289. F702867E2773609C00ADA8BE /* libiconv.tbd */,
  2290. F702864E27735D1400ADA8BE /* ffmpegkit.xcframework */,
  2291. F702865127735D1500ADA8BE /* gmp.xcframework */,
  2292. F702865A27735D1700ADA8BE /* gnutls.xcframework */,
  2293. F702865227735D1500ADA8BE /* libavcodec.xcframework */,
  2294. F702864D27735D1400ADA8BE /* libavdevice.xcframework */,
  2295. F702865527735D1600ADA8BE /* libavfilter.xcframework */,
  2296. F702865827735D1600ADA8BE /* libavformat.xcframework */,
  2297. F702865327735D1500ADA8BE /* libavutil.xcframework */,
  2298. F702865627735D1600ADA8BE /* libhogweed.xcframework */,
  2299. F702864F27735D1500ADA8BE /* libnettle.xcframework */,
  2300. F702865927735D1600ADA8BE /* libswresample.xcframework */,
  2301. F702865027735D1500ADA8BE /* libswscale.xcframework */,
  2302. F702865427735D1500ADA8BE /* openh264.xcframework */,
  2303. F702865727735D1600ADA8BE /* x264.xcframework */,
  2304. F79BCEEA270B49C800B5B71F /* SwiftUI.framework */,
  2305. F70B86842642CF5500ED5349 /* DropDown.xcframework */,
  2306. F70B86832642CF5500ED5349 /* FSCalendar.xcframework */,
  2307. F70B867E2642CF5400ED5349 /* KTVCocoaHTTPServer.xcframework */,
  2308. F70B86792642CF5300ED5349 /* KTVHTTPCache.xcframework */,
  2309. F70B86802642CF5400ED5349 /* OpenSSL.xcframework */,
  2310. F70B867C2642CF5300ED5349 /* Queuer.xcframework */,
  2311. F70B867F2642CF5400ED5349 /* QuickLayout.xcframework */,
  2312. F70B86812642CF5500ED5349 /* SwiftEntryKit.xcframework */,
  2313. F70B867A2642CF5300ED5349 /* TLPhotoPicker.xcframework */,
  2314. F70B86822642CF5500ED5349 /* TOPasscodeViewController.xcframework */,
  2315. F70B867D2642CF5400ED5349 /* UICKeyChainStore.xcframework */,
  2316. F70B867B2642CF5300ED5349 /* XLForm.xcframework */,
  2317. F70B866F2642CA9500ED5349 /* ChromaColorPicker.xcframework */,
  2318. F7B1076C25D3CF2800E72DE2 /* BackgroundTasks.framework */,
  2319. F7F35B592578FB63003F5589 /* CollaboraOnlineWebViewKeyboardManager.framework */,
  2320. F7176DDA256672D90017E83C /* libsqlite3.tbd */,
  2321. F7176DB9256672640017E83C /* FIRAnalyticsConnector.framework */,
  2322. F7176DB7256672640017E83C /* FirebaseAnalytics.framework */,
  2323. F7176DB6256672640017E83C /* FirebaseCore.framework */,
  2324. F7176DAF256672630017E83C /* FirebaseCoreDiagnostics.framework */,
  2325. F7176DAE256672630017E83C /* FirebaseCrashlytics.framework */,
  2326. F7176DB1256672630017E83C /* FirebaseInstallations.framework */,
  2327. F7176DB8256672640017E83C /* GoogleAppMeasurement.framework */,
  2328. F7176DB0256672630017E83C /* GoogleDataTransport.framework */,
  2329. F7176DB3256672630017E83C /* GoogleUtilities.framework */,
  2330. F7176DB4256672630017E83C /* nanopb.framework */,
  2331. F7176DB2256672630017E83C /* PromisesObjC.framework */,
  2332. F7176DB5256672640017E83C /* Protobuf.framework */,
  2333. F76FDEAA24859C3D0095B6C2 /* Queuer.framework */,
  2334. F710C5EF2471A6D1009AD8B7 /* Sentry.framework */,
  2335. F7AF7632246BEDFE00B86E3C /* TOPasscodeViewController.framework */,
  2336. F7D2C772246470CA008513AE /* XLForm.framework */,
  2337. F79018A424092EF4007C9B6D /* ATGMediaBrowser.framework */,
  2338. F7DBD82B23E46A4700ECB7C6 /* MarkdownKit.framework */,
  2339. 371B5A3223D0BD5500FAFAE9 /* FloatingPanel.framework */,
  2340. F765608A23BF80A400765969 /* SwiftEntryKit.framework */,
  2341. F765608623BF806C00765969 /* QuickLayout.framework */,
  2342. F716FE7723795E5000FABE50 /* NCCommunication.framework */,
  2343. F7E856182351D7BE009A3330 /* SwiftyXMLParser.framework */,
  2344. F736B551234DCF57008A5C9F /* Alamofire.framework */,
  2345. F74C4FBA2328C3C100A23E25 /* OpenSSL.framework */,
  2346. F774264022EB3F7300B23912 /* DropDown.framework */,
  2347. F74AFCE822E8B024003DE61F /* FSCalendar.framework */,
  2348. F700510222DF6897003A3356 /* Parchment.framework */,
  2349. F7421EAE2294044B00C4B7C1 /* Accelerate.framework */,
  2350. F70F2BA4225F2D8900EBB73E /* ZIPFoundation.framework */,
  2351. F7267A81225DFCE100D6DB7D /* AFNetworking.framework */,
  2352. F76E71E42244DF6900690001 /* Zip.framework */,
  2353. F745B250222D871800346520 /* QRCodeReader.framework */,
  2354. F75153232226920200323DDC /* FastScroll.framework */,
  2355. F78AA20521F783E900D0F205 /* SwiftRichString.framework */,
  2356. F72E0B9C21AD60BC00898D7B /* WeScan.framework */,
  2357. F7063DF02199E56E003F38DA /* CocoaLumberjackSwift.framework */,
  2358. F7063DEE2199E568003F38DA /* CocoaLumberjack.framework */,
  2359. F7063DEC2199E55F003F38DA /* SVGKit.framework */,
  2360. F7C40C112199BA620004137E /* RealmSwift.framework */,
  2361. F7C40C0F2199BA5D0004137E /* Realm.framework */,
  2362. F7C40BF22199978B0004137E /* MBProgressHUD.framework */,
  2363. F7C40BF0219994F20004137E /* KTVHTTPCache.framework */,
  2364. F7C40BEE219994ED0004137E /* KTVCocoaHTTPServer.framework */,
  2365. F7C40BEC219993330004137E /* JDStatusBarNotification.framework */,
  2366. F7C40BEA219991AC0004137E /* EARestrictedScrollView.framework */,
  2367. F7C40BE8219991A60004137E /* EAIntroView.framework */,
  2368. F7C40BE621998F410004137E /* DZNEmptyDataSet.framework */,
  2369. F7C40BE421998D5A0004137E /* MGSwipeTableCell.framework */,
  2370. F7C40BE221998C050004137E /* PDFGenerator.framework */,
  2371. F79918A72199840500C2E308 /* Sheeeeeeeeet.framework */,
  2372. F79918A021997F9000C2E308 /* UICKeyChainStore.framework */,
  2373. F733B65121997CC1001C1FFA /* TLPhotoPicker.framework */,
  2374. F75EDFBE1E8C116D00E6F369 /* libstdc++.tbd */,
  2375. F75EDFBC1E8C112F00E6F369 /* libsqlite3.0.tbd */,
  2376. 08EA97441E6554FC004C83FA /* FirebaseAnalytics.framework */,
  2377. 08EA97451E6554FC004C83FA /* FirebaseCore.framework */,
  2378. 08EA97461E6554FC004C83FA /* FirebaseInstanceID.framework */,
  2379. 08EA97471E6554FC004C83FA /* GoogleToolboxForMac.framework */,
  2380. 08DC3BD41E64727E00F036D3 /* AdSupport.framework */,
  2381. F7FC7D551DC1F93800BB2C6A /* libz.tbd */,
  2382. F7346E1128B0EF5B006CE2D2 /* WidgetKit.framework */,
  2383. F7C9739128F17131002C43E2 /* Intents.framework */,
  2384. );
  2385. name = Frameworks;
  2386. sourceTree = "<group>";
  2387. };
  2388. F7FC7D651DC1F98700BB2C6A /* Products */ = {
  2389. isa = PBXGroup;
  2390. children = (
  2391. F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */,
  2392. F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */,
  2393. );
  2394. name = Products;
  2395. sourceTree = "<group>";
  2396. };
  2397. /* End PBXGroup section */
  2398. /* Begin PBXNativeTarget section */
  2399. 2C33C47E23E2C475005F963B /* Notification Service Extension */ = {
  2400. isa = PBXNativeTarget;
  2401. buildConfigurationList = 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */;
  2402. buildPhases = (
  2403. 2C33C47B23E2C475005F963B /* Sources */,
  2404. 2C33C47C23E2C475005F963B /* Frameworks */,
  2405. 2C33C47D23E2C475005F963B /* Resources */,
  2406. );
  2407. buildRules = (
  2408. );
  2409. dependencies = (
  2410. );
  2411. name = "Notification Service Extension";
  2412. packageProductDependencies = (
  2413. F710FC87277B7D3F00AA9FBF /* RealmSwift */,
  2414. F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */,
  2415. F72AD71028C24BBB006CB92D /* NextcloudKit */,
  2416. );
  2417. productName = "Notification Service Extension";
  2418. productReference = 2C33C47F23E2C475005F963B /* Notification Service Extension.appex */;
  2419. productType = "com.apple.product-type.app-extension";
  2420. };
  2421. AF8ED1F82757821000B8DBC4 /* NextcloudTests */ = {
  2422. isa = PBXNativeTarget;
  2423. buildConfigurationList = AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudTests" */;
  2424. buildPhases = (
  2425. AF8ED1F52757821000B8DBC4 /* Sources */,
  2426. AF8ED1F62757821000B8DBC4 /* Frameworks */,
  2427. AF8ED1F72757821000B8DBC4 /* Resources */,
  2428. );
  2429. buildRules = (
  2430. );
  2431. dependencies = (
  2432. AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */,
  2433. );
  2434. name = NextcloudTests;
  2435. productName = NextcloudTests;
  2436. productReference = AF8ED1F92757821000B8DBC4 /* NextcloudTests.xctest */;
  2437. productType = "com.apple.product-type.bundle.unit-test";
  2438. };
  2439. F70716E22987F81400E72C1D /* File Provider Extension UI */ = {
  2440. isa = PBXNativeTarget;
  2441. buildConfigurationList = F70716F02987F81600E72C1D /* Build configuration list for PBXNativeTarget "File Provider Extension UI" */;
  2442. buildPhases = (
  2443. F70716DF2987F81400E72C1D /* Sources */,
  2444. F70716E02987F81400E72C1D /* Frameworks */,
  2445. F70716E12987F81400E72C1D /* Resources */,
  2446. );
  2447. buildRules = (
  2448. );
  2449. dependencies = (
  2450. );
  2451. name = "File Provider Extension UI";
  2452. packageProductDependencies = (
  2453. F70716F829881CFA00E72C1D /* UICKeyChainStore */,
  2454. F7490E7129882BB4009DCE94 /* RealmSwift */,
  2455. F7490E8829882CC8009DCE94 /* SwiftEntryKit */,
  2456. F7490E8A29882CE4009DCE94 /* NextcloudKit */,
  2457. );
  2458. productName = "File Provider Extension UI";
  2459. productReference = F70716E32987F81500E72C1D /* File Provider Extension UI.appex */;
  2460. productType = "com.apple.product-type.app-extension";
  2461. };
  2462. F71459B41D12E3B700CAFEEC /* Share */ = {
  2463. isa = PBXNativeTarget;
  2464. buildConfigurationList = F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */;
  2465. buildPhases = (
  2466. F71459B51D12E3B700CAFEEC /* Sources */,
  2467. F7145A141D12E3B700CAFEEC /* Frameworks */,
  2468. F7145A181D12E3B700CAFEEC /* Resources */,
  2469. );
  2470. buildRules = (
  2471. );
  2472. dependencies = (
  2473. );
  2474. name = Share;
  2475. packageProductDependencies = (
  2476. F72D7EB6263B1207000B3DFC /* MarkdownKit */,
  2477. F73ADD2026554F8E0069EA0D /* SwiftEntryKit */,
  2478. F710FC7F277B7D2700AA9FBF /* RealmSwift */,
  2479. F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */,
  2480. F72CD01127A7E92400E59476 /* JGProgressHUD */,
  2481. F72AD70E28C24BA1006CB92D /* NextcloudKit */,
  2482. F70821D729E59E6D001CA2D7 /* TagListView */,
  2483. );
  2484. productName = "Share Ext";
  2485. productReference = F7CE8AFB1DC1F8D8009CAE48 /* Share.appex */;
  2486. productType = "com.apple.product-type.app-extension";
  2487. };
  2488. F7346E0F28B0EF5B006CE2D2 /* Widget */ = {
  2489. isa = PBXNativeTarget;
  2490. buildConfigurationList = F7346E1F28B0EF5E006CE2D2 /* Build configuration list for PBXNativeTarget "Widget" */;
  2491. buildPhases = (
  2492. F7346E0C28B0EF5B006CE2D2 /* Sources */,
  2493. F7346E0D28B0EF5B006CE2D2 /* Frameworks */,
  2494. F7346E0E28B0EF5B006CE2D2 /* Resources */,
  2495. );
  2496. buildRules = (
  2497. );
  2498. dependencies = (
  2499. );
  2500. name = Widget;
  2501. packageProductDependencies = (
  2502. F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */,
  2503. F7346E2828B0FFF2006CE2D2 /* RealmSwift */,
  2504. F783030C28B4C59A00B84583 /* SwiftEntryKit */,
  2505. F783034328B5142B00B84583 /* NextcloudKit */,
  2506. F787AC0A298BCB540001BB00 /* SVGKitSwift */,
  2507. );
  2508. productName = DashboardWidgetExtension;
  2509. productReference = F7346E1028B0EF5B006CE2D2 /* Widget.appex */;
  2510. productType = "com.apple.product-type.app-extension";
  2511. };
  2512. F771E3CF20E2392D00AFB62D /* File Provider Extension */ = {
  2513. isa = PBXNativeTarget;
  2514. buildConfigurationList = F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */;
  2515. buildPhases = (
  2516. F771E3CC20E2392D00AFB62D /* Sources */,
  2517. F771E3CD20E2392D00AFB62D /* Frameworks */,
  2518. F771E3CE20E2392D00AFB62D /* Resources */,
  2519. );
  2520. buildRules = (
  2521. );
  2522. dependencies = (
  2523. );
  2524. name = "File Provider Extension";
  2525. packageProductDependencies = (
  2526. F73ADD2326554FE20069EA0D /* SwiftEntryKit */,
  2527. F710FC83277B7D3500AA9FBF /* RealmSwift */,
  2528. F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */,
  2529. F72AD71228C24BCC006CB92D /* NextcloudKit */,
  2530. );
  2531. productName = "File Provider Extension";
  2532. productReference = F771E3D020E2392D00AFB62D /* File Provider Extension.appex */;
  2533. productType = "com.apple.product-type.app-extension";
  2534. };
  2535. F77B0DEB1D118A16002130FE /* Nextcloud */ = {
  2536. isa = PBXNativeTarget;
  2537. buildConfigurationList = F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */;
  2538. buildPhases = (
  2539. F77B0DEF1D118A16002130FE /* Sources */,
  2540. F77B0EDC1D118A16002130FE /* Frameworks */,
  2541. F77B0EE91D118A16002130FE /* Resources */,
  2542. F77B0F981D118A16002130FE /* Embed Foundation Extensions */,
  2543. AFBFD01327551A54002244BC /* ShellScript */,
  2544. F76DA934277B75710082465B /* Embed Frameworks */,
  2545. );
  2546. buildRules = (
  2547. );
  2548. dependencies = (
  2549. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */,
  2550. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */,
  2551. 2C33C48523E2C475005F963B /* PBXTargetDependency */,
  2552. F7346E1B28B0EF5E006CE2D2 /* PBXTargetDependency */,
  2553. F7C9739828F17131002C43E2 /* PBXTargetDependency */,
  2554. F70716EC2987F81500E72C1D /* PBXTargetDependency */,
  2555. );
  2556. name = Nextcloud;
  2557. packageProductDependencies = (
  2558. F7ED547B25EEA65400956C55 /* QRCodeReader */,
  2559. F72DA9B325F53E4E00B87DB1 /* SwiftRichString */,
  2560. F770768D263A8C3400A1BA94 /* FloatingPanel */,
  2561. F788ECC6263AAAFA00ADC67F /* MarkdownKit */,
  2562. F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */,
  2563. F73ADD1B265546890069EA0D /* SwiftEntryKit */,
  2564. F75EAED726D2552E00F4320E /* MarqueeLabel */,
  2565. F74E771F277A2EF40013B958 /* XLForm */,
  2566. F76DA962277B760E0082465B /* Queuer */,
  2567. F76DA965277B76F30082465B /* UICKeyChainStore */,
  2568. F76DA968277B77EA0082465B /* DropDown */,
  2569. F710FC79277B7D0000AA9FBF /* Realm */,
  2570. F710FC7B277B7D0000AA9FBF /* RealmSwift */,
  2571. F7BB7E4627A18C56009B9F29 /* Parchment */,
  2572. F758A01127A7F03E0069468B /* JGProgressHUD */,
  2573. F753BA92281FD8020015BFB6 /* EasyTipView */,
  2574. F72AD70C28C24B93006CB92D /* NextcloudKit */,
  2575. F734B06528E75C0100E180D5 /* TLPhotoPicker */,
  2576. F77333872927A72100466E35 /* OpenSSL */,
  2577. F77BC3EA293E5268005F2B08 /* Swifter */,
  2578. F7D56B192972405500FA46C4 /* Mantis */,
  2579. F787AC08298BCB4A0001BB00 /* SVGKitSwift */,
  2580. F7A1050D29E587AF00FFD92B /* TagListView */,
  2581. );
  2582. productName = "Crypto Cloud";
  2583. productReference = F7CE8AFA1DC1F8D8009CAE48 /* Nextcloud.app */;
  2584. productType = "com.apple.product-type.application";
  2585. };
  2586. F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */ = {
  2587. isa = PBXNativeTarget;
  2588. buildConfigurationList = F7C9739A28F17132002C43E2 /* Build configuration list for PBXNativeTarget "WidgetDashboardIntentHandler" */;
  2589. buildPhases = (
  2590. F7C9738C28F17131002C43E2 /* Sources */,
  2591. F7C9738D28F17131002C43E2 /* Frameworks */,
  2592. F7C9738E28F17131002C43E2 /* Resources */,
  2593. );
  2594. buildRules = (
  2595. );
  2596. dependencies = (
  2597. );
  2598. name = WidgetDashboardIntentHandler;
  2599. packageProductDependencies = (
  2600. F7A8D72328F1771B008BBE1C /* NextcloudKit */,
  2601. F7A8D72728F17728008BBE1C /* RealmSwift */,
  2602. F7A8D72D28F17764008BBE1C /* UICKeyChainStore */,
  2603. );
  2604. productName = WidgetDashboardIntentHandler;
  2605. productReference = F7C9739028F17131002C43E2 /* WidgetDashboardIntentHandler.appex */;
  2606. productType = "com.apple.product-type.app-extension";
  2607. };
  2608. /* End PBXNativeTarget section */
  2609. /* Begin PBXProject section */
  2610. F7F67BA01A24D27800EE80DA /* Project object */ = {
  2611. isa = PBXProject;
  2612. attributes = {
  2613. LastSwiftUpdateCheck = 1420;
  2614. LastUpgradeCheck = 1400;
  2615. ORGANIZATIONNAME = "Marino Faggiana";
  2616. TargetAttributes = {
  2617. 2C33C47E23E2C475005F963B = {
  2618. CreatedOnToolsVersion = 11.3.1;
  2619. ProvisioningStyle = Automatic;
  2620. };
  2621. AF8ED1F82757821000B8DBC4 = {
  2622. CreatedOnToolsVersion = 13.1;
  2623. TestTargetID = F77B0DEB1D118A16002130FE;
  2624. };
  2625. F70716E22987F81400E72C1D = {
  2626. CreatedOnToolsVersion = 14.2;
  2627. };
  2628. F71459B41D12E3B700CAFEEC = {
  2629. LastSwiftMigration = 1020;
  2630. SystemCapabilities = {
  2631. com.apple.ApplicationGroups.iOS = {
  2632. enabled = 1;
  2633. };
  2634. com.apple.iCloud = {
  2635. enabled = 0;
  2636. };
  2637. };
  2638. };
  2639. F7346E0F28B0EF5B006CE2D2 = {
  2640. CreatedOnToolsVersion = 13.4.1;
  2641. };
  2642. F771E3CF20E2392D00AFB62D = {
  2643. CreatedOnToolsVersion = 9.4.1;
  2644. LastSwiftMigration = 1020;
  2645. ProvisioningStyle = Automatic;
  2646. };
  2647. F77B0DEB1D118A16002130FE = {
  2648. LastSwiftMigration = 1020;
  2649. ProvisioningStyle = Automatic;
  2650. SystemCapabilities = {
  2651. com.apple.Push = {
  2652. enabled = 1;
  2653. };
  2654. com.apple.iCloud = {
  2655. enabled = 1;
  2656. };
  2657. };
  2658. };
  2659. F7C9738F28F17131002C43E2 = {
  2660. CreatedOnToolsVersion = 14.0;
  2661. };
  2662. };
  2663. };
  2664. buildConfigurationList = F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */;
  2665. compatibilityVersion = "Xcode 3.2";
  2666. developmentRegion = en;
  2667. hasScannedForEncodings = 0;
  2668. knownRegions = (
  2669. en,
  2670. Base,
  2671. de,
  2672. fr,
  2673. "pt-BR",
  2674. ru,
  2675. it,
  2676. tr,
  2677. "es-MX",
  2678. "nb-NO",
  2679. pl,
  2680. sv,
  2681. es,
  2682. is,
  2683. nl,
  2684. "sk-SK",
  2685. "en-GB",
  2686. "zh-Hans",
  2687. "ka-GE",
  2688. hu,
  2689. "zh-Hant-TW",
  2690. sr,
  2691. "es-CL",
  2692. "es-CO",
  2693. "es-CR",
  2694. "es-DO",
  2695. "es-EC",
  2696. "es-GT",
  2697. "es-HN",
  2698. "es-NI",
  2699. "es-PA",
  2700. "es-PE",
  2701. "es-PR",
  2702. "es-PY",
  2703. "es-SV",
  2704. "es-UY",
  2705. "cs-CZ",
  2706. ko,
  2707. "es-419",
  2708. "pt-PT",
  2709. "ja-JP",
  2710. gl,
  2711. ca,
  2712. da,
  2713. eu,
  2714. );
  2715. mainGroup = F7F67B9F1A24D27800EE80DA;
  2716. packageReferences = (
  2717. F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */,
  2718. F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */,
  2719. F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */,
  2720. F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */,
  2721. F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */,
  2722. F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */,
  2723. F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */,
  2724. F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */,
  2725. F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */,
  2726. F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */,
  2727. F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */,
  2728. F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */,
  2729. F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */,
  2730. F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */,
  2731. F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */,
  2732. F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */,
  2733. F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */,
  2734. F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */,
  2735. F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */,
  2736. F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */,
  2737. F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */,
  2738. F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */,
  2739. );
  2740. productRefGroup = F7F67B9F1A24D27800EE80DA;
  2741. projectDirPath = "";
  2742. projectRoot = "";
  2743. targets = (
  2744. F77B0DEB1D118A16002130FE /* Nextcloud */,
  2745. F7346E0F28B0EF5B006CE2D2 /* Widget */,
  2746. F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */,
  2747. F71459B41D12E3B700CAFEEC /* Share */,
  2748. F771E3CF20E2392D00AFB62D /* File Provider Extension */,
  2749. F70716E22987F81400E72C1D /* File Provider Extension UI */,
  2750. 2C33C47E23E2C475005F963B /* Notification Service Extension */,
  2751. AF8ED1F82757821000B8DBC4 /* NextcloudTests */,
  2752. );
  2753. };
  2754. /* End PBXProject section */
  2755. /* Begin PBXResourcesBuildPhase section */
  2756. 2C33C47D23E2C475005F963B /* Resources */ = {
  2757. isa = PBXResourcesBuildPhase;
  2758. buildActionMask = 2147483647;
  2759. files = (
  2760. F746EC53273906C50052598D /* NCViewCertificateDetails.storyboard in Resources */,
  2761. );
  2762. runOnlyForDeploymentPostprocessing = 0;
  2763. };
  2764. AF8ED1F72757821000B8DBC4 /* Resources */ = {
  2765. isa = PBXResourcesBuildPhase;
  2766. buildActionMask = 2147483647;
  2767. files = (
  2768. );
  2769. runOnlyForDeploymentPostprocessing = 0;
  2770. };
  2771. F70716E12987F81400E72C1D /* Resources */ = {
  2772. isa = PBXResourcesBuildPhase;
  2773. buildActionMask = 2147483647;
  2774. files = (
  2775. F7490E8D29882F5B009DCE94 /* Custom.xcassets in Resources */,
  2776. F7490E8E2988334A009DCE94 /* Localizable.strings in Resources */,
  2777. F70716E92987F81500E72C1D /* MainInterface.storyboard in Resources */,
  2778. );
  2779. runOnlyForDeploymentPostprocessing = 0;
  2780. };
  2781. F7145A181D12E3B700CAFEEC /* Resources */ = {
  2782. isa = PBXResourcesBuildPhase;
  2783. buildActionMask = 2147483647;
  2784. files = (
  2785. F7148059262ED52200693E51 /* NCSectionHeaderMenu.xib in Resources */,
  2786. F714803B262EBE3900693E51 /* MainInterface.storyboard in Resources */,
  2787. F7148054262ED51000693E51 /* NCListCell.xib in Resources */,
  2788. F7D57C8626317BDA00DE301D /* NCAccountRequest.storyboard in Resources */,
  2789. AF22B209277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.xib in Resources */,
  2790. F7148063262ED66200693E51 /* NCEmptyView.xib in Resources */,
  2791. AF22B207277B4E4C00DAB0CC /* NCCreateFormUploadConflict.storyboard in Resources */,
  2792. F7145A231D12E3B700CAFEEC /* Localizable.strings in Resources */,
  2793. F746EC51273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
  2794. F76C26A62850D3A500E42BDF /* Images.xcassets in Resources */,
  2795. F79EC784263161BA004E59D6 /* NCRenameFile.storyboard in Resources */,
  2796. F714804F262ED4F900693E51 /* NCGridCell.xib in Resources */,
  2797. F714805E262ED52900693E51 /* NCSectionFooter.xib in Resources */,
  2798. F700222D1EC479840080073F /* Custom.xcassets in Resources */,
  2799. );
  2800. runOnlyForDeploymentPostprocessing = 0;
  2801. };
  2802. F7346E0E28B0EF5B006CE2D2 /* Resources */ = {
  2803. isa = PBXResourcesBuildPhase;
  2804. buildActionMask = 2147483647;
  2805. files = (
  2806. F7C7B25128B8B0C400E7115D /* Images.xcassets in Resources */,
  2807. F7C7B25028B8AD4500E7115D /* Localizable.strings in Resources */,
  2808. F7346E2328B0FEBA006CE2D2 /* Assets.xcassets in Resources */,
  2809. );
  2810. runOnlyForDeploymentPostprocessing = 0;
  2811. };
  2812. F771E3CE20E2392D00AFB62D /* Resources */ = {
  2813. isa = PBXResourcesBuildPhase;
  2814. buildActionMask = 2147483647;
  2815. files = (
  2816. F746EC52273906C40052598D /* NCViewCertificateDetails.storyboard in Resources */,
  2817. );
  2818. runOnlyForDeploymentPostprocessing = 0;
  2819. };
  2820. F77B0EE91D118A16002130FE /* Resources */ = {
  2821. isa = PBXResourcesBuildPhase;
  2822. buildActionMask = 2147483647;
  2823. files = (
  2824. F7362A1F220C853A005101B5 /* LaunchScreen.storyboard in Resources */,
  2825. F77444F622281649000D5EB0 /* NCGridMediaCell.xib in Resources */,
  2826. F78ACD4421903CF20088454D /* NCListCell.xib in Resources */,
  2827. F7F4F10727ECDBDB008676F9 /* Inconsolata-Black.ttf in Resources */,
  2828. F761856D29E98543006EB3B0 /* NCIntroCollectionViewCell.xib in Resources */,
  2829. F78ACD4621903D010088454D /* NCGridCell.xib in Resources */,
  2830. F7F4F10827ECDBDB008676F9 /* Inconsolata-ExtraLight.ttf in Resources */,
  2831. F72685E727C78E490019EF5E /* InfoPlist.strings in Resources */,
  2832. F769453C22E9CFFF000A798A /* NCShareUserCell.xib in Resources */,
  2833. F7F4F10927ECDBDB008676F9 /* Inconsolata-Bold.ttf in Resources */,
  2834. F76D3CF52428D0C1005DFA87 /* NCViewerPDF.storyboard in Resources */,
  2835. F700222C1EC479840080073F /* Custom.xcassets in Resources */,
  2836. F702F2F125EE5CDB008F8E80 /* NCLogin.storyboard in Resources */,
  2837. F723985C253C95CE00257F49 /* NCViewerRichdocument.storyboard in Resources */,
  2838. F758B45A212C564000515F55 /* NCScan.storyboard in Resources */,
  2839. F70D87CF25EE6E58008CBBBD /* NCRenameFile.storyboard in Resources */,
  2840. F765F73225237E3F00391DBE /* NCRecent.storyboard in Resources */,
  2841. F78F74342163757000C2ADAD /* NCTrash.storyboard in Resources */,
  2842. F702F30225EE5D2C008F8E80 /* english.txt in Resources */,
  2843. F757CC8C29E82D0500F31428 /* NCGroupfolders.storyboard in Resources */,
  2844. F79A65C32191D90F00FF6DCC /* NCSelect.storyboard in Resources */,
  2845. F7226EDC1EE4089300EBECB1 /* Main.storyboard in Resources */,
  2846. F7EFC0C6256BC77700461AAD /* NCMoreUserCell.xib in Resources */,
  2847. F702F2E725EE5C86008F8E80 /* NCAudioRecorderViewController.storyboard in Resources */,
  2848. AF56C1DC2784856200D8BAE2 /* NCActivityCommentView.xib in Resources */,
  2849. F7F4F10B27ECDBDB008676F9 /* Inconsolata-Light.ttf in Resources */,
  2850. 3704EB2A23D5A58400455C5B /* NCMenu.storyboard in Resources */,
  2851. AF93471C27E2361E002537EE /* NCShareAdvancePermissionHeader.xib in Resources */,
  2852. F7F1E54C2492369A00E42386 /* NCMediaCommandView.xib in Resources */,
  2853. F76032A0252F0F8E0015A421 /* NCTransferCell.xib in Resources */,
  2854. F7F4F10527ECDBDB008676F9 /* Inconsolata-SemiBold.ttf in Resources */,
  2855. F7A48415297028FC00BD1B49 /* Nextcloud Hub.png in Resources */,
  2856. F74C0437253F1CDC009762AB /* NCShares.storyboard in Resources */,
  2857. F7F4F10C27ECDBDB008676F9 /* Inconsolata-Regular.ttf in Resources */,
  2858. F7B8B83025681C3400967775 /* GoogleService-Info.plist in Resources */,
  2859. F7381EE5218218C9000B1560 /* NCOffline.storyboard in Resources */,
  2860. F7E0CDCF265CE8610044854E /* NCUserStatus.storyboard in Resources */,
  2861. F76D3CF32428B94E005DFA87 /* NCViewerPDFSearchCell.xib in Resources */,
  2862. F7CA212E25F1333300826ABB /* NCAccountRequest.storyboard in Resources */,
  2863. F717402D24F699A5000C87D5 /* NCFavorite.storyboard in Resources */,
  2864. F723B3DD22FC6D1D00301EFE /* NCShareCommentsCell.xib in Resources */,
  2865. F78ACD4B21903F850088454D /* NCTrashListCell.xib in Resources */,
  2866. AF93471927E2361E002537EE /* NCShareAdvancePermissionFooter.xib in Resources */,
  2867. F7725A61251F33BB00D125E0 /* NCFiles.storyboard in Resources */,
  2868. F700510122DF63AC003A3356 /* NCShare.storyboard in Resources */,
  2869. F787704F22E7019900F287A9 /* NCShareLinkCell.xib in Resources */,
  2870. F70753F72542A9C000972D44 /* NCViewerMediaPage.storyboard in Resources */,
  2871. F7F4F10627ECDBDB008676F9 /* Inconsolata-Medium.ttf in Resources */,
  2872. F7AC934A296193050002BC0F /* Reasons to use Nextcloud.pdf in Resources */,
  2873. F7A60F87292D215000FCE1F2 /* NCShareAccounts.storyboard in Resources */,
  2874. F7239877253D86D300257F49 /* NCEmptyView.xib in Resources */,
  2875. F761856A29E98543006EB3B0 /* NCIntro.storyboard in Resources */,
  2876. F747BA1F22354D2000971601 /* NCCreateFormUploadVoiceNote.storyboard in Resources */,
  2877. F719D9E0288D37A300762E33 /* NCColorPicker.storyboard in Resources */,
  2878. F7651A8A23A2A3F2001403D2 /* NCCreateFormUploadDocuments.storyboard in Resources */,
  2879. F7F4F10A27ECDBDB008676F9 /* Inconsolata-ExtraBold.ttf in Resources */,
  2880. F704B5E72430C06700632F5F /* NCCreateFormUploadConflictCell.xib in Resources */,
  2881. F7C9555321F0C4CA0024296E /* NCActivity.storyboard in Resources */,
  2882. F7BC287E26663F6C004D46C5 /* NCViewCertificateDetails.storyboard in Resources */,
  2883. F78ACD54219047D40088454D /* NCSectionFooter.xib in Resources */,
  2884. F704B5E32430AA6F00632F5F /* NCCreateFormUploadConflict.storyboard in Resources */,
  2885. F77B0F611D118A16002130FE /* Acknowledgements.rtf in Resources */,
  2886. F7EDE509262DA9D600414FE6 /* NCSelectCommandViewSelect.xib in Resources */,
  2887. F732D23327CF8AED000B0F1B /* NCPlayerToolBar.xib in Resources */,
  2888. F73D11FA253C5F4800DF9BEC /* NCViewerNextcloudText.storyboard in Resources */,
  2889. F7EDE51B262DD0C400414FE6 /* NCSelectCommandViewCopyMove.xib in Resources */,
  2890. F73B422B2476764F00A30FD3 /* NCNotification.storyboard in Resources */,
  2891. F7FF2CB12842159500EBB7A1 /* NCSectionHeader.xib in Resources */,
  2892. F7D1612023CF19E30039EBBF /* NCViewerRichWorkspace.storyboard in Resources */,
  2893. F77B0F631D118A16002130FE /* Localizable.strings in Resources */,
  2894. F774264A22EB4D0000B23912 /* NCSearchUserDropDownCell.xib in Resources */,
  2895. F7CB689A2541676B0050EC94 /* NCMore.storyboard in Resources */,
  2896. F77B0F7D1D118A16002130FE /* Images.xcassets in Resources */,
  2897. F73CB3B222E072A000AD728E /* NCShareHeaderView.xib in Resources */,
  2898. F7AE00FA230E81EB007ACF8A /* NCBrowserWeb.storyboard in Resources */,
  2899. F7EDE514262DC2CD00414FE6 /* NCSelectCommandViewSelect+CreateFolder.xib in Resources */,
  2900. F78ACD58219048040088454D /* NCSectionHeaderMenu.xib in Resources */,
  2901. F7501C322212E57500FB1415 /* NCMedia.storyboard in Resources */,
  2902. F74DE14425135B6800917068 /* NCTransfers.storyboard in Resources */,
  2903. F77910A525DD517B00CEDB9E /* Settings.bundle in Resources */,
  2904. F7CB68A0254169530050EC94 /* NCSettings.storyboard in Resources */,
  2905. );
  2906. runOnlyForDeploymentPostprocessing = 0;
  2907. };
  2908. F7C9738E28F17131002C43E2 /* Resources */ = {
  2909. isa = PBXResourcesBuildPhase;
  2910. buildActionMask = 2147483647;
  2911. files = (
  2912. );
  2913. runOnlyForDeploymentPostprocessing = 0;
  2914. };
  2915. /* End PBXResourcesBuildPhase section */
  2916. /* Begin PBXShellScriptBuildPhase section */
  2917. AFBFD01327551A54002244BC /* ShellScript */ = {
  2918. isa = PBXShellScriptBuildPhase;
  2919. alwaysOutOfDate = 1;
  2920. buildActionMask = 2147483647;
  2921. files = (
  2922. );
  2923. inputFileListPaths = (
  2924. );
  2925. inputPaths = (
  2926. );
  2927. outputFileListPaths = (
  2928. );
  2929. outputPaths = (
  2930. );
  2931. runOnlyForDeploymentPostprocessing = 0;
  2932. shellPath = /bin/sh;
  2933. shellScript = "if test -d \"/opt/homebrew/bin/\"; then\n PATH=\"/opt/homebrew/bin/:${PATH}\"\nfi\n\nexport PATH\n\nif which swiftlint >/dev/null; then\n swiftlint\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
  2934. };
  2935. /* End PBXShellScriptBuildPhase section */
  2936. /* Begin PBXSourcesBuildPhase section */
  2937. 2C33C47B23E2C475005F963B /* Sources */ = {
  2938. isa = PBXSourcesBuildPhase;
  2939. buildActionMask = 2147483647;
  2940. files = (
  2941. F785EEA52461A4CF00B3F945 /* CCUtility.m in Sources */,
  2942. 2C1D5D7923E2DE9100334ABB /* NCBrand.swift in Sources */,
  2943. F770768A263A8A2500A1BA94 /* NCUtilityFileSystem.swift in Sources */,
  2944. F76D364928A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  2945. F7817CFD29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  2946. AF4BF62127562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  2947. F702F2D225EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  2948. F7707689263A896A00A1BA94 /* UIImage+Extension.swift in Sources */,
  2949. 2C1D5D7523E2DE3300334ABB /* NCDatabase.swift in Sources */,
  2950. F72FD3BA297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  2951. F7E98C1927E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  2952. 2C1D5D7623E2DE3300334ABB /* NCManageDatabase.swift in Sources */,
  2953. F7D68FD028CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  2954. F343A4C12A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  2955. F7245927289BB59300474787 /* ThreadSafeDictionary.swift in Sources */,
  2956. 2C33C48223E2C475005F963B /* NotificationService.swift in Sources */,
  2957. AF4BF617275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  2958. F7BF9D872934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  2959. F749B64F297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  2960. D575039F27146F93008DC9DC /* String+Extension.swift in Sources */,
  2961. F769CA1A2966EA3C00039397 /* ComponentView.swift in Sources */,
  2962. F757CC8829E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  2963. F73D5E4A246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  2964. F79B646326CA661600838ACA /* UIControl+Extension.swift in Sources */,
  2965. F78A10C429322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  2966. F75CA1482962F13700B01130 /* HUDView.swift in Sources */,
  2967. AF4BF61C27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  2968. AF817EF4274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  2969. F78E2D6B29AF02DB0024D4F3 /* Database.swift in Sources */,
  2970. F7817CFF29802D1A00FFBC65 /* NCPushNotificationEncryption.m in Sources */,
  2971. F798F0EC2588060A000DAFFD /* UIColor+Extension.swift in Sources */,
  2972. F343A4B92A1E084400DDA874 /* PHAsset+Extension.swift in Sources */,
  2973. F763D2A32A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  2974. F749B656297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  2975. F782FDC424E6933900666099 /* NCUtility.swift in Sources */,
  2976. );
  2977. runOnlyForDeploymentPostprocessing = 0;
  2978. };
  2979. AF8ED1F52757821000B8DBC4 /* Sources */ = {
  2980. isa = PBXSourcesBuildPhase;
  2981. buildActionMask = 2147483647;
  2982. files = (
  2983. AF70C14D27F3484D00E13DF2 /* SharePermissionTest.swift in Sources */,
  2984. AF3F909A28213BEA0048A93E /* UserAgentTests.swift in Sources */,
  2985. AF36077627BFB019001A243D /* ParallelWorkerTest.swift in Sources */,
  2986. AF8ED1FC2757821000B8DBC4 /* NextcloudTests.swift in Sources */,
  2987. AF8ED2032757822700B8DBC4 /* NCGlobalTests.swift in Sources */,
  2988. F78E2D6C29AF02DB0024D4F3 /* Database.swift in Sources */,
  2989. F7817CFE29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  2990. );
  2991. runOnlyForDeploymentPostprocessing = 0;
  2992. };
  2993. F70716DF2987F81400E72C1D /* Sources */ = {
  2994. isa = PBXSourcesBuildPhase;
  2995. buildActionMask = 2147483647;
  2996. files = (
  2997. F7490E8329882C84009DCE94 /* NCManageDatabase+LayoutForView.swift in Sources */,
  2998. F7490E7629882BF3009DCE94 /* NCUserBaseUrl.swift in Sources */,
  2999. F7490E8029882C76009DCE94 /* NCManageDatabase+Avatar.swift in Sources */,
  3000. F343A4B82A1E084300DDA874 /* PHAsset+Extension.swift in Sources */,
  3001. F78E2D6A29AF02DB0024D4F3 /* Database.swift in Sources */,
  3002. F7490E7429882BCC009DCE94 /* NCManageDatabase.swift in Sources */,
  3003. F7490E6E29882B56009DCE94 /* NCBrand.swift in Sources */,
  3004. F7490E8129882C79009DCE94 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3005. F7490E8629882C99009DCE94 /* NCUtilityFileSystem.swift in Sources */,
  3006. F763D2A22A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3007. F343A4C02A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  3008. F7490E8529882C8C009DCE94 /* NCManageDatabase+Video.swift in Sources */,
  3009. F7490E8C29882D02009DCE94 /* CCUtility.m in Sources */,
  3010. F7490E7729882C10009DCE94 /* UIColor+Extension.swift in Sources */,
  3011. F70716E62987F81500E72C1D /* DocumentActionViewController.swift in Sources */,
  3012. F7490E8429882C89009DCE94 /* NCManageDatabase+Share.swift in Sources */,
  3013. F7490E6F29882B67009DCE94 /* UIImage+Extension.swift in Sources */,
  3014. F7490E7E29882C6E009DCE94 /* NCManageDatabase+Account.swift in Sources */,
  3015. F7490E7329882BC8009DCE94 /* NCDatabase.swift in Sources */,
  3016. F7490E7029882B9B009DCE94 /* NCManageDatabase+Metadata.swift in Sources */,
  3017. F7490E6C29882AEA009DCE94 /* String+Extension.swift in Sources */,
  3018. F7490E6B29882A92009DCE94 /* NCGlobal.swift in Sources */,
  3019. F7490E7529882BE2009DCE94 /* NCManageDatabase+Directory.swift in Sources */,
  3020. F7490E7929882C2F009DCE94 /* NCElementsJSON.swift in Sources */,
  3021. F7490E8729882CA8009DCE94 /* ThreadSafeDictionary.swift in Sources */,
  3022. F757CC8729E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3023. F7490E8229882C80009DCE94 /* NCManageDatabase+E2EE.swift in Sources */,
  3024. F7490E7829882C28009DCE94 /* NCUtility.swift in Sources */,
  3025. F7490E7F29882C73009DCE94 /* NCManageDatabase+Activity.swift in Sources */,
  3026. );
  3027. runOnlyForDeploymentPostprocessing = 0;
  3028. };
  3029. F71459B51D12E3B700CAFEEC /* Sources */ = {
  3030. isa = PBXSourcesBuildPhase;
  3031. buildActionMask = 2147483647;
  3032. files = (
  3033. F7245925289BB59100474787 /* ThreadSafeDictionary.swift in Sources */,
  3034. F73D5E48246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  3035. F7EDE4E5262D7BBE00414FE6 /* NCSectionHeaderFooter.swift in Sources */,
  3036. F7BF9D852934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3037. F79EC78926316AC4004E59D6 /* NCPopupViewController.swift in Sources */,
  3038. F7C30DFB291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */,
  3039. F7817CFB29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3040. AF4BF61F27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3041. F7A0D1362591FBC5008F8A13 /* String+Extension.swift in Sources */,
  3042. F7EDE4D6262D7B9600414FE6 /* NCListCell.swift in Sources */,
  3043. F7707687263A853700A1BA94 /* NCContentPresenter.swift in Sources */,
  3044. F343A4B62A1E084200DDA874 /* PHAsset+Extension.swift in Sources */,
  3045. F70460532499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  3046. F70BFC7520E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3047. AF22B20C277C6F4D00DAB0CC /* NCShareCell.swift in Sources */,
  3048. F7E98C1727E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3049. F79B646126CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3050. F77C973A2953143A00FDDD09 /* NCCameraRoll.swift in Sources */,
  3051. F7EDE4CC262D7B6F00414FE6 /* NCEmptyDataSet.swift in Sources */,
  3052. F7C30E01291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */,
  3053. AF4BF61A27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3054. AF4BF615275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3055. F798F0E225880608000DAFFD /* UIColor+Extension.swift in Sources */,
  3056. AF3FDCC32796F3FB00710F60 /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */,
  3057. AF817EF2274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3058. F78E2D6829AF02DB0024D4F3 /* Database.swift in Sources */,
  3059. F78295311F962EFA00A572F5 /* NCEndToEndEncryption.m in Sources */,
  3060. F7C30DFE291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */,
  3061. F74AF3A5247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  3062. AF1A9B6527D0CC0500F17A9E /* UIAlertController+Extension.swift in Sources */,
  3063. AF22B206277B4E4C00DAB0CC /* NCCreateFormUploadConflict.swift in Sources */,
  3064. F7BD71E62636EAFC00643C34 /* NCNetworkingE2EE.swift in Sources */,
  3065. F7F878AF1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3066. AF22B218277D196700DAB0CC /* NCShareExtension+Files.swift in Sources */,
  3067. F702F2D025EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3068. F343A4BE2A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  3069. F7EDE4DB262D7BA200414FE6 /* NCCellProtocol.swift in Sources */,
  3070. F7EDE4D1262D7B8400414FE6 /* NCDataSource.swift in Sources */,
  3071. F71459D21D12E3B700CAFEEC /* CCUtility.m in Sources */,
  3072. F75A9EE723796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3073. AF730AFA27843E4C00B7520E /* NCShareExtension+NCDelegate.swift in Sources */,
  3074. F749B64D297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3075. F72FD3B8297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3076. F7EDE4E0262D7BAF00414FE6 /* NCGridCell.swift in Sources */,
  3077. F7A76DC8256A71CD00119AB3 /* UIImage+Extension.swift in Sources */,
  3078. F7B8CD96261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  3079. F763D2A02A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3080. F757CC8529E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3081. F7BAADC91ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3082. F7817D0129802D5F00FFBC65 /* NCViewCertificateDetails.swift in Sources */,
  3083. F7D57C8B26317BDE00DE301D /* NCAccountRequest.swift in Sources */,
  3084. F7C30DF7291BC0D30017149B /* NCNetworkingE2EEUpload.swift in Sources */,
  3085. F78A10C229322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3086. F7D68FCE28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3087. AF22B217277D196700DAB0CC /* NCShareExtension+DataSource.swift in Sources */,
  3088. F76D364728A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3089. F749B654297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3090. F780710A1EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3091. F79EC77F26316193004E59D6 /* NCRenameFile.swift in Sources */,
  3092. AF22B208277B4E4C00DAB0CC /* NCCreateFormUploadConflictCell.swift in Sources */,
  3093. F7148041262EBE4000693E51 /* NCShareExtension.swift in Sources */,
  3094. F76B3CCF1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3095. F7BAADCC1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3096. );
  3097. runOnlyForDeploymentPostprocessing = 0;
  3098. };
  3099. F7346E0C28B0EF5B006CE2D2 /* Sources */ = {
  3100. isa = PBXSourcesBuildPhase;
  3101. buildActionMask = 2147483647;
  3102. files = (
  3103. F78302FD28B4C42B00B84583 /* NCUserBaseUrl.swift in Sources */,
  3104. F793E5A128B76541005E4B02 /* NotificationCenter+MainThread.swift in Sources */,
  3105. F76DEE9928F808AF0041B1C9 /* LockscreenWidgetView.swift in Sources */,
  3106. F7817D0029802D3D00FFBC65 /* NCViewCertificateDetails.swift in Sources */,
  3107. F78302F928B4C3E600B84583 /* NCManageDatabase+Account.swift in Sources */,
  3108. F7E0710128B13BB00001B882 /* DashboardData.swift in Sources */,
  3109. F783030328B4C4DD00B84583 /* ThreadSafeDictionary.swift in Sources */,
  3110. F77ED59128C9CE9D00E24ED0 /* ToolbarData.swift in Sources */,
  3111. F78302F728B4C3C900B84583 /* NCManageDatabase.swift in Sources */,
  3112. F7346E1628B0EF5C006CE2D2 /* Widget.swift in Sources */,
  3113. F78302F828B4C3E100B84583 /* NCManageDatabase+Activity.swift in Sources */,
  3114. F783030228B4C4B800B84583 /* NCUtility.swift in Sources */,
  3115. F711D63128F44801003F43C8 /* IntentHandler.swift in Sources */,
  3116. F76DEE9728F808AF0041B1C9 /* LockscreenData.swift in Sources */,
  3117. F72EA95A28B7BD0D00C88F0C /* FilesWidgetView.swift in Sources */,
  3118. F78302FE28B4C44700B84583 /* NCBrand.swift in Sources */,
  3119. F749B64B297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3120. F7817CF929801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3121. F343A4B42A1E084100DDA874 /* PHAsset+Extension.swift in Sources */,
  3122. F793E59F28B764F6005E4B02 /* NCContentPresenter.swift in Sources */,
  3123. F76DEE9828F808AF0041B1C9 /* LockscreenWidgetProvider.swift in Sources */,
  3124. F78A10C029322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3125. F78302FA28B4C3EA00B84583 /* NCManageDatabase+Metadata.swift in Sources */,
  3126. F78E2D6629AF02DB0024D4F3 /* Database.swift in Sources */,
  3127. F783030728B4C52800B84583 /* UIColor+Extension.swift in Sources */,
  3128. F783030028B4C45800B84583 /* NCGlobal.swift in Sources */,
  3129. F793E59D28B761E7005E4B02 /* NCNetworking.swift in Sources */,
  3130. F78302FC28B4C3F300B84583 /* NCElementsJSON.swift in Sources */,
  3131. F7BF9D832934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3132. F757CC8329E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3133. F749B652297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3134. F783030628B4C51E00B84583 /* String+Extension.swift in Sources */,
  3135. F763D29E2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3136. F77ED59328C9CEA000E24ED0 /* ToolbarWidgetProvider.swift in Sources */,
  3137. F72A17D828B221E300F3F159 /* DashboardWidgetView.swift in Sources */,
  3138. F77ED59528C9CEA400E24ED0 /* ToolbarWidgetView.swift in Sources */,
  3139. F78302FB28B4C3EE00B84583 /* NCManageDatabase+Video.swift in Sources */,
  3140. F72EA95228B7BA2A00C88F0C /* DashboardWidgetProvider.swift in Sources */,
  3141. F343A4BC2A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  3142. F793E5A228B76580005E4B02 /* NCNetworkingChunkedUpload.swift in Sources */,
  3143. F783031228B4C8EC00B84583 /* CCUtility.m in Sources */,
  3144. F72EA95828B7BC4F00C88F0C /* FilesData.swift in Sources */,
  3145. F793E59E28B763C2005E4B02 /* NCAskAuthorization.swift in Sources */,
  3146. F78302FF28B4C45000B84583 /* NCUtilityFileSystem.swift in Sources */,
  3147. F75DD766290ABB25002EB562 /* Intent.intentdefinition in Sources */,
  3148. F78302F628B4C3C500B84583 /* NCDatabase.swift in Sources */,
  3149. F7D68FCD28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3150. F72FD3B6297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3151. F783030128B4C49700B84583 /* UIImage+Extension.swift in Sources */,
  3152. F72EA95428B7BABA00C88F0C /* FilesWidgetProvider.swift in Sources */,
  3153. );
  3154. runOnlyForDeploymentPostprocessing = 0;
  3155. };
  3156. F771E3CC20E2392D00AFB62D /* Sources */ = {
  3157. isa = PBXSourcesBuildPhase;
  3158. buildActionMask = 2147483647;
  3159. files = (
  3160. F771E3F720E239B500AFB62D /* FileProviderExtension+Actions.swift in Sources */,
  3161. F7245926289BB59300474787 /* ThreadSafeDictionary.swift in Sources */,
  3162. F76673F022C90434007ED366 /* FileProviderUtility.swift in Sources */,
  3163. F763D2A12A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3164. F7434B3420E23FD700417916 /* NCDatabase.swift in Sources */,
  3165. F757CC8629E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3166. F702F2D125EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3167. F76D364828A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3168. F7817D0229802D7700FFBC65 /* NCViewCertificateDetails.swift in Sources */,
  3169. F7434B3820E2400600417916 /* NCBrand.swift in Sources */,
  3170. F785EE9E2461A09900B3F945 /* NCNetworking.swift in Sources */,
  3171. F749B655297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3172. F771E3D320E2392D00AFB62D /* FileProviderExtension.swift in Sources */,
  3173. F73D5E49246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  3174. F771E3D520E2392D00AFB62D /* FileProviderItem.swift in Sources */,
  3175. AF4BF616275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3176. F343A4B72A1E084300DDA874 /* PHAsset+Extension.swift in Sources */,
  3177. F7434B3620E23FE000417916 /* NCManageDatabase.swift in Sources */,
  3178. F798F0E725880609000DAFFD /* UIColor+Extension.swift in Sources */,
  3179. F7D68FCF28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3180. AF4BF61B27562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3181. F70460542499095400BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  3182. F78A10C329322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3183. F7BF9D862934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3184. F7E98C1827E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3185. F785EEA42461A4A600B3F945 /* NCUtility.swift in Sources */,
  3186. F79B646226CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3187. F78E2D6929AF02DB0024D4F3 /* Database.swift in Sources */,
  3188. F749B64E297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3189. AF817EF3274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3190. F771E3F320E239A600AFB62D /* FileProviderData.swift in Sources */,
  3191. F7B8CD9B261AF401007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  3192. F7A0D1372591FBC5008F8A13 /* String+Extension.swift in Sources */,
  3193. F771E3D720E2392D00AFB62D /* FileProviderEnumerator.swift in Sources */,
  3194. F74AF3A6247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  3195. F7817CFC29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3196. F7A76DCD256A71CE00119AB3 /* UIImage+Extension.swift in Sources */,
  3197. F771E3F820E239B500AFB62D /* FileProviderExtension+Thumbnail.swift in Sources */,
  3198. F343A4BF2A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  3199. AF4BF62027562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3200. F785EEA62461A4FB00B3F945 /* CCUtility.m in Sources */,
  3201. F73ADD2226554FD10069EA0D /* NCContentPresenter.swift in Sources */,
  3202. F72FD3B9297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3203. );
  3204. runOnlyForDeploymentPostprocessing = 0;
  3205. };
  3206. F77B0DEF1D118A16002130FE /* Sources */ = {
  3207. isa = PBXSourcesBuildPhase;
  3208. buildActionMask = 2147483647;
  3209. files = (
  3210. F77444F522281649000D5EB0 /* NCGridMediaCell.swift in Sources */,
  3211. F78C6FDE296D677300C952C3 /* NCContextMenu.swift in Sources */,
  3212. F769CA172965AB7C00039397 /* NCUploadAssets.swift in Sources */,
  3213. F7AE00F8230E81CB007ACF8A /* NCBrowserWeb.swift in Sources */,
  3214. F702F30825EE5D47008F8E80 /* NCPopupViewController.swift in Sources */,
  3215. F733598125C1C188002ABA72 /* NCAskAuthorization.swift in Sources */,
  3216. 370D26AF248A3D7A00121797 /* NCCellProtocol.swift in Sources */,
  3217. F77B0DF51D118A16002130FE /* CCUtility.m in Sources */,
  3218. F70D87D025EE6E58008CBBBD /* NCRenameFile.swift in Sources */,
  3219. F71CD6CA2930D7B1006C95C1 /* NCApplicationHandle.swift in Sources */,
  3220. F790110E21415BF600D7B136 /* NCViewerRichdocument.swift in Sources */,
  3221. F78ACD4021903CC20088454D /* NCGridCell.swift in Sources */,
  3222. F761856B29E98543006EB3B0 /* NCIntroViewController.swift in Sources */,
  3223. F75B0ABD244C4DBB00E58DCA /* NCActionCenter.swift in Sources */,
  3224. AF935067276B84E700BD078F /* NCMenu+FloatingPanel.swift in Sources */,
  3225. F702F2CD25EE5B4F008F8E80 /* AppDelegate.swift in Sources */,
  3226. F769454022E9F077000A798A /* NCSharePaging.swift in Sources */,
  3227. F7EE66AD2A20B226009AE765 /* UILabel+Extension.swift in Sources */,
  3228. F78ACD4221903CE00088454D /* NCListCell.swift in Sources */,
  3229. F76D3CF12428B40E005DFA87 /* NCViewerPDFSearch.swift in Sources */,
  3230. F7245924289BB50C00474787 /* ThreadSafeDictionary.swift in Sources */,
  3231. F73F537F1E929C8500F8678D /* NCMore.swift in Sources */,
  3232. F702F2CF25EE5B5C008F8E80 /* NCGlobal.swift in Sources */,
  3233. F72CD63A25C19EBF00F46F9A /* NCAutoUpload.swift in Sources */,
  3234. AF93471D27E2361E002537EE /* NCShareAdvancePermissionFooter.swift in Sources */,
  3235. AF1A9B6427D0CA1E00F17A9E /* UIAlertController+Extension.swift in Sources */,
  3236. F73B422C2476764F00A30FD3 /* NCNotification.swift in Sources */,
  3237. 371B5A2E23D0B04500FAFAE9 /* NCMenu.swift in Sources */,
  3238. F757CC8229E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3239. F79EDAA326B004980007D134 /* NCPlayerToolBar.swift in Sources */,
  3240. F77444F8222816D5000D5EB0 /* NCPickerViewController.swift in Sources */,
  3241. F77BB74A2899857B0090FC19 /* UINavigationController+Extension.swift in Sources */,
  3242. F72A47EC2487B06B005AD489 /* NCOperationQueue.swift in Sources */,
  3243. F769454622E9F1B0000A798A /* NCShareCommon.swift in Sources */,
  3244. F70753F12542A9A200972D44 /* NCViewerMedia.swift in Sources */,
  3245. F78A18B823CDE2B300F681F3 /* NCViewerRichWorkspace.swift in Sources */,
  3246. F7A60F86292D215000FCE1F2 /* NCShareAccounts.swift in Sources */,
  3247. F77910AB25DD53C700CEDB9E /* NCSettingsBundleHelper.swift in Sources */,
  3248. AF4BF61927562A4B0081CEEF /* NCManageDatabase+Metadata.swift in Sources */,
  3249. F78A18B623CDD07D00F681F3 /* NCViewerRichWorkspaceWebView.swift in Sources */,
  3250. AFA2AC8527849604008E1EA7 /* NCActivityCommentView.swift in Sources */,
  3251. AFCE353727E4ED7B00FEA6C2 /* NCShareCells.swift in Sources */,
  3252. AF36077127BFA4E8001A243D /* ParallelWorker.swift in Sources */,
  3253. F75A9EE623796C6F0044CFCE /* NCNetworking.swift in Sources */,
  3254. F758B460212C56A400515F55 /* NCScan.swift in Sources */,
  3255. F78ACD52219046DC0088454D /* NCSectionHeaderFooter.swift in Sources */,
  3256. F710D2022405826100A6033D /* NCViewer+Menu.swift in Sources */,
  3257. F765E9CD295C585800A09ED8 /* NCUploadScanDocument.swift in Sources */,
  3258. F77A697D250A0FBC00FF1708 /* NCCollectionViewCommon+Menu.swift in Sources */,
  3259. F7BF9D822934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3260. AF7E504E27A2D8FF00B5E4AF /* UIBarButton+Extension.swift in Sources */,
  3261. F78A10BF29322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3262. F704B5E92430C0B800632F5F /* NCCreateFormUploadConflictCell.swift in Sources */,
  3263. F72D404923D2082500A97FD0 /* NCViewerNextcloudText.swift in Sources */,
  3264. AFCE353927E5DE0500FEA6C2 /* NCShare+Helper.swift in Sources */,
  3265. F77BB746289984CA0090FC19 /* UIViewController+Extension.swift in Sources */,
  3266. F700510522DF6A89003A3356 /* NCShare.swift in Sources */,
  3267. F72D1007210B6882009C96B7 /* NCPushNotificationEncryption.m in Sources */,
  3268. F785EE9D246196DF00B3F945 /* NCNetworkingE2EE.swift in Sources */,
  3269. F76673ED22C901F6007ED366 /* FileProviderDomain.swift in Sources */,
  3270. F7A321AD1E9E6AD50069AD1B /* CCAdvanced.m in Sources */,
  3271. F77B0E4F1D118A16002130FE /* CCManageAutoUpload.m in Sources */,
  3272. F7BAADC81ED5A87C00B7EAD4 /* NCDatabase.swift in Sources */,
  3273. F75C0C4823D1FAE300163CC8 /* NCRichWorkspaceCommon.swift in Sources */,
  3274. F78ACD4A21903F850088454D /* NCTrashListCell+NCTrashCellProtocol.swift in Sources */,
  3275. F7B8CD91261AF3F7007C1359 /* NCNetworkingChunkedUpload.swift in Sources */,
  3276. F757CC8D29E82D0500F31428 /* NCGroupfolders.swift in Sources */,
  3277. F760329F252F0F8E0015A421 /* NCTransferCell.swift in Sources */,
  3278. AF68326A27BE65A90010BF0B /* NCMenuAction.swift in Sources */,
  3279. F7682FE023C36B0500983A04 /* NCMainTabBar.swift in Sources */,
  3280. F7A0D1352591FBC5008F8A13 /* String+Extension.swift in Sources */,
  3281. F77B0E5F1D118A16002130FE /* NCSettings.m in Sources */,
  3282. F7F9D1BB25397CE000D9BFF5 /* NCViewer.swift in Sources */,
  3283. AF730AF827834B1400B7520E /* NCShare+NCCellDelegate.swift in Sources */,
  3284. F70460522499061800BB98A7 /* NotificationCenter+MainThread.swift in Sources */,
  3285. F78F74362163781100C2ADAD /* NCTrash.swift in Sources */,
  3286. AF817EF1274BC781009ED85B /* NCUserBaseUrl.swift in Sources */,
  3287. AF2D7C7C2742556F00ADF566 /* NCShareLinkCell.swift in Sources */,
  3288. F7E41316294A19B300839300 /* UIView+Extension.swift in Sources */,
  3289. F7C30E00291BD2610017149B /* NCNetworkingE2EERename.swift in Sources */,
  3290. F7651A8B23A2A3F2001403D2 /* NCCreateFormUploadDocuments.swift in Sources */,
  3291. F74AF3A4247FB6AE00AC767B /* NCUtilityFileSystem.swift in Sources */,
  3292. F7239871253D86B600257F49 /* NCEmptyDataSet.swift in Sources */,
  3293. AFCE353327E4ED1900FEA6C2 /* UIToolbar+Extension.swift in Sources */,
  3294. 8491B1CD273BBA82001C8C5B /* UIViewController+Menu.swift in Sources */,
  3295. F761856C29E98543006EB3B0 /* NCIntroCollectionViewCell.swift in Sources */,
  3296. F75DD765290ABB25002EB562 /* Intent.intentdefinition in Sources */,
  3297. F702F2F725EE5CED008F8E80 /* NCLogin.swift in Sources */,
  3298. F7E98C1627E0D0FC001F9F19 /* NCManageDatabase+Video.swift in Sources */,
  3299. F7F4F11227ECDC52008676F9 /* UIFont+Extension.swift in Sources */,
  3300. AF93471A27E2361E002537EE /* NCShareAdvancePermissionHeader.swift in Sources */,
  3301. F7F878AE1FB9E3B900599E4F /* NCEndToEndMetadata.swift in Sources */,
  3302. 3781B9B023DB2B7E006B4B1D /* AppDelegate+Menu.swift in Sources */,
  3303. F73D5E47246DE09200DF6467 /* NCElementsJSON.swift in Sources */,
  3304. F710D1F52405770F00A6033D /* NCViewerPDF.swift in Sources */,
  3305. F7B6B70427C4E7FA00A7F6EB /* NCScan+CollectionView.swift in Sources */,
  3306. F7C30DF6291BC0CA0017149B /* NCNetworkingE2EEUpload.swift in Sources */,
  3307. F7501C332212E57500FB1415 /* NCMedia.swift in Sources */,
  3308. F70BFC7420E0FA7D00C67599 /* NCUtility.swift in Sources */,
  3309. F79EDAA526B004980007D134 /* NCPlayer.swift in Sources */,
  3310. F7C1EEA525053A9C00866ACC /* NCDataSource.swift in Sources */,
  3311. F713FF002472764100214AF6 /* UIImage+animatedGIF.m in Sources */,
  3312. AFCE353527E4ED5900FEA6C2 /* DateFormatter+Extension.swift in Sources */,
  3313. F718C24E254D507B00C5C256 /* NCViewerMediaDetailView.swift in Sources */,
  3314. F7145610296433C80038D028 /* NCDocumentCamera.swift in Sources */,
  3315. F7381EE1218218C9000B1560 /* NCOffline.swift in Sources */,
  3316. F719D9E2288D396100762E33 /* NCColorPicker.swift in Sources */,
  3317. F78071091EDAB65800EAFFF6 /* NSNotificationCenter+MainThread.m in Sources */,
  3318. F79B646026CA661600838ACA /* UIControl+Extension.swift in Sources */,
  3319. F7CA212D25F1333300826ABB /* NCAccountRequest.swift in Sources */,
  3320. F765F73125237E3F00391DBE /* NCRecent.swift in Sources */,
  3321. F76B3CCE1EAE01BD00921AC9 /* NCBrand.swift in Sources */,
  3322. F7581D2425EFDDDF004DC699 /* NCMedia+Menu.swift in Sources */,
  3323. F738D4902756740100CD1D38 /* NCLoginNavigationController.swift in Sources */,
  3324. F77B0E981D118A16002130FE /* CCManageAccount.m in Sources */,
  3325. F769CA192966EA3C00039397 /* ComponentView.swift in Sources */,
  3326. AF93474C27E34120002537EE /* NCUtility+Image.swift in Sources */,
  3327. F702F30125EE5D2C008F8E80 /* NYMnemonic.m in Sources */,
  3328. AF93474E27E3F212002537EE /* NCShareNewUserAddComment.swift in Sources */,
  3329. F7C30DFD291BD0B80017149B /* NCNetworkingE2EEDelete.swift in Sources */,
  3330. F72FD3B5297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3331. AF93471227E2341B002537EE /* NCShare+Menu.swift in Sources */,
  3332. F7EFA47825ADBA500083159A /* NCViewerProviderContextMenu.swift in Sources */,
  3333. F755BD9B20594AC7008C5FBB /* NCService.swift in Sources */,
  3334. F7E8A391295DC5E0006CB2D0 /* View+Extension.swift in Sources */,
  3335. AFD33240276A02C100F5AE02 /* UIApplication+Extension.swift in Sources */,
  3336. F79B869B265E19D40085C0E0 /* NSMutableAttributedString+Extension.swift in Sources */,
  3337. F7B7504B2397D38F004E13EC /* UIImage+Extension.swift in Sources */,
  3338. F7EFC0CD256BF8DD00461AAD /* NCUserStatus.swift in Sources */,
  3339. AF3FDCC22796ECC300710F60 /* NCTrash+CollectionView.swift in Sources */,
  3340. F70D7C3725FFBF82002B9E34 /* NCCollectionViewCommon.swift in Sources */,
  3341. F76D364628A4F8BF00214537 /* NCActivityIndicator.swift in Sources */,
  3342. F7020FCE2233D7F700B7297D /* NCCreateFormUploadVoiceNote.swift in Sources */,
  3343. F7134186259747BA00768D21 /* NCPushNotification.m in Sources */,
  3344. F726EEEC1FED1C820030B9C8 /* NCEndToEndInitialize.swift in Sources */,
  3345. F79A65C62191D95E00FF6DCC /* NCSelect.swift in Sources */,
  3346. F75D19E325EFE09000D74598 /* NCTrash+Menu.swift in Sources */,
  3347. F7FC5EE12A1768D700D921F5 /* NCCapabilitiesView.swift in Sources */,
  3348. F70CAE3A1F8CF31A008125FD /* NCEndToEndEncryption.m in Sources */,
  3349. AF93471B27E2361E002537EE /* NCShareAdvancePermission.swift in Sources */,
  3350. F77BC3ED293E528A005F2B08 /* NCConfigServer.swift in Sources */,
  3351. F70753EB2542A99800972D44 /* NCViewerMediaPage.swift in Sources */,
  3352. F7817CF829801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3353. F749B651297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3354. F7FAFD3A28BFA948000777FE /* NCNotification+Menu.swift in Sources */,
  3355. F74C0436253F1CDC009762AB /* NCShares.swift in Sources */,
  3356. F7AC1CB028AB94490032D99F /* Array+Extension.swift in Sources */,
  3357. F7AE00F5230D5F9E007ACF8A /* NCLoginWeb.swift in Sources */,
  3358. F707C26521A2DC5200F6181E /* NCStoreReview.swift in Sources */,
  3359. F7BAADCB1ED5A87C00B7EAD4 /* NCManageDatabase.swift in Sources */,
  3360. F77C97392953131000FDDD09 /* NCCameraRoll.swift in Sources */,
  3361. F343A4B32A1E01FF00DDA874 /* PHAsset+Extension.swift in Sources */,
  3362. F70968A424212C4E00ED60E5 /* NCLivePhoto.swift in Sources */,
  3363. F7C30DFA291BCF790017149B /* NCNetworkingE2EECreateFolder.swift in Sources */,
  3364. F7BC288026663F85004D46C5 /* NCViewCertificateDetails.swift in Sources */,
  3365. F702F2E625EE5C86008F8E80 /* NCAudioRecorderViewController.swift in Sources */,
  3366. D5B6AA7827200C7200D49C24 /* NCActivityTableViewCell.swift in Sources */,
  3367. F745B253222D88AE00346520 /* NCLoginQRCode.swift in Sources */,
  3368. F7CBC31C24F78E79004D3812 /* NCSortMenu.swift in Sources */,
  3369. F769454822E9F20D000A798A /* NCShareNetworking.swift in Sources */,
  3370. F749B64A297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3371. F7C9555521F0C5470024296E /* NCActivity.swift in Sources */,
  3372. F7725A60251F33BB00D125E0 /* NCFiles.swift in Sources */,
  3373. F704B5E52430AA8000632F5F /* NCCreateFormUploadConflict.swift in Sources */,
  3374. F765608F23BF813600765969 /* NCContentPresenter.swift in Sources */,
  3375. F343A4BB2A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  3376. F7D68FCC28CB9051009139F3 /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3377. F78E2D6529AF02DB0024D4F3 /* Database.swift in Sources */,
  3378. F70CEF5623E9C7E50007035B /* UIColor+Extension.swift in Sources */,
  3379. F75CA1472962F13700B01130 /* HUDView.swift in Sources */,
  3380. F7A48413297022E000BD1B49 /* ViewerQuickLook.swift in Sources */,
  3381. F77BB748289985270090FC19 /* UITabBarController+Extension.swift in Sources */,
  3382. F763D29D2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3383. F75AC2431F1F62450073EC19 /* NCManageAutoUploadFileName.swift in Sources */,
  3384. F7A7FA6329265CF4000603EF /* NCManageE2EE.swift in Sources */,
  3385. F7C7B489245EBA4100D93E60 /* NCViewerQuickLook.swift in Sources */,
  3386. F758B45E212C569D00515F55 /* NCScanCell.swift in Sources */,
  3387. F7581D1A25EFDA61004DC699 /* NCLoginWeb+Menu.swift in Sources */,
  3388. F7F4F11027ECDC4A008676F9 /* UIDevice+Extension.swift in Sources */,
  3389. F77B0ED11D118A16002130FE /* Acknowledgements.m in Sources */,
  3390. F70D8D8124A4A9BF000A5756 /* NCNetworkingProcessUpload.swift in Sources */,
  3391. F7D96FCC246ED7E200536D73 /* NCNetworkingCheckRemoteUser.swift in Sources */,
  3392. F7E4D9C422ED929B003675FD /* NCShareCommentsCell.swift in Sources */,
  3393. F717402E24F699A5000C87D5 /* NCFavorite.swift in Sources */,
  3394. AF2D7C7E2742559100ADF566 /* NCShareUserCell.swift in Sources */,
  3395. AF7E505027A2D92300B5E4AF /* NCSelectableNavigationView.swift in Sources */,
  3396. F74DE14325135B6800917068 /* NCTransfers.swift in Sources */,
  3397. AF4BF614275629E20081CEEF /* NCManageDatabase+Account.swift in Sources */,
  3398. AF4BF61E27562B3F0081CEEF /* NCManageDatabase+Activity.swift in Sources */,
  3399. );
  3400. runOnlyForDeploymentPostprocessing = 0;
  3401. };
  3402. F7C9738C28F17131002C43E2 /* Sources */ = {
  3403. isa = PBXSourcesBuildPhase;
  3404. buildActionMask = 2147483647;
  3405. files = (
  3406. F78A10C129322E8A008499B8 /* NCManageDatabase+Directory.swift in Sources */,
  3407. F343A4BD2A1E734600DDA874 /* Optional+Extensions.swift in Sources */,
  3408. F7A8D73528F17E16008BBE1C /* NCManageDatabase.swift in Sources */,
  3409. F7A8D74428F1827B008BBE1C /* ThreadSafeDictionary.swift in Sources */,
  3410. F7C9739528F17131002C43E2 /* IntentHandler.swift in Sources */,
  3411. F7A8D73D28F181D3008BBE1C /* NCUtilityFileSystem.swift in Sources */,
  3412. F7A8D74528F1828E008BBE1C /* CCUtility.m in Sources */,
  3413. F75DD767290ABB25002EB562 /* Intent.intentdefinition in Sources */,
  3414. F749B64C297B0CBB00087535 /* NCManageDatabase+Share.swift in Sources */,
  3415. F7A8D73F28F181EF008BBE1C /* NCGlobal.swift in Sources */,
  3416. F749B653297B0F2400087535 /* NCManageDatabase+Avatar.swift in Sources */,
  3417. F763D29F2A249C4500A3C901 /* NCManageDatabase+Capabilities.swift in Sources */,
  3418. F7A8D74328F1826F008BBE1C /* String+Extension.swift in Sources */,
  3419. F7A8D73728F17E1E008BBE1C /* NCManageDatabase+Account.swift in Sources */,
  3420. F7A8D73B28F17E2C008BBE1C /* NCElementsJSON.swift in Sources */,
  3421. F7817CFA29801A3500FFBC65 /* Data+Extension.swift in Sources */,
  3422. F7BF9D842934CA21009EE9A6 /* NCManageDatabase+LayoutForView.swift in Sources */,
  3423. F7A8D73C28F181BC008BBE1C /* NCBrand.swift in Sources */,
  3424. F7A8D74228F18261008BBE1C /* NCUtility.swift in Sources */,
  3425. F7A8D73A28F17E28008BBE1C /* NCManageDatabase+Video.swift in Sources */,
  3426. F7A8D73828F17E21008BBE1C /* NCManageDatabase+DashboardWidget.swift in Sources */,
  3427. F7A8D73928F17E25008BBE1C /* NCManageDatabase+Metadata.swift in Sources */,
  3428. F343A4B52A1E084200DDA874 /* PHAsset+Extension.swift in Sources */,
  3429. F72FD3B7297ED49A00075D28 /* NCManageDatabase+E2EE.swift in Sources */,
  3430. F7A8D74128F18254008BBE1C /* UIColor+Extension.swift in Sources */,
  3431. F7A8D73428F17E12008BBE1C /* NCDatabase.swift in Sources */,
  3432. F7A8D74028F18212008BBE1C /* UIImage+Extension.swift in Sources */,
  3433. F757CC8429E7F88B00F31428 /* NCManageDatabase+Groupfolders.swift in Sources */,
  3434. F78E2D6729AF02DB0024D4F3 /* Database.swift in Sources */,
  3435. F7A8D73628F17E1A008BBE1C /* NCManageDatabase+Activity.swift in Sources */,
  3436. F7A8D73E28F181E2008BBE1C /* NCUserBaseUrl.swift in Sources */,
  3437. );
  3438. runOnlyForDeploymentPostprocessing = 0;
  3439. };
  3440. /* End PBXSourcesBuildPhase section */
  3441. /* Begin PBXTargetDependency section */
  3442. 2C33C48523E2C475005F963B /* PBXTargetDependency */ = {
  3443. isa = PBXTargetDependency;
  3444. target = 2C33C47E23E2C475005F963B /* Notification Service Extension */;
  3445. targetProxy = 2C33C48423E2C475005F963B /* PBXContainerItemProxy */;
  3446. };
  3447. AF8ED1FE2757821000B8DBC4 /* PBXTargetDependency */ = {
  3448. isa = PBXTargetDependency;
  3449. target = F77B0DEB1D118A16002130FE /* Nextcloud */;
  3450. targetProxy = AF8ED1FD2757821000B8DBC4 /* PBXContainerItemProxy */;
  3451. };
  3452. F70716EC2987F81500E72C1D /* PBXTargetDependency */ = {
  3453. isa = PBXTargetDependency;
  3454. target = F70716E22987F81400E72C1D /* File Provider Extension UI */;
  3455. targetProxy = F70716EB2987F81500E72C1D /* PBXContainerItemProxy */;
  3456. };
  3457. F7145A321D12E65F00CAFEEC /* PBXTargetDependency */ = {
  3458. isa = PBXTargetDependency;
  3459. target = F71459B41D12E3B700CAFEEC /* Share */;
  3460. targetProxy = F7145A311D12E65F00CAFEEC /* PBXContainerItemProxy */;
  3461. };
  3462. F7346E1B28B0EF5E006CE2D2 /* PBXTargetDependency */ = {
  3463. isa = PBXTargetDependency;
  3464. target = F7346E0F28B0EF5B006CE2D2 /* Widget */;
  3465. targetProxy = F7346E1A28B0EF5E006CE2D2 /* PBXContainerItemProxy */;
  3466. };
  3467. F771E3EA20E2392E00AFB62D /* PBXTargetDependency */ = {
  3468. isa = PBXTargetDependency;
  3469. target = F771E3CF20E2392D00AFB62D /* File Provider Extension */;
  3470. targetProxy = F771E3E920E2392E00AFB62D /* PBXContainerItemProxy */;
  3471. };
  3472. F7C9739828F17131002C43E2 /* PBXTargetDependency */ = {
  3473. isa = PBXTargetDependency;
  3474. target = F7C9738F28F17131002C43E2 /* WidgetDashboardIntentHandler */;
  3475. targetProxy = F7C9739728F17131002C43E2 /* PBXContainerItemProxy */;
  3476. };
  3477. /* End PBXTargetDependency section */
  3478. /* Begin PBXVariantGroup section */
  3479. F70716E72987F81500E72C1D /* MainInterface.storyboard */ = {
  3480. isa = PBXVariantGroup;
  3481. children = (
  3482. F70716E82987F81500E72C1D /* Base */,
  3483. );
  3484. name = MainInterface.storyboard;
  3485. sourceTree = "<group>";
  3486. };
  3487. F72685E927C78E490019EF5E /* InfoPlist.strings */ = {
  3488. isa = PBXVariantGroup;
  3489. children = (
  3490. F72685E827C78E490019EF5E /* en */,
  3491. F7AA41B827C7CF4600494705 /* ca */,
  3492. F7AA41B927C7CF4B00494705 /* zh-Hans */,
  3493. F7AA41BA27C7CF5000494705 /* zh-Hant-TW */,
  3494. F7AA41BB27C7CF5100494705 /* cs-CZ */,
  3495. F7AA41BC27C7CF5300494705 /* da */,
  3496. F7AA41BD27C7CF5400494705 /* nl */,
  3497. F7AA41BE27C7CF5600494705 /* ja-JP */,
  3498. F7AA41BF27C7CF5700494705 /* fr */,
  3499. F7AA41C027C7CF5800494705 /* en-GB */,
  3500. F7AA41C127C7CF5900494705 /* gl */,
  3501. F7AA41C227C7CF5A00494705 /* ka-GE */,
  3502. F7AA41C327C7CF5B00494705 /* de */,
  3503. F7AA41C427C7CF5C00494705 /* hu */,
  3504. F7AA41C527C7CF5D00494705 /* is */,
  3505. F7AA41C627C7CF5E00494705 /* it */,
  3506. F7AA41C727C7CF6000494705 /* tr */,
  3507. F7AA41C827C7CF6200494705 /* es-HN */,
  3508. F7AA41C927C7CF6300494705 /* es-DO */,
  3509. F7AA41CA27C7CF6400494705 /* ko */,
  3510. F7AA41CB27C7CF6500494705 /* nb-NO */,
  3511. F7AA41CC27C7CF6600494705 /* pl */,
  3512. F7AA41CD27C7CF6700494705 /* pt-BR */,
  3513. F7AA41CE27C7CF6800494705 /* pt-PT */,
  3514. F7AA41CF27C7CF6900494705 /* ru */,
  3515. F7AA41D027C7CF6900494705 /* sk-SK */,
  3516. F7AA41D127C7CF6A00494705 /* sr */,
  3517. F7AA41D227C7CF6C00494705 /* es-CO */,
  3518. F7AA41D327C7CF6D00494705 /* es-CL */,
  3519. F7AA41D427C7CF6E00494705 /* es */,
  3520. F7AA41D527C7CF6F00494705 /* es-CR */,
  3521. F7AA41D627C7CF7100494705 /* es-GT */,
  3522. F7AA41D727C7CF7200494705 /* es-SV */,
  3523. F7AA41D827C7CF7300494705 /* es-EC */,
  3524. F7AA41D927C7CF7500494705 /* es-PR */,
  3525. F7AA41DA27C7CF7600494705 /* sv */,
  3526. F7AA41DB27C7CF7800494705 /* es-UY */,
  3527. F7AA41DC27C7CF7900494705 /* es-PE */,
  3528. F7AA41DD27C7CF7B00494705 /* es-419 */,
  3529. F7AA41DE27C7CF7D00494705 /* es-PA */,
  3530. F7AA41DF27C7CF7E00494705 /* es-PY */,
  3531. F7AA41E027C7CF8000494705 /* es-NI */,
  3532. F7AA41E127C7CF8100494705 /* es-MX */,
  3533. F79131C728AFB86E00577277 /* eu */,
  3534. );
  3535. name = InfoPlist.strings;
  3536. path = "Supporting Files";
  3537. sourceTree = "<group>";
  3538. };
  3539. F75DD769290ABB25002EB562 /* Intent.intentdefinition */ = {
  3540. isa = PBXVariantGroup;
  3541. children = (
  3542. F75DD768290ABB25002EB562 /* Base */,
  3543. F7BE7C25290AC8C9002ABB61 /* en */,
  3544. F7BE7C27290ADEFD002ABB61 /* eu */,
  3545. F7BE7C29290ADEFD002ABB61 /* ca */,
  3546. F7BE7C2B290ADEFE002ABB61 /* zh-Hans */,
  3547. F7BE7C2D290ADEFF002ABB61 /* cs-CZ */,
  3548. F7BE7C2F290ADF00002ABB61 /* zh-Hant-TW */,
  3549. F7BE7C31290ADF00002ABB61 /* nl */,
  3550. F7BE7C33290ADF01002ABB61 /* da */,
  3551. F7BE7C35290ADF03002ABB61 /* tr */,
  3552. F7BE7C37290ADF03002ABB61 /* sv */,
  3553. F7BE7C39290ADF04002ABB61 /* es-UY */,
  3554. F7BE7C3B290ADF04002ABB61 /* es-PR */,
  3555. F7BE7C3D290ADF05002ABB61 /* es-PE */,
  3556. F7BE7C3F290ADF06002ABB61 /* es-PY */,
  3557. F7BE7C41290ADF06002ABB61 /* es-PA */,
  3558. F7BE7C43290ADF06002ABB61 /* es-NI */,
  3559. F7BE7C45290ADF07002ABB61 /* es-MX */,
  3560. F7BE7C47290ADF07002ABB61 /* es-419 */,
  3561. F7BE7C49290ADF08002ABB61 /* es-HN */,
  3562. F7BE7C4B290ADF09002ABB61 /* ru */,
  3563. F7BE7C4D290ADF0A002ABB61 /* sr */,
  3564. F7BE7C4F290ADF0A002ABB61 /* sk-SK */,
  3565. F7BE7C51290ADF0B002ABB61 /* es */,
  3566. F7BE7C53290ADF0B002ABB61 /* es-CL */,
  3567. F7BE7C55290ADF0C002ABB61 /* es-CO */,
  3568. F7BE7C57290ADF0C002ABB61 /* es-CR */,
  3569. F7BE7C59290ADF0D002ABB61 /* es-DO */,
  3570. F7BE7C5B290ADF0D002ABB61 /* es-EC */,
  3571. F7BE7C5D290ADF0E002ABB61 /* es-SV */,
  3572. F7BE7C5F290ADF0E002ABB61 /* es-GT */,
  3573. F7BE7C61290ADF10002ABB61 /* en-GB */,
  3574. F7BE7C63290ADF10002ABB61 /* fr */,
  3575. F7BE7C65290ADF10002ABB61 /* gl */,
  3576. F7BE7C67290ADF11002ABB61 /* ka-GE */,
  3577. F7BE7C69290ADF11002ABB61 /* de */,
  3578. F7BE7C6B290ADF12002ABB61 /* hu */,
  3579. F7BE7C6D290ADF12002ABB61 /* is */,
  3580. F7BE7C6F290ADF13002ABB61 /* it */,
  3581. F7BE7C71290ADF13002ABB61 /* ja-JP */,
  3582. F7BE7C73290ADF14002ABB61 /* ko */,
  3583. F7BE7C75290ADF14002ABB61 /* nb-NO */,
  3584. F7BE7C77290ADF15002ABB61 /* pl */,
  3585. F7BE7C79290ADF16002ABB61 /* pt-BR */,
  3586. F7BE7C7B290ADF16002ABB61 /* pt-PT */,
  3587. );
  3588. name = Intent.intentdefinition;
  3589. sourceTree = "<group>";
  3590. };
  3591. F7E70DE91A24DE4100E1B66A /* Localizable.strings */ = {
  3592. isa = PBXVariantGroup;
  3593. children = (
  3594. F7151A811D477A4B00E6AF45 /* en */,
  3595. F7B1A7761EBB3C8000BFB6D1 /* de */,
  3596. F75B91E21ECAE17800199C96 /* fr */,
  3597. F75B91F71ECAE26300199C96 /* pt-BR */,
  3598. F75B923D1ECAE55E00199C96 /* ru */,
  3599. F7169A301EE59BB70086BD69 /* it */,
  3600. F7169A4C1EE59C640086BD69 /* tr */,
  3601. F78D6F461F0B7CB9002F9619 /* es-MX */,
  3602. F78D6F4D1F0B7CE4002F9619 /* nb-NO */,
  3603. F78D6F541F0B7D47002F9619 /* pl */,
  3604. F7DE9AB01F482FA5008DFE10 /* sv */,
  3605. F7CC04E61F5AD50D00378CEF /* es */,
  3606. F7D532461F5D4123006568B1 /* is */,
  3607. F7D5324D1F5D4137006568B1 /* nl */,
  3608. F7D532541F5D4155006568B1 /* sk-SK */,
  3609. F7D5328F1F5D443B006568B1 /* en-GB */,
  3610. F7D532A41F5D4461006568B1 /* zh-Hans */,
  3611. F77438EB1FCD694900662C46 /* ka-GE */,
  3612. F77438F21FCD69D300662C46 /* hu */,
  3613. F77438F91FCD6A0D00662C46 /* zh-Hant-TW */,
  3614. F77439001FCD6B7F00662C46 /* sr */,
  3615. F77439071FCD6BF000662C46 /* es-CL */,
  3616. F774390E1FCD6C0C00662C46 /* es-CO */,
  3617. F77439151FCD6C4A00662C46 /* es-CR */,
  3618. F774391C1FCD6C6700662C46 /* es-DO */,
  3619. F77439231FCD6C8700662C46 /* es-EC */,
  3620. F774392A1FCD6CAA00662C46 /* es-GT */,
  3621. F77439311FCD6CC400662C46 /* es-HN */,
  3622. F77439381FCD6CDE00662C46 /* es-NI */,
  3623. F774393F1FCD6D0B00662C46 /* es-PA */,
  3624. F77439461FCD6D2300662C46 /* es-PE */,
  3625. F774394D1FCD6D3E00662C46 /* es-PR */,
  3626. F77439541FCD6D6100662C46 /* es-PY */,
  3627. F774395B1FCD6D8200662C46 /* es-SV */,
  3628. F77439621FCD6D9C00662C46 /* es-UY */,
  3629. F7BB04851FD58ACB00BBFD2A /* cs-CZ */,
  3630. F7320934201B812F008A0888 /* ko */,
  3631. F732093B201B81E4008A0888 /* es-419 */,
  3632. F70A07C8205285FB00DC1231 /* pt-PT */,
  3633. F7E45E6D21E75BF200579249 /* ja-JP */,
  3634. F753701822723D620041C76C /* gl */,
  3635. F753701922723E0D0041C76C /* ca */,
  3636. F753701A22723EC80041C76C /* da */,
  3637. F79131C628AFB86E00577277 /* eu */,
  3638. );
  3639. name = Localizable.strings;
  3640. path = "Supporting Files";
  3641. sourceTree = "<group>";
  3642. };
  3643. /* End PBXVariantGroup section */
  3644. /* Begin XCBuildConfiguration section */
  3645. 2C33C48723E2C475005F963B /* Debug */ = {
  3646. isa = XCBuildConfiguration;
  3647. buildSettings = {
  3648. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Notification_Service_Extension.entitlements";
  3649. GCC_PREPROCESSOR_DEFINITIONS = (
  3650. "$(inherited)",
  3651. EXTENSION,
  3652. EXTENSION_NOTIFICATION_SERVICE,
  3653. );
  3654. INFOPLIST_FILE = "$(SRCROOT)/Brand/Notification_Service_Extension.plist";
  3655. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3656. PRODUCT_NAME = "$(TARGET_NAME)";
  3657. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  3658. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3659. };
  3660. name = Debug;
  3661. };
  3662. 2C33C48823E2C475005F963B /* Release */ = {
  3663. isa = XCBuildConfiguration;
  3664. buildSettings = {
  3665. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Notification_Service_Extension.entitlements";
  3666. GCC_PREPROCESSOR_DEFINITIONS = (
  3667. "$(inherited)",
  3668. EXTENSION,
  3669. EXTENSION_NOTIFICATION_SERVICE,
  3670. );
  3671. INFOPLIST_FILE = "$(SRCROOT)/Brand/Notification_Service_Extension.plist";
  3672. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.Notification-Service-Extension";
  3673. PRODUCT_NAME = "$(TARGET_NAME)";
  3674. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_NOTIFICATION_SERVICE";
  3675. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Notification Service Extension/Notification_Service_Extension-Bridging-Header.h";
  3676. };
  3677. name = Release;
  3678. };
  3679. AF8ED1FF2757821000B8DBC4 /* Debug */ = {
  3680. isa = XCBuildConfiguration;
  3681. buildSettings = {
  3682. BUNDLE_LOADER = "$(TEST_HOST)";
  3683. "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
  3684. ENABLE_HARDENED_RUNTIME = YES;
  3685. GENERATE_INFOPLIST_FILE = YES;
  3686. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
  3687. PRODUCT_NAME = "$(TARGET_NAME)";
  3688. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  3689. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
  3690. };
  3691. name = Debug;
  3692. };
  3693. AF8ED2002757821000B8DBC4 /* Release */ = {
  3694. isa = XCBuildConfiguration;
  3695. buildSettings = {
  3696. BUNDLE_LOADER = "$(TEST_HOST)";
  3697. "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
  3698. ENABLE_HARDENED_RUNTIME = YES;
  3699. GENERATE_INFOPLIST_FILE = YES;
  3700. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.NextcloudTests;
  3701. PRODUCT_NAME = "$(TARGET_NAME)";
  3702. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  3703. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Nextcloud.app/Nextcloud";
  3704. };
  3705. name = Release;
  3706. };
  3707. F70716EE2987F81600E72C1D /* Debug */ = {
  3708. isa = XCBuildConfiguration;
  3709. buildSettings = {
  3710. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension_UI.entitlements";
  3711. GCC_PREPROCESSOR_DEFINITIONS = (
  3712. "$(inherited)",
  3713. EXTENSION,
  3714. EXTENSION_FILE_PROVIDER_EXTENSION_UI,
  3715. );
  3716. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension_UI.plist";
  3717. INFOPLIST_KEY_CFBundleDisplayName = "File Provider Extension UI";
  3718. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3719. MTL_FAST_MATH = YES;
  3720. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension-UI";
  3721. PRODUCT_NAME = "$(TARGET_NAME)";
  3722. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION_UI";
  3723. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension UI/FileProviderExtensionUI-Bridging-Header.h";
  3724. };
  3725. name = Debug;
  3726. };
  3727. F70716EF2987F81600E72C1D /* Release */ = {
  3728. isa = XCBuildConfiguration;
  3729. buildSettings = {
  3730. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension_UI.entitlements";
  3731. GCC_PREPROCESSOR_DEFINITIONS = (
  3732. "$(inherited)",
  3733. EXTENSION,
  3734. EXTENSION_FILE_PROVIDER_EXTENSION_UI,
  3735. );
  3736. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension_UI.plist";
  3737. INFOPLIST_KEY_CFBundleDisplayName = "File Provider Extension UI";
  3738. MTL_ENABLE_DEBUG_INFO = NO;
  3739. MTL_FAST_MATH = YES;
  3740. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension-UI";
  3741. PRODUCT_NAME = "$(TARGET_NAME)";
  3742. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION_UI";
  3743. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension UI/FileProviderExtensionUI-Bridging-Header.h";
  3744. };
  3745. name = Release;
  3746. };
  3747. F7145A261D12E3B700CAFEEC /* Debug */ = {
  3748. isa = XCBuildConfiguration;
  3749. buildSettings = {
  3750. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Share.entitlements";
  3751. GCC_PREPROCESSOR_DEFINITIONS = (
  3752. "$(inherited)",
  3753. EXTENSION,
  3754. EXTENSION_SHARE,
  3755. );
  3756. INFOPLIST_FILE = "$(SRCROOT)/Brand/Share.plist";
  3757. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  3758. PRODUCT_NAME = "$(TARGET_NAME)";
  3759. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  3760. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Share/Share-Bridging-Header.h";
  3761. };
  3762. name = Debug;
  3763. };
  3764. F7145A271D12E3B700CAFEEC /* Release */ = {
  3765. isa = XCBuildConfiguration;
  3766. buildSettings = {
  3767. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Share.entitlements";
  3768. GCC_PREPROCESSOR_DEFINITIONS = (
  3769. "$(inherited)",
  3770. EXTENSION,
  3771. EXTENSION_SHARE,
  3772. );
  3773. INFOPLIST_FILE = "$(SRCROOT)/Brand/Share.plist";
  3774. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Share;
  3775. PRODUCT_NAME = "$(TARGET_NAME)";
  3776. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_SHARE";
  3777. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Share/Share-Bridging-Header.h";
  3778. };
  3779. name = Release;
  3780. };
  3781. F7346E1D28B0EF5E006CE2D2 /* Debug */ = {
  3782. isa = XCBuildConfiguration;
  3783. buildSettings = {
  3784. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3785. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  3786. CLANG_ANALYZER_NONNULL = YES;
  3787. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3788. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3789. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Widget.entitlements";
  3790. GCC_PREPROCESSOR_DEFINITIONS = (
  3791. "$(inherited)",
  3792. EXTENSION,
  3793. EXTENSION_WIDGET,
  3794. );
  3795. GENERATE_INFOPLIST_FILE = YES;
  3796. INFOPLIST_FILE = "$(SRCROOT)/Brand/Widget.plist";
  3797. INFOPLIST_KEY_CFBundleDisplayName = Nextcloud;
  3798. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3799. MTL_FAST_MATH = YES;
  3800. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Widget;
  3801. PRODUCT_NAME = "$(TARGET_NAME)";
  3802. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGET";
  3803. SWIFT_EMIT_LOC_STRINGS = YES;
  3804. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Widget/Widget-Brinding-header.h";
  3805. };
  3806. name = Debug;
  3807. };
  3808. F7346E1E28B0EF5E006CE2D2 /* Release */ = {
  3809. isa = XCBuildConfiguration;
  3810. buildSettings = {
  3811. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3812. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  3813. CLANG_ANALYZER_NONNULL = YES;
  3814. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3815. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3816. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/Widget.entitlements";
  3817. GCC_PREPROCESSOR_DEFINITIONS = (
  3818. "$(inherited)",
  3819. EXTENSION,
  3820. EXTENSION_WIDGET,
  3821. );
  3822. GENERATE_INFOPLIST_FILE = YES;
  3823. INFOPLIST_FILE = "$(SRCROOT)/Brand/Widget.plist";
  3824. INFOPLIST_KEY_CFBundleDisplayName = Nextcloud;
  3825. MTL_ENABLE_DEBUG_INFO = NO;
  3826. MTL_FAST_MATH = YES;
  3827. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.Widget;
  3828. PRODUCT_NAME = "$(TARGET_NAME)";
  3829. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGET";
  3830. SWIFT_EMIT_LOC_STRINGS = YES;
  3831. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Widget/Widget-Brinding-header.h";
  3832. VALIDATE_PRODUCT = YES;
  3833. };
  3834. name = Release;
  3835. };
  3836. F771E3F020E2392E00AFB62D /* Debug */ = {
  3837. isa = XCBuildConfiguration;
  3838. buildSettings = {
  3839. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension.entitlements";
  3840. GCC_PREPROCESSOR_DEFINITIONS = (
  3841. "$(inherited)",
  3842. EXTENSION,
  3843. EXTENSION_FILE_PROVIDER_EXTENSION,
  3844. );
  3845. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension.plist";
  3846. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  3847. PRODUCT_NAME = "$(TARGET_NAME)";
  3848. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  3849. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension/FileProviderExtension-Bridging-Header.h";
  3850. };
  3851. name = Debug;
  3852. };
  3853. F771E3F120E2392E00AFB62D /* Release */ = {
  3854. isa = XCBuildConfiguration;
  3855. buildSettings = {
  3856. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/File_Provider_Extension.entitlements";
  3857. GCC_PREPROCESSOR_DEFINITIONS = (
  3858. "$(inherited)",
  3859. EXTENSION,
  3860. EXTENSION_FILE_PROVIDER_EXTENSION,
  3861. );
  3862. INFOPLIST_FILE = "$(SRCROOT)/Brand/File_Provider_Extension.plist";
  3863. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.Nextcloud.File-Provider-Extension";
  3864. PRODUCT_NAME = "$(TARGET_NAME)";
  3865. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_FILE_PROVIDER_EXTENSION";
  3866. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/File Provider Extension/FileProviderExtension-Bridging-Header.h";
  3867. };
  3868. name = Release;
  3869. };
  3870. F77B0F9B1D118A16002130FE /* Debug */ = {
  3871. isa = XCBuildConfiguration;
  3872. buildSettings = {
  3873. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3874. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3875. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/iOSClient.entitlements";
  3876. INFOPLIST_FILE = "$(SRCROOT)/Brand/iOSClient.plist";
  3877. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  3878. PRODUCT_NAME = "$(TARGET_NAME)";
  3879. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  3880. };
  3881. name = Debug;
  3882. };
  3883. F77B0F9C1D118A16002130FE /* Release */ = {
  3884. isa = XCBuildConfiguration;
  3885. buildSettings = {
  3886. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3887. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3888. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand/iOSClient.entitlements";
  3889. INFOPLIST_FILE = "$(SRCROOT)/Brand/iOSClient.plist";
  3890. PRODUCT_BUNDLE_IDENTIFIER = "it.twsweb.$(PRODUCT_NAME:rfc1034identifier)";
  3891. PRODUCT_NAME = "$(TARGET_NAME)";
  3892. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/iOSClient/Nextcloud-Bridging-Header.h";
  3893. };
  3894. name = Release;
  3895. };
  3896. F7C9739B28F17132002C43E2 /* Debug */ = {
  3897. isa = XCBuildConfiguration;
  3898. buildSettings = {
  3899. CLANG_ANALYZER_NONNULL = YES;
  3900. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3901. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3902. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3903. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3904. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3905. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3906. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3907. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand//WidgetDashboardIntentHandler.entitlements";
  3908. DEBUG_INFORMATION_FORMAT = dwarf;
  3909. GCC_PREPROCESSOR_DEFINITIONS = (
  3910. "$(inherited)",
  3911. EXTENSION,
  3912. EXTENSION_WIDGETDASHBOARDINTENTHANDLER,
  3913. );
  3914. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3915. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3916. GENERATE_INFOPLIST_FILE = YES;
  3917. INFOPLIST_FILE = "$(SRCROOT)/Brand/WidgetDashboardIntentHandler.plist";
  3918. INFOPLIST_KEY_CFBundleDisplayName = WidgetDashboardIntentHandler;
  3919. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3920. MTL_FAST_MATH = YES;
  3921. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.WidgetDashboardIntentHandler;
  3922. PRODUCT_NAME = "$(TARGET_NAME)";
  3923. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGETDASHBOARDINTENTHANDLER";
  3924. SWIFT_EMIT_LOC_STRINGS = YES;
  3925. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/WidgetDashboardIntentHandler/WidgetDashboardIntentHandler-Brinding-header.h";
  3926. };
  3927. name = Debug;
  3928. };
  3929. F7C9739C28F17132002C43E2 /* Release */ = {
  3930. isa = XCBuildConfiguration;
  3931. buildSettings = {
  3932. CLANG_ANALYZER_NONNULL = YES;
  3933. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3934. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3935. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3936. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3937. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3938. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3939. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3940. CODE_SIGN_ENTITLEMENTS = "$(SRCROOT)/Brand//WidgetDashboardIntentHandler.entitlements";
  3941. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3942. ENABLE_NS_ASSERTIONS = NO;
  3943. GCC_PREPROCESSOR_DEFINITIONS = (
  3944. "$(inherited)",
  3945. EXTENSION,
  3946. EXTENSION_WIDGETDASHBOARDINTENTHANDLER,
  3947. );
  3948. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3949. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3950. GENERATE_INFOPLIST_FILE = YES;
  3951. INFOPLIST_FILE = "$(SRCROOT)/Brand/WidgetDashboardIntentHandler.plist";
  3952. INFOPLIST_KEY_CFBundleDisplayName = WidgetDashboardIntentHandler;
  3953. MTL_ENABLE_DEBUG_INFO = NO;
  3954. MTL_FAST_MATH = YES;
  3955. PRODUCT_BUNDLE_IDENTIFIER = it.twsweb.Nextcloud.WidgetDashboardIntentHandler;
  3956. PRODUCT_NAME = "$(TARGET_NAME)";
  3957. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) EXTENSION EXTENSION_WIDGETDASHBOARDINTENTHANDLER";
  3958. SWIFT_EMIT_LOC_STRINGS = YES;
  3959. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/WidgetDashboardIntentHandler/WidgetDashboardIntentHandler-Brinding-header.h";
  3960. VALIDATE_PRODUCT = YES;
  3961. };
  3962. name = Release;
  3963. };
  3964. F7F67BC91A24D27800EE80DA /* Debug */ = {
  3965. isa = XCBuildConfiguration;
  3966. buildSettings = {
  3967. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  3968. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3969. CLANG_ENABLE_MODULES = YES;
  3970. CLANG_ENABLE_OBJC_ARC = YES;
  3971. CLANG_ENABLE_OBJC_WEAK = YES;
  3972. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3973. CLANG_WARN_BOOL_CONVERSION = YES;
  3974. CLANG_WARN_COMMA = YES;
  3975. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3976. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3977. CLANG_WARN_EMPTY_BODY = YES;
  3978. CLANG_WARN_ENUM_CONVERSION = YES;
  3979. CLANG_WARN_INFINITE_RECURSION = YES;
  3980. CLANG_WARN_INT_CONVERSION = YES;
  3981. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3982. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  3983. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3984. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  3985. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3986. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3987. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3988. CLANG_WARN_UNREACHABLE_CODE = YES;
  3989. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3990. COPY_PHASE_STRIP = NO;
  3991. CURRENT_PROJECT_VERSION = 0;
  3992. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  3993. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3994. ENABLE_TESTABILITY = YES;
  3995. GCC_NO_COMMON_BLOCKS = YES;
  3996. GCC_OPTIMIZATION_LEVEL = 0;
  3997. GCC_PREPROCESSOR_DEFINITIONS = (
  3998. "$(inherited)",
  3999. DEBUG,
  4000. NC,
  4001. );
  4002. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4003. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  4004. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4005. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  4006. GCC_WARN_UNUSED_FUNCTION = YES;
  4007. GCC_WARN_UNUSED_VARIABLE = YES;
  4008. INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2023 Nextcloud. All rights reserved.";
  4009. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  4010. LD_RUNPATH_SEARCH_PATHS = (
  4011. "$(inherited)",
  4012. "@executable_path/Frameworks",
  4013. "@executable_path/../../Frameworks",
  4014. );
  4015. MARKETING_VERSION = 4.8.2;
  4016. ONLY_ACTIVE_ARCH = YES;
  4017. OTHER_LDFLAGS = "";
  4018. SDKROOT = iphoneos;
  4019. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC DEBUG";
  4020. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Brand/Nextcloud-Bridging-Header.h";
  4021. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4022. SWIFT_VERSION = 5.0;
  4023. TARGETED_DEVICE_FAMILY = "1,2";
  4024. };
  4025. name = Debug;
  4026. };
  4027. F7F67BCA1A24D27800EE80DA /* Release */ = {
  4028. isa = XCBuildConfiguration;
  4029. buildSettings = {
  4030. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  4031. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4032. CLANG_ENABLE_MODULES = YES;
  4033. CLANG_ENABLE_OBJC_ARC = YES;
  4034. CLANG_ENABLE_OBJC_WEAK = YES;
  4035. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4036. CLANG_WARN_BOOL_CONVERSION = YES;
  4037. CLANG_WARN_COMMA = YES;
  4038. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4039. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4040. CLANG_WARN_EMPTY_BODY = YES;
  4041. CLANG_WARN_ENUM_CONVERSION = YES;
  4042. CLANG_WARN_INFINITE_RECURSION = YES;
  4043. CLANG_WARN_INT_CONVERSION = YES;
  4044. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4045. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
  4046. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4047. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
  4048. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4049. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4050. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4051. CLANG_WARN_UNREACHABLE_CODE = YES;
  4052. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4053. COPY_PHASE_STRIP = NO;
  4054. CURRENT_PROJECT_VERSION = 0;
  4055. DEVELOPMENT_TEAM = NKUJUXUJ3B;
  4056. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4057. ENABLE_TESTABILITY = YES;
  4058. GCC_NO_COMMON_BLOCKS = YES;
  4059. GCC_PREPROCESSOR_DEFINITIONS = (
  4060. "$(inherited)",
  4061. NC,
  4062. );
  4063. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4064. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  4065. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4066. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  4067. GCC_WARN_UNUSED_FUNCTION = YES;
  4068. GCC_WARN_UNUSED_VARIABLE = YES;
  4069. INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2023 Nextcloud. All rights reserved.";
  4070. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  4071. LD_RUNPATH_SEARCH_PATHS = (
  4072. "$(inherited)",
  4073. "@executable_path/Frameworks",
  4074. "@executable_path/../../Frameworks",
  4075. );
  4076. MARKETING_VERSION = 4.8.2;
  4077. ONLY_ACTIVE_ARCH = YES;
  4078. OTHER_LDFLAGS = "";
  4079. SDKROOT = iphoneos;
  4080. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) NC";
  4081. SWIFT_COMPILATION_MODE = wholemodule;
  4082. SWIFT_OBJC_BRIDGING_HEADER = "$(SRCROOT)/Brand/Nextcloud-Bridging-Header.h";
  4083. SWIFT_OPTIMIZATION_LEVEL = "-O";
  4084. SWIFT_VERSION = 5.0;
  4085. TARGETED_DEVICE_FAMILY = "1,2";
  4086. };
  4087. name = Release;
  4088. };
  4089. /* End XCBuildConfiguration section */
  4090. /* Begin XCConfigurationList section */
  4091. 2C33C48923E2C475005F963B /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = {
  4092. isa = XCConfigurationList;
  4093. buildConfigurations = (
  4094. 2C33C48723E2C475005F963B /* Debug */,
  4095. 2C33C48823E2C475005F963B /* Release */,
  4096. );
  4097. defaultConfigurationIsVisible = 0;
  4098. defaultConfigurationName = Release;
  4099. };
  4100. AF8ED2012757821000B8DBC4 /* Build configuration list for PBXNativeTarget "NextcloudTests" */ = {
  4101. isa = XCConfigurationList;
  4102. buildConfigurations = (
  4103. AF8ED1FF2757821000B8DBC4 /* Debug */,
  4104. AF8ED2002757821000B8DBC4 /* Release */,
  4105. );
  4106. defaultConfigurationIsVisible = 0;
  4107. defaultConfigurationName = Release;
  4108. };
  4109. F70716F02987F81600E72C1D /* Build configuration list for PBXNativeTarget "File Provider Extension UI" */ = {
  4110. isa = XCConfigurationList;
  4111. buildConfigurations = (
  4112. F70716EE2987F81600E72C1D /* Debug */,
  4113. F70716EF2987F81600E72C1D /* Release */,
  4114. );
  4115. defaultConfigurationIsVisible = 0;
  4116. defaultConfigurationName = Release;
  4117. };
  4118. F7145A251D12E3B700CAFEEC /* Build configuration list for PBXNativeTarget "Share" */ = {
  4119. isa = XCConfigurationList;
  4120. buildConfigurations = (
  4121. F7145A261D12E3B700CAFEEC /* Debug */,
  4122. F7145A271D12E3B700CAFEEC /* Release */,
  4123. );
  4124. defaultConfigurationIsVisible = 0;
  4125. defaultConfigurationName = Release;
  4126. };
  4127. F7346E1F28B0EF5E006CE2D2 /* Build configuration list for PBXNativeTarget "Widget" */ = {
  4128. isa = XCConfigurationList;
  4129. buildConfigurations = (
  4130. F7346E1D28B0EF5E006CE2D2 /* Debug */,
  4131. F7346E1E28B0EF5E006CE2D2 /* Release */,
  4132. );
  4133. defaultConfigurationIsVisible = 0;
  4134. defaultConfigurationName = Release;
  4135. };
  4136. F771E3EF20E2392E00AFB62D /* Build configuration list for PBXNativeTarget "File Provider Extension" */ = {
  4137. isa = XCConfigurationList;
  4138. buildConfigurations = (
  4139. F771E3F020E2392E00AFB62D /* Debug */,
  4140. F771E3F120E2392E00AFB62D /* Release */,
  4141. );
  4142. defaultConfigurationIsVisible = 0;
  4143. defaultConfigurationName = Release;
  4144. };
  4145. F77B0F9A1D118A16002130FE /* Build configuration list for PBXNativeTarget "Nextcloud" */ = {
  4146. isa = XCConfigurationList;
  4147. buildConfigurations = (
  4148. F77B0F9B1D118A16002130FE /* Debug */,
  4149. F77B0F9C1D118A16002130FE /* Release */,
  4150. );
  4151. defaultConfigurationIsVisible = 0;
  4152. defaultConfigurationName = Release;
  4153. };
  4154. F7C9739A28F17132002C43E2 /* Build configuration list for PBXNativeTarget "WidgetDashboardIntentHandler" */ = {
  4155. isa = XCConfigurationList;
  4156. buildConfigurations = (
  4157. F7C9739B28F17132002C43E2 /* Debug */,
  4158. F7C9739C28F17132002C43E2 /* Release */,
  4159. );
  4160. defaultConfigurationIsVisible = 0;
  4161. defaultConfigurationName = Release;
  4162. };
  4163. F7F67BA31A24D27800EE80DA /* Build configuration list for PBXProject "Nextcloud" */ = {
  4164. isa = XCConfigurationList;
  4165. buildConfigurations = (
  4166. F7F67BC91A24D27800EE80DA /* Debug */,
  4167. F7F67BCA1A24D27800EE80DA /* Release */,
  4168. );
  4169. defaultConfigurationIsVisible = 0;
  4170. defaultConfigurationName = Release;
  4171. };
  4172. /* End XCConfigurationList section */
  4173. /* Begin XCRemoteSwiftPackageReference section */
  4174. F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
  4175. isa = XCRemoteSwiftPackageReference;
  4176. repositoryURL = "https://github.com/firebase/firebase-ios-sdk";
  4177. requirement = {
  4178. kind = upToNextMajorVersion;
  4179. minimumVersion = 8.9.0;
  4180. };
  4181. };
  4182. F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */ = {
  4183. isa = XCRemoteSwiftPackageReference;
  4184. repositoryURL = "https://github.com/realm/realm-swift";
  4185. requirement = {
  4186. kind = upToNextMajorVersion;
  4187. minimumVersion = 10.0.0;
  4188. };
  4189. };
  4190. F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */ = {
  4191. isa = XCRemoteSwiftPackageReference;
  4192. repositoryURL = "https://github.com/JonasGessner/JGProgressHUD.git";
  4193. requirement = {
  4194. kind = upToNextMajorVersion;
  4195. minimumVersion = 2.0.0;
  4196. };
  4197. };
  4198. F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */ = {
  4199. isa = XCRemoteSwiftPackageReference;
  4200. repositoryURL = "https://github.com/malcommac/SwiftRichString";
  4201. requirement = {
  4202. kind = upToNextMajorVersion;
  4203. minimumVersion = 3.7.2;
  4204. };
  4205. };
  4206. F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */ = {
  4207. isa = XCRemoteSwiftPackageReference;
  4208. repositoryURL = "https://github.com/marinofaggiana/TLPhotoPicker";
  4209. requirement = {
  4210. branch = master;
  4211. kind = branch;
  4212. };
  4213. };
  4214. F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */ = {
  4215. isa = XCRemoteSwiftPackageReference;
  4216. repositoryURL = "https://github.com/huri000/SwiftEntryKit";
  4217. requirement = {
  4218. kind = upToNextMajorVersion;
  4219. minimumVersion = 1.2.7;
  4220. };
  4221. };
  4222. F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */ = {
  4223. isa = XCRemoteSwiftPackageReference;
  4224. repositoryURL = "https://github.com/xmartlabs/XLForm";
  4225. requirement = {
  4226. kind = upToNextMajorVersion;
  4227. minimumVersion = 4.0.0;
  4228. };
  4229. };
  4230. F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */ = {
  4231. isa = XCRemoteSwiftPackageReference;
  4232. repositoryURL = "https://github.com/marinofaggiana/EasyTipView";
  4233. requirement = {
  4234. kind = upToNextMajorVersion;
  4235. minimumVersion = 2.0.0;
  4236. };
  4237. };
  4238. F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */ = {
  4239. isa = XCRemoteSwiftPackageReference;
  4240. repositoryURL = "https://github.com/SVGKit/SVGKit.git";
  4241. requirement = {
  4242. kind = upToNextMinorVersion;
  4243. minimumVersion = 3.0.0;
  4244. };
  4245. };
  4246. F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */ = {
  4247. isa = XCRemoteSwiftPackageReference;
  4248. repositoryURL = "https://github.com/cbpowell/MarqueeLabel";
  4249. requirement = {
  4250. kind = upToNextMajorVersion;
  4251. minimumVersion = 4.3.0;
  4252. };
  4253. };
  4254. F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */ = {
  4255. isa = XCRemoteSwiftPackageReference;
  4256. repositoryURL = "https://github.com/FabrizioBrancati/Queuer";
  4257. requirement = {
  4258. kind = upToNextMajorVersion;
  4259. minimumVersion = 2.0.0;
  4260. };
  4261. };
  4262. F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */ = {
  4263. isa = XCRemoteSwiftPackageReference;
  4264. repositoryURL = "https://github.com/kishikawakatsumi/UICKeyChainStore";
  4265. requirement = {
  4266. branch = master;
  4267. kind = branch;
  4268. };
  4269. };
  4270. F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */ = {
  4271. isa = XCRemoteSwiftPackageReference;
  4272. repositoryURL = "https://github.com/AssistoLab/DropDown";
  4273. requirement = {
  4274. branch = master;
  4275. kind = branch;
  4276. };
  4277. };
  4278. F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */ = {
  4279. isa = XCRemoteSwiftPackageReference;
  4280. repositoryURL = "https://github.com/scenee/FloatingPanel";
  4281. requirement = {
  4282. kind = upToNextMajorVersion;
  4283. minimumVersion = 2.0.0;
  4284. };
  4285. };
  4286. F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */ = {
  4287. isa = XCRemoteSwiftPackageReference;
  4288. repositoryURL = "https://github.com/krzyzanowskim/OpenSSL";
  4289. requirement = {
  4290. kind = upToNextMajorVersion;
  4291. minimumVersion = 1.0.0;
  4292. };
  4293. };
  4294. F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */ = {
  4295. isa = XCRemoteSwiftPackageReference;
  4296. repositoryURL = "https://github.com/httpswift/swifter.git";
  4297. requirement = {
  4298. branch = stable;
  4299. kind = branch;
  4300. };
  4301. };
  4302. F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */ = {
  4303. isa = XCRemoteSwiftPackageReference;
  4304. repositoryURL = "https://github.com/nextcloud/NextcloudKit";
  4305. requirement = {
  4306. kind = exactVersion;
  4307. version = 2.4.0;
  4308. };
  4309. };
  4310. F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = {
  4311. isa = XCRemoteSwiftPackageReference;
  4312. repositoryURL = "https://github.com/bmoliveira/MarkdownKit";
  4313. requirement = {
  4314. kind = upToNextMajorVersion;
  4315. minimumVersion = 1.7.1;
  4316. };
  4317. };
  4318. F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */ = {
  4319. isa = XCRemoteSwiftPackageReference;
  4320. repositoryURL = "https://github.com/ElaWorkshop/TagListView";
  4321. requirement = {
  4322. kind = upToNextMajorVersion;
  4323. minimumVersion = 1.0.0;
  4324. };
  4325. };
  4326. F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */ = {
  4327. isa = XCRemoteSwiftPackageReference;
  4328. repositoryURL = "https://github.com/rechsteiner/Parchment";
  4329. requirement = {
  4330. branch = main;
  4331. kind = branch;
  4332. };
  4333. };
  4334. F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */ = {
  4335. isa = XCRemoteSwiftPackageReference;
  4336. repositoryURL = "https://github.com/marinofaggiana/Mantis";
  4337. requirement = {
  4338. kind = exactVersion;
  4339. version = 1.0.0;
  4340. };
  4341. };
  4342. F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */ = {
  4343. isa = XCRemoteSwiftPackageReference;
  4344. repositoryURL = "https://github.com/yannickl/QRCodeReader.swift";
  4345. requirement = {
  4346. kind = upToNextMajorVersion;
  4347. minimumVersion = 10.1.1;
  4348. };
  4349. };
  4350. /* End XCRemoteSwiftPackageReference section */
  4351. /* Begin XCSwiftPackageProductDependency section */
  4352. F70716F829881CFA00E72C1D /* UICKeyChainStore */ = {
  4353. isa = XCSwiftPackageProductDependency;
  4354. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4355. productName = UICKeyChainStore;
  4356. };
  4357. F70821D729E59E6D001CA2D7 /* TagListView */ = {
  4358. isa = XCSwiftPackageProductDependency;
  4359. package = F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */;
  4360. productName = TagListView;
  4361. };
  4362. F70B86742642CE3B00ED5349 /* FirebaseCrashlytics */ = {
  4363. isa = XCSwiftPackageProductDependency;
  4364. package = F70B86732642CE3B00ED5349 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
  4365. productName = FirebaseCrashlytics;
  4366. };
  4367. F710FC79277B7D0000AA9FBF /* Realm */ = {
  4368. isa = XCSwiftPackageProductDependency;
  4369. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4370. productName = Realm;
  4371. };
  4372. F710FC7B277B7D0000AA9FBF /* RealmSwift */ = {
  4373. isa = XCSwiftPackageProductDependency;
  4374. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4375. productName = RealmSwift;
  4376. };
  4377. F710FC7F277B7D2700AA9FBF /* RealmSwift */ = {
  4378. isa = XCSwiftPackageProductDependency;
  4379. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4380. productName = RealmSwift;
  4381. };
  4382. F710FC83277B7D3500AA9FBF /* RealmSwift */ = {
  4383. isa = XCSwiftPackageProductDependency;
  4384. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4385. productName = RealmSwift;
  4386. };
  4387. F710FC87277B7D3F00AA9FBF /* RealmSwift */ = {
  4388. isa = XCSwiftPackageProductDependency;
  4389. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4390. productName = RealmSwift;
  4391. };
  4392. F72AD70C28C24B93006CB92D /* NextcloudKit */ = {
  4393. isa = XCSwiftPackageProductDependency;
  4394. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4395. productName = NextcloudKit;
  4396. };
  4397. F72AD70E28C24BA1006CB92D /* NextcloudKit */ = {
  4398. isa = XCSwiftPackageProductDependency;
  4399. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4400. productName = NextcloudKit;
  4401. };
  4402. F72AD71028C24BBB006CB92D /* NextcloudKit */ = {
  4403. isa = XCSwiftPackageProductDependency;
  4404. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4405. productName = NextcloudKit;
  4406. };
  4407. F72AD71228C24BCC006CB92D /* NextcloudKit */ = {
  4408. isa = XCSwiftPackageProductDependency;
  4409. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4410. productName = NextcloudKit;
  4411. };
  4412. F72CD01127A7E92400E59476 /* JGProgressHUD */ = {
  4413. isa = XCSwiftPackageProductDependency;
  4414. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  4415. productName = JGProgressHUD;
  4416. };
  4417. F72D7EB6263B1207000B3DFC /* MarkdownKit */ = {
  4418. isa = XCSwiftPackageProductDependency;
  4419. package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
  4420. productName = MarkdownKit;
  4421. };
  4422. F72DA9B325F53E4E00B87DB1 /* SwiftRichString */ = {
  4423. isa = XCSwiftPackageProductDependency;
  4424. package = F72DA9B225F53E4E00B87DB1 /* XCRemoteSwiftPackageReference "SwiftRichString" */;
  4425. productName = SwiftRichString;
  4426. };
  4427. F7346E2428B0FEFA006CE2D2 /* UICKeyChainStore */ = {
  4428. isa = XCSwiftPackageProductDependency;
  4429. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4430. productName = UICKeyChainStore;
  4431. };
  4432. F7346E2828B0FFF2006CE2D2 /* RealmSwift */ = {
  4433. isa = XCSwiftPackageProductDependency;
  4434. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4435. productName = RealmSwift;
  4436. };
  4437. F734B06528E75C0100E180D5 /* TLPhotoPicker */ = {
  4438. isa = XCSwiftPackageProductDependency;
  4439. package = F734B06428E75C0100E180D5 /* XCRemoteSwiftPackageReference "TLPhotoPicker" */;
  4440. productName = TLPhotoPicker;
  4441. };
  4442. F73ADD1B265546890069EA0D /* SwiftEntryKit */ = {
  4443. isa = XCSwiftPackageProductDependency;
  4444. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  4445. productName = SwiftEntryKit;
  4446. };
  4447. F73ADD2026554F8E0069EA0D /* SwiftEntryKit */ = {
  4448. isa = XCSwiftPackageProductDependency;
  4449. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  4450. productName = SwiftEntryKit;
  4451. };
  4452. F73ADD2326554FE20069EA0D /* SwiftEntryKit */ = {
  4453. isa = XCSwiftPackageProductDependency;
  4454. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  4455. productName = SwiftEntryKit;
  4456. };
  4457. F7490E7129882BB4009DCE94 /* RealmSwift */ = {
  4458. isa = XCSwiftPackageProductDependency;
  4459. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4460. productName = RealmSwift;
  4461. };
  4462. F7490E8829882CC8009DCE94 /* SwiftEntryKit */ = {
  4463. isa = XCSwiftPackageProductDependency;
  4464. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  4465. productName = SwiftEntryKit;
  4466. };
  4467. F7490E8A29882CE4009DCE94 /* NextcloudKit */ = {
  4468. isa = XCSwiftPackageProductDependency;
  4469. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4470. productName = NextcloudKit;
  4471. };
  4472. F74E771F277A2EF40013B958 /* XLForm */ = {
  4473. isa = XCSwiftPackageProductDependency;
  4474. package = F74E771E277A2EF40013B958 /* XCRemoteSwiftPackageReference "XLForm" */;
  4475. productName = XLForm;
  4476. };
  4477. F753BA92281FD8020015BFB6 /* EasyTipView */ = {
  4478. isa = XCSwiftPackageProductDependency;
  4479. package = F753BA91281FD8010015BFB6 /* XCRemoteSwiftPackageReference "EasyTipView" */;
  4480. productName = EasyTipView;
  4481. };
  4482. F758A01127A7F03E0069468B /* JGProgressHUD */ = {
  4483. isa = XCSwiftPackageProductDependency;
  4484. package = F72CD01027A7E92400E59476 /* XCRemoteSwiftPackageReference "JGProgressHUD" */;
  4485. productName = JGProgressHUD;
  4486. };
  4487. F75EAED726D2552E00F4320E /* MarqueeLabel */ = {
  4488. isa = XCSwiftPackageProductDependency;
  4489. package = F75EAED626D2552E00F4320E /* XCRemoteSwiftPackageReference "MarqueeLabel" */;
  4490. productName = MarqueeLabel;
  4491. };
  4492. F76DA962277B760E0082465B /* Queuer */ = {
  4493. isa = XCSwiftPackageProductDependency;
  4494. package = F76DA961277B760E0082465B /* XCRemoteSwiftPackageReference "Queuer" */;
  4495. productName = Queuer;
  4496. };
  4497. F76DA965277B76F30082465B /* UICKeyChainStore */ = {
  4498. isa = XCSwiftPackageProductDependency;
  4499. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4500. productName = UICKeyChainStore;
  4501. };
  4502. F76DA968277B77EA0082465B /* DropDown */ = {
  4503. isa = XCSwiftPackageProductDependency;
  4504. package = F76DA967277B77E90082465B /* XCRemoteSwiftPackageReference "DropDown" */;
  4505. productName = DropDown;
  4506. };
  4507. F770768D263A8C3400A1BA94 /* FloatingPanel */ = {
  4508. isa = XCSwiftPackageProductDependency;
  4509. package = F770768C263A8C3400A1BA94 /* XCRemoteSwiftPackageReference "FloatingPanel" */;
  4510. productName = FloatingPanel;
  4511. };
  4512. F77333872927A72100466E35 /* OpenSSL */ = {
  4513. isa = XCSwiftPackageProductDependency;
  4514. package = F77333862927A72100466E35 /* XCRemoteSwiftPackageReference "OpenSSL" */;
  4515. productName = OpenSSL;
  4516. };
  4517. F77BC3EA293E5268005F2B08 /* Swifter */ = {
  4518. isa = XCSwiftPackageProductDependency;
  4519. package = F77BC3E9293E5268005F2B08 /* XCRemoteSwiftPackageReference "swifter" */;
  4520. productName = Swifter;
  4521. };
  4522. F783030C28B4C59A00B84583 /* SwiftEntryKit */ = {
  4523. isa = XCSwiftPackageProductDependency;
  4524. package = F73ADD1A265546880069EA0D /* XCRemoteSwiftPackageReference "SwiftEntryKit" */;
  4525. productName = SwiftEntryKit;
  4526. };
  4527. F783034328B5142B00B84583 /* NextcloudKit */ = {
  4528. isa = XCSwiftPackageProductDependency;
  4529. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4530. productName = NextcloudKit;
  4531. };
  4532. F787AC08298BCB4A0001BB00 /* SVGKitSwift */ = {
  4533. isa = XCSwiftPackageProductDependency;
  4534. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  4535. productName = SVGKitSwift;
  4536. };
  4537. F787AC0A298BCB540001BB00 /* SVGKitSwift */ = {
  4538. isa = XCSwiftPackageProductDependency;
  4539. package = F75E57A725BF0D61002B72C2 /* XCRemoteSwiftPackageReference "SVGKit" */;
  4540. productName = SVGKitSwift;
  4541. };
  4542. F788ECC6263AAAFA00ADC67F /* MarkdownKit */ = {
  4543. isa = XCSwiftPackageProductDependency;
  4544. package = F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */;
  4545. productName = MarkdownKit;
  4546. };
  4547. F7A1050D29E587AF00FFD92B /* TagListView */ = {
  4548. isa = XCSwiftPackageProductDependency;
  4549. package = F7A1050C29E587AF00FFD92B /* XCRemoteSwiftPackageReference "TagListView" */;
  4550. productName = TagListView;
  4551. };
  4552. F7A8D72328F1771B008BBE1C /* NextcloudKit */ = {
  4553. isa = XCSwiftPackageProductDependency;
  4554. package = F783034028B511D200B84583 /* XCRemoteSwiftPackageReference "NextcloudKit" */;
  4555. productName = NextcloudKit;
  4556. };
  4557. F7A8D72728F17728008BBE1C /* RealmSwift */ = {
  4558. isa = XCSwiftPackageProductDependency;
  4559. package = F710FC78277B7CFF00AA9FBF /* XCRemoteSwiftPackageReference "realm-swift" */;
  4560. productName = RealmSwift;
  4561. };
  4562. F7A8D72D28F17764008BBE1C /* UICKeyChainStore */ = {
  4563. isa = XCSwiftPackageProductDependency;
  4564. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4565. productName = UICKeyChainStore;
  4566. };
  4567. F7BB7E4627A18C56009B9F29 /* Parchment */ = {
  4568. isa = XCSwiftPackageProductDependency;
  4569. package = F7BB7E4527A18C56009B9F29 /* XCRemoteSwiftPackageReference "Parchment" */;
  4570. productName = Parchment;
  4571. };
  4572. F7D56B192972405500FA46C4 /* Mantis */ = {
  4573. isa = XCSwiftPackageProductDependency;
  4574. package = F7D56B182972405400FA46C4 /* XCRemoteSwiftPackageReference "Mantis" */;
  4575. productName = Mantis;
  4576. };
  4577. F7EBCDCE277B81FF00A4EF67 /* UICKeyChainStore */ = {
  4578. isa = XCSwiftPackageProductDependency;
  4579. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4580. productName = UICKeyChainStore;
  4581. };
  4582. F7EBCDD0277B820D00A4EF67 /* UICKeyChainStore */ = {
  4583. isa = XCSwiftPackageProductDependency;
  4584. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4585. productName = UICKeyChainStore;
  4586. };
  4587. F7EBCDD2277B821700A4EF67 /* UICKeyChainStore */ = {
  4588. isa = XCSwiftPackageProductDependency;
  4589. package = F76DA964277B76F10082465B /* XCRemoteSwiftPackageReference "UICKeyChainStore" */;
  4590. productName = UICKeyChainStore;
  4591. };
  4592. F7ED547B25EEA65400956C55 /* QRCodeReader */ = {
  4593. isa = XCSwiftPackageProductDependency;
  4594. package = F7ED547A25EEA65400956C55 /* XCRemoteSwiftPackageReference "QRCodeReader" */;
  4595. productName = QRCodeReader;
  4596. };
  4597. /* End XCSwiftPackageProductDependency section */
  4598. };
  4599. rootObject = F7F67BA01A24D27800EE80DA /* Project object */;
  4600. }