project.pbxproj 290 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 54;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */; };
  10. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5822B15939E719628E9FF7C /* SnoozeRootView.swift */; };
  11. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */; };
  12. 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */; };
  13. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE02C5193D100615CC9 /* BolusIntent.swift */; };
  14. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */; };
  15. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */; };
  16. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */; };
  17. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */; };
  18. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */; };
  19. 11E79B132C5F2585007893C2 /* DynamicGlucoseColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11E79B122C5F2585007893C2 /* DynamicGlucoseColor.swift */; };
  20. 11E79B142C5F2585007893C2 /* DynamicGlucoseColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11E79B122C5F2585007893C2 /* DynamicGlucoseColor.swift */; };
  21. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */; };
  22. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19012CDB291D2CB900FB8210 /* LoopStats.swift */; };
  23. 190EBCC429FF136900BA767D /* StatConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */; };
  24. 190EBCC629FF138000BA767D /* StatConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC529FF138000BA767D /* StatConfigProvider.swift */; };
  25. 190EBCC829FF13AA00BA767D /* StatConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */; };
  26. 190EBCCB29FF13CB00BA767D /* StatConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */; };
  27. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */; };
  28. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
  29. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* Oref2_variables.swift */; };
  30. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193F6CDC2A512C8F001240FD /* Loops.swift */; };
  31. 195D80B42AF6973A00D25097 /* DynamicRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B32AF6973A00D25097 /* DynamicRootView.swift */; };
  32. 195D80B72AF697B800D25097 /* DynamicDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B62AF697B800D25097 /* DynamicDataFlow.swift */; };
  33. 195D80B92AF697F700D25097 /* DynamicProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B82AF697F700D25097 /* DynamicProvider.swift */; };
  34. 195D80BB2AF6980B00D25097 /* DynamicStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80BA2AF6980B00D25097 /* DynamicStateModel.swift */; };
  35. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBD29D052C200759F30 /* Icons.swift */; };
  36. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBF29D053AC00759F30 /* IconSelection.swift */; };
  37. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFC129D053D300759F30 /* IconImage.swift */; };
  38. 19795118275953E50044850D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  39. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  40. 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 199561C0275E61A50077B976 /* HealthKit.framework */; };
  41. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A9102F2A24BF6300C8951B /* StatsView.swift */; };
  42. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910352A24D6D700C8951B /* DateFilter.swift */; };
  43. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A910372A24EF3200C8951B /* ChartsView.swift */; };
  44. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B0EF2028F6D66200069496 /* Statistics.swift */; };
  45. 19D466A329AA2B80004D5F33 /* FPUConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */; };
  46. 19D466A529AA2BD4004D5F33 /* FPUConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */; };
  47. 19D466A729AA2C22004D5F33 /* FPUConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */; };
  48. 19D466AA29AA3099004D5F33 /* FPUConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */; };
  49. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D4E4EA29FC6A9F00351451 /* Charts.swift */; };
  50. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  51. 19DA48E929CD339C00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  52. 19DA48EA29CD339C00EEA1E7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */; };
  53. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */; };
  54. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */; };
  55. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */; };
  56. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */; };
  57. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */; };
  58. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF429F10FCF00314DDC /* StatProvider.swift */; };
  59. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF629F10FEE00314DDC /* StatStateModel.swift */; };
  60. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF929F1102A00314DDC /* StatRootView.swift */; };
  61. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  62. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  63. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* BolusProvider.swift */; };
  64. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */; };
  65. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */; };
  66. 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */; };
  67. 320D030F724170A637F06D50 /* (null) in Sources */ = {isa = PBXBuildFile; };
  68. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  69. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  70. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  71. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  72. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  73. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  74. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  75. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  76. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  77. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  78. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  79. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  80. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  81. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  82. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  83. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  84. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  85. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  86. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  87. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  88. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  89. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  90. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  91. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  92. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  93. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  94. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  95. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  96. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  97. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  98. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  99. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  100. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  101. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  102. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  103. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  104. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  105. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  106. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  107. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  108. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  109. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  110. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  111. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  112. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  113. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  114. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  115. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  116. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  117. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  118. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  119. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  120. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  121. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  122. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC025F2EA52002D6D5B /* Announcement.swift */; };
  123. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */; };
  124. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  125. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  126. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  127. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  128. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */; };
  129. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  130. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  131. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  132. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* FreeAPSApp.swift */; };
  133. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  134. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  135. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  136. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  137. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  138. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  139. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  140. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  141. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  142. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  143. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  144. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */; };
  145. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  146. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  147. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  148. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  149. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */; };
  150. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  151. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  152. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  153. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */; };
  154. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  155. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  156. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  157. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  158. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  159. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  160. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  161. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  162. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  163. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  164. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  165. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  166. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  167. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  168. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  169. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  170. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  171. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  172. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  173. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
  174. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
  175. 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
  176. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
  177. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
  178. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
  179. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
  180. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
  181. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
  182. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
  183. 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
  184. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
  185. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
  186. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
  187. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
  188. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
  189. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
  190. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
  191. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  192. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
  193. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
  194. 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  195. 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752927554D5700975559 /* FreeAPSApp.swift */; };
  196. 38E8752C27554D5700975559 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752B27554D5700975559 /* MainView.swift */; };
  197. 38E8752E27554D5700975559 /* NotificationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752D27554D5700975559 /* NotificationController.swift */; };
  198. 38E8753027554D5700975559 /* NotificationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8752F27554D5700975559 /* NotificationView.swift */; };
  199. 38E8753227554D5700975559 /* ComplicationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8753127554D5700975559 /* ComplicationController.swift */; };
  200. 38E8753427554D5800975559 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753327554D5800975559 /* Assets.xcassets */; };
  201. 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38E8753627554D5800975559 /* Preview Assets.xcassets */; };
  202. 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = 38E8751C27554D5500975559 /* FreeAPSWatch.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  203. 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  204. 38E8754A275550BB00975559 /* CarbsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87549275550BB00975559 /* CarbsView.swift */; };
  205. 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754B2755548F00975559 /* WatchStateModel.swift */; };
  206. 38E8754F275556FA00975559 /* WatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8754E275556FA00975559 /* WatchManager.swift */; };
  207. 38E8755127555D0500975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
  208. 38E8755427561E9800975559 /* DataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755027555D0500975559 /* DataFlow.swift */; };
  209. 38E8755827567AE400975559 /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38E8755727567AE400975559 /* SwiftDate */; };
  210. 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  211. 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8755A27568A6700975559 /* ConfirmationView.swift */; };
  212. 38E8757927579D9200975559 /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  213. 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757A2757B1C300975559 /* TempTargetsView.swift */; };
  214. 38E8757D2757C45D00975559 /* BolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757C2757C45D00975559 /* BolusView.swift */; };
  215. 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  216. 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E8757F27595DC500975559 /* BolusConfirmationView.swift */; };
  217. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  218. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  219. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  220. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  221. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  222. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  223. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  224. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  225. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  226. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  227. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  228. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  229. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  230. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  231. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  232. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  233. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  234. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  235. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  236. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  237. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
  238. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  239. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */; };
  240. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */; };
  241. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  242. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  243. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  244. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  245. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */; };
  246. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */; };
  247. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581AC4382BE22ED10038760C /* JSONConverter.swift */; };
  248. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */; };
  249. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582FAE422C05102C00D1C13F /* CoreDataError.swift */; };
  250. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */; };
  251. 583684082BD195A700070A60 /* Determination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684072BD195A700070A60 /* Determination.swift */; };
  252. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */; };
  253. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */; };
  254. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */; };
  255. 587DA1F62B77F3DD00B28F8A /* SettingsRowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 587DA1F52B77F3DD00B28F8A /* SettingsRowView.swift */; };
  256. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */; };
  257. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F107732BD1A4D000B1A680 /* Determination+helper.swift */; };
  258. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */; };
  259. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */; };
  260. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */; };
  261. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  262. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  263. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  264. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65070A322BFDCB83006F213F /* TidepoolStartView.swift */; };
  265. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  266. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */; };
  267. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */; };
  268. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  269. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  270. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */; };
  271. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */; };
  272. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B1A8D232B14D91700E76752 /* Assets.xcassets */; };
  273. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  274. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */; };
  275. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
  276. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */; };
  277. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  278. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  279. 6EADD581738D64431902AC0A /* (null) in Sources */ = {isa = PBXBuildFile; };
  280. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
  281. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  282. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  283. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  284. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  285. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
  286. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  287. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */; };
  288. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  289. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  290. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  291. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */; };
  292. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */; };
  293. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */; };
  294. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */; };
  295. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */; };
  296. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  297. B7C465E9472624D8A2BE2A6A /* (null) in Sources */ = {isa = PBXBuildFile; };
  298. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */ = {isa = PBXBuildFile; productRef = B958F1B62BA0711600484851 /* MKRingProgressView */; };
  299. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */ = {isa = PBXBuildFile; fileRef = B9CAAEFB2AE70836000F68BC /* branch.txt */; };
  300. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
  301. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD0B2EF22C5998E600B3298F /* MealPresetView.swift */; };
  302. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1661302B82ADAB00256551 /* CustomProgressView.swift */; };
  303. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  304. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */; };
  305. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3CC0712B0B89D50013189E /* MainChartView.swift */; };
  306. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */; };
  307. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */; };
  308. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */; };
  309. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */; };
  310. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */; };
  311. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */; };
  312. BDB899882C564509006F3298 /* ForeCastChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899872C564509006F3298 /* ForeCastChart.swift */; };
  313. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */; };
  314. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDBAACF92C2D439700370AAE /* OverrideData.swift */; };
  315. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */; };
  316. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA462C3045AD00E5BBD0 /* Override.swift */; };
  317. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */; };
  318. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */; };
  319. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F822C10C5B600D51995 /* DataManager.swift */; };
  320. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F842C10C62E00D51995 /* GlucoseData.swift */; };
  321. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */; };
  322. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */; };
  323. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F942C10D27300D51995 /* DeterminationData.swift */; };
  324. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */; };
  325. BDFD165A2AE40438007F0DDA /* BolusRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFD16592AE40438007F0DDA /* BolusRootView.swift */; };
  326. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  327. C20BC6CE2C66FBFD002BC1C6 /* Rounding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C20BC6CD2C66FBFD002BC1C6 /* Rounding.swift */; };
  328. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  329. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  330. CC41E29A2B1E1F460070974F /* HistoryLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC41E2992B1E1F460070974F /* HistoryLayout.swift */; };
  331. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */; };
  332. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */; };
  333. CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */; };
  334. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */; };
  335. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */; };
  336. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */; };
  337. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */; };
  338. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */ = {isa = PBXBuildFile; fileRef = CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */; };
  339. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */; };
  340. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */; };
  341. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
  342. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
  343. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; };
  344. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  345. CE6B025728F350FF000C5502 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE6B025628F350FF000C5502 /* HealthKit.framework */; };
  346. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950232997D81700FA576E /* CGMSettingsView.swift */; };
  347. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950252998056D00FA576E /* CGMSetupView.swift */; };
  348. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3432A064973004BE681 /* AppShortcuts.swift */; };
  349. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */; };
  350. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */; };
  351. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */; };
  352. CE7CA3522A064973004BE681 /* ListTempPresetsIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */; };
  353. CE7CA3532A064973004BE681 /* tempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3492A064973004BE681 /* tempPresetIntent.swift */; };
  354. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */; };
  355. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34C2A064973004BE681 /* ListStateIntent.swift */; };
  356. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */; };
  357. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3572A064E2F004BE681 /* ListStateView.swift */; };
  358. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02428E867BA00473A9C /* AlertStorage.swift */; };
  359. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02628E869DF00473A9C /* AlertEntry.swift */; };
  360. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */; };
  361. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */; };
  362. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */; };
  363. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */; };
  364. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */; };
  365. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */; };
  366. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */; };
  367. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; };
  368. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  369. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; };
  370. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  371. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; };
  372. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  373. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; };
  374. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  375. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; };
  376. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  377. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */; };
  378. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
  379. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
  380. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
  381. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
  382. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
  383. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */; };
  384. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */; };
  385. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */; };
  386. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */; };
  387. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */; };
  388. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */; };
  389. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */; };
  390. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  391. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  392. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */; };
  393. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  394. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */; };
  395. DD1DB7CE2BED00CF0048B367 /* SettingsRootViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1DB7CD2BED00CF0048B367 /* SettingsRootViewModel.swift */; };
  396. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */; };
  397. DD57C4B22C4C7103001A5B28 /* LoopStatRecord+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4902C4C7103001A5B28 /* LoopStatRecord+CoreDataClass.swift */; };
  398. DD57C4B32C4C7103001A5B28 /* LoopStatRecord+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4912C4C7103001A5B28 /* LoopStatRecord+CoreDataProperties.swift */; };
  399. DD57C4B42C4C7103001A5B28 /* MealPresetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4922C4C7103001A5B28 /* MealPresetStored+CoreDataClass.swift */; };
  400. DD57C4B52C4C7103001A5B28 /* MealPresetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4932C4C7103001A5B28 /* MealPresetStored+CoreDataProperties.swift */; };
  401. DD57C4B62C4C7103001A5B28 /* TempTargets+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4942C4C7103001A5B28 /* TempTargets+CoreDataClass.swift */; };
  402. DD57C4B72C4C7103001A5B28 /* TempTargets+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4952C4C7103001A5B28 /* TempTargets+CoreDataProperties.swift */; };
  403. DD57C4B82C4C7103001A5B28 /* ForecastValue+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4962C4C7103001A5B28 /* ForecastValue+CoreDataClass.swift */; };
  404. DD57C4B92C4C7103001A5B28 /* ForecastValue+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4972C4C7103001A5B28 /* ForecastValue+CoreDataProperties.swift */; };
  405. DD57C4BA2C4C7103001A5B28 /* OrefDetermination+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4982C4C7103001A5B28 /* OrefDetermination+CoreDataClass.swift */; };
  406. DD57C4BB2C4C7103001A5B28 /* OrefDetermination+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4992C4C7103001A5B28 /* OrefDetermination+CoreDataProperties.swift */; };
  407. DD57C4BC2C4C7103001A5B28 /* PumpEventStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C49A2C4C7103001A5B28 /* PumpEventStored+CoreDataClass.swift */; };
  408. DD57C4BD2C4C7103001A5B28 /* PumpEventStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C49B2C4C7103001A5B28 /* PumpEventStored+CoreDataProperties.swift */; };
  409. DD57C4BE2C4C7103001A5B28 /* TempBasalStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C49C2C4C7103001A5B28 /* TempBasalStored+CoreDataClass.swift */; };
  410. DD57C4BF2C4C7103001A5B28 /* TempBasalStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C49D2C4C7103001A5B28 /* TempBasalStored+CoreDataProperties.swift */; };
  411. DD57C4C02C4C7103001A5B28 /* TempTargetsSlider+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C49E2C4C7103001A5B28 /* TempTargetsSlider+CoreDataClass.swift */; };
  412. DD57C4C12C4C7103001A5B28 /* TempTargetsSlider+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C49F2C4C7103001A5B28 /* TempTargetsSlider+CoreDataProperties.swift */; };
  413. DD57C4C22C4C7103001A5B28 /* Forecast+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A02C4C7103001A5B28 /* Forecast+CoreDataClass.swift */; };
  414. DD57C4C32C4C7103001A5B28 /* Forecast+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A12C4C7103001A5B28 /* Forecast+CoreDataProperties.swift */; };
  415. DD57C4C42C4C7103001A5B28 /* BolusStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A22C4C7103001A5B28 /* BolusStored+CoreDataClass.swift */; };
  416. DD57C4C52C4C7103001A5B28 /* BolusStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A32C4C7103001A5B28 /* BolusStored+CoreDataProperties.swift */; };
  417. DD57C4C62C4C7103001A5B28 /* CarbEntryStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A42C4C7103001A5B28 /* CarbEntryStored+CoreDataClass.swift */; };
  418. DD57C4C72C4C7103001A5B28 /* CarbEntryStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A52C4C7103001A5B28 /* CarbEntryStored+CoreDataProperties.swift */; };
  419. DD57C4C82C4C7103001A5B28 /* OpenAPS_Battery+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A62C4C7103001A5B28 /* OpenAPS_Battery+CoreDataClass.swift */; };
  420. DD57C4C92C4C7103001A5B28 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A72C4C7103001A5B28 /* OpenAPS_Battery+CoreDataProperties.swift */; };
  421. DD57C4CA2C4C7103001A5B28 /* GlucoseStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A82C4C7103001A5B28 /* GlucoseStored+CoreDataClass.swift */; };
  422. DD57C4CB2C4C7103001A5B28 /* GlucoseStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4A92C4C7103001A5B28 /* GlucoseStored+CoreDataProperties.swift */; };
  423. DD57C4CC2C4C7103001A5B28 /* OverrideStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4AA2C4C7103001A5B28 /* OverrideStored+CoreDataClass.swift */; };
  424. DD57C4CD2C4C7103001A5B28 /* OverrideStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4AB2C4C7103001A5B28 /* OverrideStored+CoreDataProperties.swift */; };
  425. DD57C4CE2C4C7103001A5B28 /* OverrideRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4AC2C4C7103001A5B28 /* OverrideRunStored+CoreDataClass.swift */; };
  426. DD57C4CF2C4C7103001A5B28 /* OverrideRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4AD2C4C7103001A5B28 /* OverrideRunStored+CoreDataProperties.swift */; };
  427. DD57C4D02C4C7103001A5B28 /* ImportError+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4AE2C4C7103001A5B28 /* ImportError+CoreDataClass.swift */; };
  428. DD57C4D12C4C7103001A5B28 /* ImportError+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4AF2C4C7103001A5B28 /* ImportError+CoreDataProperties.swift */; };
  429. DD57C4D22C4C7103001A5B28 /* StatsData+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4B02C4C7103001A5B28 /* StatsData+CoreDataClass.swift */; };
  430. DD57C4D32C4C7103001A5B28 /* StatsData+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD57C4B12C4C7103001A5B28 /* StatsData+CoreDataProperties.swift */; };
  431. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */; };
  432. DDD163122C4C689900CD525A /* OverrideStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163112C4C689900CD525A /* OverrideStateModel.swift */; };
  433. DDD163142C4C68D300CD525A /* OverrideProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163132C4C68D300CD525A /* OverrideProvider.swift */; };
  434. DDD163162C4C690300CD525A /* OverrideDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163152C4C690300CD525A /* OverrideDataFlow.swift */; };
  435. DDD163182C4C694000CD525A /* OverrideRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163172C4C694000CD525A /* OverrideRootView.swift */; };
  436. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163192C4C695E00CD525A /* EditOverrideForm.swift */; };
  437. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */; };
  438. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */; };
  439. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */; };
  440. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  441. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  442. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  443. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  444. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  445. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  446. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
  447. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
  448. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
  449. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
  450. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  451. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  452. E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */; };
  453. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */; };
  454. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  455. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
  456. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  457. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825D28DB441200054060 /* HeartBeatManager.swift */; };
  458. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825F28DB441800054060 /* BluetoothTransmitter.swift */; };
  459. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
  460. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
  461. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
  462. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
  463. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
  464. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  465. FE41E4D429463C660047FD55 /* NightscoutStatistics.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */; };
  466. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */; };
  467. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */; };
  468. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */; };
  469. /* End PBXBuildFile section */
  470. /* Begin PBXContainerItemProxy section */
  471. 38E8752627554D5700975559 /* PBXContainerItemProxy */ = {
  472. isa = PBXContainerItemProxy;
  473. containerPortal = 388E595025AD948C0019842D /* Project object */;
  474. proxyType = 1;
  475. remoteGlobalIDString = 38E8752327554D5700975559;
  476. remoteInfo = "FreeAPSWatch WatchKit Extension";
  477. };
  478. 38E8753A27554D5900975559 /* PBXContainerItemProxy */ = {
  479. isa = PBXContainerItemProxy;
  480. containerPortal = 388E595025AD948C0019842D /* Project object */;
  481. proxyType = 1;
  482. remoteGlobalIDString = 38E8751B27554D5500975559;
  483. remoteInfo = FreeAPSWatch;
  484. };
  485. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  486. isa = PBXContainerItemProxy;
  487. containerPortal = 388E595025AD948C0019842D /* Project object */;
  488. proxyType = 1;
  489. remoteGlobalIDString = 388E595725AD948C0019842D;
  490. remoteInfo = FreeAPS;
  491. };
  492. 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */ = {
  493. isa = PBXContainerItemProxy;
  494. containerPortal = 388E595025AD948C0019842D /* Project object */;
  495. proxyType = 1;
  496. remoteGlobalIDString = 6B1A8D162B14D91500E76752;
  497. remoteInfo = LiveActivityExtension;
  498. };
  499. /* End PBXContainerItemProxy section */
  500. /* Begin PBXCopyFilesBuildPhase section */
  501. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  502. isa = PBXCopyFilesBuildPhase;
  503. buildActionMask = 2147483647;
  504. dstPath = "";
  505. dstSubfolderSpec = 10;
  506. files = (
  507. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */,
  508. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */,
  509. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
  510. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */,
  511. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */,
  512. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */,
  513. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */,
  514. );
  515. name = "Embed Frameworks";
  516. runOnlyForDeploymentPostprocessing = 0;
  517. };
  518. 38E8753D27554D5900975559 /* Embed Watch Content */ = {
  519. isa = PBXCopyFilesBuildPhase;
  520. buildActionMask = 2147483647;
  521. dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
  522. dstSubfolderSpec = 16;
  523. files = (
  524. 38E8753C27554D5900975559 /* FreeAPSWatch.app in Embed Watch Content */,
  525. );
  526. name = "Embed Watch Content";
  527. runOnlyForDeploymentPostprocessing = 0;
  528. };
  529. 38E8754027554D5900975559 /* Embed App Extensions */ = {
  530. isa = PBXCopyFilesBuildPhase;
  531. buildActionMask = 2147483647;
  532. dstPath = "";
  533. dstSubfolderSpec = 13;
  534. files = (
  535. 38E8752527554D5700975559 /* FreeAPSWatch WatchKit Extension.appex in Embed App Extensions */,
  536. );
  537. name = "Embed App Extensions";
  538. runOnlyForDeploymentPostprocessing = 0;
  539. };
  540. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */ = {
  541. isa = PBXCopyFilesBuildPhase;
  542. buildActionMask = 2147483647;
  543. dstPath = "";
  544. dstSubfolderSpec = 13;
  545. files = (
  546. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */,
  547. );
  548. name = "Embed Foundation Extensions";
  549. runOnlyForDeploymentPostprocessing = 0;
  550. };
  551. /* End PBXCopyFilesBuildPhase section */
  552. /* Begin PBXFileReference section */
  553. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorDataFlow.swift; sourceTree = "<group>"; };
  554. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorStateModel.swift; sourceTree = "<group>"; };
  555. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntent.swift; sourceTree = "<group>"; };
  556. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntentRequest.swift; sourceTree = "<group>"; };
  557. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigView.swift; sourceTree = "<group>"; };
  558. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigDataFlow.swift; sourceTree = "<group>"; };
  559. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigProvider.swift; sourceTree = "<group>"; };
  560. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigStateModel.swift; sourceTree = "<group>"; };
  561. 11E79B122C5F2585007893C2 /* DynamicGlucoseColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicGlucoseColor.swift; sourceTree = "<group>"; };
  562. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorDataFlow.swift; sourceTree = "<group>"; };
  563. 19012CDB291D2CB900FB8210 /* LoopStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStats.swift; sourceTree = "<group>"; };
  564. 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigDataFlow.swift; sourceTree = "<group>"; };
  565. 190EBCC529FF138000BA767D /* StatConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigProvider.swift; sourceTree = "<group>"; };
  566. 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigStateModel.swift; sourceTree = "<group>"; };
  567. 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatConfigRootView.swift; sourceTree = "<group>"; };
  568. 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  569. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettings.swift; sourceTree = "<group>"; };
  570. 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  571. 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  572. 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  573. 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  574. 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  575. 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  576. 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  577. 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  578. 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  579. 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  580. 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  581. 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  582. 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  583. 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  584. 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  585. 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  586. 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  587. 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  588. 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  589. 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  590. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Oref2_variables.swift; sourceTree = "<group>"; };
  591. 193F1E392B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  592. 193F1E3A2B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  593. 193F1E3B2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  594. 193F1E3C2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  595. 193F6CDC2A512C8F001240FD /* Loops.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Loops.swift; sourceTree = "<group>"; };
  596. 195D80B32AF6973A00D25097 /* DynamicRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicRootView.swift; sourceTree = "<group>"; };
  597. 195D80B62AF697B800D25097 /* DynamicDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicDataFlow.swift; sourceTree = "<group>"; };
  598. 195D80B82AF697F700D25097 /* DynamicProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicProvider.swift; sourceTree = "<group>"; };
  599. 195D80BA2AF6980B00D25097 /* DynamicStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicStateModel.swift; sourceTree = "<group>"; };
  600. 1967DFBD29D052C200759F30 /* Icons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Icons.swift; sourceTree = "<group>"; };
  601. 1967DFBF29D053AC00759F30 /* IconSelection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconSelection.swift; sourceTree = "<group>"; };
  602. 1967DFC129D053D300759F30 /* IconImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconImage.swift; sourceTree = "<group>"; };
  603. 1980131D29CC9839002FF024 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
  604. 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  605. 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  606. 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  607. 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  608. 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  609. 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  610. 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  611. 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  612. 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  613. 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  614. 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
  615. 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  616. 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  617. 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  618. 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  619. 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  620. 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  621. 199561C0275E61A50077B976 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = Platforms/WatchOS.platform/Developer/SDKs/WatchOS8.0.sdk/System/Library/Frameworks/HealthKit.framework; sourceTree = DEVELOPER_DIR; };
  622. 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  623. 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  624. 19A9102F2A24BF6300C8951B /* StatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatsView.swift; sourceTree = "<group>"; };
  625. 19A910352A24D6D700C8951B /* DateFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFilter.swift; sourceTree = "<group>"; };
  626. 19A910372A24EF3200C8951B /* ChartsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartsView.swift; sourceTree = "<group>"; };
  627. 19B0EF2028F6D66200069496 /* Statistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statistics.swift; sourceTree = "<group>"; };
  628. 19C166682756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  629. 19C166692756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  630. 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigDataFlow.swift; sourceTree = "<group>"; };
  631. 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigProvider.swift; sourceTree = "<group>"; };
  632. 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigStateModel.swift; sourceTree = "<group>"; };
  633. 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FPUConfigRootView.swift; sourceTree = "<group>"; };
  634. 19D4E4EA29FC6A9F00351451 /* Charts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Charts.swift; sourceTree = "<group>"; };
  635. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  636. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigDataFlow.swift; sourceTree = "<group>"; };
  637. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigProvider.swift; sourceTree = "<group>"; };
  638. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigStateModel.swift; sourceTree = "<group>"; };
  639. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigRootWiew.swift; sourceTree = "<group>"; };
  640. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatDataFlow.swift; sourceTree = "<group>"; };
  641. 19F95FF429F10FCF00314DDC /* StatProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatProvider.swift; sourceTree = "<group>"; };
  642. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatStateModel.swift; sourceTree = "<group>"; };
  643. 19F95FF929F1102A00314DDC /* StatRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatRootView.swift; sourceTree = "<group>"; };
  644. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
  645. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusStateModel.swift; sourceTree = "<group>"; };
  646. 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigRootView.swift; sourceTree = "<group>"; };
  647. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  648. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  649. 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigDataFlow.swift; sourceTree = "<group>"; };
  650. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
  651. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  652. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  653. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  654. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  655. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  656. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  657. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  658. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  659. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  660. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  661. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  662. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  663. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  664. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  665. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  666. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  667. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  668. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  669. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  670. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  671. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  672. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  673. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  674. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  675. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  676. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  677. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  678. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  679. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  680. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  681. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  682. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPS.entitlements; sourceTree = "<group>"; };
  683. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  684. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  685. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  686. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  687. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  688. 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
  689. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  690. 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  691. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  692. 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  693. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  694. 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  695. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  696. 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  697. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  698. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  699. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  700. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  701. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  702. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  703. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  704. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  705. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  706. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  707. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  708. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  709. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  710. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  711. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  712. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  713. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  714. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  715. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  716. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  717. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  718. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  719. 385CEAC025F2EA52002D6D5B /* Announcement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Announcement.swift; sourceTree = "<group>"; };
  720. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnnouncementsStorage.swift; sourceTree = "<group>"; };
  721. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  722. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  723. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  724. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  725. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithToolBar.swift; sourceTree = "<group>"; };
  726. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  727. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  728. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  729. 388E595825AD948C0019842D /* FreeAPS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPS.app; sourceTree = BUILT_PRODUCTS_DIR; };
  730. 388E595B25AD948C0019842D /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  731. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  732. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  733. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  734. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  735. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  736. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  737. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  738. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  739. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  740. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  741. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  742. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  743. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autotune.swift; sourceTree = "<group>"; };
  744. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  745. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  746. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  747. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  748. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchAnnouncementsManager.swift; sourceTree = "<group>"; };
  749. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  750. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  751. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  752. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSSettings.swift; sourceTree = "<group>"; };
  753. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  754. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  755. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  756. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  757. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  758. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  759. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  760. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  761. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  762. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  763. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  764. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  765. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  766. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  767. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  768. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  769. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  770. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  771. 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
  772. 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
  773. 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  774. 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
  775. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  776. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
  777. 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
  778. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
  779. 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
  780. 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
  781. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
  782. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
  783. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
  784. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
  785. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
  786. 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
  787. 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
  788. 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
  789. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
  790. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
  791. 38E8751C27554D5500975559 /* FreeAPSWatch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FreeAPSWatch.app; sourceTree = BUILT_PRODUCTS_DIR; };
  792. 38E8751E27554D5700975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  793. 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "FreeAPSWatch WatchKit Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  794. 38E8752927554D5700975559 /* FreeAPSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FreeAPSApp.swift; sourceTree = "<group>"; };
  795. 38E8752B27554D5700975559 /* MainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = "<group>"; };
  796. 38E8752D27554D5700975559 /* NotificationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationController.swift; sourceTree = "<group>"; };
  797. 38E8752F27554D5700975559 /* NotificationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationView.swift; sourceTree = "<group>"; };
  798. 38E8753127554D5700975559 /* ComplicationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComplicationController.swift; sourceTree = "<group>"; };
  799. 38E8753327554D5800975559 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  800. 38E8753627554D5800975559 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
  801. 38E8753827554D5900975559 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  802. 38E8753927554D5900975559 /* PushNotificationPayload.apns */ = {isa = PBXFileReference; lastKnownFileType = text; path = PushNotificationPayload.apns; sourceTree = "<group>"; };
  803. 38E87549275550BB00975559 /* CarbsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsView.swift; sourceTree = "<group>"; };
  804. 38E8754B2755548F00975559 /* WatchStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchStateModel.swift; sourceTree = "<group>"; };
  805. 38E8754E275556FA00975559 /* WatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchManager.swift; sourceTree = "<group>"; };
  806. 38E8755027555D0500975559 /* DataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataFlow.swift; sourceTree = "<group>"; };
  807. 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "FreeAPSWatch WatchKit Extension.entitlements"; sourceTree = "<group>"; };
  808. 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = FreeAPSWatch.entitlements; sourceTree = "<group>"; };
  809. 38E8755A27568A6700975559 /* ConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfirmationView.swift; sourceTree = "<group>"; };
  810. 38E8757A2757B1C300975559 /* TempTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsView.swift; sourceTree = "<group>"; };
  811. 38E8757C2757C45D00975559 /* BolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusView.swift; sourceTree = "<group>"; };
  812. 38E8757F27595DC500975559 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
  813. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  814. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  815. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  816. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  817. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  818. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  819. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  820. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  821. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  822. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  823. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  824. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  825. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  826. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  827. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  828. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FreeAPSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  829. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  830. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  831. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  832. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  833. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  834. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  835. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  836. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
  837. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  838. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  839. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  840. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  841. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  842. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  843. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  844. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  845. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  846. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebuggingIdentifiers.swift; sourceTree = "<group>"; };
  847. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPredicates.swift; sourceTree = "<group>"; };
  848. 581AC4382BE22ED10038760C /* JSONConverter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSONConverter.swift; sourceTree = "<group>"; };
  849. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupView.swift; sourceTree = "<group>"; };
  850. 582FAE422C05102C00D1C13F /* CoreDataError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataError.swift; sourceTree = "<group>"; };
  851. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+helper.swift"; sourceTree = "<group>"; };
  852. 583684072BD195A700070A60 /* Determination.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Determination.swift; sourceTree = "<group>"; };
  853. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+helper.swift"; sourceTree = "<group>"; };
  854. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEvent+helper.swift"; sourceTree = "<group>"; };
  855. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationStorage.swift; sourceTree = "<group>"; };
  856. 587DA1F52B77F3DD00B28F8A /* SettingsRowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsRowView.swift; sourceTree = "<group>"; };
  857. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPSBattery.swift; sourceTree = "<group>"; };
  858. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Determination+helper.swift"; sourceTree = "<group>"; };
  859. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutUploadView.swift; sourceTree = "<group>"; };
  860. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutFetchView.swift; sourceTree = "<group>"; };
  861. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutConnectView.swift; sourceTree = "<group>"; };
  862. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
  863. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  864. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  865. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorStateModel.swift; sourceTree = "<group>"; };
  866. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolStartView.swift; sourceTree = "<group>"; };
  867. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  868. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  869. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UniformTypeIdentifiers.framework; path = System/Library/Frameworks/UniformTypeIdentifiers.framework; sourceTree = SDKROOT; };
  870. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = LiveActivityExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  871. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  872. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  873. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBundle.swift; sourceTree = "<group>"; };
  874. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivity.swift; sourceTree = "<group>"; };
  875. 6B1A8D232B14D91700E76752 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  876. 6B1A8D252B14D91700E76752 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  877. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBridge.swift; sourceTree = "<group>"; };
  878. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActitiyAttributes.swift; sourceTree = "<group>"; };
  879. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorProvider.swift; sourceTree = "<group>"; };
  880. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorStateModel.swift; sourceTree = "<group>"; };
  881. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  882. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorDataFlow.swift; sourceTree = "<group>"; };
  883. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  884. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  885. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesEditorRootView.swift; sourceTree = "<group>"; };
  886. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigRootView.swift; sourceTree = "<group>"; };
  887. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigDataFlow.swift; sourceTree = "<group>"; };
  888. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  889. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  890. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  891. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorProvider.swift; sourceTree = "<group>"; };
  892. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  893. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  894. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  895. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  896. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  897. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  898. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
  899. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigProvider.swift; sourceTree = "<group>"; };
  900. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorRootView.swift; sourceTree = "<group>"; };
  901. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
  902. B9CAAEFB2AE70836000F68BC /* branch.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = branch.txt; sourceTree = SOURCE_ROOT; };
  903. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  904. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealPresetView.swift; sourceTree = "<group>"; };
  905. BD1661302B82ADAB00256551 /* CustomProgressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomProgressView.swift; sourceTree = "<group>"; };
  906. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
  907. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckboxToggleStyle.swift; sourceTree = "<group>"; };
  908. BD3CC0712B0B89D50013189E /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  909. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataObserver.swift; sourceTree = "<group>"; };
  910. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigDataFlow.swift; sourceTree = "<group>"; };
  911. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigProvider.swift; sourceTree = "<group>"; };
  912. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorStateModel.swift; sourceTree = "<group>"; };
  913. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigRootView.swift; sourceTree = "<group>"; };
  914. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtension.swift; sourceTree = "<group>"; };
  915. BDB899872C564509006F3298 /* ForeCastChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForeCastChart.swift; sourceTree = "<group>"; };
  916. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbsGlucose+helper.swift"; sourceTree = "<group>"; };
  917. BDBAACF92C2D439700370AAE /* OverrideData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideData.swift; sourceTree = "<group>"; };
  918. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStorage.swift; sourceTree = "<group>"; };
  919. BDC2EA462C3045AD00E5BBD0 /* Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Override.swift; sourceTree = "<group>"; };
  920. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+helper.swift"; sourceTree = "<group>"; };
  921. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomNotification.swift; sourceTree = "<group>"; };
  922. BDF34F822C10C5B600D51995 /* DataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataManager.swift; sourceTree = "<group>"; };
  923. BDF34F842C10C62E00D51995 /* GlucoseData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseData.swift; sourceTree = "<group>"; };
  924. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataStack.swift; sourceTree = "<group>"; };
  925. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivityAttributes+Helper.swift"; sourceTree = "<group>"; };
  926. BDF34F942C10D27300D51995 /* DeterminationData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationData.swift; sourceTree = "<group>"; };
  927. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LockScreenView.swift; sourceTree = "<group>"; };
  928. BDFD16592AE40438007F0DDA /* BolusRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusRootView.swift; sourceTree = "<group>"; };
  929. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  930. C19984D62EFC0035A9E9644D /* BolusProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusProvider.swift; sourceTree = "<group>"; };
  931. C20BC6CD2C66FBFD002BC1C6 /* Rounding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Rounding.swift; sourceTree = "<group>"; };
  932. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  933. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BolusDataFlow.swift; sourceTree = "<group>"; };
  934. CC41E2992B1E1F460070974F /* HistoryLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryLayout.swift; sourceTree = "<group>"; };
  935. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RawFetchedProfile.swift; sourceTree = "<group>"; };
  936. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+helper.swift"; sourceTree = "<group>"; };
  937. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddCarbPresetIntent.swift; sourceTree = "<group>"; };
  938. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbPresetIntentRequest.swift; sourceTree = "<group>"; };
  939. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManagerTests.swift; sourceTree = "<group>"; };
  940. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolManager.swift; sourceTree = "<group>"; };
  941. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = BuildDetails.plist; sourceTree = "<group>"; };
  942. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolConfigView.swift; sourceTree = "<group>"; };
  943. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BloodGlucoseExtensions.swift; sourceTree = "<group>"; };
  944. CE398D012977349800DF218F /* CryptoKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoKit.framework; path = System/Library/Frameworks/CryptoKit.framework; sourceTree = SDKROOT; };
  945. CE398D17297C9EE800DF218F /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  946. CE398D1A297D69A900DF218F /* ShareClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  947. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
  948. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
  949. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "ConnectIQ 2.xcframework"; path = "Dependencies/ConnectIQ 2.xcframework"; sourceTree = "<group>"; };
  950. CE6B025628F350FF000C5502 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = Platforms/WatchOS.platform/Developer/SDKs/WatchOS9.1.sdk/System/Library/Frameworks/HealthKit.framework; sourceTree = DEVELOPER_DIR; };
  951. CE7950232997D81700FA576E /* CGMSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSettingsView.swift; sourceTree = "<group>"; };
  952. CE7950252998056D00FA576E /* CGMSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSetupView.swift; sourceTree = "<group>"; };
  953. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  954. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  955. CE79502D29980E4D00FA576E /* ShareClientUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClientUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  956. CE7CA3432A064973004BE681 /* AppShortcuts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShortcuts.swift; sourceTree = "<group>"; };
  957. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIntentsRequest.swift; sourceTree = "<group>"; };
  958. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelTempPresetIntent.swift; sourceTree = "<group>"; };
  959. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyTempPresetIntent.swift; sourceTree = "<group>"; };
  960. CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListTempPresetsIntent.swift; sourceTree = "<group>"; };
  961. CE7CA3492A064973004BE681 /* tempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = tempPresetIntent.swift; sourceTree = "<group>"; };
  962. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetsIntentRequest.swift; sourceTree = "<group>"; };
  963. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListStateIntent.swift; sourceTree = "<group>"; };
  964. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StateIntentRequest.swift; sourceTree = "<group>"; };
  965. CE7CA3572A064E2F004BE681 /* ListStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListStateView.swift; sourceTree = "<group>"; };
  966. CE82E02428E867BA00473A9C /* AlertStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertStorage.swift; sourceTree = "<group>"; };
  967. CE82E02628E869DF00473A9C /* AlertEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertEntry.swift; sourceTree = "<group>"; };
  968. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ConnectIQ.framework; path = "Dependencies/ios-armv7_arm64/ConnectIQ.framework"; sourceTree = "<group>"; };
  969. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminManager.swift; sourceTree = "<group>"; };
  970. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigDataFlow.swift; sourceTree = "<group>"; };
  971. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigProvider.swift; sourceTree = "<group>"; };
  972. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigStateModel.swift; sourceTree = "<group>"; };
  973. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigRootView.swift; sourceTree = "<group>"; };
  974. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  975. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  976. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManager.swift; sourceTree = "<group>"; };
  977. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginSource.swift; sourceTree = "<group>"; };
  978. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavitzkyGolayFilter.swift; sourceTree = "<group>"; };
  979. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  980. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  981. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
  982. CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
  983. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
  984. CEC751D129D88257006E9D24 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  985. CEC751D329D88257006E9D24 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  986. CEC751D529D88262006E9D24 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  987. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  988. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  989. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  990. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  991. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  992. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  993. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  994. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsTests.swift; sourceTree = "<group>"; };
  995. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  996. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CREditorRootView.swift; sourceTree = "<group>"; };
  997. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AutotuneConfigStateModel.swift; sourceTree = "<group>"; };
  998. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpSettingsEditorProvider.swift; sourceTree = "<group>"; };
  999. DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigStateModel.swift; sourceTree = "<group>"; };
  1000. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildDetails.swift; sourceTree = "<group>"; };
  1001. DD1DB7CD2BED00CF0048B367 /* SettingsRootViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsRootViewModel.swift; sourceTree = "<group>"; };
  1002. DD57C4902C4C7103001A5B28 /* LoopStatRecord+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1003. DD57C4912C4C7103001A5B28 /* LoopStatRecord+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1004. DD57C4922C4C7103001A5B28 /* MealPresetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1005. DD57C4932C4C7103001A5B28 /* MealPresetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1006. DD57C4942C4C7103001A5B28 /* TempTargets+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargets+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1007. DD57C4952C4C7103001A5B28 /* TempTargets+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargets+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1008. DD57C4962C4C7103001A5B28 /* ForecastValue+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1009. DD57C4972C4C7103001A5B28 /* ForecastValue+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1010. DD57C4982C4C7103001A5B28 /* OrefDetermination+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1011. DD57C4992C4C7103001A5B28 /* OrefDetermination+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1012. DD57C49A2C4C7103001A5B28 /* PumpEventStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1013. DD57C49B2C4C7103001A5B28 /* PumpEventStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1014. DD57C49C2C4C7103001A5B28 /* TempBasalStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1015. DD57C49D2C4C7103001A5B28 /* TempBasalStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1016. DD57C49E2C4C7103001A5B28 /* TempTargetsSlider+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetsSlider+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1017. DD57C49F2C4C7103001A5B28 /* TempTargetsSlider+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetsSlider+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1018. DD57C4A02C4C7103001A5B28 /* Forecast+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1019. DD57C4A12C4C7103001A5B28 /* Forecast+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1020. DD57C4A22C4C7103001A5B28 /* BolusStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1021. DD57C4A32C4C7103001A5B28 /* BolusStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1022. DD57C4A42C4C7103001A5B28 /* CarbEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1023. DD57C4A52C4C7103001A5B28 /* CarbEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1024. DD57C4A62C4C7103001A5B28 /* OpenAPS_Battery+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1025. DD57C4A72C4C7103001A5B28 /* OpenAPS_Battery+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1026. DD57C4A82C4C7103001A5B28 /* GlucoseStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1027. DD57C4A92C4C7103001A5B28 /* GlucoseStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1028. DD57C4AA2C4C7103001A5B28 /* OverrideStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1029. DD57C4AB2C4C7103001A5B28 /* OverrideStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1030. DD57C4AC2C4C7103001A5B28 /* OverrideRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1031. DD57C4AD2C4C7103001A5B28 /* OverrideRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1032. DD57C4AE2C4C7103001A5B28 /* ImportError+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ImportError+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1033. DD57C4AF2C4C7103001A5B28 /* ImportError+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ImportError+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1034. DD57C4B02C4C7103001A5B28 /* StatsData+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  1035. DD57C4B12C4C7103001A5B28 /* StatsData+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  1036. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutExercise.swift; sourceTree = "<group>"; };
  1037. DDD163112C4C689900CD525A /* OverrideStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStateModel.swift; sourceTree = "<group>"; };
  1038. DDD163132C4C68D300CD525A /* OverrideProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideProvider.swift; sourceTree = "<group>"; };
  1039. DDD163152C4C690300CD525A /* OverrideDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideDataFlow.swift; sourceTree = "<group>"; };
  1040. DDD163172C4C694000CD525A /* OverrideRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideRootView.swift; sourceTree = "<group>"; };
  1041. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditOverrideForm.swift; sourceTree = "<group>"; };
  1042. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddOverrideForm.swift; sourceTree = "<group>"; };
  1043. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = TrioCoreDataPersistentContainer.xcdatamodel; sourceTree = "<group>"; };
  1044. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddMealPresetView.swift; sourceTree = "<group>"; };
  1045. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  1046. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  1047. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  1048. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  1049. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  1050. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  1051. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
  1052. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1053. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
  1054. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
  1055. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
  1056. E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationsConfigProvider.swift; sourceTree = "<group>"; };
  1057. F816825D28DB441200054060 /* HeartBeatManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeartBeatManager.swift; sourceTree = "<group>"; };
  1058. F816825F28DB441800054060 /* BluetoothTransmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BluetoothTransmitter.swift; sourceTree = "<group>"; };
  1059. F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
  1060. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
  1061. F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
  1062. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
  1063. F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
  1064. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  1065. FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatistics.swift; sourceTree = "<group>"; };
  1066. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutPreferences.swift; sourceTree = "<group>"; };
  1067. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extensions.swift"; sourceTree = "<group>"; };
  1068. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extensions.swift"; sourceTree = "<group>"; };
  1069. /* End PBXFileReference section */
  1070. /* Begin PBXFrameworksBuildPhase section */
  1071. 388E595525AD948C0019842D /* Frameworks */ = {
  1072. isa = PBXFrameworksBuildPhase;
  1073. buildActionMask = 2147483647;
  1074. files = (
  1075. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */,
  1076. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
  1077. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
  1078. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */,
  1079. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  1080. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */,
  1081. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */,
  1082. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  1083. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  1084. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
  1085. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */,
  1086. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
  1087. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */,
  1088. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
  1089. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */,
  1090. );
  1091. runOnlyForDeploymentPostprocessing = 0;
  1092. };
  1093. 38E8752127554D5700975559 /* Frameworks */ = {
  1094. isa = PBXFrameworksBuildPhase;
  1095. buildActionMask = 2147483647;
  1096. files = (
  1097. CE6B025728F350FF000C5502 /* HealthKit.framework in Frameworks */,
  1098. 38E8755827567AE400975559 /* SwiftDate in Frameworks */,
  1099. 199561C1275E61A50077B976 /* HealthKit.framework in Frameworks */,
  1100. );
  1101. runOnlyForDeploymentPostprocessing = 0;
  1102. };
  1103. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  1104. isa = PBXFrameworksBuildPhase;
  1105. buildActionMask = 2147483647;
  1106. files = (
  1107. );
  1108. runOnlyForDeploymentPostprocessing = 0;
  1109. };
  1110. 6B1A8D142B14D91500E76752 /* Frameworks */ = {
  1111. isa = PBXFrameworksBuildPhase;
  1112. buildActionMask = 2147483647;
  1113. files = (
  1114. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */,
  1115. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */,
  1116. );
  1117. runOnlyForDeploymentPostprocessing = 0;
  1118. };
  1119. /* End PBXFrameworksBuildPhase section */
  1120. /* Begin PBXGroup section */
  1121. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  1122. isa = PBXGroup;
  1123. children = (
  1124. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  1125. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  1126. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  1127. 4E8C7B59F8065047ECE20965 /* View */,
  1128. );
  1129. path = ConfigEditor;
  1130. sourceTree = "<group>";
  1131. };
  1132. 0A67A70F9438DB6586398458 /* View */ = {
  1133. isa = PBXGroup;
  1134. children = (
  1135. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
  1136. );
  1137. path = View;
  1138. sourceTree = "<group>";
  1139. };
  1140. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  1141. isa = PBXGroup;
  1142. children = (
  1143. 38569352270B5E350002C50D /* CGMRootView.swift */,
  1144. CE7950232997D81700FA576E /* CGMSettingsView.swift */,
  1145. CE7950252998056D00FA576E /* CGMSetupView.swift */,
  1146. );
  1147. path = View;
  1148. sourceTree = "<group>";
  1149. };
  1150. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  1151. isa = PBXGroup;
  1152. children = (
  1153. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  1154. );
  1155. path = View;
  1156. sourceTree = "<group>";
  1157. };
  1158. 110AEDE22C5193D100615CC9 /* Bolus */ = {
  1159. isa = PBXGroup;
  1160. children = (
  1161. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */,
  1162. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */,
  1163. );
  1164. path = Bolus;
  1165. sourceTree = "<group>";
  1166. };
  1167. 110AEDE62C51A0AE00615CC9 /* View */ = {
  1168. isa = PBXGroup;
  1169. children = (
  1170. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */,
  1171. );
  1172. path = View;
  1173. sourceTree = "<group>";
  1174. };
  1175. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */ = {
  1176. isa = PBXGroup;
  1177. children = (
  1178. 110AEDE62C51A0AE00615CC9 /* View */,
  1179. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */,
  1180. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */,
  1181. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */,
  1182. );
  1183. path = ShortcutsConfig;
  1184. sourceTree = "<group>";
  1185. };
  1186. 18B49BC9587A59E3A347C1CD /* View */ = {
  1187. isa = PBXGroup;
  1188. children = (
  1189. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  1190. );
  1191. path = View;
  1192. sourceTree = "<group>";
  1193. };
  1194. 190EBCC229FF134900BA767D /* StatConfig */ = {
  1195. isa = PBXGroup;
  1196. children = (
  1197. 190EBCC329FF136900BA767D /* StatConfigDataFlow.swift */,
  1198. 190EBCC529FF138000BA767D /* StatConfigProvider.swift */,
  1199. 190EBCC729FF13AA00BA767D /* StatConfigStateModel.swift */,
  1200. 190EBCC929FF13AF00BA767D /* View */,
  1201. );
  1202. path = StatConfig;
  1203. sourceTree = "<group>";
  1204. };
  1205. 190EBCC929FF13AF00BA767D /* View */ = {
  1206. isa = PBXGroup;
  1207. children = (
  1208. 190EBCCA29FF13CB00BA767D /* StatConfigRootView.swift */,
  1209. );
  1210. path = View;
  1211. sourceTree = "<group>";
  1212. };
  1213. 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
  1214. isa = PBXGroup;
  1215. children = (
  1216. 199561C0275E61A50077B976 /* HealthKit.framework */,
  1217. );
  1218. name = "Recovered References";
  1219. sourceTree = "<group>";
  1220. };
  1221. 195D80B22AF696EE00D25097 /* Dynamic */ = {
  1222. isa = PBXGroup;
  1223. children = (
  1224. 195D80B62AF697B800D25097 /* DynamicDataFlow.swift */,
  1225. 195D80B82AF697F700D25097 /* DynamicProvider.swift */,
  1226. 195D80BA2AF6980B00D25097 /* DynamicStateModel.swift */,
  1227. 195D80B52AF6974200D25097 /* View */,
  1228. );
  1229. path = Dynamic;
  1230. sourceTree = "<group>";
  1231. };
  1232. 195D80B52AF6974200D25097 /* View */ = {
  1233. isa = PBXGroup;
  1234. children = (
  1235. 195D80B32AF6973A00D25097 /* DynamicRootView.swift */,
  1236. );
  1237. path = View;
  1238. sourceTree = "<group>";
  1239. };
  1240. 198377CF266BFEDE004DE65E /* Localizations */ = {
  1241. isa = PBXGroup;
  1242. children = (
  1243. 19D440A926B6FEBD008DA6C8 /* Main */,
  1244. );
  1245. path = Localizations;
  1246. sourceTree = "<group>";
  1247. };
  1248. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  1249. isa = PBXGroup;
  1250. children = (
  1251. 198377D4266BFFF6004DE65E /* Localizable.strings */,
  1252. );
  1253. path = Main;
  1254. sourceTree = "<group>";
  1255. };
  1256. 19D466A129AA2B0A004D5F33 /* FPUConfig */ = {
  1257. isa = PBXGroup;
  1258. children = (
  1259. 19D466A229AA2B80004D5F33 /* FPUConfigDataFlow.swift */,
  1260. 19D466A429AA2BD4004D5F33 /* FPUConfigProvider.swift */,
  1261. 19D466A629AA2C22004D5F33 /* FPUConfigStateModel.swift */,
  1262. 19D466A829AA306E004D5F33 /* View */,
  1263. );
  1264. path = FPUConfig;
  1265. sourceTree = "<group>";
  1266. };
  1267. 19D466A829AA306E004D5F33 /* View */ = {
  1268. isa = PBXGroup;
  1269. children = (
  1270. 19D466A929AA3099004D5F33 /* FPUConfigRootView.swift */,
  1271. );
  1272. path = View;
  1273. sourceTree = "<group>";
  1274. };
  1275. 19E1F7E629D0828B005C8D20 /* IconConfig */ = {
  1276. isa = PBXGroup;
  1277. children = (
  1278. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */,
  1279. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */,
  1280. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */,
  1281. 19E1F7ED29D088C0005C8D20 /* View */,
  1282. );
  1283. path = IconConfig;
  1284. sourceTree = "<group>";
  1285. };
  1286. 19E1F7ED29D088C0005C8D20 /* View */ = {
  1287. isa = PBXGroup;
  1288. children = (
  1289. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */,
  1290. 1967DFC129D053D300759F30 /* IconImage.swift */,
  1291. 1967DFBF29D053AC00759F30 /* IconSelection.swift */,
  1292. );
  1293. path = View;
  1294. sourceTree = "<group>";
  1295. };
  1296. 19F95FF129F10F9C00314DDC /* Stat */ = {
  1297. isa = PBXGroup;
  1298. children = (
  1299. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */,
  1300. 19F95FF429F10FCF00314DDC /* StatProvider.swift */,
  1301. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */,
  1302. 19F95FF829F10FF600314DDC /* View */,
  1303. );
  1304. path = Stat;
  1305. sourceTree = "<group>";
  1306. };
  1307. 19F95FF829F10FF600314DDC /* View */ = {
  1308. isa = PBXGroup;
  1309. children = (
  1310. 19F95FF929F1102A00314DDC /* StatRootView.swift */,
  1311. 19A9102F2A24BF6300C8951B /* StatsView.swift */,
  1312. 19A910372A24EF3200C8951B /* ChartsView.swift */,
  1313. );
  1314. path = View;
  1315. sourceTree = "<group>";
  1316. };
  1317. 29B478DF61BF8D270F7D8954 /* Snooze */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
  1321. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
  1322. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
  1323. 0A67A70F9438DB6586398458 /* View */,
  1324. );
  1325. path = Snooze;
  1326. sourceTree = "<group>";
  1327. };
  1328. 34CA4DF169B53D67EF18ED8A /* View */ = {
  1329. isa = PBXGroup;
  1330. children = (
  1331. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  1332. );
  1333. path = View;
  1334. sourceTree = "<group>";
  1335. };
  1336. 3811DE0325C9D31700A708ED /* Modules */ = {
  1337. isa = PBXGroup;
  1338. children = (
  1339. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */,
  1340. DDD163032C4C67B400CD525A /* OverrideConfig */,
  1341. 195D80B22AF696EE00D25097 /* Dynamic */,
  1342. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */,
  1343. CEE9A64D2BBB411C00EB5194 /* Calibrations */,
  1344. 190EBCC229FF134900BA767D /* StatConfig */,
  1345. 19F95FF129F10F9C00314DDC /* Stat */,
  1346. CE94597C29E9E1CD0047C9C6 /* WatchConfig */,
  1347. 19E1F7E629D0828B005C8D20 /* IconConfig */,
  1348. 19D466A129AA2B0A004D5F33 /* FPUConfig */,
  1349. F90692CD274B99850037068D /* HealthKit */,
  1350. 672F63EEAE27400625E14BAD /* AutotuneConfig */,
  1351. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  1352. 3811DE0425C9D32E00A708ED /* Base */,
  1353. F75CB57ED6971B46F8756083 /* CGM */,
  1354. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  1355. E42231DBF0DBE2B4B92D1B15 /* CREditor */,
  1356. 9E56E3626FAD933385101B76 /* DataTable */,
  1357. C2C98283C436DB934D7E7994 /* Bolus */,
  1358. 3811DE2725C9D49500A708ED /* Home */,
  1359. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  1360. 3811DE1A25C9D48300A708ED /* Main */,
  1361. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  1362. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  1363. F66B236E00924A05D6A9F9DF /* NotificationsConfig */,
  1364. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */,
  1365. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  1366. E493126EA71765130F64CCE5 /* PumpSettingsEditor */,
  1367. 3811DE3825C9D4A100A708ED /* Settings */,
  1368. 29B478DF61BF8D270F7D8954 /* Snooze */,
  1369. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  1370. );
  1371. path = Modules;
  1372. sourceTree = "<group>";
  1373. };
  1374. 3811DE0425C9D32E00A708ED /* Base */ = {
  1375. isa = PBXGroup;
  1376. children = (
  1377. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  1378. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  1379. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  1380. );
  1381. path = Base;
  1382. sourceTree = "<group>";
  1383. };
  1384. 3811DE1325C9D39E00A708ED /* Sources */ = {
  1385. isa = PBXGroup;
  1386. children = (
  1387. CE7CA3422A064973004BE681 /* Shortcuts */,
  1388. 3811DEDE25C9E2DD00A708ED /* Application */,
  1389. 3811DF0A25CAAAA500A708ED /* APS */,
  1390. E00EEBFC27368630002FF094 /* Assemblies */,
  1391. 38E98A3225F5300800C0CED0 /* Config */,
  1392. 388E5A5A25B6F05F0019842D /* Helpers */,
  1393. 38DF178A27733E0F00B3528F /* AnimatedBackground */,
  1394. 198377CF266BFEDE004DE65E /* Localizations */,
  1395. 38E98A1A25F52C9300C0CED0 /* Logger */,
  1396. 388E5A5925B6F0250019842D /* Models */,
  1397. 3811DE0325C9D31700A708ED /* Modules */,
  1398. 3811DE1425C9D40400A708ED /* Router */,
  1399. 3811DE9125C9D88200A708ED /* Services */,
  1400. 3883582E25EEAFC000E024B2 /* Views */,
  1401. );
  1402. path = Sources;
  1403. sourceTree = "<group>";
  1404. };
  1405. 3811DE1425C9D40400A708ED /* Router */ = {
  1406. isa = PBXGroup;
  1407. children = (
  1408. 3811DE1525C9D40400A708ED /* Screen.swift */,
  1409. 3811DE1625C9D40400A708ED /* Router.swift */,
  1410. );
  1411. path = Router;
  1412. sourceTree = "<group>";
  1413. };
  1414. 3811DE1A25C9D48300A708ED /* Main */ = {
  1415. isa = PBXGroup;
  1416. children = (
  1417. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  1418. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  1419. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  1420. 3811DE1F25C9D48300A708ED /* View */,
  1421. );
  1422. path = Main;
  1423. sourceTree = "<group>";
  1424. };
  1425. 3811DE1F25C9D48300A708ED /* View */ = {
  1426. isa = PBXGroup;
  1427. children = (
  1428. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  1429. );
  1430. path = View;
  1431. sourceTree = "<group>";
  1432. };
  1433. 3811DE2725C9D49500A708ED /* Home */ = {
  1434. isa = PBXGroup;
  1435. children = (
  1436. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  1437. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  1438. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  1439. 3811DE2C25C9D49500A708ED /* View */,
  1440. );
  1441. path = Home;
  1442. sourceTree = "<group>";
  1443. };
  1444. 3811DE2C25C9D49500A708ED /* View */ = {
  1445. isa = PBXGroup;
  1446. children = (
  1447. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  1448. 3833B51E260264AC003021B3 /* Chart */,
  1449. 3833B51F260264B6003021B3 /* Header */,
  1450. );
  1451. path = View;
  1452. sourceTree = "<group>";
  1453. };
  1454. 3811DE3825C9D4A100A708ED /* Settings */ = {
  1455. isa = PBXGroup;
  1456. children = (
  1457. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  1458. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  1459. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  1460. 3811DE3B25C9D4A100A708ED /* View */,
  1461. );
  1462. path = Settings;
  1463. sourceTree = "<group>";
  1464. };
  1465. 3811DE3B25C9D4A100A708ED /* View */ = {
  1466. isa = PBXGroup;
  1467. children = (
  1468. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  1469. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */,
  1470. DD1DB7CD2BED00CF0048B367 /* SettingsRootViewModel.swift */,
  1471. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */,
  1472. );
  1473. path = View;
  1474. sourceTree = "<group>";
  1475. };
  1476. 3811DE9125C9D88200A708ED /* Services */ = {
  1477. isa = PBXGroup;
  1478. children = (
  1479. 6B1A8D2C2B156EC100E76752 /* LiveActivity */,
  1480. CEB434E128B8F9BC00B70274 /* Bluetooth */,
  1481. F90692A8274B7A980037068D /* HealthKit */,
  1482. 38E8754D275556E100975559 /* WatchManager */,
  1483. 38E87406274F9AA500975559 /* UserNotifications */,
  1484. 3862CC2C2743F9DC00BF832C /* Calendar */,
  1485. 38AEE75025F021F10013F05B /* SettingsManager */,
  1486. 38B4F3C425E5016800E76A18 /* Notifications */,
  1487. 3811DE9225C9D88200A708ED /* Appearance */,
  1488. 3811DE9425C9D88200A708ED /* Network */,
  1489. 3811DE9825C9D88300A708ED /* Storage */,
  1490. 3811DEA525C9D88300A708ED /* UnlockManager */,
  1491. );
  1492. path = Services;
  1493. sourceTree = "<group>";
  1494. };
  1495. 3811DE9225C9D88200A708ED /* Appearance */ = {
  1496. isa = PBXGroup;
  1497. children = (
  1498. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  1499. );
  1500. path = Appearance;
  1501. sourceTree = "<group>";
  1502. };
  1503. 3811DE9425C9D88200A708ED /* Network */ = {
  1504. isa = PBXGroup;
  1505. children = (
  1506. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
  1507. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  1508. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  1509. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  1510. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  1511. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  1512. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */,
  1513. );
  1514. path = Network;
  1515. sourceTree = "<group>";
  1516. };
  1517. 3811DE9825C9D88300A708ED /* Storage */ = {
  1518. isa = PBXGroup;
  1519. children = (
  1520. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  1521. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  1522. 3811DE9925C9D88300A708ED /* Cache */,
  1523. 38E44529274E40F100EC9A94 /* Disk */,
  1524. 3811DE9D25C9D88300A708ED /* Keychain */,
  1525. );
  1526. path = Storage;
  1527. sourceTree = "<group>";
  1528. };
  1529. 3811DE9925C9D88300A708ED /* Cache */ = {
  1530. isa = PBXGroup;
  1531. children = (
  1532. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  1533. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  1534. );
  1535. path = Cache;
  1536. sourceTree = "<group>";
  1537. };
  1538. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  1539. isa = PBXGroup;
  1540. children = (
  1541. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  1542. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  1543. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  1544. );
  1545. path = Keychain;
  1546. sourceTree = "<group>";
  1547. };
  1548. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  1549. isa = PBXGroup;
  1550. children = (
  1551. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  1552. );
  1553. path = UnlockManager;
  1554. sourceTree = "<group>";
  1555. };
  1556. 3811DED425C9E1E300A708ED /* Resources */ = {
  1557. isa = PBXGroup;
  1558. children = (
  1559. 388E597125AD9CF10019842D /* json */,
  1560. 388E596E25AD96040019842D /* javascript */,
  1561. 3811DEC725C9DA7300A708ED /* FreeAPS.entitlements */,
  1562. 388E596425AD948E0019842D /* Info.plist */,
  1563. 1927C8E82744606D00347C69 /* InfoPlist.strings */,
  1564. B9CAAEFB2AE70836000F68BC /* branch.txt */,
  1565. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */,
  1566. );
  1567. path = Resources;
  1568. sourceTree = "<group>";
  1569. };
  1570. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  1571. isa = PBXGroup;
  1572. children = (
  1573. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
  1574. 388E595B25AD948C0019842D /* FreeAPSApp.swift */,
  1575. );
  1576. path = Application;
  1577. sourceTree = "<group>";
  1578. };
  1579. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  1580. isa = PBXGroup;
  1581. children = (
  1582. 38E44527274E401C00EC9A94 /* Protected.swift */,
  1583. 3811DEE425CA063400A708ED /* Injected.swift */,
  1584. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  1585. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  1586. );
  1587. path = PropertyWrappers;
  1588. sourceTree = "<group>";
  1589. };
  1590. 3811DF0A25CAAAA500A708ED /* APS */ = {
  1591. isa = PBXGroup;
  1592. children = (
  1593. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */,
  1594. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  1595. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  1596. 38A43597262E0E4900E80935 /* FetchAnnouncementsManager.swift */,
  1597. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  1598. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  1599. 3856933F270B57A00002C50D /* CGM */,
  1600. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  1601. 388E5A5825B6F0070019842D /* OpenAPS */,
  1602. 38A0362725ECF05300FCBB52 /* Storage */,
  1603. );
  1604. path = APS;
  1605. sourceTree = "<group>";
  1606. };
  1607. 3818AA44274C229000843DB3 /* Packages */ = {
  1608. isa = PBXGroup;
  1609. children = (
  1610. 3818AA45274C229000843DB3 /* LibreTransmitter */,
  1611. );
  1612. name = Packages;
  1613. sourceTree = "<group>";
  1614. };
  1615. 3818AA48274C267000843DB3 /* Frameworks */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */,
  1619. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */,
  1620. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */,
  1621. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */,
  1622. CEC751D529D88262006E9D24 /* MinimedKit.framework */,
  1623. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */,
  1624. CEC751D129D88257006E9D24 /* OmniKit.framework */,
  1625. CEC751D329D88257006E9D24 /* OmniKitUI.framework */,
  1626. CE79502D29980E4D00FA576E /* ShareClientUI.framework */,
  1627. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */,
  1628. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */,
  1629. CE398D1A297D69A900DF218F /* ShareClient.framework */,
  1630. CE398D17297C9EE800DF218F /* G7SensorKit.framework */,
  1631. CE398D012977349800DF218F /* CryptoKit.framework */,
  1632. CE6B025628F350FF000C5502 /* HealthKit.framework */,
  1633. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
  1634. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
  1635. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
  1636. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
  1637. 38E873FD274F761800975559 /* CoreNFC.framework */,
  1638. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
  1639. 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
  1640. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
  1641. 3818AA4E274C26A300843DB3 /* MockKit.framework */,
  1642. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
  1643. 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
  1644. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
  1645. 3818AA53274C26A300843DB3 /* OmniKit.framework */,
  1646. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
  1647. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
  1648. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
  1649. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
  1650. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
  1651. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */,
  1652. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */,
  1653. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */,
  1654. );
  1655. name = Frameworks;
  1656. sourceTree = "<group>";
  1657. };
  1658. 3833B51E260264AC003021B3 /* Chart */ = {
  1659. isa = PBXGroup;
  1660. children = (
  1661. BD3CC0712B0B89D50013189E /* MainChartView.swift */,
  1662. );
  1663. path = Chart;
  1664. sourceTree = "<group>";
  1665. };
  1666. 3833B51F260264B6003021B3 /* Header */ = {
  1667. isa = PBXGroup;
  1668. children = (
  1669. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  1670. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  1671. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  1672. );
  1673. path = Header;
  1674. sourceTree = "<group>";
  1675. };
  1676. 3856933F270B57A00002C50D /* CGM */ = {
  1677. isa = PBXGroup;
  1678. children = (
  1679. CEE9A65A2BBB41AD00EB5194 /* Calibrations */,
  1680. F816825F28DB441800054060 /* BluetoothTransmitter.swift */,
  1681. F816825D28DB441200054060 /* HeartBeatManager.swift */,
  1682. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  1683. 38569344270B5DFA0002C50D /* CGMType.swift */,
  1684. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  1685. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
  1686. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */,
  1687. );
  1688. path = CGM;
  1689. sourceTree = "<group>";
  1690. };
  1691. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  1692. isa = PBXGroup;
  1693. children = (
  1694. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  1695. );
  1696. path = Calendar;
  1697. sourceTree = "<group>";
  1698. };
  1699. 3883582E25EEAFC000E024B2 /* Views */ = {
  1700. isa = PBXGroup;
  1701. children = (
  1702. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  1703. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */,
  1704. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  1705. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  1706. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  1707. 38DF1785276A73D400B3528F /* TagCloudView.swift */,
  1708. );
  1709. path = Views;
  1710. sourceTree = "<group>";
  1711. };
  1712. 388E594F25AD948C0019842D = {
  1713. isa = PBXGroup;
  1714. children = (
  1715. 587A54C82BCDCE0F009D38E2 /* Model */,
  1716. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */,
  1717. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */,
  1718. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  1719. 388E595A25AD948C0019842D /* FreeAPS */,
  1720. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */,
  1721. 3818AA44274C229000843DB3 /* Packages */,
  1722. 38E8751D27554D5500975559 /* FreeAPSWatch */,
  1723. 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */,
  1724. 6B1A8D1C2B14D91600E76752 /* LiveActivity */,
  1725. 388E595925AD948C0019842D /* Products */,
  1726. 3818AA48274C267000843DB3 /* Frameworks */,
  1727. 192F0FF5276AC36D0085BE4D /* Recovered References */,
  1728. );
  1729. sourceTree = "<group>";
  1730. };
  1731. 388E595925AD948C0019842D /* Products */ = {
  1732. isa = PBXGroup;
  1733. children = (
  1734. 388E595825AD948C0019842D /* FreeAPS.app */,
  1735. 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */,
  1736. 38E8751C27554D5500975559 /* FreeAPSWatch.app */,
  1737. 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */,
  1738. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */,
  1739. );
  1740. name = Products;
  1741. sourceTree = "<group>";
  1742. };
  1743. 388E595A25AD948C0019842D /* FreeAPS */ = {
  1744. isa = PBXGroup;
  1745. children = (
  1746. 3811DED425C9E1E300A708ED /* Resources */,
  1747. 3811DE1325C9D39E00A708ED /* Sources */,
  1748. );
  1749. path = FreeAPS;
  1750. sourceTree = "<group>";
  1751. };
  1752. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  1753. isa = PBXGroup;
  1754. children = (
  1755. 388E596B25AD95110019842D /* OpenAPS.swift */,
  1756. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  1757. 384E803725C388640086DB71 /* Script.swift */,
  1758. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  1759. );
  1760. path = OpenAPS;
  1761. sourceTree = "<group>";
  1762. };
  1763. 388E5A5925B6F0250019842D /* Models */ = {
  1764. isa = PBXGroup;
  1765. children = (
  1766. 385CEAC025F2EA52002D6D5B /* Announcement.swift */,
  1767. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  1768. 38A00B1E25FC00F7006BC0B0 /* Autotune.swift */,
  1769. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  1770. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  1771. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  1772. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  1773. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  1774. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  1775. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  1776. 38AEE73C25F0200C0013F05B /* FreeAPSSettings.swift */,
  1777. 383948D925CD64D500E91849 /* Glucose.swift */,
  1778. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  1779. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  1780. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */,
  1781. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  1782. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  1783. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  1784. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  1785. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  1786. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  1787. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  1788. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  1789. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  1790. 3811DE8E25C9D80400A708ED /* User.swift */,
  1791. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
  1792. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */,
  1793. CE82E02628E869DF00473A9C /* AlertEntry.swift */,
  1794. 19B0EF2028F6D66200069496 /* Statistics.swift */,
  1795. 19012CDB291D2CB900FB8210 /* LoopStats.swift */,
  1796. FE41E4D329463C660047FD55 /* NightscoutStatistics.swift */,
  1797. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */,
  1798. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */,
  1799. 1967DFBD29D052C200759F30 /* Icons.swift */,
  1800. 19D4E4EA29FC6A9F00351451 /* Charts.swift */,
  1801. 19A910352A24D6D700C8951B /* DateFilter.swift */,
  1802. 193F6CDC2A512C8F001240FD /* Loops.swift */,
  1803. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */,
  1804. CC41E2992B1E1F460070974F /* HistoryLayout.swift */,
  1805. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */,
  1806. 583684072BD195A700070A60 /* Determination.swift */,
  1807. BDC2EA462C3045AD00E5BBD0 /* Override.swift */,
  1808. );
  1809. path = Models;
  1810. sourceTree = "<group>";
  1811. };
  1812. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  1813. isa = PBXGroup;
  1814. children = (
  1815. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  1816. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  1817. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  1818. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  1819. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  1820. 389487392614928B004DF424 /* DispatchTimer.swift */,
  1821. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  1822. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  1823. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  1824. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  1825. 388E5A5B25B6F0770019842D /* JSON.swift */,
  1826. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  1827. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  1828. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  1829. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  1830. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  1831. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  1832. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  1833. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  1834. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
  1835. CEB434E428B8FF5D00B70274 /* UIColor.swift */,
  1836. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */,
  1837. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */,
  1838. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */,
  1839. 587DA1F52B77F3DD00B28F8A /* SettingsRowView.swift */,
  1840. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */,
  1841. BD1661302B82ADAB00256551 /* CustomProgressView.swift */,
  1842. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */,
  1843. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */,
  1844. 11E79B122C5F2585007893C2 /* DynamicGlucoseColor.swift */,
  1845. C20BC6CD2C66FBFD002BC1C6 /* Rounding.swift */,
  1846. );
  1847. path = Helpers;
  1848. sourceTree = "<group>";
  1849. };
  1850. 38A0362725ECF05300FCBB52 /* Storage */ = {
  1851. isa = PBXGroup;
  1852. children = (
  1853. 385CEAC325F2F154002D6D5B /* AnnouncementsStorage.swift */,
  1854. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  1855. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  1856. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  1857. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  1858. CE82E02428E867BA00473A9C /* AlertStorage.swift */,
  1859. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */,
  1860. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */,
  1861. );
  1862. path = Storage;
  1863. sourceTree = "<group>";
  1864. };
  1865. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  1866. isa = PBXGroup;
  1867. children = (
  1868. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  1869. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  1870. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
  1871. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
  1872. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
  1873. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */,
  1874. );
  1875. path = Extensions;
  1876. sourceTree = "<group>";
  1877. };
  1878. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  1879. isa = PBXGroup;
  1880. children = (
  1881. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  1882. );
  1883. path = SettingsManager;
  1884. sourceTree = "<group>";
  1885. };
  1886. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  1887. isa = PBXGroup;
  1888. children = (
  1889. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  1890. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  1891. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  1892. );
  1893. path = Notifications;
  1894. sourceTree = "<group>";
  1895. };
  1896. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  1897. isa = PBXGroup;
  1898. children = (
  1899. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  1900. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  1901. );
  1902. path = SwiftNotificationCenter;
  1903. sourceTree = "<group>";
  1904. };
  1905. 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
  1906. isa = PBXGroup;
  1907. children = (
  1908. 38DF178B27733E6800B3528F /* snow.sks */,
  1909. 38DF178C27733E6800B3528F /* Assets.xcassets */,
  1910. 38DF178F27733EAD00B3528F /* SnowScene.swift */,
  1911. );
  1912. path = AnimatedBackground;
  1913. sourceTree = "<group>";
  1914. };
  1915. 38E44529274E40F100EC9A94 /* Disk */ = {
  1916. isa = PBXGroup;
  1917. children = (
  1918. 38E4452C274E411600EC9A94 /* Disk.swift */,
  1919. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
  1920. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
  1921. 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
  1922. 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
  1923. 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
  1924. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
  1925. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
  1926. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
  1927. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
  1928. );
  1929. path = Disk;
  1930. sourceTree = "<group>";
  1931. };
  1932. 38E87406274F9AA500975559 /* UserNotifications */ = {
  1933. isa = PBXGroup;
  1934. children = (
  1935. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
  1936. );
  1937. path = UserNotifications;
  1938. sourceTree = "<group>";
  1939. };
  1940. 38E8751D27554D5500975559 /* FreeAPSWatch */ = {
  1941. isa = PBXGroup;
  1942. children = (
  1943. 1980131D29CC9839002FF024 /* Info.plist */,
  1944. 38E8755627564B6100975559 /* FreeAPSWatch.entitlements */,
  1945. 38E8751E27554D5700975559 /* Assets.xcassets */,
  1946. );
  1947. path = FreeAPSWatch;
  1948. sourceTree = "<group>";
  1949. };
  1950. 38E8752827554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
  1951. isa = PBXGroup;
  1952. children = (
  1953. 38E8755527564B5000975559 /* FreeAPSWatch WatchKit Extension.entitlements */,
  1954. 38E8755027555D0500975559 /* DataFlow.swift */,
  1955. 38E8754B2755548F00975559 /* WatchStateModel.swift */,
  1956. 38E875482755505800975559 /* Views */,
  1957. 38E8752927554D5700975559 /* FreeAPSApp.swift */,
  1958. 38E8752D27554D5700975559 /* NotificationController.swift */,
  1959. 38E8752F27554D5700975559 /* NotificationView.swift */,
  1960. 38E8753127554D5700975559 /* ComplicationController.swift */,
  1961. 38E8753327554D5800975559 /* Assets.xcassets */,
  1962. 38E8753827554D5900975559 /* Info.plist */,
  1963. 38E8753927554D5900975559 /* PushNotificationPayload.apns */,
  1964. 38E8753527554D5800975559 /* Preview Content */,
  1965. );
  1966. path = "FreeAPSWatch WatchKit Extension";
  1967. sourceTree = "<group>";
  1968. };
  1969. 38E8753527554D5800975559 /* Preview Content */ = {
  1970. isa = PBXGroup;
  1971. children = (
  1972. 38E8753627554D5800975559 /* Preview Assets.xcassets */,
  1973. );
  1974. path = "Preview Content";
  1975. sourceTree = "<group>";
  1976. };
  1977. 38E875482755505800975559 /* Views */ = {
  1978. isa = PBXGroup;
  1979. children = (
  1980. 38E8752B27554D5700975559 /* MainView.swift */,
  1981. 38E87549275550BB00975559 /* CarbsView.swift */,
  1982. 38E8755A27568A6700975559 /* ConfirmationView.swift */,
  1983. 38E8757A2757B1C300975559 /* TempTargetsView.swift */,
  1984. 38E8757C2757C45D00975559 /* BolusView.swift */,
  1985. 38E8757F27595DC500975559 /* BolusConfirmationView.swift */,
  1986. );
  1987. path = Views;
  1988. sourceTree = "<group>";
  1989. };
  1990. 38E8754D275556E100975559 /* WatchManager */ = {
  1991. isa = PBXGroup;
  1992. children = (
  1993. 38E8754E275556FA00975559 /* WatchManager.swift */,
  1994. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */,
  1995. );
  1996. path = WatchManager;
  1997. sourceTree = "<group>";
  1998. };
  1999. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  2000. isa = PBXGroup;
  2001. children = (
  2002. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  2003. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  2004. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  2005. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  2006. );
  2007. path = Logger;
  2008. sourceTree = "<group>";
  2009. };
  2010. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  2011. isa = PBXGroup;
  2012. children = (
  2013. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  2014. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  2015. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  2016. );
  2017. path = IssueReporter;
  2018. sourceTree = "<group>";
  2019. };
  2020. 38E98A3225F5300800C0CED0 /* Config */ = {
  2021. isa = PBXGroup;
  2022. children = (
  2023. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  2024. );
  2025. path = Config;
  2026. sourceTree = "<group>";
  2027. };
  2028. 38FCF3EE25E9028E0078B0D1 /* FreeAPSTests */ = {
  2029. isa = PBXGroup;
  2030. children = (
  2031. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  2032. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  2033. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */,
  2034. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */,
  2035. );
  2036. path = FreeAPSTests;
  2037. sourceTree = "<group>";
  2038. };
  2039. 3E1C41D9301B7058AA7BF5EA /* PreferencesEditor */ = {
  2040. isa = PBXGroup;
  2041. children = (
  2042. 12204445D7632AF09264A979 /* PreferencesEditorDataFlow.swift */,
  2043. 6F8BA8533F56BC55748CA877 /* PreferencesEditorProvider.swift */,
  2044. 0CA3E609094E064C99A4752C /* PreferencesEditorStateModel.swift */,
  2045. 833DA2F9E47E64E305F92F9D /* View */,
  2046. );
  2047. path = PreferencesEditor;
  2048. sourceTree = "<group>";
  2049. };
  2050. 4E8C7B59F8065047ECE20965 /* View */ = {
  2051. isa = PBXGroup;
  2052. children = (
  2053. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  2054. );
  2055. path = View;
  2056. sourceTree = "<group>";
  2057. };
  2058. 4F4AE4D901E8BA872B207D7F /* View */ = {
  2059. isa = PBXGroup;
  2060. children = (
  2061. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  2062. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */,
  2063. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */,
  2064. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */,
  2065. );
  2066. path = View;
  2067. sourceTree = "<group>";
  2068. };
  2069. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  2070. isa = PBXGroup;
  2071. children = (
  2072. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  2073. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  2074. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  2075. 84BDC840A57C65A1E6F9F780 /* View */,
  2076. );
  2077. path = ManualTempBasal;
  2078. sourceTree = "<group>";
  2079. };
  2080. 510CCF29FD3216C5BBC49A15 /* View */ = {
  2081. isa = PBXGroup;
  2082. children = (
  2083. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  2084. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  2085. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  2086. );
  2087. path = View;
  2088. sourceTree = "<group>";
  2089. };
  2090. 54946647FDCFE43028F60511 /* View */ = {
  2091. isa = PBXGroup;
  2092. children = (
  2093. D0BDC6993C1087310EDFC428 /* CREditorRootView.swift */,
  2094. );
  2095. path = View;
  2096. sourceTree = "<group>";
  2097. };
  2098. 55DE731ACE8289FAF3819077 /* View */ = {
  2099. isa = PBXGroup;
  2100. children = (
  2101. 8CF5ACEE1F0859670E71B2C0 /* AutotuneConfigRootView.swift */,
  2102. );
  2103. path = View;
  2104. sourceTree = "<group>";
  2105. };
  2106. 5825D1622BD405AE00F36E9B /* Helper */ = {
  2107. isa = PBXGroup;
  2108. children = (
  2109. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */,
  2110. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */,
  2111. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */,
  2112. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */,
  2113. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */,
  2114. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */,
  2115. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */,
  2116. 581AC4382BE22ED10038760C /* JSONConverter.swift */,
  2117. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */,
  2118. 582FAE422C05102C00D1C13F /* CoreDataError.swift */,
  2119. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */,
  2120. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */,
  2121. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */,
  2122. );
  2123. path = Helper;
  2124. sourceTree = "<group>";
  2125. };
  2126. 587A54C82BCDCE0F009D38E2 /* Model */ = {
  2127. isa = PBXGroup;
  2128. children = (
  2129. DD57C46C2C4C7003001A5B28 /* Classes+Properties */,
  2130. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */,
  2131. 5825D1622BD405AE00F36E9B /* Helper */,
  2132. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */,
  2133. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */,
  2134. );
  2135. path = Model;
  2136. sourceTree = "<group>";
  2137. };
  2138. 64271A287C92581EADCB47FA /* View */ = {
  2139. isa = PBXGroup;
  2140. children = (
  2141. B8C7F882606FF83A21BE00D8 /* PumpSettingsEditorRootView.swift */,
  2142. );
  2143. path = View;
  2144. sourceTree = "<group>";
  2145. };
  2146. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  2147. isa = PBXGroup;
  2148. children = (
  2149. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  2150. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  2151. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  2152. 34CA4DF169B53D67EF18ED8A /* View */,
  2153. );
  2154. path = TargetsEditor;
  2155. sourceTree = "<group>";
  2156. };
  2157. 672F63EEAE27400625E14BAD /* AutotuneConfig */ = {
  2158. isa = PBXGroup;
  2159. children = (
  2160. 8DCCCCE633F5E98E41B0CD3C /* AutotuneConfigDataFlow.swift */,
  2161. B5EF98E22A39CD656A230704 /* AutotuneConfigProvider.swift */,
  2162. D295A3F870E826BE371C0BB5 /* AutotuneConfigStateModel.swift */,
  2163. 55DE731ACE8289FAF3819077 /* View */,
  2164. );
  2165. path = AutotuneConfig;
  2166. sourceTree = "<group>";
  2167. };
  2168. 6B1A8D1C2B14D91600E76752 /* LiveActivity */ = {
  2169. isa = PBXGroup;
  2170. children = (
  2171. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */,
  2172. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */,
  2173. 6B1A8D232B14D91700E76752 /* Assets.xcassets */,
  2174. 6B1A8D252B14D91700E76752 /* Info.plist */,
  2175. );
  2176. path = LiveActivity;
  2177. sourceTree = "<group>";
  2178. };
  2179. 6B1A8D2C2B156EC100E76752 /* LiveActivity */ = {
  2180. isa = PBXGroup;
  2181. children = (
  2182. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */,
  2183. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */,
  2184. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */,
  2185. BDF34F882C10C65E00D51995 /* Data */,
  2186. );
  2187. path = LiveActivity;
  2188. sourceTree = "<group>";
  2189. };
  2190. 833DA2F9E47E64E305F92F9D /* View */ = {
  2191. isa = PBXGroup;
  2192. children = (
  2193. 8A965332F237348B119FB858 /* PreferencesEditorRootView.swift */,
  2194. );
  2195. path = View;
  2196. sourceTree = "<group>";
  2197. };
  2198. 84BDC840A57C65A1E6F9F780 /* View */ = {
  2199. isa = PBXGroup;
  2200. children = (
  2201. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  2202. );
  2203. path = View;
  2204. sourceTree = "<group>";
  2205. };
  2206. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  2207. isa = PBXGroup;
  2208. children = (
  2209. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  2210. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  2211. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  2212. 510CCF29FD3216C5BBC49A15 /* View */,
  2213. );
  2214. path = PumpConfig;
  2215. sourceTree = "<group>";
  2216. };
  2217. 9E56E3626FAD933385101B76 /* DataTable */ = {
  2218. isa = PBXGroup;
  2219. children = (
  2220. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  2221. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  2222. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  2223. 0EE66DD474AFFD4FD787D5B9 /* View */,
  2224. );
  2225. path = DataTable;
  2226. sourceTree = "<group>";
  2227. };
  2228. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  2229. isa = PBXGroup;
  2230. children = (
  2231. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  2232. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  2233. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  2234. 18B49BC9587A59E3A347C1CD /* View */,
  2235. );
  2236. path = BasalProfileEditor;
  2237. sourceTree = "<group>";
  2238. };
  2239. B9488883C59C31550E0B4CEC /* View */ = {
  2240. isa = PBXGroup;
  2241. children = (
  2242. BDFD16592AE40438007F0DDA /* BolusRootView.swift */,
  2243. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */,
  2244. BDB899872C564509006F3298 /* ForeCastChart.swift */,
  2245. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */,
  2246. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */,
  2247. );
  2248. path = View;
  2249. sourceTree = "<group>";
  2250. };
  2251. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */ = {
  2252. isa = PBXGroup;
  2253. children = (
  2254. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */,
  2255. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */,
  2256. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */,
  2257. BD7DA9AA2AE06E9600601B20 /* View */,
  2258. );
  2259. path = BolusCalculatorConfig;
  2260. sourceTree = "<group>";
  2261. };
  2262. BD7DA9AA2AE06E9600601B20 /* View */ = {
  2263. isa = PBXGroup;
  2264. children = (
  2265. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */,
  2266. );
  2267. path = View;
  2268. sourceTree = "<group>";
  2269. };
  2270. BDF34F882C10C65E00D51995 /* Data */ = {
  2271. isa = PBXGroup;
  2272. children = (
  2273. BDF34F822C10C5B600D51995 /* DataManager.swift */,
  2274. BDF34F842C10C62E00D51995 /* GlucoseData.swift */,
  2275. BDF34F942C10D27300D51995 /* DeterminationData.swift */,
  2276. BDBAACF92C2D439700370AAE /* OverrideData.swift */,
  2277. );
  2278. path = Data;
  2279. sourceTree = "<group>";
  2280. };
  2281. C2C98283C436DB934D7E7994 /* Bolus */ = {
  2282. isa = PBXGroup;
  2283. children = (
  2284. C8D1A7CA8C10C4403D4BBFA7 /* BolusDataFlow.swift */,
  2285. C19984D62EFC0035A9E9644D /* BolusProvider.swift */,
  2286. 223EC0494F55A91E3EA69EF4 /* BolusStateModel.swift */,
  2287. B9488883C59C31550E0B4CEC /* View */,
  2288. );
  2289. path = Bolus;
  2290. sourceTree = "<group>";
  2291. };
  2292. CE1856F32ADC4835007E39C7 /* Carbs */ = {
  2293. isa = PBXGroup;
  2294. children = (
  2295. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */,
  2296. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */,
  2297. );
  2298. path = Carbs;
  2299. sourceTree = "<group>";
  2300. };
  2301. CE7CA3422A064973004BE681 /* Shortcuts */ = {
  2302. isa = PBXGroup;
  2303. children = (
  2304. 110AEDE22C5193D100615CC9 /* Bolus */,
  2305. CE1856F32ADC4835007E39C7 /* Carbs */,
  2306. CE7CA3432A064973004BE681 /* AppShortcuts.swift */,
  2307. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */,
  2308. CE7CA3452A064973004BE681 /* TempPresets */,
  2309. CE7CA34B2A064973004BE681 /* State */,
  2310. );
  2311. path = Shortcuts;
  2312. sourceTree = "<group>";
  2313. };
  2314. CE7CA3452A064973004BE681 /* TempPresets */ = {
  2315. isa = PBXGroup;
  2316. children = (
  2317. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */,
  2318. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */,
  2319. CE7CA3482A064973004BE681 /* ListTempPresetsIntent.swift */,
  2320. CE7CA3492A064973004BE681 /* tempPresetIntent.swift */,
  2321. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */,
  2322. );
  2323. path = TempPresets;
  2324. sourceTree = "<group>";
  2325. };
  2326. CE7CA34B2A064973004BE681 /* State */ = {
  2327. isa = PBXGroup;
  2328. children = (
  2329. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */,
  2330. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */,
  2331. CE7CA3572A064E2F004BE681 /* ListStateView.swift */,
  2332. );
  2333. path = State;
  2334. sourceTree = "<group>";
  2335. };
  2336. CE94597C29E9E1CD0047C9C6 /* WatchConfig */ = {
  2337. isa = PBXGroup;
  2338. children = (
  2339. CE94598529E9E3FE0047C9C6 /* View */,
  2340. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */,
  2341. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */,
  2342. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */,
  2343. );
  2344. path = WatchConfig;
  2345. sourceTree = "<group>";
  2346. };
  2347. CE94598529E9E3FE0047C9C6 /* View */ = {
  2348. isa = PBXGroup;
  2349. children = (
  2350. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */,
  2351. );
  2352. path = View;
  2353. sourceTree = "<group>";
  2354. };
  2355. CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
  2356. isa = PBXGroup;
  2357. children = (
  2358. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
  2359. );
  2360. path = Bluetooth;
  2361. sourceTree = "<group>";
  2362. };
  2363. CEE9A64D2BBB411C00EB5194 /* Calibrations */ = {
  2364. isa = PBXGroup;
  2365. children = (
  2366. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */,
  2367. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */,
  2368. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */,
  2369. CEE9A6502BBB418300EB5194 /* View */,
  2370. );
  2371. path = Calibrations;
  2372. sourceTree = "<group>";
  2373. };
  2374. CEE9A6502BBB418300EB5194 /* View */ = {
  2375. isa = PBXGroup;
  2376. children = (
  2377. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */,
  2378. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */,
  2379. );
  2380. path = View;
  2381. sourceTree = "<group>";
  2382. };
  2383. CEE9A65A2BBB41AD00EB5194 /* Calibrations */ = {
  2384. isa = PBXGroup;
  2385. children = (
  2386. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */,
  2387. );
  2388. path = Calibrations;
  2389. sourceTree = "<group>";
  2390. };
  2391. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  2392. isa = PBXGroup;
  2393. children = (
  2394. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  2395. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  2396. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  2397. 4F4AE4D901E8BA872B207D7F /* View */,
  2398. );
  2399. path = NightscoutConfig;
  2400. sourceTree = "<group>";
  2401. };
  2402. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  2403. isa = PBXGroup;
  2404. children = (
  2405. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  2406. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  2407. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  2408. EEC747824D6593B5CD87E195 /* View */,
  2409. );
  2410. path = ISFEditor;
  2411. sourceTree = "<group>";
  2412. };
  2413. DD57C46C2C4C7003001A5B28 /* Classes+Properties */ = {
  2414. isa = PBXGroup;
  2415. children = (
  2416. DD57C4902C4C7103001A5B28 /* LoopStatRecord+CoreDataClass.swift */,
  2417. DD57C4912C4C7103001A5B28 /* LoopStatRecord+CoreDataProperties.swift */,
  2418. DD57C4922C4C7103001A5B28 /* MealPresetStored+CoreDataClass.swift */,
  2419. DD57C4932C4C7103001A5B28 /* MealPresetStored+CoreDataProperties.swift */,
  2420. DD57C4942C4C7103001A5B28 /* TempTargets+CoreDataClass.swift */,
  2421. DD57C4952C4C7103001A5B28 /* TempTargets+CoreDataProperties.swift */,
  2422. DD57C4962C4C7103001A5B28 /* ForecastValue+CoreDataClass.swift */,
  2423. DD57C4972C4C7103001A5B28 /* ForecastValue+CoreDataProperties.swift */,
  2424. DD57C4982C4C7103001A5B28 /* OrefDetermination+CoreDataClass.swift */,
  2425. DD57C4992C4C7103001A5B28 /* OrefDetermination+CoreDataProperties.swift */,
  2426. DD57C49A2C4C7103001A5B28 /* PumpEventStored+CoreDataClass.swift */,
  2427. DD57C49B2C4C7103001A5B28 /* PumpEventStored+CoreDataProperties.swift */,
  2428. DD57C49C2C4C7103001A5B28 /* TempBasalStored+CoreDataClass.swift */,
  2429. DD57C49D2C4C7103001A5B28 /* TempBasalStored+CoreDataProperties.swift */,
  2430. DD57C49E2C4C7103001A5B28 /* TempTargetsSlider+CoreDataClass.swift */,
  2431. DD57C49F2C4C7103001A5B28 /* TempTargetsSlider+CoreDataProperties.swift */,
  2432. DD57C4A02C4C7103001A5B28 /* Forecast+CoreDataClass.swift */,
  2433. DD57C4A12C4C7103001A5B28 /* Forecast+CoreDataProperties.swift */,
  2434. DD57C4A22C4C7103001A5B28 /* BolusStored+CoreDataClass.swift */,
  2435. DD57C4A32C4C7103001A5B28 /* BolusStored+CoreDataProperties.swift */,
  2436. DD57C4A42C4C7103001A5B28 /* CarbEntryStored+CoreDataClass.swift */,
  2437. DD57C4A52C4C7103001A5B28 /* CarbEntryStored+CoreDataProperties.swift */,
  2438. DD57C4A62C4C7103001A5B28 /* OpenAPS_Battery+CoreDataClass.swift */,
  2439. DD57C4A72C4C7103001A5B28 /* OpenAPS_Battery+CoreDataProperties.swift */,
  2440. DD57C4A82C4C7103001A5B28 /* GlucoseStored+CoreDataClass.swift */,
  2441. DD57C4A92C4C7103001A5B28 /* GlucoseStored+CoreDataProperties.swift */,
  2442. DD57C4AA2C4C7103001A5B28 /* OverrideStored+CoreDataClass.swift */,
  2443. DD57C4AB2C4C7103001A5B28 /* OverrideStored+CoreDataProperties.swift */,
  2444. DD57C4AC2C4C7103001A5B28 /* OverrideRunStored+CoreDataClass.swift */,
  2445. DD57C4AD2C4C7103001A5B28 /* OverrideRunStored+CoreDataProperties.swift */,
  2446. DD57C4AE2C4C7103001A5B28 /* ImportError+CoreDataClass.swift */,
  2447. DD57C4AF2C4C7103001A5B28 /* ImportError+CoreDataProperties.swift */,
  2448. DD57C4B02C4C7103001A5B28 /* StatsData+CoreDataClass.swift */,
  2449. DD57C4B12C4C7103001A5B28 /* StatsData+CoreDataProperties.swift */,
  2450. );
  2451. path = "Classes+Properties";
  2452. sourceTree = "<group>";
  2453. };
  2454. DDD163032C4C67B400CD525A /* OverrideConfig */ = {
  2455. isa = PBXGroup;
  2456. children = (
  2457. DDD1630A2C4C67F000CD525A /* View */,
  2458. DDD163112C4C689900CD525A /* OverrideStateModel.swift */,
  2459. DDD163132C4C68D300CD525A /* OverrideProvider.swift */,
  2460. DDD163152C4C690300CD525A /* OverrideDataFlow.swift */,
  2461. );
  2462. path = OverrideConfig;
  2463. sourceTree = "<group>";
  2464. };
  2465. DDD1630A2C4C67F000CD525A /* View */ = {
  2466. isa = PBXGroup;
  2467. children = (
  2468. DDD163172C4C694000CD525A /* OverrideRootView.swift */,
  2469. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */,
  2470. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */,
  2471. );
  2472. path = View;
  2473. sourceTree = "<group>";
  2474. };
  2475. E00EEBFC27368630002FF094 /* Assemblies */ = {
  2476. isa = PBXGroup;
  2477. children = (
  2478. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  2479. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  2480. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  2481. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  2482. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  2483. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  2484. );
  2485. path = Assemblies;
  2486. sourceTree = "<group>";
  2487. };
  2488. E42231DBF0DBE2B4B92D1B15 /* CREditor */ = {
  2489. isa = PBXGroup;
  2490. children = (
  2491. 7E22146D3DF4853786C78132 /* CREditorDataFlow.swift */,
  2492. 9C8D5F457B5AFF763F8CF3DF /* CREditorProvider.swift */,
  2493. 64AA5E04A2761F6EEA6568E1 /* CREditorStateModel.swift */,
  2494. 54946647FDCFE43028F60511 /* View */,
  2495. );
  2496. path = CREditor;
  2497. sourceTree = "<group>";
  2498. };
  2499. E493126EA71765130F64CCE5 /* PumpSettingsEditor */ = {
  2500. isa = PBXGroup;
  2501. children = (
  2502. 0274EE6439B1C3ED70730D41 /* PumpSettingsEditorDataFlow.swift */,
  2503. D97F14812C1AFED3621165A5 /* PumpSettingsEditorProvider.swift */,
  2504. 72778B68C3004F71F6E79BDC /* PumpSettingsEditorStateModel.swift */,
  2505. 64271A287C92581EADCB47FA /* View */,
  2506. );
  2507. path = PumpSettingsEditor;
  2508. sourceTree = "<group>";
  2509. };
  2510. EEC747824D6593B5CD87E195 /* View */ = {
  2511. isa = PBXGroup;
  2512. children = (
  2513. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  2514. );
  2515. path = View;
  2516. sourceTree = "<group>";
  2517. };
  2518. F5DE2E6D7B2133BBD3353DC7 /* View */ = {
  2519. isa = PBXGroup;
  2520. children = (
  2521. 22963BD06A9C83959D4914E4 /* NotificationsConfigRootView.swift */,
  2522. );
  2523. path = View;
  2524. sourceTree = "<group>";
  2525. };
  2526. F66B236E00924A05D6A9F9DF /* NotificationsConfig */ = {
  2527. isa = PBXGroup;
  2528. children = (
  2529. 3260468377DA9DB4DEE9AF6D /* NotificationsConfigDataFlow.swift */,
  2530. E625985B47742D498CB1681A /* NotificationsConfigProvider.swift */,
  2531. DC2C6489D29ECCCAD78E0721 /* NotificationsConfigStateModel.swift */,
  2532. F5DE2E6D7B2133BBD3353DC7 /* View */,
  2533. );
  2534. path = NotificationsConfig;
  2535. sourceTree = "<group>";
  2536. };
  2537. F75CB57ED6971B46F8756083 /* CGM */ = {
  2538. isa = PBXGroup;
  2539. children = (
  2540. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
  2541. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
  2542. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
  2543. 0D76BBC81CEDC1A0050F45EF /* View */,
  2544. );
  2545. path = CGM;
  2546. sourceTree = "<group>";
  2547. };
  2548. F90692A8274B7A980037068D /* HealthKit */ = {
  2549. isa = PBXGroup;
  2550. children = (
  2551. F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
  2552. );
  2553. path = HealthKit;
  2554. sourceTree = "<group>";
  2555. };
  2556. F90692CD274B99850037068D /* HealthKit */ = {
  2557. isa = PBXGroup;
  2558. children = (
  2559. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
  2560. F90692D0274B99B60037068D /* HealthKitProvider.swift */,
  2561. F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
  2562. F90692D4274B9A160037068D /* View */,
  2563. );
  2564. path = HealthKit;
  2565. sourceTree = "<group>";
  2566. };
  2567. F90692D4274B9A160037068D /* View */ = {
  2568. isa = PBXGroup;
  2569. children = (
  2570. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
  2571. );
  2572. path = View;
  2573. sourceTree = "<group>";
  2574. };
  2575. /* End PBXGroup section */
  2576. /* Begin PBXNativeTarget section */
  2577. 388E595725AD948C0019842D /* FreeAPS */ = {
  2578. isa = PBXNativeTarget;
  2579. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */;
  2580. buildPhases = (
  2581. 3811DEF525CA169200A708ED /* Swiftformat */,
  2582. DD88C8E02C4D716400F2D558 /* Run Script: get branch name and commit ID */,
  2583. 388E595425AD948C0019842D /* Sources */,
  2584. 388E595525AD948C0019842D /* Frameworks */,
  2585. 388E595625AD948C0019842D /* Resources */,
  2586. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  2587. 38E8753D27554D5900975559 /* Embed Watch Content */,
  2588. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */,
  2589. CE95BF582BA5F8F300DC3DE3 /* Install plugins */,
  2590. DD88C8DF2C4D583900F2D558 /* ShellScript */,
  2591. );
  2592. buildRules = (
  2593. );
  2594. dependencies = (
  2595. 38E8753B27554D5900975559 /* PBXTargetDependency */,
  2596. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */,
  2597. );
  2598. name = FreeAPS;
  2599. packageProductDependencies = (
  2600. 3811DE0F25C9D37700A708ED /* Swinject */,
  2601. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  2602. 3833B46C26012030003021B3 /* Algorithms */,
  2603. 38DF1788276FC8C400B3528F /* SwiftMessages */,
  2604. CEB434FC28B90B7C00B70274 /* SwiftCharts */,
  2605. B958F1B62BA0711600484851 /* MKRingProgressView */,
  2606. );
  2607. productName = FreeAPS;
  2608. productReference = 388E595825AD948C0019842D /* FreeAPS.app */;
  2609. productType = "com.apple.product-type.application";
  2610. };
  2611. 38E8751B27554D5500975559 /* FreeAPSWatch */ = {
  2612. isa = PBXNativeTarget;
  2613. buildConfigurationList = 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */;
  2614. buildPhases = (
  2615. 38E8751A27554D5500975559 /* Resources */,
  2616. 38E8754027554D5900975559 /* Embed App Extensions */,
  2617. );
  2618. buildRules = (
  2619. );
  2620. dependencies = (
  2621. 38E8752727554D5700975559 /* PBXTargetDependency */,
  2622. );
  2623. name = FreeAPSWatch;
  2624. productName = FreeAPSWatch;
  2625. productReference = 38E8751C27554D5500975559 /* FreeAPSWatch.app */;
  2626. productType = "com.apple.product-type.application.watchapp2";
  2627. };
  2628. 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */ = {
  2629. isa = PBXNativeTarget;
  2630. buildConfigurationList = 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */;
  2631. buildPhases = (
  2632. 38E8752027554D5700975559 /* Sources */,
  2633. 38E8752127554D5700975559 /* Frameworks */,
  2634. 38E8752227554D5700975559 /* Resources */,
  2635. );
  2636. buildRules = (
  2637. );
  2638. dependencies = (
  2639. );
  2640. name = "FreeAPSWatch WatchKit Extension";
  2641. packageProductDependencies = (
  2642. 38E8755727567AE400975559 /* SwiftDate */,
  2643. );
  2644. productName = "FreeAPSWatch WatchKit Extension";
  2645. productReference = 38E8752427554D5700975559 /* FreeAPSWatch WatchKit Extension.appex */;
  2646. productType = "com.apple.product-type.watchkit2-extension";
  2647. };
  2648. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */ = {
  2649. isa = PBXNativeTarget;
  2650. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */;
  2651. buildPhases = (
  2652. 38FCF3E925E9028E0078B0D1 /* Sources */,
  2653. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  2654. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  2655. );
  2656. buildRules = (
  2657. );
  2658. dependencies = (
  2659. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  2660. );
  2661. name = FreeAPSTests;
  2662. productName = FreeAPSTests;
  2663. productReference = 38FCF3ED25E9028E0078B0D1 /* FreeAPSTests.xctest */;
  2664. productType = "com.apple.product-type.bundle.unit-test";
  2665. };
  2666. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */ = {
  2667. isa = PBXNativeTarget;
  2668. buildConfigurationList = 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */;
  2669. buildPhases = (
  2670. 6B1A8D132B14D91500E76752 /* Sources */,
  2671. 6B1A8D142B14D91500E76752 /* Frameworks */,
  2672. 6B1A8D152B14D91500E76752 /* Resources */,
  2673. );
  2674. buildRules = (
  2675. );
  2676. dependencies = (
  2677. );
  2678. name = LiveActivityExtension;
  2679. productName = LiveActivityExtension;
  2680. productReference = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */;
  2681. productType = "com.apple.product-type.app-extension";
  2682. };
  2683. /* End PBXNativeTarget section */
  2684. /* Begin PBXProject section */
  2685. 388E595025AD948C0019842D /* Project object */ = {
  2686. isa = PBXProject;
  2687. attributes = {
  2688. LastUpgradeCheck = 1240;
  2689. TargetAttributes = {
  2690. 388E595725AD948C0019842D = {
  2691. CreatedOnToolsVersion = 12.3;
  2692. };
  2693. 38E8751B27554D5500975559 = {
  2694. CreatedOnToolsVersion = 13.1;
  2695. LastSwiftMigration = 1530;
  2696. };
  2697. 38E8752327554D5700975559 = {
  2698. CreatedOnToolsVersion = 13.1;
  2699. };
  2700. 38FCF3EC25E9028E0078B0D1 = {
  2701. CreatedOnToolsVersion = 12.4;
  2702. TestTargetID = 388E595725AD948C0019842D;
  2703. };
  2704. };
  2705. };
  2706. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */;
  2707. compatibilityVersion = "Xcode 9.3";
  2708. developmentRegion = en;
  2709. hasScannedForEncodings = 0;
  2710. knownRegions = (
  2711. en,
  2712. Base,
  2713. ar,
  2714. ca,
  2715. "zh-Hans",
  2716. da,
  2717. nl,
  2718. fr,
  2719. de,
  2720. he,
  2721. it,
  2722. nb,
  2723. pl,
  2724. ru,
  2725. es,
  2726. sv,
  2727. tr,
  2728. uk,
  2729. fi,
  2730. "pt-PT",
  2731. "pt-BR",
  2732. sk,
  2733. hu,
  2734. vi,
  2735. );
  2736. mainGroup = 388E594F25AD948C0019842D;
  2737. packageReferences = (
  2738. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  2739. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  2740. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  2741. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
  2742. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
  2743. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */,
  2744. );
  2745. productRefGroup = 388E595925AD948C0019842D /* Products */;
  2746. projectDirPath = "";
  2747. projectRoot = "";
  2748. targets = (
  2749. 388E595725AD948C0019842D /* FreeAPS */,
  2750. 38FCF3EC25E9028E0078B0D1 /* FreeAPSTests */,
  2751. 38E8751B27554D5500975559 /* FreeAPSWatch */,
  2752. 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */,
  2753. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */,
  2754. );
  2755. };
  2756. /* End PBXProject section */
  2757. /* Begin PBXResourcesBuildPhase section */
  2758. 388E595625AD948C0019842D /* Resources */ = {
  2759. isa = PBXResourcesBuildPhase;
  2760. buildActionMask = 2147483647;
  2761. files = (
  2762. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
  2763. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */,
  2764. 38DF178D27733E6800B3528F /* snow.sks in Resources */,
  2765. 388E597225AD9CF10019842D /* json in Resources */,
  2766. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
  2767. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */,
  2768. 388E596F25AD96040019842D /* javascript in Resources */,
  2769. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */,
  2770. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
  2771. );
  2772. runOnlyForDeploymentPostprocessing = 0;
  2773. };
  2774. 38E8751A27554D5500975559 /* Resources */ = {
  2775. isa = PBXResourcesBuildPhase;
  2776. buildActionMask = 2147483647;
  2777. files = (
  2778. 19DA48E929CD339C00EEA1E7 /* Assets.xcassets in Resources */,
  2779. );
  2780. runOnlyForDeploymentPostprocessing = 0;
  2781. };
  2782. 38E8752227554D5700975559 /* Resources */ = {
  2783. isa = PBXResourcesBuildPhase;
  2784. buildActionMask = 2147483647;
  2785. files = (
  2786. 38E8753727554D5900975559 /* Preview Assets.xcassets in Resources */,
  2787. 19795118275953E50044850D /* Localizable.strings in Resources */,
  2788. 19DA48EA29CD339C00EEA1E7 /* Assets.xcassets in Resources */,
  2789. 38E8753427554D5800975559 /* Assets.xcassets in Resources */,
  2790. );
  2791. runOnlyForDeploymentPostprocessing = 0;
  2792. };
  2793. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  2794. isa = PBXResourcesBuildPhase;
  2795. buildActionMask = 2147483647;
  2796. files = (
  2797. );
  2798. runOnlyForDeploymentPostprocessing = 0;
  2799. };
  2800. 6B1A8D152B14D91500E76752 /* Resources */ = {
  2801. isa = PBXResourcesBuildPhase;
  2802. buildActionMask = 2147483647;
  2803. files = (
  2804. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */,
  2805. );
  2806. runOnlyForDeploymentPostprocessing = 0;
  2807. };
  2808. /* End PBXResourcesBuildPhase section */
  2809. /* Begin PBXShellScriptBuildPhase section */
  2810. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  2811. isa = PBXShellScriptBuildPhase;
  2812. buildActionMask = 12;
  2813. files = (
  2814. );
  2815. inputFileListPaths = (
  2816. );
  2817. inputPaths = (
  2818. );
  2819. name = Swiftformat;
  2820. outputFileListPaths = (
  2821. );
  2822. outputPaths = (
  2823. );
  2824. runOnlyForDeploymentPostprocessing = 0;
  2825. shellPath = /bin/sh;
  2826. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  2827. };
  2828. CE95BF582BA5F8F300DC3DE3 /* Install plugins */ = {
  2829. isa = PBXShellScriptBuildPhase;
  2830. alwaysOutOfDate = 1;
  2831. buildActionMask = 2147483647;
  2832. files = (
  2833. );
  2834. inputFileListPaths = (
  2835. );
  2836. inputPaths = (
  2837. );
  2838. name = "Install plugins";
  2839. outputFileListPaths = (
  2840. );
  2841. outputPaths = (
  2842. );
  2843. runOnlyForDeploymentPostprocessing = 0;
  2844. shellPath = /bin/sh;
  2845. shellScript = "\"${SRCROOT}/Scripts/copy-plugins.sh\"\n";
  2846. };
  2847. DD88C8DF2C4D583900F2D558 /* ShellScript */ = {
  2848. isa = PBXShellScriptBuildPhase;
  2849. buildActionMask = 2147483647;
  2850. files = (
  2851. );
  2852. inputFileListPaths = (
  2853. );
  2854. inputPaths = (
  2855. );
  2856. outputFileListPaths = (
  2857. );
  2858. outputPaths = (
  2859. );
  2860. runOnlyForDeploymentPostprocessing = 0;
  2861. shellPath = /bin/sh;
  2862. shellScript = "\"${SRCROOT}/scripts/capture-build-details.sh\"\n";
  2863. };
  2864. DD88C8E02C4D716400F2D558 /* Run Script: get branch name and commit ID */ = {
  2865. isa = PBXShellScriptBuildPhase;
  2866. buildActionMask = 2147483647;
  2867. files = (
  2868. );
  2869. inputFileListPaths = (
  2870. );
  2871. inputPaths = (
  2872. );
  2873. name = "Run Script: get branch name and commit ID";
  2874. outputFileListPaths = (
  2875. );
  2876. outputPaths = (
  2877. );
  2878. runOnlyForDeploymentPostprocessing = 0;
  2879. shellPath = /bin/sh;
  2880. shellScript = "# Prints a message\necho \"writing BRANCH to branch.txt\"\n\n# Retrieves version, branch, and tag information from Git\ngit_version=$(git log -1 --format=\"%h\" --abbrev=7)\ngit_branch=$(git symbolic-ref --short -q HEAD)\ngit_tag=$(git describe --tags --exact-match 2>/dev/null)\n\n# Determines branch or tag information\ngit_branch_or_tag=\"${git_branch:-${git_tag}}\"\ngit_branch_or_tag_version=\"${git_branch_or_tag} ${git_version}\"\n\necho \"BRANCH = ${git_branch_or_tag_version}\" > \"./branch.txt\"\n\n# Prints a message about the working directory and branch.txt\necho \"branch.txt is created/modified in ${PWD}\"\n";
  2881. };
  2882. /* End PBXShellScriptBuildPhase section */
  2883. /* Begin PBXSourcesBuildPhase section */
  2884. 388E595425AD948C0019842D /* Sources */ = {
  2885. isa = PBXSourcesBuildPhase;
  2886. buildActionMask = 2147483647;
  2887. files = (
  2888. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  2889. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */,
  2890. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  2891. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
  2892. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  2893. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  2894. 19D466A329AA2B80004D5F33 /* FPUConfigDataFlow.swift in Sources */,
  2895. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  2896. 385CEAC425F2F154002D6D5B /* AnnouncementsStorage.swift in Sources */,
  2897. 38AEE73D25F0200C0013F05B /* FreeAPSSettings.swift in Sources */,
  2898. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  2899. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  2900. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  2901. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
  2902. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */,
  2903. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */,
  2904. 195D80B72AF697B800D25097 /* DynamicDataFlow.swift in Sources */,
  2905. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  2906. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */,
  2907. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  2908. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
  2909. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */,
  2910. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */,
  2911. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  2912. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  2913. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  2914. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  2915. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  2916. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  2917. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */,
  2918. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
  2919. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  2920. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  2921. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */,
  2922. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  2923. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  2924. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */,
  2925. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */,
  2926. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  2927. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */,
  2928. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */,
  2929. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  2930. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  2931. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  2932. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  2933. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  2934. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */,
  2935. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  2936. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  2937. 384E803825C388640086DB71 /* Script.swift in Sources */,
  2938. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */,
  2939. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  2940. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  2941. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */,
  2942. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  2943. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */,
  2944. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  2945. 19D466A529AA2BD4004D5F33 /* FPUConfigProvider.swift in Sources */,
  2946. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  2947. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */,
  2948. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  2949. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  2950. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
  2951. 388E595C25AD948C0019842D /* FreeAPSApp.swift in Sources */,
  2952. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  2953. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */,
  2954. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  2955. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */,
  2956. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
  2957. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */,
  2958. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  2959. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */,
  2960. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  2961. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */,
  2962. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
  2963. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  2964. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */,
  2965. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
  2966. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  2967. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  2968. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */,
  2969. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  2970. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */,
  2971. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */,
  2972. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  2973. 19D466A729AA2C22004D5F33 /* FPUConfigStateModel.swift in Sources */,
  2974. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
  2975. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  2976. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */,
  2977. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  2978. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  2979. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  2980. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  2981. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */,
  2982. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */,
  2983. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  2984. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */,
  2985. 190EBCC629FF138000BA767D /* StatConfigProvider.swift in Sources */,
  2986. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  2987. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  2988. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  2989. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */,
  2990. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */,
  2991. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  2992. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  2993. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  2994. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  2995. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  2996. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */,
  2997. DD1DB7CE2BED00CF0048B367 /* SettingsRootViewModel.swift in Sources */,
  2998. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  2999. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  3000. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  3001. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */,
  3002. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  3003. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  3004. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  3005. DD57C4B22C4C7103001A5B28 /* LoopStatRecord+CoreDataClass.swift in Sources */,
  3006. DD57C4B32C4C7103001A5B28 /* LoopStatRecord+CoreDataProperties.swift in Sources */,
  3007. DD57C4B42C4C7103001A5B28 /* MealPresetStored+CoreDataClass.swift in Sources */,
  3008. DD57C4B52C4C7103001A5B28 /* MealPresetStored+CoreDataProperties.swift in Sources */,
  3009. DD57C4B62C4C7103001A5B28 /* TempTargets+CoreDataClass.swift in Sources */,
  3010. DD57C4B72C4C7103001A5B28 /* TempTargets+CoreDataProperties.swift in Sources */,
  3011. DD57C4B82C4C7103001A5B28 /* ForecastValue+CoreDataClass.swift in Sources */,
  3012. DD57C4B92C4C7103001A5B28 /* ForecastValue+CoreDataProperties.swift in Sources */,
  3013. DD57C4BA2C4C7103001A5B28 /* OrefDetermination+CoreDataClass.swift in Sources */,
  3014. DD57C4BB2C4C7103001A5B28 /* OrefDetermination+CoreDataProperties.swift in Sources */,
  3015. DD57C4BC2C4C7103001A5B28 /* PumpEventStored+CoreDataClass.swift in Sources */,
  3016. DD57C4BD2C4C7103001A5B28 /* PumpEventStored+CoreDataProperties.swift in Sources */,
  3017. DD57C4BE2C4C7103001A5B28 /* TempBasalStored+CoreDataClass.swift in Sources */,
  3018. DD57C4BF2C4C7103001A5B28 /* TempBasalStored+CoreDataProperties.swift in Sources */,
  3019. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */,
  3020. DD57C4C02C4C7103001A5B28 /* TempTargetsSlider+CoreDataClass.swift in Sources */,
  3021. DD57C4C12C4C7103001A5B28 /* TempTargetsSlider+CoreDataProperties.swift in Sources */,
  3022. DD57C4C22C4C7103001A5B28 /* Forecast+CoreDataClass.swift in Sources */,
  3023. DD57C4C32C4C7103001A5B28 /* Forecast+CoreDataProperties.swift in Sources */,
  3024. DD57C4C42C4C7103001A5B28 /* BolusStored+CoreDataClass.swift in Sources */,
  3025. DD57C4C52C4C7103001A5B28 /* BolusStored+CoreDataProperties.swift in Sources */,
  3026. DD57C4C62C4C7103001A5B28 /* CarbEntryStored+CoreDataClass.swift in Sources */,
  3027. DD57C4C72C4C7103001A5B28 /* CarbEntryStored+CoreDataProperties.swift in Sources */,
  3028. DD57C4C82C4C7103001A5B28 /* OpenAPS_Battery+CoreDataClass.swift in Sources */,
  3029. DD57C4C92C4C7103001A5B28 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */,
  3030. DD57C4CA2C4C7103001A5B28 /* GlucoseStored+CoreDataClass.swift in Sources */,
  3031. DD57C4CB2C4C7103001A5B28 /* GlucoseStored+CoreDataProperties.swift in Sources */,
  3032. DD57C4CC2C4C7103001A5B28 /* OverrideStored+CoreDataClass.swift in Sources */,
  3033. DD57C4CD2C4C7103001A5B28 /* OverrideStored+CoreDataProperties.swift in Sources */,
  3034. DD57C4CE2C4C7103001A5B28 /* OverrideRunStored+CoreDataClass.swift in Sources */,
  3035. DD57C4CF2C4C7103001A5B28 /* OverrideRunStored+CoreDataProperties.swift in Sources */,
  3036. DD57C4D02C4C7103001A5B28 /* ImportError+CoreDataClass.swift in Sources */,
  3037. DD57C4D12C4C7103001A5B28 /* ImportError+CoreDataProperties.swift in Sources */,
  3038. DD57C4D22C4C7103001A5B28 /* StatsData+CoreDataClass.swift in Sources */,
  3039. DD57C4D32C4C7103001A5B28 /* StatsData+CoreDataProperties.swift in Sources */,
  3040. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */,
  3041. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  3042. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  3043. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  3044. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
  3045. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
  3046. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */,
  3047. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  3048. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  3049. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */,
  3050. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  3051. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  3052. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */,
  3053. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  3054. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  3055. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  3056. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  3057. CC41E29A2B1E1F460070974F /* HistoryLayout.swift in Sources */,
  3058. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  3059. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */,
  3060. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */,
  3061. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
  3062. 190EBCCB29FF13CB00BA767D /* StatConfigRootView.swift in Sources */,
  3063. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  3064. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */,
  3065. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */,
  3066. 11E79B132C5F2585007893C2 /* DynamicGlucoseColor.swift in Sources */,
  3067. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  3068. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  3069. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  3070. DDD163142C4C68D300CD525A /* OverrideProvider.swift in Sources */,
  3071. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  3072. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */,
  3073. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  3074. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  3075. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
  3076. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */,
  3077. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  3078. 583684082BD195A700070A60 /* Determination.swift in Sources */,
  3079. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  3080. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  3081. 190EBCC829FF13AA00BA767D /* StatConfigStateModel.swift in Sources */,
  3082. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  3083. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */,
  3084. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  3085. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  3086. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */,
  3087. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */,
  3088. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */,
  3089. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */,
  3090. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  3091. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */,
  3092. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  3093. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */,
  3094. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  3095. C20BC6CE2C66FBFD002BC1C6 /* Rounding.swift in Sources */,
  3096. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */,
  3097. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */,
  3098. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  3099. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  3100. BDFD165A2AE40438007F0DDA /* BolusRootView.swift in Sources */,
  3101. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  3102. 190EBCC429FF136900BA767D /* StatConfigDataFlow.swift in Sources */,
  3103. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */,
  3104. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  3105. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */,
  3106. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  3107. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  3108. 587DA1F62B77F3DD00B28F8A /* SettingsRowView.swift in Sources */,
  3109. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */,
  3110. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  3111. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */,
  3112. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
  3113. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */,
  3114. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */,
  3115. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */,
  3116. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
  3117. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  3118. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  3119. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  3120. CE7CA3532A064973004BE681 /* tempPresetIntent.swift in Sources */,
  3121. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  3122. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  3123. BDB899882C564509006F3298 /* ForeCastChart.swift in Sources */,
  3124. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */,
  3125. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */,
  3126. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */,
  3127. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */,
  3128. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  3129. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  3130. 38A43598262E0E4900E80935 /* FetchAnnouncementsManager.swift in Sources */,
  3131. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  3132. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */,
  3133. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  3134. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  3135. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  3136. 19D466AA29AA3099004D5F33 /* FPUConfigRootView.swift in Sources */,
  3137. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  3138. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */,
  3139. CE7CA3522A064973004BE681 /* ListTempPresetsIntent.swift in Sources */,
  3140. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */,
  3141. 448B6FCB252BD4796E2960C0 /* PumpSettingsEditorDataFlow.swift in Sources */,
  3142. 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
  3143. 2BE9A6FA20875F6F4F9CD461 /* PumpSettingsEditorProvider.swift in Sources */,
  3144. 6B9625766B697D1C98E455A2 /* PumpSettingsEditorStateModel.swift in Sources */,
  3145. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */,
  3146. A0B8EC8CC5CD1DD237D1BCD2 /* PumpSettingsEditorRootView.swift in Sources */,
  3147. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
  3148. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  3149. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  3150. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
  3151. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  3152. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */,
  3153. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
  3154. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */,
  3155. 385CEAC125F2EA52002D6D5B /* Announcement.swift in Sources */,
  3156. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  3157. 195D80B42AF6973A00D25097 /* DynamicRootView.swift in Sources */,
  3158. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  3159. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */,
  3160. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  3161. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  3162. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  3163. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */,
  3164. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  3165. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
  3166. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  3167. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  3168. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  3169. 195D80BB2AF6980B00D25097 /* DynamicStateModel.swift in Sources */,
  3170. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  3171. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  3172. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */,
  3173. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  3174. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  3175. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */,
  3176. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */,
  3177. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  3178. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */,
  3179. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */,
  3180. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */,
  3181. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */,
  3182. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  3183. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  3184. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */,
  3185. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */,
  3186. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  3187. A33352ED40476125EBAC6EE0 /* CREditorDataFlow.swift in Sources */,
  3188. 17A9D0899046B45E87834820 /* CREditorProvider.swift in Sources */,
  3189. 69B9A368029F7EB39F525422 /* CREditorStateModel.swift in Sources */,
  3190. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
  3191. 98641AF4F92123DA668AB931 /* CREditorRootView.swift in Sources */,
  3192. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */,
  3193. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */,
  3194. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */,
  3195. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
  3196. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  3197. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */,
  3198. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  3199. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  3200. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  3201. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  3202. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */,
  3203. 38E8754F275556FA00975559 /* WatchManager.swift in Sources */,
  3204. A228DF96647338139F152B15 /* PreferencesEditorDataFlow.swift in Sources */,
  3205. DDD163182C4C694000CD525A /* OverrideRootView.swift in Sources */,
  3206. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  3207. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */,
  3208. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */,
  3209. E4984C5262A90469788754BB /* PreferencesEditorProvider.swift in Sources */,
  3210. DD399FB31EACB9343C944C4C /* PreferencesEditorStateModel.swift in Sources */,
  3211. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */,
  3212. 44190F0BBA464D74B857D1FB /* PreferencesEditorRootView.swift in Sources */,
  3213. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
  3214. 38E8755427561E9800975559 /* DataFlow.swift in Sources */,
  3215. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
  3216. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */,
  3217. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */,
  3218. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
  3219. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */,
  3220. DDD163162C4C690300CD525A /* OverrideDataFlow.swift in Sources */,
  3221. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */,
  3222. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
  3223. 38A00B1F25FC00F7006BC0B0 /* Autotune.swift in Sources */,
  3224. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  3225. 041D1E995A6AE92E9289DC49 /* BolusDataFlow.swift in Sources */,
  3226. 23888883D4EA091C88480FF2 /* BolusProvider.swift in Sources */,
  3227. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  3228. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */,
  3229. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  3230. 69A31254F2451C20361D172F /* BolusStateModel.swift in Sources */,
  3231. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */,
  3232. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */,
  3233. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */,
  3234. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
  3235. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */,
  3236. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */,
  3237. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  3238. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  3239. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */,
  3240. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
  3241. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */,
  3242. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  3243. FE41E4D429463C660047FD55 /* NightscoutStatistics.swift in Sources */,
  3244. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
  3245. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  3246. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
  3247. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  3248. DDD163122C4C689900CD525A /* OverrideStateModel.swift in Sources */,
  3249. 3083261C4B268E353F36CD0B /* AutotuneConfigDataFlow.swift in Sources */,
  3250. 891DECF7BC20968D7F566161 /* AutotuneConfigProvider.swift in Sources */,
  3251. D76333C9256787610B3B4875 /* AutotuneConfigStateModel.swift in Sources */,
  3252. A05235B9112E677ED03B6E8E /* AutotuneConfigRootView.swift in Sources */,
  3253. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  3254. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  3255. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */,
  3256. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  3257. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3258. 195D80B92AF697F700D25097 /* DynamicProvider.swift in Sources */,
  3259. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3260. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  3261. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  3262. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
  3263. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */,
  3264. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
  3265. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */,
  3266. 6EADD581738D64431902AC0A /* (null) in Sources */,
  3267. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3268. B7C465E9472624D8A2BE2A6A /* (null) in Sources */,
  3269. 320D030F724170A637F06D50 /* (null) in Sources */,
  3270. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3271. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */,
  3272. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */,
  3273. E3A08AAE59538BC8A8ABE477 /* NotificationsConfigDataFlow.swift in Sources */,
  3274. 0F7A65FBD2CD8D6477ED4539 /* NotificationsConfigProvider.swift in Sources */,
  3275. 3171D2818C7C72CD1584BB5E /* NotificationsConfigStateModel.swift in Sources */,
  3276. CD78BB94E43B249D60CC1A1B /* NotificationsConfigRootView.swift in Sources */,
  3277. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */,
  3278. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
  3279. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
  3280. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
  3281. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
  3282. );
  3283. runOnlyForDeploymentPostprocessing = 0;
  3284. };
  3285. 38E8752027554D5700975559 /* Sources */ = {
  3286. isa = PBXSourcesBuildPhase;
  3287. buildActionMask = 2147483647;
  3288. files = (
  3289. 38E8757927579D9200975559 /* Publisher.swift in Sources */,
  3290. 38E8755B27568A6800975559 /* ConfirmationView.swift in Sources */,
  3291. 38E8757D2757C45D00975559 /* BolusView.swift in Sources */,
  3292. 38E8752E27554D5700975559 /* NotificationController.swift in Sources */,
  3293. 38E8754C2755548F00975559 /* WatchStateModel.swift in Sources */,
  3294. 38E8754A275550BB00975559 /* CarbsView.swift in Sources */,
  3295. 38E8752C27554D5700975559 /* MainView.swift in Sources */,
  3296. 38E8755127555D0500975559 /* DataFlow.swift in Sources */,
  3297. 38E8753227554D5700975559 /* ComplicationController.swift in Sources */,
  3298. 38E8752A27554D5700975559 /* FreeAPSApp.swift in Sources */,
  3299. 38E8757B2757B1C300975559 /* TempTargetsView.swift in Sources */,
  3300. 38E8753027554D5700975559 /* NotificationView.swift in Sources */,
  3301. 38E8757E2758C86A00975559 /* ConvenienceExtensions.swift in Sources */,
  3302. 38E8754727554DF100975559 /* Color+Extensions.swift in Sources */,
  3303. 38E8755927567CA600975559 /* Decimal+Extensions.swift in Sources */,
  3304. 38E8758027595DC600975559 /* BolusConfirmationView.swift in Sources */,
  3305. );
  3306. runOnlyForDeploymentPostprocessing = 0;
  3307. };
  3308. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  3309. isa = PBXSourcesBuildPhase;
  3310. buildActionMask = 2147483647;
  3311. files = (
  3312. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */,
  3313. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */,
  3314. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  3315. );
  3316. runOnlyForDeploymentPostprocessing = 0;
  3317. };
  3318. 6B1A8D132B14D91500E76752 /* Sources */ = {
  3319. isa = PBXSourcesBuildPhase;
  3320. buildActionMask = 2147483647;
  3321. files = (
  3322. 11E79B142C5F2585007893C2 /* DynamicGlucoseColor.swift in Sources */,
  3323. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3324. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3325. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */,
  3326. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */,
  3327. );
  3328. runOnlyForDeploymentPostprocessing = 0;
  3329. };
  3330. /* End PBXSourcesBuildPhase section */
  3331. /* Begin PBXTargetDependency section */
  3332. 38E8752727554D5700975559 /* PBXTargetDependency */ = {
  3333. isa = PBXTargetDependency;
  3334. target = 38E8752327554D5700975559 /* FreeAPSWatch WatchKit Extension */;
  3335. targetProxy = 38E8752627554D5700975559 /* PBXContainerItemProxy */;
  3336. };
  3337. 38E8753B27554D5900975559 /* PBXTargetDependency */ = {
  3338. isa = PBXTargetDependency;
  3339. target = 38E8751B27554D5500975559 /* FreeAPSWatch */;
  3340. targetProxy = 38E8753A27554D5900975559 /* PBXContainerItemProxy */;
  3341. };
  3342. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  3343. isa = PBXTargetDependency;
  3344. target = 388E595725AD948C0019842D /* FreeAPS */;
  3345. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  3346. };
  3347. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */ = {
  3348. isa = PBXTargetDependency;
  3349. target = 6B1A8D162B14D91500E76752 /* LiveActivityExtension */;
  3350. targetProxy = 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */;
  3351. };
  3352. /* End PBXTargetDependency section */
  3353. /* Begin PBXVariantGroup section */
  3354. 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
  3355. isa = PBXVariantGroup;
  3356. children = (
  3357. 1927C8E92744611700347C69 /* ar */,
  3358. 1927C8EA2744611800347C69 /* ca */,
  3359. 1927C8EB2744611900347C69 /* zh-Hans */,
  3360. 1927C8EC2744611A00347C69 /* da */,
  3361. 1927C8ED2744611B00347C69 /* fi */,
  3362. 1927C8EE2744611C00347C69 /* nl */,
  3363. 1927C8EF2744611D00347C69 /* fr */,
  3364. 1927C8F02744611E00347C69 /* de */,
  3365. 1927C8F12744611E00347C69 /* he */,
  3366. 1927C8F22744611F00347C69 /* it */,
  3367. 1927C8F32744612000347C69 /* nb */,
  3368. 1927C8F42744612100347C69 /* pl */,
  3369. 1927C8F52744612100347C69 /* pt-BR */,
  3370. 1927C8F62744612200347C69 /* pt-PT */,
  3371. 1927C8F72744612300347C69 /* ru */,
  3372. 1927C8F82744612400347C69 /* es */,
  3373. 1927C8F92744612400347C69 /* sv */,
  3374. 1927C8FA2744612500347C69 /* tr */,
  3375. 1927C8FB2744612600347C69 /* uk */,
  3376. 1927C8FE274489BA00347C69 /* Base */,
  3377. 19C166682756EFBD00ED12E3 /* sk */,
  3378. 193F1E392B44C13B00525770 /* hu */,
  3379. 193F1E3B2B44C14800525770 /* vi */,
  3380. );
  3381. name = InfoPlist.strings;
  3382. sourceTree = "<group>";
  3383. };
  3384. 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
  3385. isa = PBXVariantGroup;
  3386. children = (
  3387. 198377D3266BFFF6004DE65E /* en */,
  3388. 198377D5266C0A05004DE65E /* ar */,
  3389. 198377D6266C0A0A004DE65E /* ca */,
  3390. 198377D7266C0A15004DE65E /* zh-Hans */,
  3391. 198377D8266C0A1C004DE65E /* da */,
  3392. 198377D9266C0A21004DE65E /* nl */,
  3393. 198377DA266C0A2B004DE65E /* fr */,
  3394. 198377DB266C0A32004DE65E /* de */,
  3395. 198377DC266C0A3C004DE65E /* he */,
  3396. 198377DD266C0A51004DE65E /* it */,
  3397. 198377DE266C0A69004DE65E /* nb */,
  3398. 198377DF266C0A7F004DE65E /* pl */,
  3399. 198377E0266C0AB5004DE65E /* ru */,
  3400. 198377E1266C0ABF004DE65E /* es */,
  3401. 198377E2266C0AC8004DE65E /* sv */,
  3402. 198377E3266C0ADC004DE65E /* tr */,
  3403. 198377E4266C13D2004DE65E /* uk */,
  3404. 1918333A26ADA46800F45722 /* fi */,
  3405. 199732B4271B72DD00129A3F /* pt-PT */,
  3406. 199732B5271B9EE900129A3F /* pt-BR */,
  3407. 19C166692756EFBD00ED12E3 /* sk */,
  3408. 193F1E3A2B44C13B00525770 /* hu */,
  3409. 193F1E3C2B44C14800525770 /* vi */,
  3410. );
  3411. name = Localizable.strings;
  3412. sourceTree = "<group>";
  3413. };
  3414. /* End PBXVariantGroup section */
  3415. /* Begin XCBuildConfiguration section */
  3416. 388E596525AD948E0019842D /* Debug */ = {
  3417. isa = XCBuildConfiguration;
  3418. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  3419. buildSettings = {
  3420. ALWAYS_SEARCH_USER_PATHS = NO;
  3421. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  3422. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3423. CLANG_ANALYZER_NONNULL = YES;
  3424. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3425. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3426. CLANG_CXX_LIBRARY = "libc++";
  3427. CLANG_ENABLE_MODULES = YES;
  3428. CLANG_ENABLE_OBJC_ARC = YES;
  3429. CLANG_ENABLE_OBJC_WEAK = YES;
  3430. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3431. CLANG_WARN_BOOL_CONVERSION = YES;
  3432. CLANG_WARN_COMMA = YES;
  3433. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3434. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3435. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3436. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3437. CLANG_WARN_EMPTY_BODY = YES;
  3438. CLANG_WARN_ENUM_CONVERSION = YES;
  3439. CLANG_WARN_INFINITE_RECURSION = YES;
  3440. CLANG_WARN_INT_CONVERSION = YES;
  3441. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3442. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3443. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3444. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3445. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3446. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3447. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3448. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3449. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3450. CLANG_WARN_UNREACHABLE_CODE = YES;
  3451. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3452. COPY_PHASE_STRIP = NO;
  3453. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  3454. DEBUG_INFORMATION_FORMAT = dwarf;
  3455. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3456. ENABLE_TESTABILITY = YES;
  3457. GCC_C_LANGUAGE_STANDARD = gnu11;
  3458. GCC_DYNAMIC_NO_PIC = NO;
  3459. GCC_NO_COMMON_BLOCKS = YES;
  3460. GCC_OPTIMIZATION_LEVEL = 0;
  3461. GCC_PREPROCESSOR_DEFINITIONS = (
  3462. "DEBUG=1",
  3463. "$(inherited)",
  3464. );
  3465. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3466. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3467. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3468. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3469. GCC_WARN_UNUSED_FUNCTION = YES;
  3470. GCC_WARN_UNUSED_VARIABLE = YES;
  3471. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  3472. MARKETING_VERSION = "$(APP_VERSION)";
  3473. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3474. MTL_FAST_MATH = YES;
  3475. ONLY_ACTIVE_ARCH = YES;
  3476. SDKROOT = iphoneos;
  3477. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  3478. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3479. };
  3480. name = Debug;
  3481. };
  3482. 388E596625AD948E0019842D /* Release */ = {
  3483. isa = XCBuildConfiguration;
  3484. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  3485. buildSettings = {
  3486. ALWAYS_SEARCH_USER_PATHS = NO;
  3487. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  3488. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3489. CLANG_ANALYZER_NONNULL = YES;
  3490. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3491. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3492. CLANG_CXX_LIBRARY = "libc++";
  3493. CLANG_ENABLE_MODULES = YES;
  3494. CLANG_ENABLE_OBJC_ARC = YES;
  3495. CLANG_ENABLE_OBJC_WEAK = YES;
  3496. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3497. CLANG_WARN_BOOL_CONVERSION = YES;
  3498. CLANG_WARN_COMMA = YES;
  3499. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3500. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3501. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3502. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3503. CLANG_WARN_EMPTY_BODY = YES;
  3504. CLANG_WARN_ENUM_CONVERSION = YES;
  3505. CLANG_WARN_INFINITE_RECURSION = YES;
  3506. CLANG_WARN_INT_CONVERSION = YES;
  3507. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3508. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3509. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3510. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3511. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3512. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3513. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3514. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3515. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3516. CLANG_WARN_UNREACHABLE_CODE = YES;
  3517. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3518. COPY_PHASE_STRIP = NO;
  3519. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  3520. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3521. ENABLE_NS_ASSERTIONS = NO;
  3522. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3523. GCC_C_LANGUAGE_STANDARD = gnu11;
  3524. GCC_NO_COMMON_BLOCKS = YES;
  3525. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3526. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3527. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3528. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3529. GCC_WARN_UNUSED_FUNCTION = YES;
  3530. GCC_WARN_UNUSED_VARIABLE = YES;
  3531. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  3532. MARKETING_VERSION = "$(APP_VERSION)";
  3533. MTL_ENABLE_DEBUG_INFO = NO;
  3534. MTL_FAST_MATH = YES;
  3535. SDKROOT = iphoneos;
  3536. SWIFT_COMPILATION_MODE = wholemodule;
  3537. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3538. VALIDATE_PRODUCT = YES;
  3539. };
  3540. name = Release;
  3541. };
  3542. 388E596825AD948E0019842D /* Debug */ = {
  3543. isa = XCBuildConfiguration;
  3544. buildSettings = {
  3545. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3546. APP_GROUP_ID = "$(APP_GROUP_ID)";
  3547. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3548. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3549. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3550. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3551. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  3552. CODE_SIGN_IDENTITY = "Apple Development";
  3553. CODE_SIGN_STYLE = Automatic;
  3554. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3555. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  3556. DEVELOPMENT_ASSET_PATHS = "";
  3557. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3558. ENABLE_PREVIEWS = YES;
  3559. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  3560. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3561. LD_RUNPATH_SEARCH_PATHS = (
  3562. "$(inherited)",
  3563. "@executable_path/Frameworks",
  3564. );
  3565. LIBRARY_SEARCH_PATHS = (
  3566. "$(inherited)",
  3567. "$(SDKROOT)/usr/lib/swift",
  3568. );
  3569. MARKETING_VERSION = "$(APP_VERSION)";
  3570. OTHER_LDFLAGS = (
  3571. "-weak_framework",
  3572. CoreNFC,
  3573. "-ObjC",
  3574. );
  3575. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3576. PRODUCT_NAME = "$(TARGET_NAME)";
  3577. PROVISIONING_PROFILE_SPECIFIER = "";
  3578. SWIFT_VERSION = 5.0;
  3579. TARGETED_DEVICE_FAMILY = "1,2";
  3580. };
  3581. name = Debug;
  3582. };
  3583. 388E596925AD948E0019842D /* Release */ = {
  3584. isa = XCBuildConfiguration;
  3585. buildSettings = {
  3586. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3587. APP_GROUP_ID = "$(APP_GROUP_ID)";
  3588. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3589. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3590. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3591. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3592. CODE_SIGN_ENTITLEMENTS = FreeAPS/Resources/FreeAPS.entitlements;
  3593. CODE_SIGN_IDENTITY = "Apple Development";
  3594. CODE_SIGN_STYLE = Automatic;
  3595. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3596. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  3597. DEVELOPMENT_ASSET_PATHS = "";
  3598. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3599. ENABLE_PREVIEWS = YES;
  3600. INFOPLIST_FILE = FreeAPS/Resources/Info.plist;
  3601. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3602. LD_RUNPATH_SEARCH_PATHS = (
  3603. "$(inherited)",
  3604. "@executable_path/Frameworks",
  3605. );
  3606. LIBRARY_SEARCH_PATHS = (
  3607. "$(inherited)",
  3608. "$(SDKROOT)/usr/lib/swift",
  3609. );
  3610. MARKETING_VERSION = "$(APP_VERSION)";
  3611. OTHER_LDFLAGS = (
  3612. "-weak_framework",
  3613. CoreNFC,
  3614. "-ObjC",
  3615. );
  3616. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3617. PRODUCT_NAME = "$(TARGET_NAME)";
  3618. PROVISIONING_PROFILE_SPECIFIER = "";
  3619. SWIFT_VERSION = 5.0;
  3620. TARGETED_DEVICE_FAMILY = "1,2";
  3621. };
  3622. name = Release;
  3623. };
  3624. 38E8753E27554D5900975559 /* Debug */ = {
  3625. isa = XCBuildConfiguration;
  3626. buildSettings = {
  3627. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3628. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3629. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3630. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3631. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3632. ASSETCATALOG_COMPILER_INCLUDE_STICKER_CONTENT = YES;
  3633. ASSETCATALOG_COMPILER_STANDALONE_ICON_BEHAVIOR = all;
  3634. ASSETCATALOG_COMPILER_TARGET_STICKERS_ICON_ROLE = "host-app";
  3635. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3636. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3637. CLANG_ENABLE_MODULES = YES;
  3638. CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
  3639. CODE_SIGN_STYLE = Automatic;
  3640. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3641. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3642. GENERATE_INFOPLIST_FILE = YES;
  3643. IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
  3644. INFOPLIST_FILE = FreeAPSWatch/Info.plist;
  3645. INFOPLIST_KEY_CFBundleDisplayName = "$(APP_DISPLAY_NAME)";
  3646. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3647. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  3648. MARKETING_VERSION = "$(APP_VERSION)";
  3649. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  3650. PRODUCT_NAME = "$(TARGET_NAME)";
  3651. SDKROOT = watchos;
  3652. SKIP_INSTALL = YES;
  3653. SWIFT_EMIT_LOC_STRINGS = YES;
  3654. SWIFT_OBJC_BRIDGING_HEADER = "Model/Classes+Properties/FreeAPSWatch-Bridging-Header.h";
  3655. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3656. SWIFT_VERSION = 5.0;
  3657. TARGETED_DEVICE_FAMILY = 4;
  3658. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3659. };
  3660. name = Debug;
  3661. };
  3662. 38E8753F27554D5900975559 /* Release */ = {
  3663. isa = XCBuildConfiguration;
  3664. buildSettings = {
  3665. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3666. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3667. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  3668. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3669. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  3670. ASSETCATALOG_COMPILER_INCLUDE_STICKER_CONTENT = YES;
  3671. ASSETCATALOG_COMPILER_STANDALONE_ICON_BEHAVIOR = all;
  3672. ASSETCATALOG_COMPILER_TARGET_STICKERS_ICON_ROLE = "host-app";
  3673. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3674. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3675. CLANG_ENABLE_MODULES = YES;
  3676. CODE_SIGN_ENTITLEMENTS = FreeAPSWatch/FreeAPSWatch.entitlements;
  3677. CODE_SIGN_STYLE = Automatic;
  3678. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3679. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3680. GENERATE_INFOPLIST_FILE = YES;
  3681. IBSC_MODULE = FreeAPSWatch_WatchKit_Extension;
  3682. INFOPLIST_FILE = FreeAPSWatch/Info.plist;
  3683. INFOPLIST_KEY_CFBundleDisplayName = "$(APP_DISPLAY_NAME)";
  3684. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3685. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  3686. MARKETING_VERSION = "$(APP_VERSION)";
  3687. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  3688. PRODUCT_NAME = "$(TARGET_NAME)";
  3689. SDKROOT = watchos;
  3690. SKIP_INSTALL = YES;
  3691. SWIFT_EMIT_LOC_STRINGS = YES;
  3692. SWIFT_OBJC_BRIDGING_HEADER = "Model/Classes+Properties/FreeAPSWatch-Bridging-Header.h";
  3693. SWIFT_VERSION = 5.0;
  3694. TARGETED_DEVICE_FAMILY = 4;
  3695. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3696. };
  3697. name = Release;
  3698. };
  3699. 38E8754127554D5900975559 /* Debug */ = {
  3700. isa = XCBuildConfiguration;
  3701. buildSettings = {
  3702. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3703. ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
  3704. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3705. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3706. CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
  3707. CODE_SIGN_STYLE = Automatic;
  3708. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3709. DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
  3710. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3711. ENABLE_PREVIEWS = YES;
  3712. GENERATE_INFOPLIST_FILE = YES;
  3713. INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
  3714. INFOPLIST_KEY_CFBundleDisplayName = "$(APP_DISPLAY_NAME) WatchKit Extension";
  3715. INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
  3716. INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
  3717. INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
  3718. INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
  3719. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3720. INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
  3721. LD_RUNPATH_SEARCH_PATHS = (
  3722. "$(inherited)",
  3723. "@executable_path/Frameworks",
  3724. "@executable_path/../../Frameworks",
  3725. );
  3726. MARKETING_VERSION = "$(APP_VERSION)";
  3727. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
  3728. PRODUCT_NAME = "${TARGET_NAME}";
  3729. SDKROOT = watchos;
  3730. SKIP_INSTALL = YES;
  3731. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG RUN_STATISTICS";
  3732. SWIFT_EMIT_LOC_STRINGS = YES;
  3733. SWIFT_VERSION = 5.0;
  3734. TARGETED_DEVICE_FAMILY = 4;
  3735. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3736. };
  3737. name = Debug;
  3738. };
  3739. 38E8754227554D5900975559 /* Release */ = {
  3740. isa = XCBuildConfiguration;
  3741. buildSettings = {
  3742. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  3743. ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication;
  3744. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  3745. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3746. CODE_SIGN_ENTITLEMENTS = "FreeAPSWatch WatchKit Extension/FreeAPSWatch WatchKit Extension.entitlements";
  3747. CODE_SIGN_STYLE = Automatic;
  3748. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  3749. DEVELOPMENT_ASSET_PATHS = "\"FreeAPSWatch WatchKit Extension/Preview Content\"";
  3750. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3751. ENABLE_PREVIEWS = YES;
  3752. GENERATE_INFOPLIST_FILE = YES;
  3753. INFOPLIST_FILE = "FreeAPSWatch WatchKit Extension/Info.plist";
  3754. INFOPLIST_KEY_CFBundleDisplayName = "$(APP_DISPLAY_NAME) WatchKit Extension";
  3755. INFOPLIST_KEY_CLKComplicationPrincipalClass = FreeAPSWatch_WatchKit_Extension.ComplicationController;
  3756. INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "Bla bla Record Health";
  3757. INFOPLIST_KEY_NSHealthShareUsageDescription = "Bla bla Share Health";
  3758. INFOPLIST_KEY_NSHealthUpdateUsageDescription = "Bla bla Update Health";
  3759. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3760. INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = NO;
  3761. LD_RUNPATH_SEARCH_PATHS = (
  3762. "$(inherited)",
  3763. "@executable_path/Frameworks",
  3764. "@executable_path/../../Frameworks",
  3765. );
  3766. MARKETING_VERSION = "$(APP_VERSION)";
  3767. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.watchkitextension";
  3768. PRODUCT_NAME = "${TARGET_NAME}";
  3769. SDKROOT = watchos;
  3770. SKIP_INSTALL = YES;
  3771. SWIFT_ACTIVE_COMPILATION_CONDITIONS = RUN_STATISTICS;
  3772. SWIFT_EMIT_LOC_STRINGS = YES;
  3773. SWIFT_VERSION = 5.0;
  3774. TARGETED_DEVICE_FAMILY = 4;
  3775. WATCHOS_DEPLOYMENT_TARGET = 8.0;
  3776. };
  3777. name = Release;
  3778. };
  3779. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  3780. isa = XCBuildConfiguration;
  3781. buildSettings = {
  3782. BUNDLE_LOADER = "$(TEST_HOST)";
  3783. CODE_SIGN_STYLE = Automatic;
  3784. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3785. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  3786. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  3787. LD_RUNPATH_SEARCH_PATHS = (
  3788. "$(inherited)",
  3789. "@executable_path/Frameworks",
  3790. "@loader_path/Frameworks",
  3791. );
  3792. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).FreeAPSTests";
  3793. PRODUCT_NAME = "$(TARGET_NAME)";
  3794. SWIFT_VERSION = 5.0;
  3795. TARGETED_DEVICE_FAMILY = "1,2";
  3796. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  3797. };
  3798. name = Debug;
  3799. };
  3800. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  3801. isa = XCBuildConfiguration;
  3802. buildSettings = {
  3803. BUNDLE_LOADER = "$(TEST_HOST)";
  3804. CODE_SIGN_STYLE = Automatic;
  3805. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3806. INFOPLIST_FILE = FreeAPSTests/Info.plist;
  3807. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  3808. LD_RUNPATH_SEARCH_PATHS = (
  3809. "$(inherited)",
  3810. "@executable_path/Frameworks",
  3811. "@loader_path/Frameworks",
  3812. );
  3813. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).FreeAPSTests";
  3814. PRODUCT_NAME = "$(TARGET_NAME)";
  3815. SWIFT_VERSION = 5.0;
  3816. TARGETED_DEVICE_FAMILY = "1,2";
  3817. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FreeAPS.app/FreeAPS";
  3818. };
  3819. name = Release;
  3820. };
  3821. 6B1A8D2A2B14D91800E76752 /* Debug */ = {
  3822. isa = XCBuildConfiguration;
  3823. buildSettings = {
  3824. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3825. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3826. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  3827. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3828. CODE_SIGN_STYLE = Automatic;
  3829. CURRENT_PROJECT_VERSION = 1;
  3830. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3831. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  3832. GCC_C_LANGUAGE_STANDARD = gnu17;
  3833. GENERATE_INFOPLIST_FILE = YES;
  3834. INFOPLIST_FILE = LiveActivity/Info.plist;
  3835. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  3836. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3837. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3838. LD_RUNPATH_SEARCH_PATHS = (
  3839. "$(inherited)",
  3840. "@executable_path/Frameworks",
  3841. "@executable_path/../../Frameworks",
  3842. );
  3843. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3844. MARKETING_VERSION = 1.0;
  3845. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  3846. PRODUCT_NAME = "$(TARGET_NAME)";
  3847. SKIP_INSTALL = YES;
  3848. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  3849. SWIFT_EMIT_LOC_STRINGS = YES;
  3850. SWIFT_VERSION = 5.0;
  3851. TARGETED_DEVICE_FAMILY = "1,2";
  3852. };
  3853. name = Debug;
  3854. };
  3855. 6B1A8D2B2B14D91800E76752 /* Release */ = {
  3856. isa = XCBuildConfiguration;
  3857. buildSettings = {
  3858. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3859. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3860. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  3861. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3862. CODE_SIGN_STYLE = Automatic;
  3863. CURRENT_PROJECT_VERSION = 1;
  3864. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  3865. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  3866. GCC_C_LANGUAGE_STANDARD = gnu17;
  3867. GENERATE_INFOPLIST_FILE = YES;
  3868. INFOPLIST_FILE = LiveActivity/Info.plist;
  3869. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  3870. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3871. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3872. LD_RUNPATH_SEARCH_PATHS = (
  3873. "$(inherited)",
  3874. "@executable_path/Frameworks",
  3875. "@executable_path/../../Frameworks",
  3876. );
  3877. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3878. MARKETING_VERSION = 1.0;
  3879. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  3880. PRODUCT_NAME = "$(TARGET_NAME)";
  3881. SKIP_INSTALL = YES;
  3882. SWIFT_EMIT_LOC_STRINGS = YES;
  3883. SWIFT_VERSION = 5.0;
  3884. TARGETED_DEVICE_FAMILY = "1,2";
  3885. };
  3886. name = Release;
  3887. };
  3888. /* End XCBuildConfiguration section */
  3889. /* Begin XCConfigurationList section */
  3890. 388E595325AD948C0019842D /* Build configuration list for PBXProject "FreeAPS" */ = {
  3891. isa = XCConfigurationList;
  3892. buildConfigurations = (
  3893. 388E596525AD948E0019842D /* Debug */,
  3894. 388E596625AD948E0019842D /* Release */,
  3895. );
  3896. defaultConfigurationIsVisible = 0;
  3897. defaultConfigurationName = Debug;
  3898. };
  3899. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "FreeAPS" */ = {
  3900. isa = XCConfigurationList;
  3901. buildConfigurations = (
  3902. 388E596825AD948E0019842D /* Debug */,
  3903. 388E596925AD948E0019842D /* Release */,
  3904. );
  3905. defaultConfigurationIsVisible = 0;
  3906. defaultConfigurationName = Debug;
  3907. };
  3908. 38E8754327554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch WatchKit Extension" */ = {
  3909. isa = XCConfigurationList;
  3910. buildConfigurations = (
  3911. 38E8754127554D5900975559 /* Debug */,
  3912. 38E8754227554D5900975559 /* Release */,
  3913. );
  3914. defaultConfigurationIsVisible = 0;
  3915. defaultConfigurationName = Debug;
  3916. };
  3917. 38E8754427554D5900975559 /* Build configuration list for PBXNativeTarget "FreeAPSWatch" */ = {
  3918. isa = XCConfigurationList;
  3919. buildConfigurations = (
  3920. 38E8753E27554D5900975559 /* Debug */,
  3921. 38E8753F27554D5900975559 /* Release */,
  3922. );
  3923. defaultConfigurationIsVisible = 0;
  3924. defaultConfigurationName = Debug;
  3925. };
  3926. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "FreeAPSTests" */ = {
  3927. isa = XCConfigurationList;
  3928. buildConfigurations = (
  3929. 38FCF3F525E9028E0078B0D1 /* Debug */,
  3930. 38FCF3F625E9028E0078B0D1 /* Release */,
  3931. );
  3932. defaultConfigurationIsVisible = 0;
  3933. defaultConfigurationName = Debug;
  3934. };
  3935. 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */ = {
  3936. isa = XCConfigurationList;
  3937. buildConfigurations = (
  3938. 6B1A8D2A2B14D91800E76752 /* Debug */,
  3939. 6B1A8D2B2B14D91800E76752 /* Release */,
  3940. );
  3941. defaultConfigurationIsVisible = 0;
  3942. defaultConfigurationName = Debug;
  3943. };
  3944. /* End XCConfigurationList section */
  3945. /* Begin XCRemoteSwiftPackageReference section */
  3946. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  3947. isa = XCRemoteSwiftPackageReference;
  3948. repositoryURL = "https://github.com/Swinject/Swinject";
  3949. requirement = {
  3950. kind = upToNextMajorVersion;
  3951. minimumVersion = 2.7.1;
  3952. };
  3953. };
  3954. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  3955. isa = XCRemoteSwiftPackageReference;
  3956. repositoryURL = "https://github.com/apple/swift-algorithms";
  3957. requirement = {
  3958. kind = upToNextMajorVersion;
  3959. minimumVersion = 0.0.3;
  3960. };
  3961. };
  3962. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  3963. isa = XCRemoteSwiftPackageReference;
  3964. repositoryURL = "https://github.com/malcommac/SwiftDate";
  3965. requirement = {
  3966. kind = upToNextMajorVersion;
  3967. minimumVersion = 6.3.1;
  3968. };
  3969. };
  3970. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
  3971. isa = XCRemoteSwiftPackageReference;
  3972. repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
  3973. requirement = {
  3974. kind = upToNextMajorVersion;
  3975. minimumVersion = 9.0.0;
  3976. };
  3977. };
  3978. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */ = {
  3979. isa = XCRemoteSwiftPackageReference;
  3980. repositoryURL = "https://github.com/maxkonovalov/MKRingProgressView.git";
  3981. requirement = {
  3982. branch = master;
  3983. kind = branch;
  3984. };
  3985. };
  3986. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
  3987. isa = XCRemoteSwiftPackageReference;
  3988. repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
  3989. requirement = {
  3990. branch = master;
  3991. kind = branch;
  3992. };
  3993. };
  3994. /* End XCRemoteSwiftPackageReference section */
  3995. /* Begin XCSwiftPackageProductDependency section */
  3996. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  3997. isa = XCSwiftPackageProductDependency;
  3998. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  3999. productName = Swinject;
  4000. };
  4001. 3833B46C26012030003021B3 /* Algorithms */ = {
  4002. isa = XCSwiftPackageProductDependency;
  4003. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  4004. productName = Algorithms;
  4005. };
  4006. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  4007. isa = XCSwiftPackageProductDependency;
  4008. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  4009. productName = SwiftDate;
  4010. };
  4011. 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
  4012. isa = XCSwiftPackageProductDependency;
  4013. package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
  4014. productName = SwiftMessages;
  4015. };
  4016. 38E8755727567AE400975559 /* SwiftDate */ = {
  4017. isa = XCSwiftPackageProductDependency;
  4018. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  4019. productName = SwiftDate;
  4020. };
  4021. B958F1B62BA0711600484851 /* MKRingProgressView */ = {
  4022. isa = XCSwiftPackageProductDependency;
  4023. package = B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */;
  4024. productName = MKRingProgressView;
  4025. };
  4026. CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
  4027. isa = XCSwiftPackageProductDependency;
  4028. package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
  4029. productName = SwiftCharts;
  4030. };
  4031. /* End XCSwiftPackageProductDependency section */
  4032. /* Begin XCVersionGroup section */
  4033. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */ = {
  4034. isa = XCVersionGroup;
  4035. children = (
  4036. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */,
  4037. );
  4038. currentVersion = DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */;
  4039. path = TrioCoreDataPersistentContainer.xcdatamodeld;
  4040. sourceTree = "<group>";
  4041. versionGroupType = wrapper.xcdatamodel;
  4042. };
  4043. /* End XCVersionGroup section */
  4044. };
  4045. rootObject = 388E595025AD948C0019842D /* Project object */;
  4046. }