project.pbxproj 353 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 70;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 041D1E995A6AE92E9289DC49 /* TreatmentsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.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 /* GlucoseNotificationSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.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. 118DF76A2C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */; };
  20. 118DF76B2C5ECBC60067FEB7 /* CancelOverrideIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */; };
  21. 118DF76D2C5ECBC60067FEB7 /* OverridePresetEntity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */; };
  22. 118DF76E2C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */; };
  23. 17A9D0899046B45E87834820 /* CarbRatioEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */; };
  24. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19012CDB291D2CB900FB8210 /* LoopStats.swift */; };
  25. 190EBCC429FF136900BA767D /* UserInterfaceSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */; };
  26. 190EBCC629FF138000BA767D /* UserInterfaceSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */; };
  27. 190EBCC829FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */; };
  28. 190EBCCB29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */; };
  29. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */; };
  30. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1927C8E82744606D00347C69 /* InfoPlist.strings */; };
  31. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1935363F28496F7D001E0B16 /* Oref2_variables.swift */; };
  32. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193F6CDC2A512C8F001240FD /* Loops.swift */; };
  33. 195D80B42AF6973A00D25097 /* DynamicSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */; };
  34. 195D80B72AF697B800D25097 /* DynamicSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */; };
  35. 195D80B92AF697F700D25097 /* DynamicSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */; };
  36. 195D80BB2AF6980B00D25097 /* DynamicSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */; };
  37. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBD29D052C200759F30 /* Icons.swift */; };
  38. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFBF29D053AC00759F30 /* IconSelection.swift */; };
  39. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1967DFC129D053D300759F30 /* IconImage.swift */; };
  40. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 198377D4266BFFF6004DE65E /* Localizable.strings */; };
  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 /* MealSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */; };
  46. 19D466A529AA2BD4004D5F33 /* MealSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */; };
  47. 19D466A729AA2C22004D5F33 /* MealSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */; };
  48. 19D466AA29AA3099004D5F33 /* MealSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D466A929AA3099004D5F33 /* MealSettingsRootView.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. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */; };
  52. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */; };
  53. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */; };
  54. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */; };
  55. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */; };
  56. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF429F10FCF00314DDC /* StatProvider.swift */; };
  57. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF629F10FEE00314DDC /* StatStateModel.swift */; };
  58. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19F95FF929F1102A00314DDC /* StatRootView.swift */; };
  59. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */; };
  60. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60744C3E9BB3652895C908CC /* DataTableProvider.swift */; };
  61. 23888883D4EA091C88480FF2 /* TreatmentsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */; };
  62. 3171D2818C7C72CD1584BB5E /* GlucoseNotificationSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */; };
  63. 320D030F724170A637F06D50 /* (null) in Sources */ = {isa = PBXBuildFile; };
  64. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0725C9D32E00A708ED /* BaseView.swift */; };
  65. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE0825C9D32F00A708ED /* BaseProvider.swift */; };
  66. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */ = {isa = PBXBuildFile; productRef = 3811DE0F25C9D37700A708ED /* Swinject */; };
  67. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1525C9D40400A708ED /* Screen.swift */; };
  68. 3811DE1825C9D40400A708ED /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1625C9D40400A708ED /* Router.swift */; };
  69. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1C25C9D48300A708ED /* MainProvider.swift */; };
  70. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */; };
  71. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2025C9D48300A708ED /* MainRootView.swift */; };
  72. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2825C9D49500A708ED /* HomeStateModel.swift */; };
  73. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2925C9D49500A708ED /* HomeProvider.swift */; };
  74. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */; };
  75. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE2E25C9D49500A708ED /* HomeRootView.swift */; };
  76. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */; };
  77. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */; };
  78. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */; };
  79. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */; };
  80. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5425C9D4D500A708ED /* Formatters.swift */; };
  81. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5525C9D4D500A708ED /* Publisher.swift */; };
  82. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5725C9D4D500A708ED /* ProgressBar.swift */; };
  83. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */; };
  84. 3811DE8F25C9D80400A708ED /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE8E25C9D80400A708ED /* User.swift */; };
  85. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9325C9D88200A708ED /* AppearanceManager.swift */; };
  86. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */; };
  87. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9725C9D88300A708ED /* NightscoutManager.swift */; };
  88. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */; };
  89. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9B25C9D88300A708ED /* Cache.swift */; };
  90. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */; };
  91. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */; };
  92. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DE9F25C9D88300A708ED /* Keychain.swift */; };
  93. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */; };
  94. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEA625C9D88300A708ED /* UnlockManager.swift */; };
  95. 3811DEE825CA063400A708ED /* Injected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE425CA063400A708ED /* Injected.swift */; };
  96. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE625CA063400A708ED /* SyncAccess.swift */; };
  97. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DEE725CA063400A708ED /* PersistedProperty.swift */; };
  98. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0125CA9FEA00A708ED /* Credentials.swift */; };
  99. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3811DF0F25CAAAE200A708ED /* APSManager.swift */; };
  100. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E03261B82FA0094D973 /* ReachabilityManager.swift */; };
  101. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */; };
  102. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */; };
  103. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3821ED4B25DD18BA00BC42AD /* Constants.swift */; };
  104. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */; };
  105. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 382C134A25F14E3700715CE1 /* BGTargets.swift */; };
  106. 3833B46D26012030003021B3 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 3833B46C26012030003021B3 /* Algorithms */; };
  107. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D525FFE38C002D46C1 /* LoopView.swift */; };
  108. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383420D825FFEB3F002D46C1 /* Popup.swift */; };
  109. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D525CD4D8900E91849 /* FileStorage.swift */; };
  110. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 383948D925CD64D500E91849 /* Glucose.swift */; };
  111. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803325C385E60086DB71 /* JavaScriptWorker.swift */; };
  112. 384E803825C388640086DB71 /* Script.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384E803725C388640086DB71 /* Script.swift */; };
  113. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569344270B5DFA0002C50D /* CGMType.swift */; };
  114. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569345270B5DFA0002C50D /* GlucoseSource.swift */; };
  115. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569346270B5DFB0002C50D /* AppGroupSource.swift */; };
  116. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38569352270B5E350002C50D /* CGMRootView.swift */; };
  117. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */; };
  118. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3862CC2D2743F9F700BF832C /* CalendarManager.swift */; };
  119. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3870FF4225EC13F40088248F /* BloodGlucose.swift */; };
  120. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39B25ED892B0013ECB5 /* TempTarget.swift */; };
  121. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */; };
  122. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */; };
  123. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3883583325EEB38000E024B2 /* PumpSettings.swift */; };
  124. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */; };
  125. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38887CCD25F5725200944304 /* IOBEntry.swift */; };
  126. 388E595C25AD948C0019842D /* TrioApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E595B25AD948C0019842D /* TrioApp.swift */; };
  127. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E596B25AD95110019842D /* OpenAPS.swift */; };
  128. 388E596F25AD96040019842D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 388E596E25AD96040019842D /* javascript */; };
  129. 388E597225AD9CF10019842D /* json in Resources */ = {isa = PBXBuildFile; fileRef = 388E597125AD9CF10019842D /* json */; };
  130. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5B25B6F0770019842D /* JSON.swift */; };
  131. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388E5A5F25B6F2310019842D /* Autosens.swift */; };
  132. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */; };
  133. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389487392614928B004DF424 /* DispatchTimer.swift */; };
  134. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3895E4C525B9E00D00214B37 /* Preferences.swift */; };
  135. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389A571F26079BAA00BC102F /* Interpolation.swift */; };
  136. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECDFD2601061500D86C4F /* View+Snapshot.swift */; };
  137. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389ECE042601144100D86C4F /* ConcurrentMap.swift */; };
  138. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */; };
  139. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */; };
  140. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A0364125ED069400FCBB52 /* TempBasal.swift */; };
  141. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */; };
  142. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */; };
  143. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38A9260425F012D8009E3739 /* CarbRatios.swift */; };
  144. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */; };
  145. 38AEE73D25F0200C0013F05B /* TrioSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE73C25F0200C0013F05B /* TrioSettings.swift */; };
  146. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75125F022080013F05B /* SettingsManager.swift */; };
  147. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */; };
  148. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 38B17B6525DD90E0005CAE3D /* SwiftDate */; };
  149. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */; };
  150. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */; };
  151. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */; };
  152. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */; };
  153. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */; };
  154. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */; };
  155. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */; };
  156. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021A25E7D06400579895 /* PumpSettingsView.swift */; };
  157. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021C25E7E3AF00579895 /* Reservoir.swift */; };
  158. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */; };
  159. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */; };
  160. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */; };
  161. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3B525EBE24900CB6E88 /* Battery.swift */; };
  162. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */; };
  163. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB27F260CBB7F00F74C1A /* PumpView.swift */; };
  164. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */; };
  165. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF1785276A73D400B3528F /* TagCloudView.swift */; };
  166. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */ = {isa = PBXBuildFile; productRef = 38DF1788276FC8C400B3528F /* SwiftMessages */; };
  167. 38DF178D27733E6800B3528F /* snow.sks in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178B27733E6800B3528F /* snow.sks */; };
  168. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38DF178C27733E6800B3528F /* Assets.xcassets */; };
  169. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38DF178F27733EAD00B3528F /* SnowScene.swift */; };
  170. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4451D274DB04600EC9A94 /* AppDelegate.swift */; };
  171. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */; };
  172. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44527274E401C00EC9A94 /* Protected.swift */; };
  173. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */; };
  174. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452B274E411600EC9A94 /* Disk+Data.swift */; };
  175. 38E44536274E411700EC9A94 /* Disk.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452C274E411600EC9A94 /* Disk.swift */; };
  176. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */; };
  177. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452E274E411600EC9A94 /* Disk+[Data].swift */; };
  178. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */; };
  179. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */; };
  180. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */; };
  181. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44532274E411700EC9A94 /* Disk+Codable.swift */; };
  182. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E44533274E411700EC9A94 /* Disk+Errors.swift */; };
  183. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E873FD274F761800975559 /* CoreNFC.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  184. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */; settings = {ATTRIBUTES = (Weak, ); }; };
  185. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E87407274F9AD000975559 /* UserNotificationsManager.swift */; };
  186. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E989DC25F5021400C0CED0 /* PumpStatus.swift */; };
  187. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1B25F52C9300C0CED0 /* Signpost.swift */; };
  188. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1C25F52C9300C0CED0 /* Logger.swift */; };
  189. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */; };
  190. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */; };
  191. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */; };
  192. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */; };
  193. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A2F25F52FF700C0CED0 /* Config.swift */; };
  194. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E98A3625F5509500C0CED0 /* String+Extensions.swift */; };
  195. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */; };
  196. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */; };
  197. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F37827261260DC009DB701 /* Color+Extensions.swift */; };
  198. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */; };
  199. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3D525E8FDF40078B0D1 /* MD5.swift */; };
  200. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */; };
  201. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */; };
  202. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826925CC82DB001FF17A /* NetworkService.swift */; };
  203. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */; };
  204. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3F92737E42000574A46 /* BaseStateModel.swift */; };
  205. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FB2737E53800574A46 /* MainStateModel.swift */; };
  206. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF3FD2738083E00574A46 /* CGMProvider.swift */; };
  207. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38FEF412273B317A00574A46 /* HKUnit.swift */; };
  208. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */; };
  209. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */; };
  210. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */; };
  211. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */; };
  212. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */; };
  213. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */; };
  214. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581AC4382BE22ED10038760C /* JSONConverter.swift */; };
  215. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */; };
  216. 5825A1BE2C97335C0046467E /* EditTempTargetForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */; };
  217. 582DF9752C8CDB92001F516D /* GlucoseChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */; };
  218. 582DF9772C8CDBE7001F516D /* InsulinView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9762C8CDBE7001F516D /* InsulinView.swift */; };
  219. 582DF9792C8CE1E5001F516D /* MainChartHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */; };
  220. 582DF97B2C8CE209001F516D /* CarbView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582DF97A2C8CE209001F516D /* CarbView.swift */; };
  221. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582FAE422C05102C00D1C13F /* CoreDataError.swift */; };
  222. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */; };
  223. 583684082BD195A700070A60 /* Determination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583684072BD195A700070A60 /* Determination.swift */; };
  224. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */; };
  225. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */; };
  226. 58645B992CA2D1A4008AFCE7 /* GlucoseSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */; };
  227. 58645B9B2CA2D24F008AFCE7 /* CarbSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */; };
  228. 58645B9D2CA2D275008AFCE7 /* DeterminationSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */; };
  229. 58645B9F2CA2D2BE008AFCE7 /* PumpHistorySetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */; };
  230. 58645BA12CA2D2F8008AFCE7 /* OverrideSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */; };
  231. 58645BA32CA2D325008AFCE7 /* BatterySetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */; };
  232. 58645BA52CA2D347008AFCE7 /* ForecastSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */; };
  233. 58645BA72CA2D390008AFCE7 /* ChartAxisSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */; };
  234. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */; };
  235. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */; };
  236. 58A3D53A2C96D4DE003F90FC /* AddTempTargetForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */; };
  237. 58A3D5442C96DE11003F90FC /* TempTargetStored+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */; };
  238. 58A3D5512C96EFA8003F90FC /* TempTargetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D54D2C96EFA8003F90FC /* TempTargetStored+CoreDataClass.swift */; };
  239. 58A3D5522C96EFA8003F90FC /* TempTargetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D54E2C96EFA8003F90FC /* TempTargetStored+CoreDataProperties.swift */; };
  240. 58A3D5532C96EFA8003F90FC /* TempTargetRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D54F2C96EFA8003F90FC /* TempTargetRunStored+CoreDataClass.swift */; };
  241. 58A3D5542C96EFA8003F90FC /* TempTargetRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58A3D5502C96EFA8003F90FC /* TempTargetRunStored+CoreDataProperties.swift */; };
  242. 58D08B222C8DAA8E00AA37D3 /* OverrideView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */; };
  243. 58D08B302C8DEA7500AA37D3 /* ForecastView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */; };
  244. 58D08B322C8DF88900AA37D3 /* DummyCharts.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */; };
  245. 58D08B342C8DF9A700AA37D3 /* CobIobChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */; };
  246. 58D08B382C8DFB6000AA37D3 /* BasalChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */; };
  247. 58D08B3A2C8DFECD00AA37D3 /* TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */; };
  248. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F107732BD1A4D000B1A680 /* Determination+helper.swift */; };
  249. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */; };
  250. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */; };
  251. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */; };
  252. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */; };
  253. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */; };
  254. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */; };
  255. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65070A322BFDCB83006F213F /* TidepoolStartView.swift */; };
  256. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */; };
  257. 69A31254F2451C20361D172F /* TreatmentsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */; };
  258. 69B9A368029F7EB39F525422 /* CarbRatioEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */; };
  259. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  260. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  261. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */; };
  262. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */; };
  263. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B1A8D232B14D91700E76752 /* Assets.xcassets */; };
  264. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  265. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */; };
  266. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */; };
  267. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  268. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */; };
  269. 6EADD581738D64431902AC0A /* (null) in Sources */ = {isa = PBXBuildFile; };
  270. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */; };
  271. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */; };
  272. 71D44AAB2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */; };
  273. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */; };
  274. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */; };
  275. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */; };
  276. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */; };
  277. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */; };
  278. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */; };
  279. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */; };
  280. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */; };
  281. 98641AF4F92123DA668AB931 /* CarbRatioEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */; };
  282. A33352ED40476125EBAC6EE0 /* CarbRatioEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */; };
  283. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */; };
  284. B7C465E9472624D8A2BE2A6A /* (null) in Sources */ = {isa = PBXBuildFile; };
  285. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */ = {isa = PBXBuildFile; productRef = B958F1B62BA0711600484851 /* MKRingProgressView */; };
  286. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */ = {isa = PBXBuildFile; fileRef = B9CAAEFB2AE70836000F68BC /* branch.txt */; };
  287. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */; };
  288. BD04ECCE2D29952A008C5FEB /* BolusProgressOverlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */; };
  289. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD0B2EF22C5998E600B3298F /* MealPresetView.swift */; };
  290. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1661302B82ADAB00256551 /* CustomProgressView.swift */; };
  291. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */; };
  292. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */; };
  293. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3CC0712B0B89D50013189E /* MainChartView.swift */; };
  294. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */; };
  295. BD432CA12D2F4E3600D1EB79 /* WatchMessageKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */; };
  296. BD432CA22D2F4E4000D1EB79 /* WatchMessageKeys.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */; };
  297. BD4E1A7A2D3681B700D21626 /* GlucoseTargetSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */; };
  298. BD4E1A7C2D3686D900D21626 /* StartEndMarkerSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */; };
  299. BD4ED4FD2CF9D5E8000EDC9C /* AppState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */; };
  300. BD54A9592D27FB7800F9C1EE /* OverridePresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */; };
  301. BD54A95B2D28087C00F9C1EE /* OverridePresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */; };
  302. BD54A95C2D2808A300F9C1EE /* OverridePresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */; };
  303. BD54A9712D281A8100F9C1EE /* TempTargetPresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */; };
  304. BD54A9732D281ABC00F9C1EE /* TempTargetPresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */; };
  305. BD54A9742D281AEF00F9C1EE /* TempTargetPresetWatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */; };
  306. BD6EB2D62C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */; };
  307. BD793CB02CE7C61500D669AC /* OverrideRunStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */; };
  308. BD793CB22CE8033500D669AC /* TempTargetRunStored.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */; };
  309. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */; };
  310. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */; };
  311. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */; };
  312. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */; };
  313. BD7DB88E2D2C4A17003D3155 /* BolusCalculationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */; };
  314. BD8207C42D2B42E60023339D /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D182B14D91600E76752 /* WidgetKit.framework */; };
  315. BD8207C52D2B42E60023339D /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */; };
  316. BD8207CE2D2B42E70023339D /* Trio Watch Complication Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  317. BDA25EE42D260CD500035F34 /* AppleWatchManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */; };
  318. BDA25EE62D260D5E00035F34 /* WatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EE52D260D5800035F34 /* WatchState.swift */; };
  319. BDA25EFD2D261C0000035F34 /* WatchState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25EFC2D261BF200035F34 /* WatchState.swift */; };
  320. BDA25F1C2D26BD0700035F34 /* TrendShape.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1B2D26BD0300035F34 /* TrendShape.swift */; };
  321. BDA25F1E2D26D5DD00035F34 /* GlucoseChartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */; };
  322. BDA25F202D26D5FE00035F34 /* CarbsInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */; };
  323. BDA25F222D26D62800035F34 /* BolusInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA25F212D26D62200035F34 /* BolusInputView.swift */; };
  324. BDA6CC882CAF219B00F942F9 /* TempTargetSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */; };
  325. BDAE40002D372BAD009C12B1 /* WatchState+Requests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */; };
  326. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */; };
  327. BDB899882C564509006F3298 /* ForecastChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899872C564509006F3298 /* ForecastChart.swift */; };
  328. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */; };
  329. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDBAACF92C2D439700370AAE /* OverrideData.swift */; };
  330. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */; };
  331. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC2EA462C3045AD00E5BBD0 /* Override.swift */; };
  332. BDC530FF2D0F6BE300088832 /* ContactImageManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */; };
  333. BDC531122D1060FA00088832 /* ContactImageDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531112D1060FA00088832 /* ContactImageDetailView.swift */; };
  334. BDC531142D10611D00088832 /* AddContactImageSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531132D10611D00088832 /* AddContactImageSheet.swift */; };
  335. BDC531162D10629000088832 /* ContactPicture.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531152D10629000088832 /* ContactPicture.swift */; };
  336. BDC531182D1062F200088832 /* ContactImageState.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDC531172D1062F200088832 /* ContactImageState.swift */; };
  337. BDCAF2382C639F35002DC907 /* SettingItems.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCAF2372C639F35002DC907 /* SettingItems.swift */; };
  338. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */; };
  339. BDDAF9EF2D00554500B34E7A /* SelectionPopoverView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */; };
  340. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */; };
  341. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F822C10C5B600D51995 /* DataManager.swift */; };
  342. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F842C10C62E00D51995 /* GlucoseData.swift */; };
  343. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */; };
  344. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */; };
  345. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF34F942C10D27300D51995 /* DeterminationData.swift */; };
  346. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */; };
  347. BDFD165A2AE40438007F0DDA /* TreatmentsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */; };
  348. BDFF799F2D25AA890016C40C /* Trio Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = BDFF797C2D25AA870016C40C /* Trio Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  349. BDFF7A872D25F97D0016C40C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BDFF7A832D25F97D0016C40C /* Assets.xcassets */; };
  350. BDFF7A882D25F97D0016C40C /* TrioMainWatchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */; };
  351. BDFF7A892D25F97D0016C40C /* TrioWatchApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */; };
  352. BDFF7A8B2D25F97D0016C40C /* Unit Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */; };
  353. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */; };
  354. C2A0A42F2CE03131003B98E8 /* ConstantValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */; };
  355. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */; };
  356. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */; };
  357. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */; };
  358. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */; };
  359. CD78BB94E43B249D60CC1A1B /* GlucoseNotificationSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */; };
  360. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */; };
  361. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */; };
  362. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */; };
  363. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */; };
  364. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */ = {isa = PBXBuildFile; fileRef = CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */; };
  365. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */; };
  366. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */; };
  367. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */; };
  368. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */; };
  369. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; };
  370. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  371. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950232997D81700FA576E /* CGMSettingsView.swift */; };
  372. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7950252998056D00FA576E /* CGMSetupView.swift */; };
  373. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3432A064973004BE681 /* AppShortcuts.swift */; };
  374. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */; };
  375. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */; };
  376. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */; };
  377. CE7CA3532A064973004BE681 /* TempPresetIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3492A064973004BE681 /* TempPresetIntent.swift */; };
  378. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */; };
  379. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34C2A064973004BE681 /* ListStateIntent.swift */; };
  380. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */; };
  381. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE7CA3572A064E2F004BE681 /* ListStateView.swift */; };
  382. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02428E867BA00473A9C /* AlertStorage.swift */; };
  383. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE82E02628E869DF00473A9C /* AlertEntry.swift */; };
  384. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */; };
  385. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */; };
  386. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */; };
  387. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */; };
  388. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */; };
  389. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */; };
  390. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */; };
  391. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; };
  392. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4C274C26A300843DB3 /* LoopKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  393. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; };
  394. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  395. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; };
  396. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4E274C26A300843DB3 /* MockKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  397. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; };
  398. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA4F274C26A300843DB3 /* MockKitUI.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  399. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; };
  400. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3818AA70274C278200843DB3 /* LoopTestingKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  401. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */; };
  402. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */; };
  403. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E428B8FF5D00B70274 /* UIColor.swift */; };
  404. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */; };
  405. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; };
  406. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */ = {isa = PBXBuildFile; productRef = CEB434FC28B90B7C00B70274 /* SwiftCharts */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
  407. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */; };
  408. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */; };
  409. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */; };
  410. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */; };
  411. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */; };
  412. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */; };
  413. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */; };
  414. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */; };
  415. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */; };
  416. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */; };
  417. DD07CA142CE80B73002D45A9 /* TimeInRangeChartStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD07CA132CE80B73002D45A9 /* TimeInRangeChartStyle.swift */; };
  418. DD09D47B2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */; };
  419. DD09D47D2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */; };
  420. DD09D47F2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */; };
  421. DD09D4822C5986F6003FEA5D /* CalendarEventSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */; };
  422. DD09D5C72D29EB2F000D82C9 /* Helper+Enums.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */; };
  423. DD09D5C92D29F3D0000D82C9 /* AcknowledgementPendingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */; };
  424. DD09D6442D2B553A000D82C9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DD09D6412D2B553A000D82C9 /* Assets.xcassets */; };
  425. DD09D6462D2B553A000D82C9 /* TrioWatchComplication.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */; };
  426. DD1745132C54169400211FAC /* DevicesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745122C54169400211FAC /* DevicesView.swift */; };
  427. DD1745152C54388A00211FAC /* TherapySettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745142C54388A00211FAC /* TherapySettingsView.swift */; };
  428. DD1745172C54389F00211FAC /* FeatureSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745162C54389F00211FAC /* FeatureSettingsView.swift */; };
  429. DD1745192C543B5700211FAC /* NotificationsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745182C543B5700211FAC /* NotificationsView.swift */; };
  430. DD17451D2C543C5F00211FAC /* ServicesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17451C2C543C5F00211FAC /* ServicesView.swift */; };
  431. DD1745202C55523E00211FAC /* SMBSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */; };
  432. DD1745222C55524800211FAC /* SMBSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745212C55524800211FAC /* SMBSettingsProvider.swift */; };
  433. DD1745242C55526000211FAC /* SMBSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */; };
  434. DD1745262C55526F00211FAC /* SMBSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */; };
  435. DD1745292C55642100211FAC /* SettingInputSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745282C55642100211FAC /* SettingInputSection.swift */; };
  436. DD17452B2C556E8100211FAC /* SettingInputHintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452A2C556E8100211FAC /* SettingInputHintView.swift */; };
  437. DD17452E2C55AE4800211FAC /* TargetBehavoirDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */; };
  438. DD1745302C55AE5300211FAC /* TargetBehaviorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */; };
  439. DD1745322C55AE6000211FAC /* TargetBehavoirStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */; };
  440. DD1745352C55AE7E00211FAC /* TargetBehavoirRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */; };
  441. DD1745372C55B74200211FAC /* AlgorithmSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745362C55B74200211FAC /* AlgorithmSettings.swift */; };
  442. DD17453A2C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */; };
  443. DD17453C2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */; };
  444. DD17453E2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */; };
  445. DD1745402C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */; };
  446. DD1745442C55C60E00211FAC /* AutosensSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */; };
  447. DD1745462C55C61500211FAC /* AutosensSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */; };
  448. DD1745482C55C61D00211FAC /* AutosensSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */; };
  449. DD17454B2C55C62800211FAC /* AutosensSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */; };
  450. DD17454E2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */; };
  451. DD1745502C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */; };
  452. DD1745522C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */; };
  453. DD1745552C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */; };
  454. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */; };
  455. DD1E53592D273F26008F32A4 /* LoopStatusHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */; };
  456. DD21FCB52C6952AD00AF2C25 /* DecimalPickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */; };
  457. DD246F062D2836AA0027DDE0 /* GlucoseTrendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */; };
  458. DD2CC85C2D25DA1000445446 /* GlucoseTargetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */; };
  459. DD32CF982CC82463003686D6 /* TrioRemoteControl+Bolus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */; };
  460. DD32CF9A2CC8247B003686D6 /* TrioRemoteControl+Meal.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */; };
  461. DD32CF9C2CC82499003686D6 /* TrioRemoteControl+TempTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */; };
  462. DD32CF9E2CC824C5003686D6 /* TrioRemoteControl+Override.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */; };
  463. DD32CFA02CC824D6003686D6 /* TrioRemoteControl+APNS.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */; };
  464. DD32CFA22CC824E2003686D6 /* TrioRemoteControl+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */; };
  465. DD3A3CE72D29C93F00AE478E /* Helper+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */; };
  466. DD3A3CE92D29C97800AE478E /* Helper+ButtonStyles.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */; };
  467. DD5DC9F12CF3D97C00AB8703 /* AdjustmentsStateModel+Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */; };
  468. DD5DC9F32CF3D9DD00AB8703 /* AdjustmentsStateModel+TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */; };
  469. DD5DC9F72CF3DA9300AB8703 /* TargetPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */; };
  470. DD5DC9F92CF3DAA900AB8703 /* RadioButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */; };
  471. DD5DC9FB2CF3E1B100AB8703 /* AdjustmentsStateModel+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */; };
  472. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */; };
  473. DD6B7CB22C7B6F0800B75029 /* Rounding.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB12C7B6F0800B75029 /* Rounding.swift */; };
  474. DD6B7CB42C7B71F700B75029 /* ForecastDisplayType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */; };
  475. DD6B7CB62C7B748B00B75029 /* TotalInsulinDisplayType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB52C7B748B00B75029 /* TotalInsulinDisplayType.swift */; };
  476. DD6B7CB92C7BAC6900B75029 /* NightscoutImportResultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */; };
  477. DD6B7CBB2C7FBBFA00B75029 /* ReviewInsulinActionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */; };
  478. DD6D67E42C9C253500660C9B /* ColorSchemeOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */; };
  479. DD6F63CC2D27F615007D94CF /* TreatmentMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */; };
  480. DD8262CB2D289297009F6F62 /* BolusConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */; };
  481. DD88C8E22C50420800F2D558 /* DefinitionRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD88C8E12C50420800F2D558 /* DefinitionRow.swift */; };
  482. DD940BAA2CA7585D000830A5 /* GlucoseColorScheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */; };
  483. DD940BAC2CA75889000830A5 /* DynamicGlucoseColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */; };
  484. DD9ECB682CA99F4500AA7C45 /* TrioRemoteControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */; };
  485. DD9ECB6A2CA99F6C00AA7C45 /* PushMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */; };
  486. DD9ECB702CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */; };
  487. DD9ECB712CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */; };
  488. DD9ECB722CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */; };
  489. DD9ECB742CA9A0C300AA7C45 /* RemoteControlConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */; };
  490. DDA6E2502D22187500C2988C /* ChartLegendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E24F2D22187500C2988C /* ChartLegendView.swift */; };
  491. DDA6E2852D2361F800C2988C /* LoopStatusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E2842D2361F800C2988C /* LoopStatusView.swift */; };
  492. DDA6E3202D258E0500C2988C /* OverrideHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */; };
  493. DDA6E3222D25901100C2988C /* TempTargetHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */; };
  494. DDA6E3572D25988500C2988C /* ContactImageHelpView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */; };
  495. DDAA29832D2D1D93006546A1 /* AdjustmentsRootView+Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */; };
  496. DDAA29852D2D1D9E006546A1 /* AdjustmentsRootView+TempTargets.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */; };
  497. DDB37CC52D05048F00D99BF4 /* ContactImageStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */; };
  498. DDB37CC72D05127500D99BF4 /* FontExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB37CC62D05127500D99BF4 /* FontExtensions.swift */; };
  499. DDCEBF5B2CC1B76400DF4C36 /* LiveActivity+Helper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */; };
  500. DDD163122C4C689900CD525A /* AdjustmentsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */; };
  501. DDD163142C4C68D300CD525A /* AdjustmentsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */; };
  502. DDD163162C4C690300CD525A /* AdjustmentsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */; };
  503. DDD163182C4C694000CD525A /* AdjustmentsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */; };
  504. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD163192C4C695E00CD525A /* EditOverrideForm.swift */; };
  505. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */; };
  506. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */; };
  507. DDD6D4D32CDE90720029439A /* HbA1cDisplayUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD6D4D22CDE90720029439A /* HbA1cDisplayUnit.swift */; };
  508. DDE179522C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */; };
  509. DDE179532C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */; };
  510. DDE179542C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */; };
  511. DDE179552C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */; };
  512. DDE179562C910127003CDDB7 /* BolusStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */; };
  513. DDE179572C910127003CDDB7 /* BolusStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */; };
  514. DDE179582C910127003CDDB7 /* ForecastValue+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */; };
  515. DDE179592C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */; };
  516. DDE1795A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */; };
  517. DDE1795B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */; };
  518. DDE1795E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */; };
  519. DDE1795F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */; };
  520. DDE179602C910127003CDDB7 /* StatsData+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */; };
  521. DDE179612C910127003CDDB7 /* StatsData+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */; };
  522. DDE179622C910127003CDDB7 /* Forecast+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */; };
  523. DDE179632C910127003CDDB7 /* Forecast+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */; };
  524. DDE179642C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */; };
  525. DDE179652C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */; };
  526. DDE179662C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */; };
  527. DDE179672C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */; };
  528. DDE179682C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */; };
  529. DDE179692C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */; };
  530. DDE1796C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */; };
  531. DDE1796D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */; };
  532. DDE1796E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */; };
  533. DDE1796F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */; };
  534. DDE179702C910127003CDDB7 /* OverrideStored+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */; };
  535. DDE179712C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */; };
  536. DDF847DD2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */; };
  537. DDF847DF2C5C28780049BB3B /* LiveActivitySettingsProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */; };
  538. DDF847E12C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */; };
  539. DDF847E42C5C288F0049BB3B /* LiveActivitySettingsRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */; };
  540. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */; };
  541. DDF847E82C5DABA30049BB3B /* WatchConfigAppleWatchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */; };
  542. DDF847EA2C5DABAC0049BB3B /* WatchConfigGarminView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */; };
  543. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFD27368630002FF094 /* ServiceAssembly.swift */; };
  544. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFE27368630002FF094 /* SecurityAssembly.swift */; };
  545. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEBFF27368630002FF094 /* StorageAssembly.swift */; };
  546. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0027368630002FF094 /* UIAssembly.swift */; };
  547. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0127368630002FF094 /* APSAssembly.swift */; };
  548. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00EEC0227368630002FF094 /* NetworkAssembly.swift */; };
  549. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */; };
  550. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E06B9119275B5EEA003C04B6 /* Array+Extension.swift */; };
  551. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */; };
  552. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */; };
  553. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */; };
  554. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */; };
  555. E3A08AAE59538BC8A8ABE477 /* GlucoseNotificationSettingsDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */; };
  556. E592A3702CEEC01E009A472C /* ContactTrickEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */; };
  557. E592A3772CEEC038009A472C /* ContactImageStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3752CEEC038009A472C /* ContactImageStateModel.swift */; };
  558. E592A3782CEEC038009A472C /* ContactImageDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */; };
  559. E592A3792CEEC038009A472C /* ContactImageRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3712CEEC038009A472C /* ContactImageRootView.swift */; };
  560. E592A37A2CEEC038009A472C /* ContactImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E592A3742CEEC038009A472C /* ContactImageProvider.swift */; };
  561. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */; };
  562. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */; };
  563. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */; };
  564. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825D28DB441200054060 /* HeartBeatManager.swift */; };
  565. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F816825F28DB441800054060 /* BluetoothTransmitter.swift */; };
  566. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692A9274B7AAE0037068D /* HealthKitManager.swift */; };
  567. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692CE274B999A0037068D /* HealthKitDataFlow.swift */; };
  568. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D0274B99B60037068D /* HealthKitProvider.swift */; };
  569. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */; };
  570. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90692D5274B9A450037068D /* HealthKitStateModel.swift */; };
  571. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */; };
  572. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */; };
  573. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */; };
  574. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */; };
  575. /* End PBXBuildFile section */
  576. /* Begin PBXContainerItemProxy section */
  577. 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */ = {
  578. isa = PBXContainerItemProxy;
  579. containerPortal = 388E595025AD948C0019842D /* Project object */;
  580. proxyType = 1;
  581. remoteGlobalIDString = 388E595725AD948C0019842D;
  582. remoteInfo = Trio;
  583. };
  584. 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */ = {
  585. isa = PBXContainerItemProxy;
  586. containerPortal = 388E595025AD948C0019842D /* Project object */;
  587. proxyType = 1;
  588. remoteGlobalIDString = 6B1A8D162B14D91500E76752;
  589. remoteInfo = LiveActivityExtension;
  590. };
  591. BD8207CC2D2B42E70023339D /* PBXContainerItemProxy */ = {
  592. isa = PBXContainerItemProxy;
  593. containerPortal = 388E595025AD948C0019842D /* Project object */;
  594. proxyType = 1;
  595. remoteGlobalIDString = BD8207C22D2B42E50023339D;
  596. remoteInfo = "Trio Watch WidgetExtension";
  597. };
  598. BDFF798C2D25AA890016C40C /* PBXContainerItemProxy */ = {
  599. isa = PBXContainerItemProxy;
  600. containerPortal = 388E595025AD948C0019842D /* Project object */;
  601. proxyType = 1;
  602. remoteGlobalIDString = BDFF797B2D25AA870016C40C;
  603. remoteInfo = "TrioWatch Watch App";
  604. };
  605. BDFF799D2D25AA890016C40C /* PBXContainerItemProxy */ = {
  606. isa = PBXContainerItemProxy;
  607. containerPortal = 388E595025AD948C0019842D /* Project object */;
  608. proxyType = 1;
  609. remoteGlobalIDString = BDFF797B2D25AA870016C40C;
  610. remoteInfo = "TrioWatch Watch App";
  611. };
  612. /* End PBXContainerItemProxy section */
  613. /* Begin PBXCopyFilesBuildPhase section */
  614. 3821ECD025DC703C00BC42AD /* Embed Frameworks */ = {
  615. isa = PBXCopyFilesBuildPhase;
  616. buildActionMask = 2147483647;
  617. dstPath = "";
  618. dstSubfolderSpec = 10;
  619. files = (
  620. CE51DD1D2A01970900F163F7 /* ConnectIQ 2.xcframework in Embed Frameworks */,
  621. CE95BF5C2BA770C300DC3DE3 /* LoopKit.framework in Embed Frameworks */,
  622. CEB434FE28B90B8C00B70274 /* SwiftCharts in Embed Frameworks */,
  623. CE95BF642BA771BE00DC3DE3 /* LoopTestingKit.framework in Embed Frameworks */,
  624. CE95BF622BA7715900DC3DE3 /* MockKitUI.framework in Embed Frameworks */,
  625. CE95BF602BA7715800DC3DE3 /* MockKit.framework in Embed Frameworks */,
  626. CE95BF5E2BA770C300DC3DE3 /* LoopKitUI.framework in Embed Frameworks */,
  627. );
  628. name = "Embed Frameworks";
  629. runOnlyForDeploymentPostprocessing = 0;
  630. };
  631. 38E8753D27554D5900975559 /* Embed Watch Content */ = {
  632. isa = PBXCopyFilesBuildPhase;
  633. buildActionMask = 2147483647;
  634. dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
  635. dstSubfolderSpec = 16;
  636. files = (
  637. BDFF799F2D25AA890016C40C /* Trio Watch App.app in Embed Watch Content */,
  638. );
  639. name = "Embed Watch Content";
  640. runOnlyForDeploymentPostprocessing = 0;
  641. };
  642. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */ = {
  643. isa = PBXCopyFilesBuildPhase;
  644. buildActionMask = 2147483647;
  645. dstPath = "";
  646. dstSubfolderSpec = 13;
  647. files = (
  648. 6B1A8D282B14D91700E76752 /* LiveActivityExtension.appex in Embed Foundation Extensions */,
  649. );
  650. name = "Embed Foundation Extensions";
  651. runOnlyForDeploymentPostprocessing = 0;
  652. };
  653. BD8207CF2D2B42E80023339D /* Embed Foundation Extensions */ = {
  654. isa = PBXCopyFilesBuildPhase;
  655. buildActionMask = 2147483647;
  656. dstPath = "";
  657. dstSubfolderSpec = 13;
  658. files = (
  659. BD8207CE2D2B42E70023339D /* Trio Watch Complication Extension.appex in Embed Foundation Extensions */,
  660. );
  661. name = "Embed Foundation Extensions";
  662. runOnlyForDeploymentPostprocessing = 0;
  663. };
  664. /* End PBXCopyFilesBuildPhase section */
  665. /* Begin PBXFileReference section */
  666. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntent.swift; sourceTree = "<group>"; };
  667. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BolusIntentRequest.swift; sourceTree = "<group>"; };
  668. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigView.swift; sourceTree = "<group>"; };
  669. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigDataFlow.swift; sourceTree = "<group>"; };
  670. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigProvider.swift; sourceTree = "<group>"; };
  671. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShortcutsConfigStateModel.swift; sourceTree = "<group>"; };
  672. 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyOverridePresetIntent.swift; sourceTree = "<group>"; };
  673. 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelOverrideIntent.swift; sourceTree = "<group>"; };
  674. 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OverridePresetEntity.swift; sourceTree = "<group>"; };
  675. 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OverridePresetsIntentRequest.swift; sourceTree = "<group>"; };
  676. 19012CDB291D2CB900FB8210 /* LoopStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStats.swift; sourceTree = "<group>"; };
  677. 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsDataFlow.swift; sourceTree = "<group>"; };
  678. 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsProvider.swift; sourceTree = "<group>"; };
  679. 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsStateModel.swift; sourceTree = "<group>"; };
  680. 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserInterfaceSettingsRootView.swift; sourceTree = "<group>"; };
  681. 1918333A26ADA46800F45722 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  682. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettings.swift; sourceTree = "<group>"; };
  683. 1927C8E92744611700347C69 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  684. 1927C8EA2744611800347C69 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  685. 1927C8EB2744611900347C69 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  686. 1927C8EC2744611A00347C69 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  687. 1927C8ED2744611B00347C69 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  688. 1927C8EE2744611C00347C69 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  689. 1927C8EF2744611D00347C69 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  690. 1927C8F02744611E00347C69 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  691. 1927C8F12744611E00347C69 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  692. 1927C8F22744611F00347C69 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  693. 1927C8F32744612000347C69 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  694. 1927C8F42744612100347C69 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  695. 1927C8F52744612100347C69 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  696. 1927C8F62744612200347C69 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  697. 1927C8F72744612300347C69 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  698. 1927C8F82744612400347C69 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  699. 1927C8F92744612400347C69 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  700. 1927C8FA2744612500347C69 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  701. 1927C8FB2744612600347C69 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  702. 1927C8FE274489BA00347C69 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  703. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Oref2_variables.swift; sourceTree = "<group>"; };
  704. 193F1E392B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  705. 193F1E3A2B44C13B00525770 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  706. 193F1E3B2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  707. 193F1E3C2B44C14800525770 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  708. 193F6CDC2A512C8F001240FD /* Loops.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Loops.swift; sourceTree = "<group>"; };
  709. 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsRootView.swift; sourceTree = "<group>"; };
  710. 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsDataFlow.swift; sourceTree = "<group>"; };
  711. 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsProvider.swift; sourceTree = "<group>"; };
  712. 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicSettingsStateModel.swift; sourceTree = "<group>"; };
  713. 1967DFBD29D052C200759F30 /* Icons.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Icons.swift; sourceTree = "<group>"; };
  714. 1967DFBF29D053AC00759F30 /* IconSelection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconSelection.swift; sourceTree = "<group>"; };
  715. 1967DFC129D053D300759F30 /* IconImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconImage.swift; sourceTree = "<group>"; };
  716. 198377D3266BFFF6004DE65E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  717. 198377D5266C0A05004DE65E /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  718. 198377D6266C0A0A004DE65E /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  719. 198377D7266C0A15004DE65E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  720. 198377D8266C0A1C004DE65E /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  721. 198377D9266C0A21004DE65E /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  722. 198377DA266C0A2B004DE65E /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. 198377DB266C0A32004DE65E /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  724. 198377DC266C0A3C004DE65E /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  725. 198377DD266C0A51004DE65E /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  726. 198377DE266C0A69004DE65E /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/Localizable.strings; sourceTree = "<group>"; };
  727. 198377DF266C0A7F004DE65E /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  728. 198377E0266C0AB5004DE65E /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  729. 198377E1266C0ABF004DE65E /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  730. 198377E2266C0AC8004DE65E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  731. 198377E3266C0ADC004DE65E /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  732. 198377E4266C13D2004DE65E /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  733. 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; };
  734. 199732B4271B72DD00129A3F /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  735. 199732B5271B9EE900129A3F /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  736. 19A9102F2A24BF6300C8951B /* StatsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatsView.swift; sourceTree = "<group>"; };
  737. 19A910352A24D6D700C8951B /* DateFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFilter.swift; sourceTree = "<group>"; };
  738. 19A910372A24EF3200C8951B /* ChartsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartsView.swift; sourceTree = "<group>"; };
  739. 19B0EF2028F6D66200069496 /* Statistics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statistics.swift; sourceTree = "<group>"; };
  740. 19C166682756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  741. 19C166692756EFBD00ED12E3 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  742. 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsDataFlow.swift; sourceTree = "<group>"; };
  743. 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsProvider.swift; sourceTree = "<group>"; };
  744. 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsStateModel.swift; sourceTree = "<group>"; };
  745. 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealSettingsRootView.swift; sourceTree = "<group>"; };
  746. 19D4E4EA29FC6A9F00351451 /* Charts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Charts.swift; sourceTree = "<group>"; };
  747. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  748. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigDataFlow.swift; sourceTree = "<group>"; };
  749. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigProvider.swift; sourceTree = "<group>"; };
  750. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigStateModel.swift; sourceTree = "<group>"; };
  751. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconConfigRootWiew.swift; sourceTree = "<group>"; };
  752. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatDataFlow.swift; sourceTree = "<group>"; };
  753. 19F95FF429F10FCF00314DDC /* StatProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatProvider.swift; sourceTree = "<group>"; };
  754. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatStateModel.swift; sourceTree = "<group>"; };
  755. 19F95FF929F1102A00314DDC /* StatRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatRootView.swift; sourceTree = "<group>"; };
  756. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeProvider.swift; sourceTree = "<group>"; };
  757. 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsStateModel.swift; sourceTree = "<group>"; };
  758. 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsRootView.swift; sourceTree = "<group>"; };
  759. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigRootView.swift; sourceTree = "<group>"; };
  760. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigDataFlow.swift; sourceTree = "<group>"; };
  761. 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsDataFlow.swift; sourceTree = "<group>"; };
  762. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeDataFlow.swift; sourceTree = "<group>"; };
  763. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorStateModel.swift; sourceTree = "<group>"; };
  764. 3811DE0725C9D32E00A708ED /* BaseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  765. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseProvider.swift; sourceTree = "<group>"; };
  766. 3811DE1525C9D40400A708ED /* Screen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Screen.swift; sourceTree = "<group>"; };
  767. 3811DE1625C9D40400A708ED /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = "<group>"; };
  768. 3811DE1C25C9D48300A708ED /* MainProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainProvider.swift; sourceTree = "<group>"; };
  769. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainDataFlow.swift; sourceTree = "<group>"; };
  770. 3811DE2025C9D48300A708ED /* MainRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainRootView.swift; sourceTree = "<group>"; };
  771. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeStateModel.swift; sourceTree = "<group>"; };
  772. 3811DE2925C9D49500A708ED /* HomeProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeProvider.swift; sourceTree = "<group>"; };
  773. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeDataFlow.swift; sourceTree = "<group>"; };
  774. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeRootView.swift; sourceTree = "<group>"; };
  775. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsStateModel.swift; sourceTree = "<group>"; };
  776. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsRootView.swift; sourceTree = "<group>"; };
  777. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsDataFlow.swift; sourceTree = "<group>"; };
  778. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsProvider.swift; sourceTree = "<group>"; };
  779. 3811DE5425C9D4D500A708ED /* Formatters.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Formatters.swift; sourceTree = "<group>"; };
  780. 3811DE5525C9D4D500A708ED /* Publisher.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Publisher.swift; sourceTree = "<group>"; };
  781. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = "<group>"; };
  782. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
  783. 3811DE8E25C9D80400A708ED /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  784. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppearanceManager.swift; sourceTree = "<group>"; };
  785. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTTPResponseStatus.swift; sourceTree = "<group>"; };
  786. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightscoutManager.swift; sourceTree = "<group>"; };
  787. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UserDefaults+Cache.swift"; sourceTree = "<group>"; };
  788. 3811DE9B25C9D88300A708ED /* Cache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cache.swift; sourceTree = "<group>"; };
  789. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyValueStorage.swift; sourceTree = "<group>"; };
  790. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseKeychain.swift; sourceTree = "<group>"; };
  791. 3811DE9F25C9D88300A708ED /* Keychain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keychain.swift; sourceTree = "<group>"; };
  792. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeychainItemAccessibility.swift; sourceTree = "<group>"; };
  793. 3811DEA625C9D88300A708ED /* UnlockManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UnlockManager.swift; sourceTree = "<group>"; };
  794. 3811DEC725C9DA7300A708ED /* Trio.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Trio.entitlements; sourceTree = "<group>"; };
  795. 3811DEE425CA063400A708ED /* Injected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Injected.swift; sourceTree = "<group>"; };
  796. 3811DEE625CA063400A708ED /* SyncAccess.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncAccess.swift; sourceTree = "<group>"; };
  797. 3811DEE725CA063400A708ED /* PersistedProperty.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersistedProperty.swift; sourceTree = "<group>"; };
  798. 3811DF0125CA9FEA00A708ED /* Credentials.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
  799. 3811DF0F25CAAAE200A708ED /* APSManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APSManager.swift; sourceTree = "<group>"; };
  800. 3818AA45274C229000843DB3 /* LibreTransmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = LibreTransmitter; path = Dependencies/LibreTransmitter; sourceTree = "<group>"; };
  801. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  802. 3818AA4C274C26A300843DB3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  803. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  804. 3818AA4E274C26A300843DB3 /* MockKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  805. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MockKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  806. 3818AA51274C26A300843DB3 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  807. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  808. 3818AA53274C26A300843DB3 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  809. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  810. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkBLEKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  811. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  812. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = RileyLinkKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  813. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopTestingKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  814. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReachabilityManager.swift; sourceTree = "<group>"; };
  815. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchTreatmentsManager.swift; sourceTree = "<group>"; };
  816. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConvenienceExtensions.swift; sourceTree = "<group>"; };
  817. 3821ED4B25DD18BA00BC42AD /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
  818. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinSensitivities.swift; sourceTree = "<group>"; };
  819. 382C134A25F14E3700715CE1 /* BGTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTargets.swift; sourceTree = "<group>"; };
  820. 383420D525FFE38C002D46C1 /* LoopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopView.swift; sourceTree = "<group>"; };
  821. 383420D825FFEB3F002D46C1 /* Popup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popup.swift; sourceTree = "<group>"; };
  822. 383948D525CD4D8900E91849 /* FileStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorage.swift; sourceTree = "<group>"; };
  823. 383948D925CD64D500E91849 /* Glucose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glucose.swift; sourceTree = "<group>"; };
  824. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JavaScriptWorker.swift; sourceTree = "<group>"; };
  825. 384E803725C388640086DB71 /* Script.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Script.swift; sourceTree = "<group>"; };
  826. 38569344270B5DFA0002C50D /* CGMType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMType.swift; sourceTree = "<group>"; };
  827. 38569345270B5DFA0002C50D /* GlucoseSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GlucoseSource.swift; sourceTree = "<group>"; };
  828. 38569346270B5DFB0002C50D /* AppGroupSource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppGroupSource.swift; sourceTree = "<group>"; };
  829. 38569352270B5E350002C50D /* CGMRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMRootView.swift; sourceTree = "<group>"; };
  830. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutStatus.swift; sourceTree = "<group>"; };
  831. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarManager.swift; sourceTree = "<group>"; };
  832. 3870FF4225EC13F40088248F /* BloodGlucose.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BloodGlucose.swift; sourceTree = "<group>"; };
  833. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTarget.swift; sourceTree = "<group>"; };
  834. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decimal+Extensions.swift"; sourceTree = "<group>"; };
  835. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithToolBar.swift; sourceTree = "<group>"; };
  836. 3883583325EEB38000E024B2 /* PumpSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettings.swift; sourceTree = "<group>"; };
  837. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalProfileEntry.swift; sourceTree = "<group>"; };
  838. 38887CCD25F5725200944304 /* IOBEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBEntry.swift; sourceTree = "<group>"; };
  839. 388E595825AD948C0019842D /* Trio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Trio.app; sourceTree = BUILT_PRODUCTS_DIR; };
  840. 388E595B25AD948C0019842D /* TrioApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioApp.swift; sourceTree = "<group>"; };
  841. 388E596425AD948E0019842D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  842. 388E596B25AD95110019842D /* OpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPS.swift; sourceTree = "<group>"; };
  843. 388E596E25AD96040019842D /* javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; path = javascript; sourceTree = "<group>"; };
  844. 388E597125AD9CF10019842D /* json */ = {isa = PBXFileReference; lastKnownFileType = folder; path = json; sourceTree = "<group>"; };
  845. 388E5A5B25B6F0770019842D /* JSON.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
  846. 388E5A5F25B6F2310019842D /* Autosens.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Autosens.swift; sourceTree = "<group>"; };
  847. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutTreatment.swift; sourceTree = "<group>"; };
  848. 389487392614928B004DF424 /* DispatchTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DispatchTimer.swift; sourceTree = "<group>"; };
  849. 3895E4C525B9E00D00214B37 /* Preferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = "<group>"; };
  850. 389A571F26079BAA00BC102F /* Interpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolation.swift; sourceTree = "<group>"; };
  851. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snapshot.swift"; sourceTree = "<group>"; };
  852. 389ECE042601144100D86C4F /* ConcurrentMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConcurrentMap.swift; sourceTree = "<group>"; };
  853. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LRUCache.swift; sourceTree = "<group>"; };
  854. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseStorage.swift; sourceTree = "<group>"; };
  855. 38A0364125ED069400FCBB52 /* TempBasal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempBasal.swift; sourceTree = "<group>"; };
  856. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryEvent.swift; sourceTree = "<group>"; };
  857. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtensions.swift; sourceTree = "<group>"; };
  858. 38A9260425F012D8009E3739 /* CarbRatios.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbRatios.swift; sourceTree = "<group>"; };
  859. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CurrentGlucoseView.swift; sourceTree = "<group>"; };
  860. 38AEE73C25F0200C0013F05B /* TrioSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioSettings.swift; sourceTree = "<group>"; };
  861. 38AEE75125F022080013F05B /* SettingsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsManager.swift; sourceTree = "<group>"; };
  862. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsStorage.swift; sourceTree = "<group>"; };
  863. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IndexedCollection.swift; sourceTree = "<group>"; };
  864. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSetupView.swift; sourceTree = "<group>"; };
  865. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenter.swift; sourceTree = "<group>"; };
  866. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftNotificationCenter.swift; sourceTree = "<group>"; };
  867. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeakObjectSet.swift; sourceTree = "<group>"; };
  868. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Broadcaster.swift; sourceTree = "<group>"; };
  869. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpManagerExtensions.swift; sourceTree = "<group>"; };
  870. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpSettingsView.swift; sourceTree = "<group>"; };
  871. 38BF021C25E7E3AF00579895 /* Reservoir.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reservoir.swift; sourceTree = "<group>"; };
  872. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceDataManager.swift; sourceTree = "<group>"; };
  873. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
  874. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSObject+AssociatedValues.swift"; sourceTree = "<group>"; };
  875. 38D0B3B525EBE24900CB6E88 /* Battery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Battery.swift; sourceTree = "<group>"; };
  876. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsEntry.swift; sourceTree = "<group>"; };
  877. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpView.swift; sourceTree = "<group>"; };
  878. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FetchGlucoseManager.swift; sourceTree = "<group>"; };
  879. 38DF1785276A73D400B3528F /* TagCloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagCloudView.swift; sourceTree = "<group>"; };
  880. 38DF178B27733E6800B3528F /* snow.sks */ = {isa = PBXFileReference; lastKnownFileType = file.sks; path = snow.sks; sourceTree = "<group>"; };
  881. 38DF178C27733E6800B3528F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  882. 38DF178F27733EAD00B3528F /* SnowScene.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnowScene.swift; sourceTree = "<group>"; };
  883. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  884. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = "<group>"; };
  885. 38E44527274E401C00EC9A94 /* Protected.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Protected.swift; sourceTree = "<group>"; };
  886. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+InternalHelpers.swift"; sourceTree = "<group>"; };
  887. 38E4452B274E411600EC9A94 /* Disk+Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Data.swift"; sourceTree = "<group>"; };
  888. 38E4452C274E411600EC9A94 /* Disk.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disk.swift; sourceTree = "<group>"; };
  889. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Helpers.swift"; sourceTree = "<group>"; };
  890. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[Data].swift"; sourceTree = "<group>"; };
  891. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+UIImage.swift"; sourceTree = "<group>"; };
  892. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+[UIImage].swift"; sourceTree = "<group>"; };
  893. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+VolumeInformation.swift"; sourceTree = "<group>"; };
  894. 38E44532274E411700EC9A94 /* Disk+Codable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Codable.swift"; sourceTree = "<group>"; };
  895. 38E44533274E411700EC9A94 /* Disk+Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Disk+Errors.swift"; sourceTree = "<group>"; };
  896. 38E873FD274F761800975559 /* CoreNFC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreNFC.framework; path = System/Library/Frameworks/CoreNFC.framework; sourceTree = SDKROOT; };
  897. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libswiftCoreNFC.tbd; path = usr/lib/swift/libswiftCoreNFC.tbd; sourceTree = SDKROOT; };
  898. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserNotificationsManager.swift; sourceTree = "<group>"; };
  899. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpStatus.swift; sourceTree = "<group>"; };
  900. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signpost.swift; sourceTree = "<group>"; };
  901. 38E98A1C25F52C9300C0CED0 /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
  902. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IssueReporter.swift; sourceTree = "<group>"; };
  903. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionIssueReporter.swift; sourceTree = "<group>"; };
  904. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Error+Extensions.swift"; sourceTree = "<group>"; };
  905. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSLocking+Extensions.swift"; sourceTree = "<group>"; };
  906. 38E98A2F25F52FF700C0CED0 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
  907. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extensions.swift"; sourceTree = "<group>"; };
  908. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleLogReporter.swift; sourceTree = "<group>"; };
  909. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressViewStyle.swift; sourceTree = "<group>"; };
  910. 38F37827261260DC009DB701 /* Color+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Color+Extensions.swift"; sourceTree = "<group>"; };
  911. 38F3783A2613555C009DB701 /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  912. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetsStorage.swift; sourceTree = "<group>"; };
  913. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
  914. 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrioTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  915. 38FCF3F125E9028E0078B0D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  916. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileStorageTests.swift; sourceTree = "<group>"; };
  917. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistoryStorage.swift; sourceTree = "<group>"; };
  918. 38FE826925CC82DB001FF17A /* NetworkService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkService.swift; sourceTree = "<group>"; };
  919. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutAPI.swift; sourceTree = "<group>"; };
  920. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseStateModel.swift; sourceTree = "<group>"; };
  921. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainStateModel.swift; sourceTree = "<group>"; };
  922. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGMProvider.swift; sourceTree = "<group>"; };
  923. 38FEF412273B317A00574A46 /* HKUnit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HKUnit.swift; sourceTree = "<group>"; };
  924. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorProvider.swift; sourceTree = "<group>"; };
  925. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigProvider.swift; sourceTree = "<group>"; };
  926. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigStateModel.swift; sourceTree = "<group>"; };
  927. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorDataFlow.swift; sourceTree = "<group>"; };
  928. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorProvider.swift; sourceTree = "<group>"; };
  929. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorProvider.swift; sourceTree = "<group>"; };
  930. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorRootView.swift; sourceTree = "<group>"; };
  931. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorStateModel.swift; sourceTree = "<group>"; };
  932. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebuggingIdentifiers.swift; sourceTree = "<group>"; };
  933. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPredicates.swift; sourceTree = "<group>"; };
  934. 581AC4382BE22ED10038760C /* JSONConverter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JSONConverter.swift; sourceTree = "<group>"; };
  935. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupView.swift; sourceTree = "<group>"; };
  936. 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditTempTargetForm.swift; sourceTree = "<group>"; };
  937. 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseChartView.swift; sourceTree = "<group>"; };
  938. 582DF9762C8CDBE7001F516D /* InsulinView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinView.swift; sourceTree = "<group>"; };
  939. 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartHelper.swift; sourceTree = "<group>"; };
  940. 582DF97A2C8CE209001F516D /* CarbView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbView.swift; sourceTree = "<group>"; };
  941. 582FAE422C05102C00D1C13F /* CoreDataError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataError.swift; sourceTree = "<group>"; };
  942. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+helper.swift"; sourceTree = "<group>"; };
  943. 583684072BD195A700070A60 /* Determination.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Determination.swift; sourceTree = "<group>"; };
  944. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+helper.swift"; sourceTree = "<group>"; };
  945. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEvent+helper.swift"; sourceTree = "<group>"; };
  946. 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSetup.swift; sourceTree = "<group>"; };
  947. 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbSetup.swift; sourceTree = "<group>"; };
  948. 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationSetup.swift; sourceTree = "<group>"; };
  949. 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpHistorySetup.swift; sourceTree = "<group>"; };
  950. 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideSetup.swift; sourceTree = "<group>"; };
  951. 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatterySetup.swift; sourceTree = "<group>"; };
  952. 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastSetup.swift; sourceTree = "<group>"; };
  953. 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartAxisSetup.swift; sourceTree = "<group>"; };
  954. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationStorage.swift; sourceTree = "<group>"; };
  955. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAPSBattery.swift; sourceTree = "<group>"; };
  956. 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddTempTargetForm.swift; sourceTree = "<group>"; };
  957. 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+Helper.swift"; sourceTree = "<group>"; };
  958. 58A3D54D2C96EFA8003F90FC /* TempTargetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  959. 58A3D54E2C96EFA8003F90FC /* TempTargetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  960. 58A3D54F2C96EFA8003F90FC /* TempTargetRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetRunStored+CoreDataClass.swift"; sourceTree = SOURCE_ROOT; };
  961. 58A3D5502C96EFA8003F90FC /* TempTargetRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempTargetRunStored+CoreDataProperties.swift"; sourceTree = SOURCE_ROOT; };
  962. 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideView.swift; sourceTree = "<group>"; };
  963. 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastView.swift; sourceTree = "<group>"; };
  964. 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DummyCharts.swift; sourceTree = "<group>"; };
  965. 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CobIobChart.swift; sourceTree = "<group>"; };
  966. 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasalChart.swift; sourceTree = "<group>"; };
  967. 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargets.swift; sourceTree = "<group>"; };
  968. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Determination+helper.swift"; sourceTree = "<group>"; };
  969. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutUploadView.swift; sourceTree = "<group>"; };
  970. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutFetchView.swift; sourceTree = "<group>"; };
  971. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutConnectView.swift; sourceTree = "<group>"; };
  972. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMStateModel.swift; sourceTree = "<group>"; };
  973. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorStateModel.swift; sourceTree = "<group>"; };
  974. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableProvider.swift; sourceTree = "<group>"; };
  975. 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorStateModel.swift; sourceTree = "<group>"; };
  976. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolStartView.swift; sourceTree = "<group>"; };
  977. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorDataFlow.swift; sourceTree = "<group>"; };
  978. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalProvider.swift; sourceTree = "<group>"; };
  979. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UniformTypeIdentifiers.framework; path = System/Library/Frameworks/UniformTypeIdentifiers.framework; sourceTree = SDKROOT; };
  980. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = LiveActivityExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  981. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; };
  982. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftUI.framework; path = System/Library/Frameworks/SwiftUI.framework; sourceTree = SDKROOT; };
  983. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBundle.swift; sourceTree = "<group>"; };
  984. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivity.swift; sourceTree = "<group>"; };
  985. 6B1A8D232B14D91700E76752 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  986. 6B1A8D252B14D91700E76752 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  987. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityBridge.swift; sourceTree = "<group>"; };
  988. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActitiyAttributes.swift; sourceTree = "<group>"; };
  989. 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlertPermissionsChecker.swift; sourceTree = "<group>"; };
  990. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorDataFlow.swift; sourceTree = "<group>"; };
  991. 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorDataFlow.swift; sourceTree = "<group>"; };
  992. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigRootView.swift; sourceTree = "<group>"; };
  993. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableRootView.swift; sourceTree = "<group>"; };
  994. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConfigEditorRootView.swift; sourceTree = "<group>"; };
  995. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableStateModel.swift; sourceTree = "<group>"; };
  996. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalDataFlow.swift; sourceTree = "<group>"; };
  997. 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorProvider.swift; sourceTree = "<group>"; };
  998. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorProvider.swift; sourceTree = "<group>"; };
  999. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NightscoutConfigStateModel.swift; sourceTree = "<group>"; };
  1000. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataTableDataFlow.swift; sourceTree = "<group>"; };
  1001. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigProvider.swift; sourceTree = "<group>"; };
  1002. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorStateModel.swift; sourceTree = "<group>"; };
  1003. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PumpConfigDataFlow.swift; sourceTree = "<group>"; };
  1004. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeRootView.swift; sourceTree = "<group>"; };
  1005. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CGMDataFlow.swift; sourceTree = "<group>"; };
  1006. B9CAAEFB2AE70836000F68BC /* branch.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = branch.txt; sourceTree = SOURCE_ROOT; };
  1007. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TargetsEditorDataFlow.swift; sourceTree = "<group>"; };
  1008. BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusProgressOverlay.swift; sourceTree = "<group>"; };
  1009. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealPresetView.swift; sourceTree = "<group>"; };
  1010. BD1661302B82ADAB00256551 /* CustomProgressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomProgressView.swift; sourceTree = "<group>"; };
  1011. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = ConfigOverride.xcconfig; sourceTree = "<group>"; };
  1012. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckboxToggleStyle.swift; sourceTree = "<group>"; };
  1013. BD3CC0712B0B89D50013189E /* MainChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainChartView.swift; sourceTree = "<group>"; };
  1014. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataObserver.swift; sourceTree = "<group>"; };
  1015. BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchMessageKeys.swift; sourceTree = "<group>"; };
  1016. BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTargetSetup.swift; sourceTree = "<group>"; };
  1017. BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartEndMarkerSetup.swift; sourceTree = "<group>"; };
  1018. BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppState.swift; sourceTree = "<group>"; };
  1019. BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetsView.swift; sourceTree = "<group>"; };
  1020. BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetWatch.swift; sourceTree = "<group>"; };
  1021. BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetsView.swift; sourceTree = "<group>"; };
  1022. BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetWatch.swift; sourceTree = "<group>"; };
  1023. BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityWidgetConfiguration.swift; sourceTree = "<group>"; };
  1024. BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+helper.swift"; sourceTree = "<group>"; };
  1025. BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetRunStored.swift; sourceTree = "<group>"; };
  1026. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigDataFlow.swift; sourceTree = "<group>"; };
  1027. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigProvider.swift; sourceTree = "<group>"; };
  1028. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorStateModel.swift; sourceTree = "<group>"; };
  1029. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculatorConfigRootView.swift; sourceTree = "<group>"; };
  1030. BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusCalculationManager.swift; sourceTree = "<group>"; };
  1031. BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Trio Watch Complication Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  1032. BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleWatchManager.swift; sourceTree = "<group>"; };
  1033. BDA25EE52D260D5800035F34 /* WatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchState.swift; sourceTree = "<group>"; };
  1034. BDA25EFC2D261BF200035F34 /* WatchState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchState.swift; sourceTree = "<group>"; };
  1035. BDA25F1B2D26BD0300035F34 /* TrendShape.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrendShape.swift; sourceTree = "<group>"; };
  1036. BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseChartView.swift; sourceTree = "<group>"; };
  1037. BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbsInputView.swift; sourceTree = "<group>"; };
  1038. BDA25F212D26D62200035F34 /* BolusInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusInputView.swift; sourceTree = "<group>"; };
  1039. BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetSetup.swift; sourceTree = "<group>"; };
  1040. BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WatchState+Requests.swift"; sourceTree = "<group>"; };
  1041. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsExtension.swift; sourceTree = "<group>"; };
  1042. BDB899872C564509006F3298 /* ForecastChart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastChart.swift; sourceTree = "<group>"; };
  1043. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbsGlucose+helper.swift"; sourceTree = "<group>"; };
  1044. BDBAACF92C2D439700370AAE /* OverrideData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideData.swift; sourceTree = "<group>"; };
  1045. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStorage.swift; sourceTree = "<group>"; };
  1046. BDC2EA462C3045AD00E5BBD0 /* Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Override.swift; sourceTree = "<group>"; };
  1047. BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageManager.swift; sourceTree = "<group>"; };
  1048. BDC531112D1060FA00088832 /* ContactImageDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageDetailView.swift; sourceTree = "<group>"; };
  1049. BDC531132D10611D00088832 /* AddContactImageSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddContactImageSheet.swift; sourceTree = "<group>"; };
  1050. BDC531152D10629000088832 /* ContactPicture.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactPicture.swift; sourceTree = "<group>"; };
  1051. BDC531172D1062F200088832 /* ContactImageState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageState.swift; sourceTree = "<group>"; };
  1052. BDCAF2372C639F35002DC907 /* SettingItems.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingItems.swift; sourceTree = "<group>"; };
  1053. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+helper.swift"; sourceTree = "<group>"; };
  1054. BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelectionPopoverView.swift; sourceTree = "<group>"; };
  1055. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomNotification.swift; sourceTree = "<group>"; };
  1056. BDF34F822C10C5B600D51995 /* DataManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataManager.swift; sourceTree = "<group>"; };
  1057. BDF34F842C10C62E00D51995 /* GlucoseData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseData.swift; sourceTree = "<group>"; };
  1058. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataStack.swift; sourceTree = "<group>"; };
  1059. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivityAttributes+Helper.swift"; sourceTree = "<group>"; };
  1060. BDF34F942C10D27300D51995 /* DeterminationData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeterminationData.swift; sourceTree = "<group>"; };
  1061. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LockScreenView.swift; sourceTree = "<group>"; };
  1062. BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentsRootView.swift; sourceTree = "<group>"; };
  1063. BDFF797C2D25AA870016C40C /* Trio Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Trio Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  1064. BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Trio Watch AppTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
  1065. BDFF7A832D25F97D0016C40C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1066. BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioMainWatchView.swift; sourceTree = "<group>"; };
  1067. BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchApp.swift; sourceTree = "<group>"; };
  1068. BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Unit Tests.swift"; sourceTree = "<group>"; };
  1069. BDFF7A902D25F97D0016C40C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1070. BDFF7A912D25F97D0016C40C /* TrioWatchApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchApp.swift; sourceTree = "<group>"; };
  1071. BDFF7A922D25F97D0016C40C /* TrioWatchAppExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchAppExtension.swift; sourceTree = "<group>"; };
  1072. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BasalProfileEditorRootView.swift; sourceTree = "<group>"; };
  1073. C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsProvider.swift; sourceTree = "<group>"; };
  1074. C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstantValues.swift; sourceTree = "<group>"; };
  1075. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalRootView.swift; sourceTree = "<group>"; };
  1076. C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TreatmentsDataFlow.swift; sourceTree = "<group>"; };
  1077. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RawFetchedProfile.swift; sourceTree = "<group>"; };
  1078. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+helper.swift"; sourceTree = "<group>"; };
  1079. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddCarbPresetIntent.swift; sourceTree = "<group>"; };
  1080. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbPresetIntentRequest.swift; sourceTree = "<group>"; };
  1081. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManagerTests.swift; sourceTree = "<group>"; };
  1082. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolManager.swift; sourceTree = "<group>"; };
  1083. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = BuildDetails.plist; sourceTree = "<group>"; };
  1084. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TidepoolConfigView.swift; sourceTree = "<group>"; };
  1085. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BloodGlucoseExtensions.swift; sourceTree = "<group>"; };
  1086. CE398D012977349800DF218F /* CryptoKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CryptoKit.framework; path = System/Library/Frameworks/CryptoKit.framework; sourceTree = SDKROOT; };
  1087. CE398D17297C9EE800DF218F /* G7SensorKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1088. CE398D1A297D69A900DF218F /* ShareClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1089. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniBLEPumpManagerExtensions.swift; sourceTree = "<group>"; };
  1090. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmniPodManagerExtensions.swift; sourceTree = "<group>"; };
  1091. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = "ConnectIQ 2.xcframework"; path = "Dependencies/ConnectIQ 2.xcframework"; sourceTree = "<group>"; };
  1092. 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; };
  1093. CE7950232997D81700FA576E /* CGMSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSettingsView.swift; sourceTree = "<group>"; };
  1094. CE7950252998056D00FA576E /* CGMSetupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGMSetupView.swift; sourceTree = "<group>"; };
  1095. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = CGMBLEKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1096. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = G7SensorKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1097. CE79502D29980E4D00FA576E /* ShareClientUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ShareClientUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1098. CE7CA3432A064973004BE681 /* AppShortcuts.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppShortcuts.swift; sourceTree = "<group>"; };
  1099. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseIntentsRequest.swift; sourceTree = "<group>"; };
  1100. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CancelTempPresetIntent.swift; sourceTree = "<group>"; };
  1101. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApplyTempPresetIntent.swift; sourceTree = "<group>"; };
  1102. CE7CA3492A064973004BE681 /* TempPresetIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetIntent.swift; sourceTree = "<group>"; };
  1103. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TempPresetsIntentRequest.swift; sourceTree = "<group>"; };
  1104. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListStateIntent.swift; sourceTree = "<group>"; };
  1105. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StateIntentRequest.swift; sourceTree = "<group>"; };
  1106. CE7CA3572A064E2F004BE681 /* ListStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListStateView.swift; sourceTree = "<group>"; };
  1107. CE82E02428E867BA00473A9C /* AlertStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertStorage.swift; sourceTree = "<group>"; };
  1108. CE82E02628E869DF00473A9C /* AlertEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertEntry.swift; sourceTree = "<group>"; };
  1109. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ConnectIQ.framework; path = "Dependencies/ios-armv7_arm64/ConnectIQ.framework"; sourceTree = "<group>"; };
  1110. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GarminManager.swift; sourceTree = "<group>"; };
  1111. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigDataFlow.swift; sourceTree = "<group>"; };
  1112. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigProvider.swift; sourceTree = "<group>"; };
  1113. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigStateModel.swift; sourceTree = "<group>"; };
  1114. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigRootView.swift; sourceTree = "<group>"; };
  1115. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1116. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = LoopKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1117. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginManager.swift; sourceTree = "<group>"; };
  1118. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginSource.swift; sourceTree = "<group>"; };
  1119. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavitzkyGolayFilter.swift; sourceTree = "<group>"; };
  1120. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MKRingProgressView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1121. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniBLE.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1122. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothStateManager.swift; sourceTree = "<group>"; };
  1123. CEB434E428B8FF5D00B70274 /* UIColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColor.swift; sourceTree = "<group>"; };
  1124. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopUIColorPalette+Default.swift"; sourceTree = "<group>"; };
  1125. CEC751D129D88257006E9D24 /* OmniKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1126. CEC751D329D88257006E9D24 /* OmniKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OmniKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1127. CEC751D529D88262006E9D24 /* MinimedKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1128. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MinimedKitUI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1129. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsProvider.swift; sourceTree = "<group>"; };
  1130. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsRootView.swift; sourceTree = "<group>"; };
  1131. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsChart.swift; sourceTree = "<group>"; };
  1132. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsStateModel.swift; sourceTree = "<group>"; };
  1133. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CalibrationsDataFlow.swift; sourceTree = "<group>"; };
  1134. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationService.swift; sourceTree = "<group>"; };
  1135. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalibrationsTests.swift; sourceTree = "<group>"; };
  1136. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ManualTempBasalStateModel.swift; sourceTree = "<group>"; };
  1137. D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarbRatioEditorRootView.swift; sourceTree = "<group>"; };
  1138. DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsStateModel.swift; sourceTree = "<group>"; };
  1139. DD07CA132CE80B73002D45A9 /* TimeInRangeChartStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeInRangeChartStyle.swift; sourceTree = "<group>"; };
  1140. DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsDataFlow.swift; sourceTree = "<group>"; };
  1141. DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsProvider.swift; sourceTree = "<group>"; };
  1142. DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsStateModel.swift; sourceTree = "<group>"; };
  1143. DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarEventSettingsRootView.swift; sourceTree = "<group>"; };
  1144. DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+Enums.swift"; sourceTree = "<group>"; };
  1145. DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AcknowledgementPendingView.swift; sourceTree = "<group>"; };
  1146. DD09D6162D2A2E4A000D82C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1147. DD09D6412D2B553A000D82C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  1148. DD09D6422D2B553A000D82C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  1149. DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioWatchComplication.swift; sourceTree = "<group>"; };
  1150. DD1745122C54169400211FAC /* DevicesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DevicesView.swift; sourceTree = "<group>"; };
  1151. DD1745142C54388A00211FAC /* TherapySettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TherapySettingsView.swift; sourceTree = "<group>"; };
  1152. DD1745162C54389F00211FAC /* FeatureSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeatureSettingsView.swift; sourceTree = "<group>"; };
  1153. DD1745182C543B5700211FAC /* NotificationsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationsView.swift; sourceTree = "<group>"; };
  1154. DD17451C2C543C5F00211FAC /* ServicesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServicesView.swift; sourceTree = "<group>"; };
  1155. DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsDataFlow.swift; sourceTree = "<group>"; };
  1156. DD1745212C55524800211FAC /* SMBSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsProvider.swift; sourceTree = "<group>"; };
  1157. DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsStateModel.swift; sourceTree = "<group>"; };
  1158. DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMBSettingsRootView.swift; sourceTree = "<group>"; };
  1159. DD1745282C55642100211FAC /* SettingInputSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingInputSection.swift; sourceTree = "<group>"; };
  1160. DD17452A2C556E8100211FAC /* SettingInputHintView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingInputHintView.swift; sourceTree = "<group>"; };
  1161. DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirDataFlow.swift; sourceTree = "<group>"; };
  1162. DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehaviorProvider.swift; sourceTree = "<group>"; };
  1163. DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirStateModel.swift; sourceTree = "<group>"; };
  1164. DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetBehavoirRootView.swift; sourceTree = "<group>"; };
  1165. DD1745362C55B74200211FAC /* AlgorithmSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmSettings.swift; sourceTree = "<group>"; };
  1166. DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsDataFlow.swift; sourceTree = "<group>"; };
  1167. DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsProvider.swift; sourceTree = "<group>"; };
  1168. DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsStateModel.swift; sourceTree = "<group>"; };
  1169. DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlgorithmAdvancedSettingsRootView.swift; sourceTree = "<group>"; };
  1170. DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsDataFlow.swift; sourceTree = "<group>"; };
  1171. DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsProvider.swift; sourceTree = "<group>"; };
  1172. DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsStateModel.swift; sourceTree = "<group>"; };
  1173. DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutosensSettingsRootView.swift; sourceTree = "<group>"; };
  1174. DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsDataFlow.swift; sourceTree = "<group>"; };
  1175. DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsProvider.swift; sourceTree = "<group>"; };
  1176. DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsStateModel.swift; sourceTree = "<group>"; };
  1177. DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitsLimitsSettingsRootView.swift; sourceTree = "<group>"; };
  1178. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildDetails.swift; sourceTree = "<group>"; };
  1179. DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatusHelpView.swift; sourceTree = "<group>"; };
  1180. DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DecimalPickerSettings.swift; sourceTree = "<group>"; };
  1181. DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTrendView.swift; sourceTree = "<group>"; };
  1182. DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseTargetsView.swift; sourceTree = "<group>"; };
  1183. DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Bolus.swift"; sourceTree = "<group>"; };
  1184. DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Meal.swift"; sourceTree = "<group>"; };
  1185. DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+TempTarget.swift"; sourceTree = "<group>"; };
  1186. DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Override.swift"; sourceTree = "<group>"; };
  1187. DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+APNS.swift"; sourceTree = "<group>"; };
  1188. DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TrioRemoteControl+Helpers.swift"; sourceTree = "<group>"; };
  1189. DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+Extensions.swift"; sourceTree = "<group>"; };
  1190. DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Helper+ButtonStyles.swift"; sourceTree = "<group>"; };
  1191. DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+Overrides.swift"; sourceTree = "<group>"; };
  1192. DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+TempTargets.swift"; sourceTree = "<group>"; };
  1193. DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TargetPicker.swift; sourceTree = "<group>"; };
  1194. DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RadioButton.swift; sourceTree = "<group>"; };
  1195. DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsStateModel+Helpers.swift"; sourceTree = "<group>"; };
  1196. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutExercise.swift; sourceTree = "<group>"; };
  1197. DD6B7CB12C7B6F0800B75029 /* Rounding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Rounding.swift; sourceTree = "<group>"; };
  1198. DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForecastDisplayType.swift; sourceTree = "<group>"; };
  1199. DD6B7CB52C7B748B00B75029 /* TotalInsulinDisplayType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TotalInsulinDisplayType.swift; sourceTree = "<group>"; };
  1200. DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutImportResultView.swift; sourceTree = "<group>"; };
  1201. DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewInsulinActionView.swift; sourceTree = "<group>"; };
  1202. DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorSchemeOption.swift; sourceTree = "<group>"; };
  1203. DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentMenuView.swift; sourceTree = "<group>"; };
  1204. DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusConfirmationView.swift; sourceTree = "<group>"; };
  1205. DD88C8E12C50420800F2D558 /* DefinitionRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefinitionRow.swift; sourceTree = "<group>"; };
  1206. DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseColorScheme.swift; sourceTree = "<group>"; };
  1207. DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DynamicGlucoseColor.swift; sourceTree = "<group>"; };
  1208. DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControl.swift; sourceTree = "<group>"; };
  1209. DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushMessage.swift; sourceTree = "<group>"; };
  1210. DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigStateModel.swift; sourceTree = "<group>"; };
  1211. DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigProvider.swift; sourceTree = "<group>"; };
  1212. DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfigDataFlow.swift; sourceTree = "<group>"; };
  1213. DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemoteControlConfig.swift; sourceTree = "<group>"; };
  1214. DDA6E24F2D22187500C2988C /* ChartLegendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChartLegendView.swift; sourceTree = "<group>"; };
  1215. DDA6E2842D2361F800C2988C /* LoopStatusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopStatusView.swift; sourceTree = "<group>"; };
  1216. DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideHelpView.swift; sourceTree = "<group>"; };
  1217. DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetHelpView.swift; sourceTree = "<group>"; };
  1218. DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageHelpView.swift; sourceTree = "<group>"; };
  1219. DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsRootView+Overrides.swift"; sourceTree = "<group>"; };
  1220. DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AdjustmentsRootView+TempTargets.swift"; sourceTree = "<group>"; };
  1221. DDB37CC22D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ContactTrickEntryStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1222. DDB37CC32D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ContactTrickEntryStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1223. DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageStorage.swift; sourceTree = "<group>"; };
  1224. DDB37CC62D05127500D99BF4 /* FontExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FontExtensions.swift; sourceTree = "<group>"; };
  1225. DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LiveActivity+Helper.swift"; sourceTree = "<group>"; };
  1226. DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsStateModel.swift; sourceTree = "<group>"; };
  1227. DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsProvider.swift; sourceTree = "<group>"; };
  1228. DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsDataFlow.swift; sourceTree = "<group>"; };
  1229. DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdjustmentsRootView.swift; sourceTree = "<group>"; };
  1230. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditOverrideForm.swift; sourceTree = "<group>"; };
  1231. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddOverrideForm.swift; sourceTree = "<group>"; };
  1232. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = TrioCoreDataPersistentContainer.xcdatamodel; sourceTree = "<group>"; };
  1233. DDD6D4D22CDE90720029439A /* HbA1cDisplayUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HbA1cDisplayUnit.swift; sourceTree = "<group>"; };
  1234. DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1235. DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MealPresetStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1236. DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataClass.swift"; sourceTree = "<group>"; };
  1237. DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "LoopStatRecord+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1238. DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1239. DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BolusStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1240. DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataClass.swift"; sourceTree = "<group>"; };
  1241. DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ForecastValue+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1242. DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1243. DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CarbEntryStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1244. DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1245. DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PumpEventStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1246. DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataClass.swift"; sourceTree = "<group>"; };
  1247. DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "StatsData+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1248. DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataClass.swift"; sourceTree = "<group>"; };
  1249. DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Forecast+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1250. DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1251. DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GlucoseStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1252. DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataClass.swift"; sourceTree = "<group>"; };
  1253. DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OpenAPS_Battery+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1254. DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1255. DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TempBasalStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1256. DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1257. DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideRunStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1258. DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataClass.swift"; sourceTree = "<group>"; };
  1259. DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OrefDetermination+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1260. DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataClass.swift"; sourceTree = "<group>"; };
  1261. DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OverrideStored+CoreDataProperties.swift"; sourceTree = "<group>"; };
  1262. DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsDataFlow.swift; sourceTree = "<group>"; };
  1263. DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsProvider.swift; sourceTree = "<group>"; };
  1264. DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsStateModel.swift; sourceTree = "<group>"; };
  1265. DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivitySettingsRootView.swift; sourceTree = "<group>"; };
  1266. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddMealPresetView.swift; sourceTree = "<group>"; };
  1267. DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigAppleWatchView.swift; sourceTree = "<group>"; };
  1268. DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchConfigGarminView.swift; sourceTree = "<group>"; };
  1269. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServiceAssembly.swift; sourceTree = "<group>"; };
  1270. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SecurityAssembly.swift; sourceTree = "<group>"; };
  1271. E00EEBFF27368630002FF094 /* StorageAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StorageAssembly.swift; sourceTree = "<group>"; };
  1272. E00EEC0027368630002FF094 /* UIAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAssembly.swift; sourceTree = "<group>"; };
  1273. E00EEC0127368630002FF094 /* APSAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APSAssembly.swift; sourceTree = "<group>"; };
  1274. E00EEC0227368630002FF094 /* NetworkAssembly.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkAssembly.swift; sourceTree = "<group>"; };
  1275. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseSimulatorSource.swift; sourceTree = "<group>"; };
  1276. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
  1277. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HealthKit.framework; path = System/Library/Frameworks/HealthKit.framework; sourceTree = SDKROOT; };
  1278. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitSample.swift; sourceTree = "<group>"; };
  1279. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SnoozeStateModel.swift; sourceTree = "<group>"; };
  1280. E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactTrickEntry.swift; sourceTree = "<group>"; };
  1281. E592A3712CEEC038009A472C /* ContactImageRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageRootView.swift; sourceTree = "<group>"; };
  1282. E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageDataFlow.swift; sourceTree = "<group>"; };
  1283. E592A3742CEEC038009A472C /* ContactImageProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageProvider.swift; sourceTree = "<group>"; };
  1284. E592A3752CEEC038009A472C /* ContactImageStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageStateModel.swift; sourceTree = "<group>"; };
  1285. E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GlucoseNotificationSettingsProvider.swift; sourceTree = "<group>"; };
  1286. F816825D28DB441200054060 /* HeartBeatManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeartBeatManager.swift; sourceTree = "<group>"; };
  1287. F816825F28DB441800054060 /* BluetoothTransmitter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BluetoothTransmitter.swift; sourceTree = "<group>"; };
  1288. F90692A9274B7AAE0037068D /* HealthKitManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitManager.swift; sourceTree = "<group>"; };
  1289. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitDataFlow.swift; sourceTree = "<group>"; };
  1290. F90692D0274B99B60037068D /* HealthKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitProvider.swift; sourceTree = "<group>"; };
  1291. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppleHealthKitRootView.swift; sourceTree = "<group>"; };
  1292. F90692D5274B9A450037068D /* HealthKitStateModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HealthKitStateModel.swift; sourceTree = "<group>"; };
  1293. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ISFEditorRootView.swift; sourceTree = "<group>"; };
  1294. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutPreferences.swift; sourceTree = "<group>"; };
  1295. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+Extensions.swift"; sourceTree = "<group>"; };
  1296. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+Extensions.swift"; sourceTree = "<group>"; };
  1297. /* End PBXFileReference section */
  1298. /* Begin PBXFileSystemSynchronizedRootGroup section */
  1299. BDFF7A9E2D25FA970016C40C /* Preview Content */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = "Preview Content"; sourceTree = "<group>"; };
  1300. DDCEBF412CC1B42500DF4C36 /* Views */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Views; sourceTree = "<group>"; };
  1301. /* End PBXFileSystemSynchronizedRootGroup section */
  1302. /* Begin PBXFrameworksBuildPhase section */
  1303. 388E595525AD948C0019842D /* Frameworks */ = {
  1304. isa = PBXFrameworksBuildPhase;
  1305. buildActionMask = 2147483647;
  1306. files = (
  1307. CE95BF632BA771BE00DC3DE3 /* LoopTestingKit.framework in Frameworks */,
  1308. 38E87403274F78C000975559 /* libswiftCoreNFC.tbd in Frameworks */,
  1309. 38E87401274F77E400975559 /* CoreNFC.framework in Frameworks */,
  1310. CE51DD1C2A01970900F163F7 /* ConnectIQ 2.xcframework in Frameworks */,
  1311. 3811DE1025C9D37700A708ED /* Swinject in Frameworks */,
  1312. B958F1B72BA0711600484851 /* MKRingProgressView in Frameworks */,
  1313. CE95BF5B2BA770C300DC3DE3 /* LoopKit.framework in Frameworks */,
  1314. 38B17B6625DD90E0005CAE3D /* SwiftDate in Frameworks */,
  1315. 3833B46D26012030003021B3 /* Algorithms in Frameworks */,
  1316. CEB434FD28B90B7C00B70274 /* SwiftCharts in Frameworks */,
  1317. CE95BF5F2BA7715800DC3DE3 /* MockKit.framework in Frameworks */,
  1318. 38DF1789276FC8C400B3528F /* SwiftMessages in Frameworks */,
  1319. CE95BF612BA7715900DC3DE3 /* MockKitUI.framework in Frameworks */,
  1320. E0CC2C5C275B9F0F00A7BC71 /* HealthKit.framework in Frameworks */,
  1321. CE95BF5D2BA770C300DC3DE3 /* LoopKitUI.framework in Frameworks */,
  1322. );
  1323. runOnlyForDeploymentPostprocessing = 0;
  1324. };
  1325. 38FCF3EA25E9028E0078B0D1 /* Frameworks */ = {
  1326. isa = PBXFrameworksBuildPhase;
  1327. buildActionMask = 2147483647;
  1328. files = (
  1329. );
  1330. runOnlyForDeploymentPostprocessing = 0;
  1331. };
  1332. 6B1A8D142B14D91500E76752 /* Frameworks */ = {
  1333. isa = PBXFrameworksBuildPhase;
  1334. buildActionMask = 2147483647;
  1335. files = (
  1336. 6B1A8D1B2B14D91600E76752 /* SwiftUI.framework in Frameworks */,
  1337. 6B1A8D192B14D91600E76752 /* WidgetKit.framework in Frameworks */,
  1338. );
  1339. runOnlyForDeploymentPostprocessing = 0;
  1340. };
  1341. BD8207C02D2B42E50023339D /* Frameworks */ = {
  1342. isa = PBXFrameworksBuildPhase;
  1343. buildActionMask = 2147483647;
  1344. files = (
  1345. BD8207C52D2B42E60023339D /* SwiftUI.framework in Frameworks */,
  1346. BD8207C42D2B42E60023339D /* WidgetKit.framework in Frameworks */,
  1347. );
  1348. runOnlyForDeploymentPostprocessing = 0;
  1349. };
  1350. BDFF79792D25AA870016C40C /* Frameworks */ = {
  1351. isa = PBXFrameworksBuildPhase;
  1352. buildActionMask = 2147483647;
  1353. files = (
  1354. );
  1355. runOnlyForDeploymentPostprocessing = 0;
  1356. };
  1357. BDFF79882D25AA890016C40C /* Frameworks */ = {
  1358. isa = PBXFrameworksBuildPhase;
  1359. buildActionMask = 2147483647;
  1360. files = (
  1361. );
  1362. runOnlyForDeploymentPostprocessing = 0;
  1363. };
  1364. /* End PBXFrameworksBuildPhase section */
  1365. /* Begin PBXGroup section */
  1366. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */ = {
  1367. isa = PBXGroup;
  1368. children = (
  1369. 3F8A87AA037BD079BA3528BA /* ConfigEditorDataFlow.swift */,
  1370. 44080E4709E3AE4B73054563 /* ConfigEditorProvider.swift */,
  1371. 5D5B4F8B4194BB7E260EF251 /* ConfigEditorStateModel.swift */,
  1372. 4E8C7B59F8065047ECE20965 /* View */,
  1373. );
  1374. path = ConfigEditor;
  1375. sourceTree = "<group>";
  1376. };
  1377. 0A67A70F9438DB6586398458 /* View */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. B5822B15939E719628E9FF7C /* SnoozeRootView.swift */,
  1381. );
  1382. path = View;
  1383. sourceTree = "<group>";
  1384. };
  1385. 0D76BBC81CEDC1A0050F45EF /* View */ = {
  1386. isa = PBXGroup;
  1387. children = (
  1388. 38569352270B5E350002C50D /* CGMRootView.swift */,
  1389. CE7950232997D81700FA576E /* CGMSettingsView.swift */,
  1390. CE7950252998056D00FA576E /* CGMSetupView.swift */,
  1391. );
  1392. path = View;
  1393. sourceTree = "<group>";
  1394. };
  1395. 0EE66DD474AFFD4FD787D5B9 /* View */ = {
  1396. isa = PBXGroup;
  1397. children = (
  1398. 881E04BA5E0A003DE8E0A9C6 /* DataTableRootView.swift */,
  1399. );
  1400. path = View;
  1401. sourceTree = "<group>";
  1402. };
  1403. 110AEDE22C5193D100615CC9 /* Bolus */ = {
  1404. isa = PBXGroup;
  1405. children = (
  1406. 110AEDE02C5193D100615CC9 /* BolusIntent.swift */,
  1407. 110AEDE12C5193D100615CC9 /* BolusIntentRequest.swift */,
  1408. );
  1409. path = Bolus;
  1410. sourceTree = "<group>";
  1411. };
  1412. 110AEDE62C51A0AE00615CC9 /* View */ = {
  1413. isa = PBXGroup;
  1414. children = (
  1415. 110AEDE52C51A0AE00615CC9 /* ShortcutsConfigView.swift */,
  1416. );
  1417. path = View;
  1418. sourceTree = "<group>";
  1419. };
  1420. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. 110AEDE62C51A0AE00615CC9 /* View */,
  1424. 110AEDE72C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift */,
  1425. 110AEDE82C51A0AE00615CC9 /* ShortcutsConfigProvider.swift */,
  1426. 110AEDE92C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift */,
  1427. );
  1428. path = ShortcutsConfig;
  1429. sourceTree = "<group>";
  1430. };
  1431. 118DF7692C5ECBC60067FEB7 /* Override */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. 118DF7642C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift */,
  1435. 118DF7652C5ECBC60067FEB7 /* CancelOverrideIntent.swift */,
  1436. 118DF7672C5ECBC60067FEB7 /* OverridePresetEntity.swift */,
  1437. 118DF7682C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift */,
  1438. );
  1439. path = Override;
  1440. sourceTree = "<group>";
  1441. };
  1442. 18B49BC9587A59E3A347C1CD /* View */ = {
  1443. isa = PBXGroup;
  1444. children = (
  1445. BF8BCB0C37DEB5EC377B9612 /* BasalProfileEditorRootView.swift */,
  1446. );
  1447. path = View;
  1448. sourceTree = "<group>";
  1449. };
  1450. 190EBCC229FF134900BA767D /* UserInterfaceSettings */ = {
  1451. isa = PBXGroup;
  1452. children = (
  1453. 190EBCC329FF136900BA767D /* UserInterfaceSettingsDataFlow.swift */,
  1454. 190EBCC529FF138000BA767D /* UserInterfaceSettingsProvider.swift */,
  1455. 190EBCC729FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift */,
  1456. 190EBCC929FF13AF00BA767D /* View */,
  1457. );
  1458. path = UserInterfaceSettings;
  1459. sourceTree = "<group>";
  1460. };
  1461. 190EBCC929FF13AF00BA767D /* View */ = {
  1462. isa = PBXGroup;
  1463. children = (
  1464. 190EBCCA29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift */,
  1465. );
  1466. path = View;
  1467. sourceTree = "<group>";
  1468. };
  1469. 192F0FF5276AC36D0085BE4D /* Recovered References */ = {
  1470. isa = PBXGroup;
  1471. children = (
  1472. 199561C0275E61A50077B976 /* HealthKit.framework */,
  1473. );
  1474. name = "Recovered References";
  1475. sourceTree = "<group>";
  1476. };
  1477. 195D80B22AF696EE00D25097 /* DynamicSettings */ = {
  1478. isa = PBXGroup;
  1479. children = (
  1480. 195D80B62AF697B800D25097 /* DynamicSettingsDataFlow.swift */,
  1481. 195D80B82AF697F700D25097 /* DynamicSettingsProvider.swift */,
  1482. 195D80BA2AF6980B00D25097 /* DynamicSettingsStateModel.swift */,
  1483. 195D80B52AF6974200D25097 /* View */,
  1484. );
  1485. path = DynamicSettings;
  1486. sourceTree = "<group>";
  1487. };
  1488. 195D80B52AF6974200D25097 /* View */ = {
  1489. isa = PBXGroup;
  1490. children = (
  1491. 195D80B32AF6973A00D25097 /* DynamicSettingsRootView.swift */,
  1492. );
  1493. path = View;
  1494. sourceTree = "<group>";
  1495. };
  1496. 198377CF266BFEDE004DE65E /* Localizations */ = {
  1497. isa = PBXGroup;
  1498. children = (
  1499. 19D440A926B6FEBD008DA6C8 /* Main */,
  1500. );
  1501. path = Localizations;
  1502. sourceTree = "<group>";
  1503. };
  1504. 19D440A926B6FEBD008DA6C8 /* Main */ = {
  1505. isa = PBXGroup;
  1506. children = (
  1507. 198377D4266BFFF6004DE65E /* Localizable.strings */,
  1508. );
  1509. path = Main;
  1510. sourceTree = "<group>";
  1511. };
  1512. 19D466A129AA2B0A004D5F33 /* MealSettings */ = {
  1513. isa = PBXGroup;
  1514. children = (
  1515. 19D466A229AA2B80004D5F33 /* MealSettingsDataFlow.swift */,
  1516. 19D466A429AA2BD4004D5F33 /* MealSettingsProvider.swift */,
  1517. 19D466A629AA2C22004D5F33 /* MealSettingsStateModel.swift */,
  1518. 19D466A829AA306E004D5F33 /* View */,
  1519. );
  1520. path = MealSettings;
  1521. sourceTree = "<group>";
  1522. };
  1523. 19D466A829AA306E004D5F33 /* View */ = {
  1524. isa = PBXGroup;
  1525. children = (
  1526. 19D466A929AA3099004D5F33 /* MealSettingsRootView.swift */,
  1527. );
  1528. path = View;
  1529. sourceTree = "<group>";
  1530. };
  1531. 19E1F7E629D0828B005C8D20 /* IconConfig */ = {
  1532. isa = PBXGroup;
  1533. children = (
  1534. 19E1F7E729D082D0005C8D20 /* IconConfigDataFlow.swift */,
  1535. 19E1F7E929D082ED005C8D20 /* IconConfigProvider.swift */,
  1536. 19E1F7EB29D082FE005C8D20 /* IconConfigStateModel.swift */,
  1537. 19E1F7ED29D088C0005C8D20 /* View */,
  1538. );
  1539. path = IconConfig;
  1540. sourceTree = "<group>";
  1541. };
  1542. 19E1F7ED29D088C0005C8D20 /* View */ = {
  1543. isa = PBXGroup;
  1544. children = (
  1545. 19E1F7EE29D08EBA005C8D20 /* IconConfigRootWiew.swift */,
  1546. 1967DFC129D053D300759F30 /* IconImage.swift */,
  1547. 1967DFBF29D053AC00759F30 /* IconSelection.swift */,
  1548. );
  1549. path = View;
  1550. sourceTree = "<group>";
  1551. };
  1552. 19F95FF129F10F9C00314DDC /* Stat */ = {
  1553. isa = PBXGroup;
  1554. children = (
  1555. 19F95FF229F10FBC00314DDC /* StatDataFlow.swift */,
  1556. 19F95FF429F10FCF00314DDC /* StatProvider.swift */,
  1557. 19F95FF629F10FEE00314DDC /* StatStateModel.swift */,
  1558. 19F95FF829F10FF600314DDC /* View */,
  1559. );
  1560. path = Stat;
  1561. sourceTree = "<group>";
  1562. };
  1563. 19F95FF829F10FF600314DDC /* View */ = {
  1564. isa = PBXGroup;
  1565. children = (
  1566. 19F95FF929F1102A00314DDC /* StatRootView.swift */,
  1567. 19A9102F2A24BF6300C8951B /* StatsView.swift */,
  1568. 19A910372A24EF3200C8951B /* ChartsView.swift */,
  1569. );
  1570. path = View;
  1571. sourceTree = "<group>";
  1572. };
  1573. 29B478DF61BF8D270F7D8954 /* Snooze */ = {
  1574. isa = PBXGroup;
  1575. children = (
  1576. 36A708CDB546692C2230B385 /* SnoozeDataFlow.swift */,
  1577. 1CAE81192B118804DCD23034 /* SnoozeProvider.swift */,
  1578. E26904AACA8D9C15D229D675 /* SnoozeStateModel.swift */,
  1579. 0A67A70F9438DB6586398458 /* View */,
  1580. );
  1581. path = Snooze;
  1582. sourceTree = "<group>";
  1583. };
  1584. 34CA4DF169B53D67EF18ED8A /* View */ = {
  1585. isa = PBXGroup;
  1586. children = (
  1587. 4DD795BA46B193644D48138C /* TargetsEditorRootView.swift */,
  1588. );
  1589. path = View;
  1590. sourceTree = "<group>";
  1591. };
  1592. 3811DE0325C9D31700A708ED /* Modules */ = {
  1593. isa = PBXGroup;
  1594. children = (
  1595. DDD163032C4C67B400CD525A /* Adjustments */,
  1596. DD1745382C55BF8B00211FAC /* AlgorithmAdvancedSettings */,
  1597. DD1745422C55C5C400211FAC /* AutosensSettings */,
  1598. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */,
  1599. 3811DE0425C9D32E00A708ED /* Base */,
  1600. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */,
  1601. DD09D4792C5986BA003FEA5D /* CalendarEventSettings */,
  1602. CEE9A64D2BBB411C00EB5194 /* Calibrations */,
  1603. E42231DBF0DBE2B4B92D1B15 /* CarbRatioEditor */,
  1604. F75CB57ED6971B46F8756083 /* CGM */,
  1605. 0610F7D6D2EC00E3BA1569F0 /* ConfigEditor */,
  1606. E592A3762CEEC038009A472C /* ContactImage */,
  1607. 9E56E3626FAD933385101B76 /* DataTable */,
  1608. 195D80B22AF696EE00D25097 /* DynamicSettings */,
  1609. DD17454C2C55CA0200211FAC /* GeneralSettings */,
  1610. F66B236E00924A05D6A9F9DF /* GlucoseNotificationSettings */,
  1611. F90692CD274B99850037068D /* HealthKit */,
  1612. 3811DE2725C9D49500A708ED /* Home */,
  1613. 19E1F7E629D0828B005C8D20 /* IconConfig */,
  1614. D8F047E14D567F2B5DBEFD96 /* ISFEditor */,
  1615. DDF847DB2C5C28550049BB3B /* LiveActivitySettings */,
  1616. 3811DE1A25C9D48300A708ED /* Main */,
  1617. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */,
  1618. 19D466A129AA2B0A004D5F33 /* MealSettings */,
  1619. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */,
  1620. 99C01B871ACAB3F32CE755C7 /* PumpConfig */,
  1621. DD9ECB6B2CA99FA400AA7C45 /* RemoteControlConfig */,
  1622. 3811DE3825C9D4A100A708ED /* Settings */,
  1623. 110AEDEA2C51A0AE00615CC9 /* ShortcutsConfig */,
  1624. DD17451E2C55520000211FAC /* SMBSettings */,
  1625. 29B478DF61BF8D270F7D8954 /* Snooze */,
  1626. 19F95FF129F10F9C00314DDC /* Stat */,
  1627. DD17452C2C55AE3500211FAC /* TargetBehavoir */,
  1628. 6517011F19F244F64E1FF14B /* TargetsEditor */,
  1629. C2C98283C436DB934D7E7994 /* Treatments */,
  1630. 190EBCC229FF134900BA767D /* UserInterfaceSettings */,
  1631. CE94597C29E9E1CD0047C9C6 /* WatchConfig */,
  1632. );
  1633. path = Modules;
  1634. sourceTree = "<group>";
  1635. };
  1636. 3811DE0425C9D32E00A708ED /* Base */ = {
  1637. isa = PBXGroup;
  1638. children = (
  1639. 3811DE0725C9D32E00A708ED /* BaseView.swift */,
  1640. 3811DE0825C9D32F00A708ED /* BaseProvider.swift */,
  1641. 38FEF3F92737E42000574A46 /* BaseStateModel.swift */,
  1642. );
  1643. path = Base;
  1644. sourceTree = "<group>";
  1645. };
  1646. 3811DE1325C9D39E00A708ED /* Sources */ = {
  1647. isa = PBXGroup;
  1648. children = (
  1649. CE7CA3422A064973004BE681 /* Shortcuts */,
  1650. 3811DEDE25C9E2DD00A708ED /* Application */,
  1651. 3811DF0A25CAAAA500A708ED /* APS */,
  1652. E00EEBFC27368630002FF094 /* Assemblies */,
  1653. 38E98A3225F5300800C0CED0 /* Config */,
  1654. 388E5A5A25B6F05F0019842D /* Helpers */,
  1655. 38DF178A27733E0F00B3528F /* AnimatedBackground */,
  1656. 198377CF266BFEDE004DE65E /* Localizations */,
  1657. 38E98A1A25F52C9300C0CED0 /* Logger */,
  1658. 388E5A5925B6F0250019842D /* Models */,
  1659. 3811DE0325C9D31700A708ED /* Modules */,
  1660. 3811DE1425C9D40400A708ED /* Router */,
  1661. 3811DE9125C9D88200A708ED /* Services */,
  1662. 3883582E25EEAFC000E024B2 /* Views */,
  1663. );
  1664. path = Sources;
  1665. sourceTree = "<group>";
  1666. };
  1667. 3811DE1425C9D40400A708ED /* Router */ = {
  1668. isa = PBXGroup;
  1669. children = (
  1670. 3811DE1525C9D40400A708ED /* Screen.swift */,
  1671. 3811DE1625C9D40400A708ED /* Router.swift */,
  1672. );
  1673. path = Router;
  1674. sourceTree = "<group>";
  1675. };
  1676. 3811DE1A25C9D48300A708ED /* Main */ = {
  1677. isa = PBXGroup;
  1678. children = (
  1679. 3811DE1D25C9D48300A708ED /* MainDataFlow.swift */,
  1680. 3811DE1C25C9D48300A708ED /* MainProvider.swift */,
  1681. 38FEF3FB2737E53800574A46 /* MainStateModel.swift */,
  1682. 3811DE1F25C9D48300A708ED /* View */,
  1683. );
  1684. path = Main;
  1685. sourceTree = "<group>";
  1686. };
  1687. 3811DE1F25C9D48300A708ED /* View */ = {
  1688. isa = PBXGroup;
  1689. children = (
  1690. 3811DE2025C9D48300A708ED /* MainRootView.swift */,
  1691. );
  1692. path = View;
  1693. sourceTree = "<group>";
  1694. };
  1695. 3811DE2725C9D49500A708ED /* Home */ = {
  1696. isa = PBXGroup;
  1697. children = (
  1698. 3811DE2A25C9D49500A708ED /* HomeDataFlow.swift */,
  1699. 3811DE2925C9D49500A708ED /* HomeProvider.swift */,
  1700. 3811DE2825C9D49500A708ED /* HomeStateModel.swift */,
  1701. 58645B972CA2D16A008AFCE7 /* HomeStateModel+Setup */,
  1702. 3811DE2C25C9D49500A708ED /* View */,
  1703. );
  1704. path = Home;
  1705. sourceTree = "<group>";
  1706. };
  1707. 3811DE2C25C9D49500A708ED /* View */ = {
  1708. isa = PBXGroup;
  1709. children = (
  1710. 3811DE2E25C9D49500A708ED /* HomeRootView.swift */,
  1711. 3833B51E260264AC003021B3 /* Chart */,
  1712. 3833B51F260264B6003021B3 /* Header */,
  1713. );
  1714. path = View;
  1715. sourceTree = "<group>";
  1716. };
  1717. 3811DE3825C9D4A100A708ED /* Settings */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. 3811DE3D25C9D4A100A708ED /* SettingsDataFlow.swift */,
  1721. 3811DE3E25C9D4A100A708ED /* SettingsProvider.swift */,
  1722. 3811DE3925C9D4A100A708ED /* SettingsStateModel.swift */,
  1723. 3811DE3B25C9D4A100A708ED /* View */,
  1724. BDCAF2372C639F35002DC907 /* SettingItems.swift */,
  1725. );
  1726. path = Settings;
  1727. sourceTree = "<group>";
  1728. };
  1729. 3811DE3B25C9D4A100A708ED /* View */ = {
  1730. isa = PBXGroup;
  1731. children = (
  1732. DD1745112C54168300211FAC /* Subviews */,
  1733. 3811DE3C25C9D4A100A708ED /* SettingsRootView.swift */,
  1734. CE1F6DE82BAF37C90064EB8D /* TidepoolConfigView.swift */,
  1735. 65070A322BFDCB83006F213F /* TidepoolStartView.swift */,
  1736. );
  1737. path = View;
  1738. sourceTree = "<group>";
  1739. };
  1740. 3811DE9125C9D88200A708ED /* Services */ = {
  1741. isa = PBXGroup;
  1742. children = (
  1743. BD7DB88C2D2C49FF003D3155 /* BolusCalculator */,
  1744. 3811DE9225C9D88200A708ED /* Appearance */,
  1745. CEB434E128B8F9BC00B70274 /* Bluetooth */,
  1746. 3862CC2C2743F9DC00BF832C /* Calendar */,
  1747. E592A37E2CEEC046009A472C /* ContactImage */,
  1748. F90692A8274B7A980037068D /* HealthKit */,
  1749. 6B1A8D2C2B156EC100E76752 /* LiveActivity */,
  1750. 3811DE9425C9D88200A708ED /* Network */,
  1751. 38B4F3C425E5016800E76A18 /* Notifications */,
  1752. DD9ECB662CA99EFE00AA7C45 /* RemoteControl */,
  1753. 38AEE75025F021F10013F05B /* SettingsManager */,
  1754. 3811DE9825C9D88300A708ED /* Storage */,
  1755. 3811DEA525C9D88300A708ED /* UnlockManager */,
  1756. 38E87406274F9AA500975559 /* UserNotifications */,
  1757. 38E8754D275556E100975559 /* WatchManager */,
  1758. );
  1759. path = Services;
  1760. sourceTree = "<group>";
  1761. };
  1762. 3811DE9225C9D88200A708ED /* Appearance */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. 3811DE9325C9D88200A708ED /* AppearanceManager.swift */,
  1766. );
  1767. path = Appearance;
  1768. sourceTree = "<group>";
  1769. };
  1770. 3811DE9425C9D88200A708ED /* Network */ = {
  1771. isa = PBXGroup;
  1772. children = (
  1773. 38E44521274E3DDC00EC9A94 /* NetworkReachabilityManager.swift */,
  1774. 38192E03261B82FA0094D973 /* ReachabilityManager.swift */,
  1775. 3811DE9625C9D88300A708ED /* HTTPResponseStatus.swift */,
  1776. DDC9B9962CFD2332003E7721 /* Nightscout */,
  1777. 38FE826925CC82DB001FF17A /* NetworkService.swift */,
  1778. CE1F6DDA2BAE08B60064EB8D /* TidepoolManager.swift */,
  1779. );
  1780. path = Network;
  1781. sourceTree = "<group>";
  1782. };
  1783. 3811DE9825C9D88300A708ED /* Storage */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. 383948D525CD4D8900E91849 /* FileStorage.swift */,
  1787. 3811DE9C25C9D88300A708ED /* KeyValueStorage.swift */,
  1788. 3811DE9925C9D88300A708ED /* Cache */,
  1789. 38E44529274E40F100EC9A94 /* Disk */,
  1790. 3811DE9D25C9D88300A708ED /* Keychain */,
  1791. );
  1792. path = Storage;
  1793. sourceTree = "<group>";
  1794. };
  1795. 3811DE9925C9D88300A708ED /* Cache */ = {
  1796. isa = PBXGroup;
  1797. children = (
  1798. 3811DE9A25C9D88300A708ED /* UserDefaults+Cache.swift */,
  1799. 3811DE9B25C9D88300A708ED /* Cache.swift */,
  1800. );
  1801. path = Cache;
  1802. sourceTree = "<group>";
  1803. };
  1804. 3811DE9D25C9D88300A708ED /* Keychain */ = {
  1805. isa = PBXGroup;
  1806. children = (
  1807. 3811DE9E25C9D88300A708ED /* BaseKeychain.swift */,
  1808. 3811DE9F25C9D88300A708ED /* Keychain.swift */,
  1809. 3811DEA025C9D88300A708ED /* KeychainItemAccessibility.swift */,
  1810. );
  1811. path = Keychain;
  1812. sourceTree = "<group>";
  1813. };
  1814. 3811DEA525C9D88300A708ED /* UnlockManager */ = {
  1815. isa = PBXGroup;
  1816. children = (
  1817. 3811DEA625C9D88300A708ED /* UnlockManager.swift */,
  1818. );
  1819. path = UnlockManager;
  1820. sourceTree = "<group>";
  1821. };
  1822. 3811DED425C9E1E300A708ED /* Resources */ = {
  1823. isa = PBXGroup;
  1824. children = (
  1825. 388E597125AD9CF10019842D /* json */,
  1826. 388E596E25AD96040019842D /* javascript */,
  1827. 3811DEC725C9DA7300A708ED /* Trio.entitlements */,
  1828. 388E596425AD948E0019842D /* Info.plist */,
  1829. 1927C8E82744606D00347C69 /* InfoPlist.strings */,
  1830. B9CAAEFB2AE70836000F68BC /* branch.txt */,
  1831. 19DA487F29CD2B8400EEA1E7 /* Assets.xcassets */,
  1832. );
  1833. path = Resources;
  1834. sourceTree = "<group>";
  1835. };
  1836. 3811DEDE25C9E2DD00A708ED /* Application */ = {
  1837. isa = PBXGroup;
  1838. children = (
  1839. 38E4451D274DB04600EC9A94 /* AppDelegate.swift */,
  1840. 388E595B25AD948C0019842D /* TrioApp.swift */,
  1841. BD4ED4FC2CF9D5E8000EDC9C /* AppState.swift */,
  1842. );
  1843. path = Application;
  1844. sourceTree = "<group>";
  1845. };
  1846. 3811DEE325CA063400A708ED /* PropertyWrappers */ = {
  1847. isa = PBXGroup;
  1848. children = (
  1849. 38E44527274E401C00EC9A94 /* Protected.swift */,
  1850. 3811DEE425CA063400A708ED /* Injected.swift */,
  1851. 3811DEE625CA063400A708ED /* SyncAccess.swift */,
  1852. 3811DEE725CA063400A708ED /* PersistedProperty.swift */,
  1853. );
  1854. path = PropertyWrappers;
  1855. sourceTree = "<group>";
  1856. };
  1857. 3811DF0A25CAAAA500A708ED /* APS */ = {
  1858. isa = PBXGroup;
  1859. children = (
  1860. CE95BF562BA5F5FE00DC3DE3 /* PluginManager.swift */,
  1861. 3811DF0F25CAAAE200A708ED /* APSManager.swift */,
  1862. 38BF021E25E7F0DE00579895 /* DeviceDataManager.swift */,
  1863. 38DAB289260D349500F74C1A /* FetchGlucoseManager.swift */,
  1864. 38192E06261BA9960094D973 /* FetchTreatmentsManager.swift */,
  1865. 3856933F270B57A00002C50D /* CGM */,
  1866. 38A504F625DDA0E200C5B9E8 /* Extensions */,
  1867. 388E5A5825B6F0070019842D /* OpenAPS */,
  1868. 38A0362725ECF05300FCBB52 /* Storage */,
  1869. );
  1870. path = APS;
  1871. sourceTree = "<group>";
  1872. };
  1873. 3818AA44274C229000843DB3 /* Packages */ = {
  1874. isa = PBXGroup;
  1875. children = (
  1876. 3818AA45274C229000843DB3 /* LibreTransmitter */,
  1877. );
  1878. name = Packages;
  1879. sourceTree = "<group>";
  1880. };
  1881. 3818AA48274C267000843DB3 /* Frameworks */ = {
  1882. isa = PBXGroup;
  1883. children = (
  1884. CE95BF492BA5CED700DC3DE3 /* LoopKit.framework */,
  1885. CE95BF4A2BA5CED700DC3DE3 /* LoopKitUI.framework */,
  1886. CE51DD1B2A01970800F163F7 /* ConnectIQ 2.xcframework */,
  1887. CE94597929E9DF7B0047C9C6 /* ConnectIQ.framework */,
  1888. CEC751D529D88262006E9D24 /* MinimedKit.framework */,
  1889. CEC751D729D88262006E9D24 /* MinimedKitUI.framework */,
  1890. CEC751D129D88257006E9D24 /* OmniKit.framework */,
  1891. CEC751D329D88257006E9D24 /* OmniKitUI.framework */,
  1892. CE79502D29980E4D00FA576E /* ShareClientUI.framework */,
  1893. CE79502929980C9F00FA576E /* G7SensorKitUI.framework */,
  1894. CE79502729980C9600FA576E /* CGMBLEKitUI.framework */,
  1895. CE398D1A297D69A900DF218F /* ShareClient.framework */,
  1896. CE398D17297C9EE800DF218F /* G7SensorKit.framework */,
  1897. CE398D012977349800DF218F /* CryptoKit.framework */,
  1898. CE6B025628F350FF000C5502 /* HealthKit.framework */,
  1899. CEB434DE28B8F5C400B70274 /* OmniBLE.framework */,
  1900. CEB434DB28B8F5B900B70274 /* MKRingProgressView.framework */,
  1901. E0CC2C5B275B9DAE00A7BC71 /* HealthKit.framework */,
  1902. 38E87402274F78C000975559 /* libswiftCoreNFC.tbd */,
  1903. 38E873FD274F761800975559 /* CoreNFC.framework */,
  1904. 3818AA70274C278200843DB3 /* LoopTestingKit.framework */,
  1905. 3818AA4C274C26A300843DB3 /* LoopKit.framework */,
  1906. 3818AA4D274C26A300843DB3 /* LoopKitUI.framework */,
  1907. 3818AA4E274C26A300843DB3 /* MockKit.framework */,
  1908. 3818AA4F274C26A300843DB3 /* MockKitUI.framework */,
  1909. 3818AA51274C26A300843DB3 /* MinimedKit.framework */,
  1910. 3818AA52274C26A300843DB3 /* MinimedKitUI.framework */,
  1911. 3818AA53274C26A300843DB3 /* OmniKit.framework */,
  1912. 3818AA54274C26A300843DB3 /* OmniKitUI.framework */,
  1913. 3818AA55274C26A300843DB3 /* RileyLinkBLEKit.framework */,
  1914. 3818AA56274C26A300843DB3 /* RileyLinkKit.framework */,
  1915. 3818AA57274C26A300843DB3 /* RileyLinkKitUI.framework */,
  1916. 3818AA49274C267000843DB3 /* CGMBLEKit.framework */,
  1917. 6B1A8D012B14D88B00E76752 /* UniformTypeIdentifiers.framework */,
  1918. 6B1A8D182B14D91600E76752 /* WidgetKit.framework */,
  1919. 6B1A8D1A2B14D91600E76752 /* SwiftUI.framework */,
  1920. );
  1921. name = Frameworks;
  1922. sourceTree = "<group>";
  1923. };
  1924. 3833B51E260264AC003021B3 /* Chart */ = {
  1925. isa = PBXGroup;
  1926. children = (
  1927. DDA6E24F2D22187500C2988C /* ChartLegendView.swift */,
  1928. BD3CC0712B0B89D50013189E /* MainChartView.swift */,
  1929. BDDAF9F12D0055CC00B34E7A /* ChartElements */,
  1930. );
  1931. path = Chart;
  1932. sourceTree = "<group>";
  1933. };
  1934. 3833B51F260264B6003021B3 /* Header */ = {
  1935. isa = PBXGroup;
  1936. children = (
  1937. DD1E53582D273F20008F32A4 /* LoopStatusHelpView.swift */,
  1938. DDA6E2842D2361F800C2988C /* LoopStatusView.swift */,
  1939. 383420D525FFE38C002D46C1 /* LoopView.swift */,
  1940. 38AAF85425FFF846004AF583 /* CurrentGlucoseView.swift */,
  1941. 38DAB27F260CBB7F00F74C1A /* PumpView.swift */,
  1942. );
  1943. path = Header;
  1944. sourceTree = "<group>";
  1945. };
  1946. 3856933F270B57A00002C50D /* CGM */ = {
  1947. isa = PBXGroup;
  1948. children = (
  1949. CEE9A65A2BBB41AD00EB5194 /* Calibrations */,
  1950. F816825F28DB441800054060 /* BluetoothTransmitter.swift */,
  1951. F816825D28DB441200054060 /* HeartBeatManager.swift */,
  1952. 38569346270B5DFB0002C50D /* AppGroupSource.swift */,
  1953. 38569344270B5DFA0002C50D /* CGMType.swift */,
  1954. 38569345270B5DFA0002C50D /* GlucoseSource.swift */,
  1955. E013D871273AC6FE0014109C /* GlucoseSimulatorSource.swift */,
  1956. CE95BF592BA62E4A00DC3DE3 /* PluginSource.swift */,
  1957. );
  1958. path = CGM;
  1959. sourceTree = "<group>";
  1960. };
  1961. 3862CC2C2743F9DC00BF832C /* Calendar */ = {
  1962. isa = PBXGroup;
  1963. children = (
  1964. 3862CC2D2743F9F700BF832C /* CalendarManager.swift */,
  1965. );
  1966. path = Calendar;
  1967. sourceTree = "<group>";
  1968. };
  1969. 3883582E25EEAFC000E024B2 /* Views */ = {
  1970. isa = PBXGroup;
  1971. children = (
  1972. 3811DE5925C9D4D500A708ED /* ViewModifiers.swift */,
  1973. 3883581B25EE79BB00E024B2 /* TextFieldWithToolBar.swift */,
  1974. 383420D825FFEB3F002D46C1 /* Popup.swift */,
  1975. 389ECDFD2601061500D86C4F /* View+Snapshot.swift */,
  1976. 38EA05FF262091870064E39B /* BolusProgressViewStyle.swift */,
  1977. 38DF1785276A73D400B3528F /* TagCloudView.swift */,
  1978. DD88C8E12C50420800F2D558 /* DefinitionRow.swift */,
  1979. DD1745282C55642100211FAC /* SettingInputSection.swift */,
  1980. DD17452A2C556E8100211FAC /* SettingInputHintView.swift */,
  1981. );
  1982. path = Views;
  1983. sourceTree = "<group>";
  1984. };
  1985. 388E594F25AD948C0019842D = {
  1986. isa = PBXGroup;
  1987. children = (
  1988. CE1F6DE62BAF1A180064EB8D /* BuildDetails.plist */,
  1989. 38F3783A2613555C009DB701 /* Config.xcconfig */,
  1990. BD1CF8B72C1A4A8400CB930A /* ConfigOverride.xcconfig */,
  1991. 3818AA48274C267000843DB3 /* Frameworks */,
  1992. 6B1A8D1C2B14D91600E76752 /* LiveActivity */,
  1993. 587A54C82BCDCE0F009D38E2 /* Model */,
  1994. 3818AA44274C229000843DB3 /* Packages */,
  1995. 388E595925AD948C0019842D /* Products */,
  1996. 192F0FF5276AC36D0085BE4D /* Recovered References */,
  1997. 388E595A25AD948C0019842D /* Trio */,
  1998. 38FCF3EE25E9028E0078B0D1 /* TrioTests */,
  1999. BDFF7AA12D25FAC70016C40C /* Trio Watch App */,
  2000. BDFF7A9C2D25FA730016C40C /* Trio Watch App Extension */,
  2001. BDFF7AA02D25FAA80016C40C /* Trio Watch App Tests */,
  2002. DD09D6492D2B6253000D82C9 /* Trio Watch Complication */,
  2003. );
  2004. sourceTree = "<group>";
  2005. };
  2006. 388E595925AD948C0019842D /* Products */ = {
  2007. isa = PBXGroup;
  2008. children = (
  2009. 388E595825AD948C0019842D /* Trio.app */,
  2010. 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */,
  2011. 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */,
  2012. BDFF797C2D25AA870016C40C /* Trio Watch App.app */,
  2013. BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */,
  2014. BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */,
  2015. );
  2016. name = Products;
  2017. sourceTree = "<group>";
  2018. };
  2019. 388E595A25AD948C0019842D /* Trio */ = {
  2020. isa = PBXGroup;
  2021. children = (
  2022. 3811DED425C9E1E300A708ED /* Resources */,
  2023. 3811DE1325C9D39E00A708ED /* Sources */,
  2024. );
  2025. path = Trio;
  2026. sourceTree = "<group>";
  2027. };
  2028. 388E5A5825B6F0070019842D /* OpenAPS */ = {
  2029. isa = PBXGroup;
  2030. children = (
  2031. 388E596B25AD95110019842D /* OpenAPS.swift */,
  2032. 384E803325C385E60086DB71 /* JavaScriptWorker.swift */,
  2033. 384E803725C388640086DB71 /* Script.swift */,
  2034. 3821ED4B25DD18BA00BC42AD /* Constants.swift */,
  2035. );
  2036. path = OpenAPS;
  2037. sourceTree = "<group>";
  2038. };
  2039. 388E5A5925B6F0250019842D /* Models */ = {
  2040. isa = PBXGroup;
  2041. children = (
  2042. BD432CA02D2F4E3300D1EB79 /* WatchMessageKeys.swift */,
  2043. BD54A9722D281A9C00F9C1EE /* TempTargetPresetWatch.swift */,
  2044. BD54A95A2D28087700F9C1EE /* OverridePresetWatch.swift */,
  2045. BDA25EFC2D261BF200035F34 /* WatchState.swift */,
  2046. DD07CA132CE80B73002D45A9 /* TimeInRangeChartStyle.swift */,
  2047. DD940BA92CA7585D000830A5 /* GlucoseColorScheme.swift */,
  2048. DD6D67E32C9C253500660C9B /* ColorSchemeOption.swift */,
  2049. 388E5A5F25B6F2310019842D /* Autosens.swift */,
  2050. 388358C725EEF6D200E024B2 /* BasalProfileEntry.swift */,
  2051. 38D0B3B525EBE24900CB6E88 /* Battery.swift */,
  2052. 382C134A25F14E3700715CE1 /* BGTargets.swift */,
  2053. 3870FF4225EC13F40088248F /* BloodGlucose.swift */,
  2054. 38A9260425F012D8009E3739 /* CarbRatios.swift */,
  2055. 38D0B3D825EC07C400CB6E88 /* CarbsEntry.swift */,
  2056. 3811DF0125CA9FEA00A708ED /* Credentials.swift */,
  2057. E592A36F2CEEC01E009A472C /* ContactTrickEntry.swift */,
  2058. 38AEE73C25F0200C0013F05B /* TrioSettings.swift */,
  2059. 383948D925CD64D500E91849 /* Glucose.swift */,
  2060. 382C133625F13A1E00715CE1 /* InsulinSensitivities.swift */,
  2061. 38887CCD25F5725200944304 /* IOBEntry.swift */,
  2062. DD68889C2C386E17006E3C44 /* NightscoutExercise.swift */,
  2063. 385CEA8125F23DFD002D6D5B /* NightscoutStatus.swift */,
  2064. 389442CA25F65F7100FA1F27 /* NightscoutTreatment.swift */,
  2065. 3895E4C525B9E00D00214B37 /* Preferences.swift */,
  2066. 38A13D3125E28B4B00EAA382 /* PumpHistoryEvent.swift */,
  2067. 3883583325EEB38000E024B2 /* PumpSettings.swift */,
  2068. 38E989DC25F5021400C0CED0 /* PumpStatus.swift */,
  2069. 38BF021C25E7E3AF00579895 /* Reservoir.swift */,
  2070. 38A0364125ED069400FCBB52 /* TempBasal.swift */,
  2071. 3871F39B25ED892B0013ECB5 /* TempTarget.swift */,
  2072. 3811DE8E25C9D80400A708ED /* User.swift */,
  2073. E0D4F80427513ECF00BDF1FE /* HealthKitSample.swift */,
  2074. 1935363F28496F7D001E0B16 /* Oref2_variables.swift */,
  2075. CE82E02628E869DF00473A9C /* AlertEntry.swift */,
  2076. 19B0EF2028F6D66200069496 /* Statistics.swift */,
  2077. 19012CDB291D2CB900FB8210 /* LoopStats.swift */,
  2078. FE41E4D529463EE20047FD55 /* NightscoutPreferences.swift */,
  2079. 191F62672AD6B05A004D7911 /* NightscoutSettings.swift */,
  2080. 1967DFBD29D052C200759F30 /* Icons.swift */,
  2081. 19D4E4EA29FC6A9F00351451 /* Charts.swift */,
  2082. 19A910352A24D6D700C8951B /* DateFilter.swift */,
  2083. 193F6CDC2A512C8F001240FD /* Loops.swift */,
  2084. CC6C406D2ACDD69E009B8058 /* RawFetchedProfile.swift */,
  2085. BDF530D72B40F8AC002CAF43 /* LockScreenView.swift */,
  2086. 583684072BD195A700070A60 /* Determination.swift */,
  2087. BDC2EA462C3045AD00E5BBD0 /* Override.swift */,
  2088. DD21FCB42C6952AD00AF2C25 /* DecimalPickerSettings.swift */,
  2089. DD6B7CB32C7B71F700B75029 /* ForecastDisplayType.swift */,
  2090. DD6B7CB52C7B748B00B75029 /* TotalInsulinDisplayType.swift */,
  2091. DD9ECB692CA99F6C00AA7C45 /* PushMessage.swift */,
  2092. DDD6D4D22CDE90720029439A /* HbA1cDisplayUnit.swift */,
  2093. );
  2094. path = Models;
  2095. sourceTree = "<group>";
  2096. };
  2097. 388E5A5A25B6F05F0019842D /* Helpers */ = {
  2098. isa = PBXGroup;
  2099. children = (
  2100. C2A0A42E2CE0312C003B98E8 /* ConstantValues.swift */,
  2101. DD940BAB2CA75889000830A5 /* DynamicGlucoseColor.swift */,
  2102. 38F37827261260DC009DB701 /* Color+Extensions.swift */,
  2103. 389ECE042601144100D86C4F /* ConcurrentMap.swift */,
  2104. 38192E0C261BAF980094D973 /* ConvenienceExtensions.swift */,
  2105. 3871F39E25ED895A0013ECB5 /* Decimal+Extensions.swift */,
  2106. 38C4D33625E9A1A200D30B77 /* DispatchQueue+Extensions.swift */,
  2107. 389487392614928B004DF424 /* DispatchTimer.swift */,
  2108. 3811DE5425C9D4D500A708ED /* Formatters.swift */,
  2109. 38FEF412273B317A00574A46 /* HKUnit.swift */,
  2110. 38B4F3AE25E2979F00E76A18 /* IndexedCollection.swift */,
  2111. 389A571F26079BAA00BC102F /* Interpolation.swift */,
  2112. 388E5A5B25B6F0770019842D /* JSON.swift */,
  2113. 38A00B2225FC2B55006BC0B0 /* LRUCache.swift */,
  2114. 38FCF3D525E8FDF40078B0D1 /* MD5.swift */,
  2115. 38E98A2C25F52DC400C0CED0 /* NSLocking+Extensions.swift */,
  2116. 38C4D33925E9A1ED00D30B77 /* NSObject+AssociatedValues.swift */,
  2117. 3811DE5725C9D4D500A708ED /* ProgressBar.swift */,
  2118. 3811DE5525C9D4D500A708ED /* Publisher.swift */,
  2119. 38E98A3625F5509500C0CED0 /* String+Extensions.swift */,
  2120. 3811DEE325CA063400A708ED /* PropertyWrappers */,
  2121. E06B9119275B5EEA003C04B6 /* Array+Extension.swift */,
  2122. CEB434E428B8FF5D00B70274 /* UIColor.swift */,
  2123. FE66D16A291F74F8005D6F77 /* Bundle+Extensions.swift */,
  2124. FEFFA7A12929FE49007B8193 /* UIDevice+Extensions.swift */,
  2125. CEA4F62229BE10F70011ADF7 /* SavitzkyGolayFilter.swift */,
  2126. BD2FF19F2AE29D43005D1C5D /* CheckboxToggleStyle.swift */,
  2127. BD1661302B82ADAB00256551 /* CustomProgressView.swift */,
  2128. 581516A32BCED84A00BF67D7 /* DebuggingIdentifiers.swift */,
  2129. DD1DB7CB2BECCA1F0048B367 /* BuildDetails.swift */,
  2130. DD6B7CB12C7B6F0800B75029 /* Rounding.swift */,
  2131. 582DF9782C8CE1E5001F516D /* MainChartHelper.swift */,
  2132. );
  2133. path = Helpers;
  2134. sourceTree = "<group>";
  2135. };
  2136. 38A0362725ECF05300FCBB52 /* Storage */ = {
  2137. isa = PBXGroup;
  2138. children = (
  2139. CE82E02428E867BA00473A9C /* AlertStorage.swift */,
  2140. 38AEE75625F0F18E0013F05B /* CarbsStorage.swift */,
  2141. DDB37CC42D05048F00D99BF4 /* ContactImageStorage.swift */,
  2142. 5864E8582C42CFAE00294306 /* DeterminationStorage.swift */,
  2143. 38A0363A25ECF07E00FCBB52 /* GlucoseStorage.swift */,
  2144. BDC2EA442C3043B000E5BBD0 /* OverrideStorage.swift */,
  2145. 38FCF3FC25E997A80078B0D1 /* PumpHistoryStorage.swift */,
  2146. 38F3B2EE25ED8E2A005C48AA /* TempTargetsStorage.swift */,
  2147. );
  2148. path = Storage;
  2149. sourceTree = "<group>";
  2150. };
  2151. 38A504F625DDA0E200C5B9E8 /* Extensions */ = {
  2152. isa = PBXGroup;
  2153. children = (
  2154. DDB37CC62D05127500D99BF4 /* FontExtensions.swift */,
  2155. 38A5049125DD9C4000C5B9E8 /* UserDefaultsExtensions.swift */,
  2156. 38BF021625E7CBBC00579895 /* PumpManagerExtensions.swift */,
  2157. CEB434E628B9053300B70274 /* LoopUIColorPalette+Default.swift */,
  2158. CE48C86328CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift */,
  2159. CE48C86528CA6B48007C0598 /* OmniPodManagerExtensions.swift */,
  2160. CE2FAD39297D93F0001A872C /* BloodGlucoseExtensions.swift */,
  2161. );
  2162. path = Extensions;
  2163. sourceTree = "<group>";
  2164. };
  2165. 38AEE75025F021F10013F05B /* SettingsManager */ = {
  2166. isa = PBXGroup;
  2167. children = (
  2168. 38AEE75125F022080013F05B /* SettingsManager.swift */,
  2169. );
  2170. path = SettingsManager;
  2171. sourceTree = "<group>";
  2172. };
  2173. 38B4F3C425E5016800E76A18 /* Notifications */ = {
  2174. isa = PBXGroup;
  2175. children = (
  2176. 71D44AAA2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift */,
  2177. 38B4F3CC25E5031100E76A18 /* Broadcaster.swift */,
  2178. 38B4F3C525E5017E00E76A18 /* NotificationCenter.swift */,
  2179. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */,
  2180. );
  2181. path = Notifications;
  2182. sourceTree = "<group>";
  2183. };
  2184. 38B4F3C725E502C000E76A18 /* SwiftNotificationCenter */ = {
  2185. isa = PBXGroup;
  2186. children = (
  2187. 38B4F3C825E502E100E76A18 /* SwiftNotificationCenter.swift */,
  2188. 38B4F3C925E502E100E76A18 /* WeakObjectSet.swift */,
  2189. );
  2190. path = SwiftNotificationCenter;
  2191. sourceTree = "<group>";
  2192. };
  2193. 38DF178A27733E0F00B3528F /* AnimatedBackground */ = {
  2194. isa = PBXGroup;
  2195. children = (
  2196. 38DF178B27733E6800B3528F /* snow.sks */,
  2197. 38DF178C27733E6800B3528F /* Assets.xcassets */,
  2198. 38DF178F27733EAD00B3528F /* SnowScene.swift */,
  2199. );
  2200. path = AnimatedBackground;
  2201. sourceTree = "<group>";
  2202. };
  2203. 38E44529274E40F100EC9A94 /* Disk */ = {
  2204. isa = PBXGroup;
  2205. children = (
  2206. 38E4452C274E411600EC9A94 /* Disk.swift */,
  2207. 38E4452E274E411600EC9A94 /* Disk+[Data].swift */,
  2208. 38E44530274E411700EC9A94 /* Disk+[UIImage].swift */,
  2209. 38E44532274E411700EC9A94 /* Disk+Codable.swift */,
  2210. 38E4452B274E411600EC9A94 /* Disk+Data.swift */,
  2211. 38E44533274E411700EC9A94 /* Disk+Errors.swift */,
  2212. 38E4452D274E411600EC9A94 /* Disk+Helpers.swift */,
  2213. 38E4452A274E411600EC9A94 /* Disk+InternalHelpers.swift */,
  2214. 38E4452F274E411600EC9A94 /* Disk+UIImage.swift */,
  2215. 38E44531274E411700EC9A94 /* Disk+VolumeInformation.swift */,
  2216. );
  2217. path = Disk;
  2218. sourceTree = "<group>";
  2219. };
  2220. 38E87406274F9AA500975559 /* UserNotifications */ = {
  2221. isa = PBXGroup;
  2222. children = (
  2223. 38E87407274F9AD000975559 /* UserNotificationsManager.swift */,
  2224. );
  2225. path = UserNotifications;
  2226. sourceTree = "<group>";
  2227. };
  2228. 38E8754D275556E100975559 /* WatchManager */ = {
  2229. isa = PBXGroup;
  2230. children = (
  2231. BDA25EE32D260CCF00035F34 /* AppleWatchManager.swift */,
  2232. CE94597D29E9E1EE0047C9C6 /* GarminManager.swift */,
  2233. );
  2234. path = WatchManager;
  2235. sourceTree = "<group>";
  2236. };
  2237. 38E98A1A25F52C9300C0CED0 /* Logger */ = {
  2238. isa = PBXGroup;
  2239. children = (
  2240. 38E98A1B25F52C9300C0CED0 /* Signpost.swift */,
  2241. 38E98A1C25F52C9300C0CED0 /* Logger.swift */,
  2242. 38E98A1D25F52C9300C0CED0 /* IssueReporter */,
  2243. 38E98A2225F52C9300C0CED0 /* Error+Extensions.swift */,
  2244. );
  2245. path = Logger;
  2246. sourceTree = "<group>";
  2247. };
  2248. 38E98A1D25F52C9300C0CED0 /* IssueReporter */ = {
  2249. isa = PBXGroup;
  2250. children = (
  2251. 38E98A1E25F52C9300C0CED0 /* IssueReporter.swift */,
  2252. 38E98A2025F52C9300C0CED0 /* CollectionIssueReporter.swift */,
  2253. 38EA05D9261F6E7C0064E39B /* SimpleLogReporter.swift */,
  2254. );
  2255. path = IssueReporter;
  2256. sourceTree = "<group>";
  2257. };
  2258. 38E98A3225F5300800C0CED0 /* Config */ = {
  2259. isa = PBXGroup;
  2260. children = (
  2261. 38E98A2F25F52FF700C0CED0 /* Config.swift */,
  2262. );
  2263. path = Config;
  2264. sourceTree = "<group>";
  2265. };
  2266. 38FCF3EE25E9028E0078B0D1 /* TrioTests */ = {
  2267. isa = PBXGroup;
  2268. children = (
  2269. 38FCF3F125E9028E0078B0D1 /* Info.plist */,
  2270. 38FCF3F825E902C20078B0D1 /* FileStorageTests.swift */,
  2271. CE1F6DD82BADF4620064EB8D /* PluginManagerTests.swift */,
  2272. CEE9A65D2BBC9F6500EB5194 /* CalibrationsTests.swift */,
  2273. );
  2274. path = TrioTests;
  2275. sourceTree = "<group>";
  2276. };
  2277. 4E8C7B59F8065047ECE20965 /* View */ = {
  2278. isa = PBXGroup;
  2279. children = (
  2280. 920DDB21E5D0EB813197500D /* ConfigEditorRootView.swift */,
  2281. );
  2282. path = View;
  2283. sourceTree = "<group>";
  2284. };
  2285. 4F4AE4D901E8BA872B207D7F /* View */ = {
  2286. isa = PBXGroup;
  2287. children = (
  2288. DD6B7CB72C7BAC1B00B75029 /* ProfileImport */,
  2289. 8782B44544F38F2B2D82C38E /* NightscoutConfigRootView.swift */,
  2290. 5A2325512BFCBF55003518CA /* NightscoutUploadView.swift */,
  2291. 5A2325532BFCBF65003518CA /* NightscoutFetchView.swift */,
  2292. 5A2325572BFCC168003518CA /* NightscoutConnectView.swift */,
  2293. );
  2294. path = View;
  2295. sourceTree = "<group>";
  2296. };
  2297. 5031FE61F63C2A8A8B7674DD /* ManualTempBasal */ = {
  2298. isa = PBXGroup;
  2299. children = (
  2300. 96653287EDB276A111288305 /* ManualTempBasalDataFlow.swift */,
  2301. 680C4420C9A345D46D90D06C /* ManualTempBasalProvider.swift */,
  2302. CFCFE0781F9074C2917890E8 /* ManualTempBasalStateModel.swift */,
  2303. 84BDC840A57C65A1E6F9F780 /* View */,
  2304. );
  2305. path = ManualTempBasal;
  2306. sourceTree = "<group>";
  2307. };
  2308. 510CCF29FD3216C5BBC49A15 /* View */ = {
  2309. isa = PBXGroup;
  2310. children = (
  2311. 2AD22C985B79A2F0D2EA3D9D /* PumpConfigRootView.swift */,
  2312. 38B4F3C225E2A20B00E76A18 /* PumpSetupView.swift */,
  2313. 38BF021A25E7D06400579895 /* PumpSettingsView.swift */,
  2314. );
  2315. path = View;
  2316. sourceTree = "<group>";
  2317. };
  2318. 54946647FDCFE43028F60511 /* View */ = {
  2319. isa = PBXGroup;
  2320. children = (
  2321. D0BDC6993C1087310EDFC428 /* CarbRatioEditorRootView.swift */,
  2322. );
  2323. path = View;
  2324. sourceTree = "<group>";
  2325. };
  2326. 5825D1622BD405AE00F36E9B /* Helper */ = {
  2327. isa = PBXGroup;
  2328. children = (
  2329. 581516A82BCEEDF800BF67D7 /* NSPredicates.swift */,
  2330. 583684052BD178DB00070A60 /* GlucoseStored+helper.swift */,
  2331. 58F107732BD1A4D000B1A680 /* Determination+helper.swift */,
  2332. 5837A52F2BD2E3C700A5DC04 /* CarbEntryStored+helper.swift */,
  2333. 585E2CAD2BE7BF46006ECF1A /* PumpEvent+helper.swift */,
  2334. CC76E9502BD4812E008BEB61 /* Forecast+helper.swift */,
  2335. 5887527B2BD986E1008B081D /* OpenAPSBattery.swift */,
  2336. 581AC4382BE22ED10038760C /* JSONConverter.swift */,
  2337. BDB3C1182C03DD1000CEEAA1 /* UserDefaultsExtension.swift */,
  2338. 582FAE422C05102C00D1C13F /* CoreDataError.swift */,
  2339. BDF34EBD2C0A31D000D51995 /* CustomNotification.swift */,
  2340. BDCD47AE2C1F3F1700F8BCD5 /* OverrideStored+helper.swift */,
  2341. BD793CAF2CE7C60E00D669AC /* OverrideRunStored+helper.swift */,
  2342. BDB899892C565D0B006F3298 /* CarbsGlucose+helper.swift */,
  2343. 58A3D5432C96DE11003F90FC /* TempTargetStored+Helper.swift */,
  2344. BD793CB12CE8032E00D669AC /* TempTargetRunStored.swift */,
  2345. );
  2346. path = Helper;
  2347. sourceTree = "<group>";
  2348. };
  2349. 58645B972CA2D16A008AFCE7 /* HomeStateModel+Setup */ = {
  2350. isa = PBXGroup;
  2351. children = (
  2352. BD4E1A7B2D3686D400D21626 /* StartEndMarkerSetup.swift */,
  2353. BD4E1A792D3681AD00D21626 /* GlucoseTargetSetup.swift */,
  2354. BDA6CC872CAF219800F942F9 /* TempTargetSetup.swift */,
  2355. 58645B982CA2D1A4008AFCE7 /* GlucoseSetup.swift */,
  2356. 58645B9A2CA2D24F008AFCE7 /* CarbSetup.swift */,
  2357. 58645B9C2CA2D275008AFCE7 /* DeterminationSetup.swift */,
  2358. 58645B9E2CA2D2BE008AFCE7 /* PumpHistorySetup.swift */,
  2359. 58645BA02CA2D2F8008AFCE7 /* OverrideSetup.swift */,
  2360. 58645BA22CA2D325008AFCE7 /* BatterySetup.swift */,
  2361. 58645BA42CA2D347008AFCE7 /* ForecastSetup.swift */,
  2362. 58645BA62CA2D390008AFCE7 /* ChartAxisSetup.swift */,
  2363. );
  2364. path = "HomeStateModel+Setup";
  2365. sourceTree = "<group>";
  2366. };
  2367. 587A54C82BCDCE0F009D38E2 /* Model */ = {
  2368. isa = PBXGroup;
  2369. children = (
  2370. DDE179112C9100FA003CDDB7 /* Classes+Properties */,
  2371. BDF34F8F2C10CF8C00D51995 /* CoreDataStack.swift */,
  2372. 5825D1622BD405AE00F36E9B /* Helper */,
  2373. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */,
  2374. BD4064D02C4ED26900582F43 /* CoreDataObserver.swift */,
  2375. );
  2376. path = Model;
  2377. sourceTree = "<group>";
  2378. };
  2379. 6517011F19F244F64E1FF14B /* TargetsEditor */ = {
  2380. isa = PBXGroup;
  2381. children = (
  2382. BA49538D56989D8DA6FCF538 /* TargetsEditorDataFlow.swift */,
  2383. 3BDEA2DC60EDE0A3CA54DC73 /* TargetsEditorProvider.swift */,
  2384. 36F58DDD71F0E795464FA3F0 /* TargetsEditorStateModel.swift */,
  2385. 34CA4DF169B53D67EF18ED8A /* View */,
  2386. );
  2387. path = TargetsEditor;
  2388. sourceTree = "<group>";
  2389. };
  2390. 6B1A8D1C2B14D91600E76752 /* LiveActivity */ = {
  2391. isa = PBXGroup;
  2392. children = (
  2393. DDCEBF412CC1B42500DF4C36 /* Views */,
  2394. 6B1A8D1D2B14D91600E76752 /* LiveActivityBundle.swift */,
  2395. 6B1A8D1F2B14D91600E76752 /* LiveActivity.swift */,
  2396. 6B1A8D232B14D91700E76752 /* Assets.xcassets */,
  2397. 6B1A8D252B14D91700E76752 /* Info.plist */,
  2398. DDCEBF5A2CC1B76400DF4C36 /* LiveActivity+Helper.swift */,
  2399. );
  2400. path = LiveActivity;
  2401. sourceTree = "<group>";
  2402. };
  2403. 6B1A8D2C2B156EC100E76752 /* LiveActivity */ = {
  2404. isa = PBXGroup;
  2405. children = (
  2406. 6B1A8D2D2B156EEF00E76752 /* LiveActivityBridge.swift */,
  2407. 6BCF84DC2B16843A003AD46E /* LiveActitiyAttributes.swift */,
  2408. BDF34F922C10D0E100D51995 /* LiveActivityAttributes+Helper.swift */,
  2409. BDF34F882C10C65E00D51995 /* Data */,
  2410. );
  2411. path = LiveActivity;
  2412. sourceTree = "<group>";
  2413. };
  2414. 84BDC840A57C65A1E6F9F780 /* View */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. C377490C77661D75E8C50649 /* ManualTempBasalRootView.swift */,
  2418. );
  2419. path = View;
  2420. sourceTree = "<group>";
  2421. };
  2422. 99C01B871ACAB3F32CE755C7 /* PumpConfig */ = {
  2423. isa = PBXGroup;
  2424. children = (
  2425. AF65DA88F972B56090AD6AC3 /* PumpConfigDataFlow.swift */,
  2426. A8630D58BDAD6D9C650B9B39 /* PumpConfigProvider.swift */,
  2427. 3F60E97100041040446F44E7 /* PumpConfigStateModel.swift */,
  2428. 510CCF29FD3216C5BBC49A15 /* View */,
  2429. );
  2430. path = PumpConfig;
  2431. sourceTree = "<group>";
  2432. };
  2433. 9E56E3626FAD933385101B76 /* DataTable */ = {
  2434. isa = PBXGroup;
  2435. children = (
  2436. A401509D21F7F35D4E109EDA /* DataTableDataFlow.swift */,
  2437. 60744C3E9BB3652895C908CC /* DataTableProvider.swift */,
  2438. 9455FA2D92E77A6C4AFED8A3 /* DataTableStateModel.swift */,
  2439. 0EE66DD474AFFD4FD787D5B9 /* View */,
  2440. );
  2441. path = DataTable;
  2442. sourceTree = "<group>";
  2443. };
  2444. A42F1FEDFFD0DDE00AAD54D3 /* BasalProfileEditor */ = {
  2445. isa = PBXGroup;
  2446. children = (
  2447. 67F94DD2853CF42BA4E30616 /* BasalProfileEditorDataFlow.swift */,
  2448. 42369F66CF91F30624C0B3A6 /* BasalProfileEditorProvider.swift */,
  2449. AAFF91130F2FCCC7EBBA11AD /* BasalProfileEditorStateModel.swift */,
  2450. 18B49BC9587A59E3A347C1CD /* View */,
  2451. );
  2452. path = BasalProfileEditor;
  2453. sourceTree = "<group>";
  2454. };
  2455. B9488883C59C31550E0B4CEC /* View */ = {
  2456. isa = PBXGroup;
  2457. children = (
  2458. BDFD16592AE40438007F0DDA /* TreatmentsRootView.swift */,
  2459. 58237D9D2BCF0A6B00A47A79 /* PopupView.swift */,
  2460. BDB899872C564509006F3298 /* ForecastChart.swift */,
  2461. DD07CA5A2CE950B9002D45A9 /* MealPreset */,
  2462. );
  2463. path = View;
  2464. sourceTree = "<group>";
  2465. };
  2466. BD793CAD2CE7660C00D669AC /* Overrides */ = {
  2467. isa = PBXGroup;
  2468. children = (
  2469. DDAA29822D2D1D7B006546A1 /* AdjustmentsRootView+Overrides.swift */,
  2470. DDA6E31F2D258E0500C2988C /* OverrideHelpView.swift */,
  2471. DDD1631B2C4C697400CD525A /* AddOverrideForm.swift */,
  2472. DDD163192C4C695E00CD525A /* EditOverrideForm.swift */,
  2473. );
  2474. path = Overrides;
  2475. sourceTree = "<group>";
  2476. };
  2477. BD793CAE2CE7661D00D669AC /* TempTargets */ = {
  2478. isa = PBXGroup;
  2479. children = (
  2480. DDA6E3212D25901100C2988C /* TempTargetHelpView.swift */,
  2481. 58A3D5392C96D4DE003F90FC /* AddTempTargetForm.swift */,
  2482. 5825A1BD2C97335C0046467E /* EditTempTargetForm.swift */,
  2483. DDAA29842D2D1D98006546A1 /* AdjustmentsRootView+TempTargets.swift */,
  2484. );
  2485. path = TempTargets;
  2486. sourceTree = "<group>";
  2487. };
  2488. BD7DA9A32AE06DBA00601B20 /* BolusCalculatorConfig */ = {
  2489. isa = PBXGroup;
  2490. children = (
  2491. BD7DA9A42AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift */,
  2492. BD7DA9A62AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift */,
  2493. BD7DA9A82AE06E9200601B20 /* BolusCalculatorStateModel.swift */,
  2494. BD7DA9AA2AE06E9600601B20 /* View */,
  2495. );
  2496. path = BolusCalculatorConfig;
  2497. sourceTree = "<group>";
  2498. };
  2499. BD7DA9AA2AE06E9600601B20 /* View */ = {
  2500. isa = PBXGroup;
  2501. children = (
  2502. BD7DA9AB2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift */,
  2503. );
  2504. path = View;
  2505. sourceTree = "<group>";
  2506. };
  2507. BD7DB88C2D2C49FF003D3155 /* BolusCalculator */ = {
  2508. isa = PBXGroup;
  2509. children = (
  2510. BD7DB88D2D2C4A0A003D3155 /* BolusCalculationManager.swift */,
  2511. );
  2512. path = BolusCalculator;
  2513. sourceTree = "<group>";
  2514. };
  2515. BDA25F1A2D26BCE800035F34 /* Views */ = {
  2516. isa = PBXGroup;
  2517. children = (
  2518. DD09D5C82D29F3D0000D82C9 /* AcknowledgementPendingView.swift */,
  2519. BD04ECCD2D299522008C5FEB /* BolusProgressOverlay.swift */,
  2520. DD8262CA2D289297009F6F62 /* BolusConfirmationView.swift */,
  2521. BDA25F212D26D62200035F34 /* BolusInputView.swift */,
  2522. BDA25F1F2D26D5FB00035F34 /* CarbsInputView.swift */,
  2523. BDA25F1D2D26D5D800035F34 /* GlucoseChartView.swift */,
  2524. DD246F052D2836AA0027DDE0 /* GlucoseTrendView.swift */,
  2525. BD54A9582D27FB6A00F9C1EE /* OverridePresetsView.swift */,
  2526. BD54A9702D281A7A00F9C1EE /* TempTargetPresetsView.swift */,
  2527. DD6F63CB2D27F606007D94CF /* TreatmentMenuView.swift */,
  2528. BDA25F1B2D26BD0300035F34 /* TrendShape.swift */,
  2529. BDFF7A842D25F97D0016C40C /* TrioMainWatchView.swift */,
  2530. );
  2531. path = Views;
  2532. sourceTree = "<group>";
  2533. };
  2534. BDDAF9F12D0055CC00B34E7A /* ChartElements */ = {
  2535. isa = PBXGroup;
  2536. children = (
  2537. DD2CC85B2D25D9CE00445446 /* GlucoseTargetsView.swift */,
  2538. BDDAF9EE2D00553E00B34E7A /* SelectionPopoverView.swift */,
  2539. 582DF9742C8CDB92001F516D /* GlucoseChartView.swift */,
  2540. 582DF9762C8CDBE7001F516D /* InsulinView.swift */,
  2541. 582DF97A2C8CE209001F516D /* CarbView.swift */,
  2542. 58D08B212C8DAA8E00AA37D3 /* OverrideView.swift */,
  2543. 58D08B2F2C8DEA7500AA37D3 /* ForecastView.swift */,
  2544. 58D08B312C8DF88900AA37D3 /* DummyCharts.swift */,
  2545. 58D08B332C8DF9A700AA37D3 /* CobIobChart.swift */,
  2546. 58D08B372C8DFB6000AA37D3 /* BasalChart.swift */,
  2547. 58D08B392C8DFECD00AA37D3 /* TempTargets.swift */,
  2548. );
  2549. path = ChartElements;
  2550. sourceTree = "<group>";
  2551. };
  2552. BDF34F882C10C65E00D51995 /* Data */ = {
  2553. isa = PBXGroup;
  2554. children = (
  2555. BDF34F822C10C5B600D51995 /* DataManager.swift */,
  2556. BDF34F842C10C62E00D51995 /* GlucoseData.swift */,
  2557. BDF34F942C10D27300D51995 /* DeterminationData.swift */,
  2558. BDBAACF92C2D439700370AAE /* OverrideData.swift */,
  2559. );
  2560. path = Data;
  2561. sourceTree = "<group>";
  2562. };
  2563. BDFF7A9C2D25FA730016C40C /* Trio Watch App Extension */ = {
  2564. isa = PBXGroup;
  2565. children = (
  2566. BDA25EE52D260D5800035F34 /* WatchState.swift */,
  2567. BDAE3FFF2D372BA8009C12B1 /* WatchState+Requests.swift */,
  2568. DD3A3CEC2D29CFBA00AE478E /* Helper */,
  2569. BDA25F1A2D26BCE800035F34 /* Views */,
  2570. BDFF7A9E2D25FA970016C40C /* Preview Content */,
  2571. BDFF7A832D25F97D0016C40C /* Assets.xcassets */,
  2572. BDFF7A852D25F97D0016C40C /* TrioWatchApp.swift */,
  2573. );
  2574. path = "Trio Watch App Extension";
  2575. sourceTree = "<group>";
  2576. };
  2577. BDFF7AA02D25FAA80016C40C /* Trio Watch App Tests */ = {
  2578. isa = PBXGroup;
  2579. children = (
  2580. BDFF7A8A2D25F97D0016C40C /* Unit Tests.swift */,
  2581. );
  2582. path = "Trio Watch App Tests";
  2583. sourceTree = "<group>";
  2584. };
  2585. BDFF7AA12D25FAC70016C40C /* Trio Watch App */ = {
  2586. isa = PBXGroup;
  2587. children = (
  2588. DD09D6162D2A2E4A000D82C9 /* Assets.xcassets */,
  2589. BDFF7A902D25F97D0016C40C /* Info.plist */,
  2590. BDFF7A912D25F97D0016C40C /* TrioWatchApp.swift */,
  2591. BDFF7A922D25F97D0016C40C /* TrioWatchAppExtension.swift */,
  2592. );
  2593. path = "Trio Watch App";
  2594. sourceTree = "<group>";
  2595. };
  2596. C2C98283C436DB934D7E7994 /* Treatments */ = {
  2597. isa = PBXGroup;
  2598. children = (
  2599. C8D1A7CA8C10C4403D4BBFA7 /* TreatmentsDataFlow.swift */,
  2600. C19984D62EFC0035A9E9644D /* TreatmentsProvider.swift */,
  2601. 223EC0494F55A91E3EA69EF4 /* TreatmentsStateModel.swift */,
  2602. B9488883C59C31550E0B4CEC /* View */,
  2603. );
  2604. path = Treatments;
  2605. sourceTree = "<group>";
  2606. };
  2607. CE1856F32ADC4835007E39C7 /* Carbs */ = {
  2608. isa = PBXGroup;
  2609. children = (
  2610. CE1856F42ADC4858007E39C7 /* AddCarbPresetIntent.swift */,
  2611. CE1856F62ADC4869007E39C7 /* CarbPresetIntentRequest.swift */,
  2612. );
  2613. path = Carbs;
  2614. sourceTree = "<group>";
  2615. };
  2616. CE7CA3422A064973004BE681 /* Shortcuts */ = {
  2617. isa = PBXGroup;
  2618. children = (
  2619. 118DF7692C5ECBC60067FEB7 /* Override */,
  2620. 110AEDE22C5193D100615CC9 /* Bolus */,
  2621. CE1856F32ADC4835007E39C7 /* Carbs */,
  2622. CE7CA3432A064973004BE681 /* AppShortcuts.swift */,
  2623. CE7CA3442A064973004BE681 /* BaseIntentsRequest.swift */,
  2624. CE7CA3452A064973004BE681 /* TempPresets */,
  2625. CE7CA34B2A064973004BE681 /* State */,
  2626. );
  2627. path = Shortcuts;
  2628. sourceTree = "<group>";
  2629. };
  2630. CE7CA3452A064973004BE681 /* TempPresets */ = {
  2631. isa = PBXGroup;
  2632. children = (
  2633. CE7CA3472A064973004BE681 /* ApplyTempPresetIntent.swift */,
  2634. CE7CA3462A064973004BE681 /* CancelTempPresetIntent.swift */,
  2635. CE7CA3492A064973004BE681 /* TempPresetIntent.swift */,
  2636. CE7CA34A2A064973004BE681 /* TempPresetsIntentRequest.swift */,
  2637. );
  2638. path = TempPresets;
  2639. sourceTree = "<group>";
  2640. };
  2641. CE7CA34B2A064973004BE681 /* State */ = {
  2642. isa = PBXGroup;
  2643. children = (
  2644. CE7CA34C2A064973004BE681 /* ListStateIntent.swift */,
  2645. CE7CA34D2A064973004BE681 /* StateIntentRequest.swift */,
  2646. CE7CA3572A064E2F004BE681 /* ListStateView.swift */,
  2647. );
  2648. path = State;
  2649. sourceTree = "<group>";
  2650. };
  2651. CE94597C29E9E1CD0047C9C6 /* WatchConfig */ = {
  2652. isa = PBXGroup;
  2653. children = (
  2654. CE94598529E9E3FE0047C9C6 /* View */,
  2655. CE94597F29E9E3BD0047C9C6 /* WatchConfigDataFlow.swift */,
  2656. CE94598129E9E3D30047C9C6 /* WatchConfigProvider.swift */,
  2657. CE94598329E9E3E60047C9C6 /* WatchConfigStateModel.swift */,
  2658. );
  2659. path = WatchConfig;
  2660. sourceTree = "<group>";
  2661. };
  2662. CE94598529E9E3FE0047C9C6 /* View */ = {
  2663. isa = PBXGroup;
  2664. children = (
  2665. CE94598629E9E4110047C9C6 /* WatchConfigRootView.swift */,
  2666. DDF847E72C5DABA30049BB3B /* WatchConfigAppleWatchView.swift */,
  2667. DDF847E92C5DABAC0049BB3B /* WatchConfigGarminView.swift */,
  2668. );
  2669. path = View;
  2670. sourceTree = "<group>";
  2671. };
  2672. CEB434E128B8F9BC00B70274 /* Bluetooth */ = {
  2673. isa = PBXGroup;
  2674. children = (
  2675. CEB434E228B8F9DB00B70274 /* BluetoothStateManager.swift */,
  2676. );
  2677. path = Bluetooth;
  2678. sourceTree = "<group>";
  2679. };
  2680. CEE9A64D2BBB411C00EB5194 /* Calibrations */ = {
  2681. isa = PBXGroup;
  2682. children = (
  2683. CEE9A6542BBB418300EB5194 /* CalibrationsDataFlow.swift */,
  2684. CEE9A64F2BBB418300EB5194 /* CalibrationsProvider.swift */,
  2685. CEE9A6532BBB418300EB5194 /* CalibrationsStateModel.swift */,
  2686. CEE9A6502BBB418300EB5194 /* View */,
  2687. );
  2688. path = Calibrations;
  2689. sourceTree = "<group>";
  2690. };
  2691. CEE9A6502BBB418300EB5194 /* View */ = {
  2692. isa = PBXGroup;
  2693. children = (
  2694. CEE9A6512BBB418300EB5194 /* CalibrationsRootView.swift */,
  2695. CEE9A6522BBB418300EB5194 /* CalibrationsChart.swift */,
  2696. );
  2697. path = View;
  2698. sourceTree = "<group>";
  2699. };
  2700. CEE9A65A2BBB41AD00EB5194 /* Calibrations */ = {
  2701. isa = PBXGroup;
  2702. children = (
  2703. CEE9A65B2BBB41C800EB5194 /* CalibrationService.swift */,
  2704. );
  2705. path = Calibrations;
  2706. sourceTree = "<group>";
  2707. };
  2708. D533BF261CDC1C3F871E7BFD /* NightscoutConfig */ = {
  2709. isa = PBXGroup;
  2710. children = (
  2711. 2F2A13DF0EDEEEDC4106AA2A /* NightscoutConfigDataFlow.swift */,
  2712. 3BF768BD6264FF7D71D66767 /* NightscoutConfigProvider.swift */,
  2713. A0A48AE3AC813A49A517846A /* NightscoutConfigStateModel.swift */,
  2714. 4F4AE4D901E8BA872B207D7F /* View */,
  2715. );
  2716. path = NightscoutConfig;
  2717. sourceTree = "<group>";
  2718. };
  2719. D8F047E14D567F2B5DBEFD96 /* ISFEditor */ = {
  2720. isa = PBXGroup;
  2721. children = (
  2722. 79BDA519C9B890FD9A5DFCF3 /* ISFEditorDataFlow.swift */,
  2723. 9F9F137F126D9F8DEB799F26 /* ISFEditorProvider.swift */,
  2724. 505E09DC17A0C3D0AF4B66FE /* ISFEditorStateModel.swift */,
  2725. EEC747824D6593B5CD87E195 /* View */,
  2726. );
  2727. path = ISFEditor;
  2728. sourceTree = "<group>";
  2729. };
  2730. DD07CA5A2CE950B9002D45A9 /* MealPreset */ = {
  2731. isa = PBXGroup;
  2732. children = (
  2733. BD0B2EF22C5998E600B3298F /* MealPresetView.swift */,
  2734. DDF847E52C5D66490049BB3B /* AddMealPresetView.swift */,
  2735. );
  2736. path = MealPreset;
  2737. sourceTree = "<group>";
  2738. };
  2739. DD09D4792C5986BA003FEA5D /* CalendarEventSettings */ = {
  2740. isa = PBXGroup;
  2741. children = (
  2742. DD09D4802C5986E8003FEA5D /* View */,
  2743. DD09D47A2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift */,
  2744. DD09D47C2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift */,
  2745. DD09D47E2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift */,
  2746. );
  2747. path = CalendarEventSettings;
  2748. sourceTree = "<group>";
  2749. };
  2750. DD09D4802C5986E8003FEA5D /* View */ = {
  2751. isa = PBXGroup;
  2752. children = (
  2753. DD09D4812C5986F6003FEA5D /* CalendarEventSettingsRootView.swift */,
  2754. );
  2755. path = View;
  2756. sourceTree = "<group>";
  2757. };
  2758. DD09D6492D2B6253000D82C9 /* Trio Watch Complication */ = {
  2759. isa = PBXGroup;
  2760. children = (
  2761. DD09D6412D2B553A000D82C9 /* Assets.xcassets */,
  2762. DD09D6422D2B553A000D82C9 /* Info.plist */,
  2763. DD09D6432D2B553A000D82C9 /* TrioWatchComplication.swift */,
  2764. );
  2765. path = "Trio Watch Complication";
  2766. sourceTree = "<group>";
  2767. };
  2768. DD1745112C54168300211FAC /* Subviews */ = {
  2769. isa = PBXGroup;
  2770. children = (
  2771. DD1745122C54169400211FAC /* DevicesView.swift */,
  2772. DD1745142C54388A00211FAC /* TherapySettingsView.swift */,
  2773. DD1745162C54389F00211FAC /* FeatureSettingsView.swift */,
  2774. DD1745182C543B5700211FAC /* NotificationsView.swift */,
  2775. DD17451C2C543C5F00211FAC /* ServicesView.swift */,
  2776. DD1745362C55B74200211FAC /* AlgorithmSettings.swift */,
  2777. );
  2778. path = Subviews;
  2779. sourceTree = "<group>";
  2780. };
  2781. DD17451E2C55520000211FAC /* SMBSettings */ = {
  2782. isa = PBXGroup;
  2783. children = (
  2784. DD1745272C5553C400211FAC /* View */,
  2785. DD17451F2C55523E00211FAC /* SMBSettingsDataFlow.swift */,
  2786. DD1745212C55524800211FAC /* SMBSettingsProvider.swift */,
  2787. DD1745232C55526000211FAC /* SMBSettingsStateModel.swift */,
  2788. );
  2789. path = SMBSettings;
  2790. sourceTree = "<group>";
  2791. };
  2792. DD1745272C5553C400211FAC /* View */ = {
  2793. isa = PBXGroup;
  2794. children = (
  2795. DD1745252C55526F00211FAC /* SMBSettingsRootView.swift */,
  2796. );
  2797. path = View;
  2798. sourceTree = "<group>";
  2799. };
  2800. DD17452C2C55AE3500211FAC /* TargetBehavoir */ = {
  2801. isa = PBXGroup;
  2802. children = (
  2803. DD1745332C55AE6500211FAC /* View */,
  2804. DD17452D2C55AE4800211FAC /* TargetBehavoirDataFlow.swift */,
  2805. DD17452F2C55AE5300211FAC /* TargetBehaviorProvider.swift */,
  2806. DD1745312C55AE6000211FAC /* TargetBehavoirStateModel.swift */,
  2807. );
  2808. path = TargetBehavoir;
  2809. sourceTree = "<group>";
  2810. };
  2811. DD1745332C55AE6500211FAC /* View */ = {
  2812. isa = PBXGroup;
  2813. children = (
  2814. DD1745342C55AE7E00211FAC /* TargetBehavoirRootView.swift */,
  2815. );
  2816. path = View;
  2817. sourceTree = "<group>";
  2818. };
  2819. DD1745382C55BF8B00211FAC /* AlgorithmAdvancedSettings */ = {
  2820. isa = PBXGroup;
  2821. children = (
  2822. DD1745412C55BFC400211FAC /* View */,
  2823. DD1745392C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift */,
  2824. DD17453B2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift */,
  2825. DD17453D2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift */,
  2826. );
  2827. path = AlgorithmAdvancedSettings;
  2828. sourceTree = "<group>";
  2829. };
  2830. DD1745412C55BFC400211FAC /* View */ = {
  2831. isa = PBXGroup;
  2832. children = (
  2833. DD17453F2C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift */,
  2834. );
  2835. path = View;
  2836. sourceTree = "<group>";
  2837. };
  2838. DD1745422C55C5C400211FAC /* AutosensSettings */ = {
  2839. isa = PBXGroup;
  2840. children = (
  2841. DD1745492C55C62000211FAC /* View */,
  2842. DD1745432C55C60E00211FAC /* AutosensSettingsDataFlow.swift */,
  2843. DD1745452C55C61500211FAC /* AutosensSettingsProvider.swift */,
  2844. DD1745472C55C61D00211FAC /* AutosensSettingsStateModel.swift */,
  2845. );
  2846. path = AutosensSettings;
  2847. sourceTree = "<group>";
  2848. };
  2849. DD1745492C55C62000211FAC /* View */ = {
  2850. isa = PBXGroup;
  2851. children = (
  2852. DD17454A2C55C62800211FAC /* AutosensSettingsRootView.swift */,
  2853. );
  2854. path = View;
  2855. sourceTree = "<group>";
  2856. };
  2857. DD17454C2C55CA0200211FAC /* GeneralSettings */ = {
  2858. isa = PBXGroup;
  2859. children = (
  2860. DD1745532C55CA6100211FAC /* View */,
  2861. DD17454D2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift */,
  2862. DD17454F2C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift */,
  2863. DD1745512C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift */,
  2864. );
  2865. path = GeneralSettings;
  2866. sourceTree = "<group>";
  2867. };
  2868. DD1745532C55CA6100211FAC /* View */ = {
  2869. isa = PBXGroup;
  2870. children = (
  2871. DD1745542C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift */,
  2872. );
  2873. path = View;
  2874. sourceTree = "<group>";
  2875. };
  2876. DD3A3CEC2D29CFBA00AE478E /* Helper */ = {
  2877. isa = PBXGroup;
  2878. children = (
  2879. DD09D5C62D29EB26000D82C9 /* Helper+Enums.swift */,
  2880. DD3A3CE82D29C97800AE478E /* Helper+ButtonStyles.swift */,
  2881. DD3A3CE62D29C93F00AE478E /* Helper+Extensions.swift */,
  2882. );
  2883. path = Helper;
  2884. sourceTree = "<group>";
  2885. };
  2886. DD5DC9EF2CF3D95400AB8703 /* AdjustmentsStateModel+Extensions */ = {
  2887. isa = PBXGroup;
  2888. children = (
  2889. DD5DC9FA2CF3E1AA00AB8703 /* AdjustmentsStateModel+Helpers.swift */,
  2890. DD5DC9F22CF3D9D600AB8703 /* AdjustmentsStateModel+TempTargets.swift */,
  2891. DD5DC9F02CF3D96E00AB8703 /* AdjustmentsStateModel+Overrides.swift */,
  2892. );
  2893. path = "AdjustmentsStateModel+Extensions";
  2894. sourceTree = "<group>";
  2895. };
  2896. DD5DC9F52CF3DA8900AB8703 /* ViewElements */ = {
  2897. isa = PBXGroup;
  2898. children = (
  2899. DD5DC9F82CF3DAA900AB8703 /* RadioButton.swift */,
  2900. DD5DC9F62CF3DA9300AB8703 /* TargetPicker.swift */,
  2901. );
  2902. path = ViewElements;
  2903. sourceTree = "<group>";
  2904. };
  2905. DD6B7CB72C7BAC1B00B75029 /* ProfileImport */ = {
  2906. isa = PBXGroup;
  2907. children = (
  2908. DD6B7CB82C7BAC6900B75029 /* NightscoutImportResultView.swift */,
  2909. DD6B7CBA2C7FBBFA00B75029 /* ReviewInsulinActionView.swift */,
  2910. );
  2911. path = ProfileImport;
  2912. sourceTree = "<group>";
  2913. };
  2914. DD9ECB662CA99EFE00AA7C45 /* RemoteControl */ = {
  2915. isa = PBXGroup;
  2916. children = (
  2917. DD32CFA12CC824E1003686D6 /* TrioRemoteControl+Helpers.swift */,
  2918. DD32CF9F2CC824D3003686D6 /* TrioRemoteControl+APNS.swift */,
  2919. DD32CF9D2CC824C2003686D6 /* TrioRemoteControl+Override.swift */,
  2920. DD32CF9B2CC82495003686D6 /* TrioRemoteControl+TempTarget.swift */,
  2921. DD32CF992CC8246F003686D6 /* TrioRemoteControl+Meal.swift */,
  2922. DD32CF972CC82460003686D6 /* TrioRemoteControl+Bolus.swift */,
  2923. DD9ECB672CA99F4500AA7C45 /* TrioRemoteControl.swift */,
  2924. );
  2925. path = RemoteControl;
  2926. sourceTree = "<group>";
  2927. };
  2928. DD9ECB6B2CA99FA400AA7C45 /* RemoteControlConfig */ = {
  2929. isa = PBXGroup;
  2930. children = (
  2931. DD9ECB6F2CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift */,
  2932. DD9ECB6E2CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift */,
  2933. DD9ECB6D2CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift */,
  2934. DD9ECB6C2CA99FAE00AA7C45 /* View */,
  2935. );
  2936. path = RemoteControlConfig;
  2937. sourceTree = "<group>";
  2938. };
  2939. DD9ECB6C2CA99FAE00AA7C45 /* View */ = {
  2940. isa = PBXGroup;
  2941. children = (
  2942. DD9ECB732CA9A0C300AA7C45 /* RemoteControlConfig.swift */,
  2943. );
  2944. path = View;
  2945. sourceTree = "<group>";
  2946. };
  2947. DDC9B9962CFD2332003E7721 /* Nightscout */ = {
  2948. isa = PBXGroup;
  2949. children = (
  2950. 3811DE9725C9D88300A708ED /* NightscoutManager.swift */,
  2951. 38FE826C25CC8461001FF17A /* NightscoutAPI.swift */,
  2952. );
  2953. path = Nightscout;
  2954. sourceTree = "<group>";
  2955. };
  2956. DDD163032C4C67B400CD525A /* Adjustments */ = {
  2957. isa = PBXGroup;
  2958. children = (
  2959. DD5DC9EF2CF3D95400AB8703 /* AdjustmentsStateModel+Extensions */,
  2960. DDD1630A2C4C67F000CD525A /* View */,
  2961. DDD163112C4C689900CD525A /* AdjustmentsStateModel.swift */,
  2962. DDD163132C4C68D300CD525A /* AdjustmentsProvider.swift */,
  2963. DDD163152C4C690300CD525A /* AdjustmentsDataFlow.swift */,
  2964. );
  2965. path = Adjustments;
  2966. sourceTree = "<group>";
  2967. };
  2968. DDD1630A2C4C67F000CD525A /* View */ = {
  2969. isa = PBXGroup;
  2970. children = (
  2971. DD5DC9F52CF3DA8900AB8703 /* ViewElements */,
  2972. DDD163172C4C694000CD525A /* AdjustmentsRootView.swift */,
  2973. BD793CAD2CE7660C00D669AC /* Overrides */,
  2974. BD793CAE2CE7661D00D669AC /* TempTargets */,
  2975. );
  2976. path = View;
  2977. sourceTree = "<group>";
  2978. };
  2979. DDE179112C9100FA003CDDB7 /* Classes+Properties */ = {
  2980. isa = PBXGroup;
  2981. children = (
  2982. DDE179362C910127003CDDB7 /* BolusStored+CoreDataClass.swift */,
  2983. DDE179372C910127003CDDB7 /* BolusStored+CoreDataProperties.swift */,
  2984. DDE1793A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift */,
  2985. DDE1793B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift */,
  2986. DDB37CC22D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataClass.swift */,
  2987. DDB37CC32D05044D00D99BF4 /* ContactTrickEntryStored+CoreDataProperties.swift */,
  2988. DDE179422C910127003CDDB7 /* Forecast+CoreDataClass.swift */,
  2989. DDE179432C910127003CDDB7 /* Forecast+CoreDataProperties.swift */,
  2990. DDE179382C910127003CDDB7 /* ForecastValue+CoreDataClass.swift */,
  2991. DDE179392C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift */,
  2992. DDE179442C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift */,
  2993. DDE179452C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift */,
  2994. DDE179342C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift */,
  2995. DDE179352C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift */,
  2996. DDE179322C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift */,
  2997. DDE179332C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift */,
  2998. DDE179462C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift */,
  2999. DDE179472C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift */,
  3000. DDE1794E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift */,
  3001. DDE1794F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift */,
  3002. DDE1794C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift */,
  3003. DDE1794D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift */,
  3004. DDE179502C910127003CDDB7 /* OverrideStored+CoreDataClass.swift */,
  3005. DDE179512C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift */,
  3006. DDE1793E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift */,
  3007. DDE1793F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift */,
  3008. DDE179402C910127003CDDB7 /* StatsData+CoreDataClass.swift */,
  3009. DDE179412C910127003CDDB7 /* StatsData+CoreDataProperties.swift */,
  3010. DDE179482C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift */,
  3011. DDE179492C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift */,
  3012. 58A3D54F2C96EFA8003F90FC /* TempTargetRunStored+CoreDataClass.swift */,
  3013. 58A3D5502C96EFA8003F90FC /* TempTargetRunStored+CoreDataProperties.swift */,
  3014. 58A3D54D2C96EFA8003F90FC /* TempTargetStored+CoreDataClass.swift */,
  3015. 58A3D54E2C96EFA8003F90FC /* TempTargetStored+CoreDataProperties.swift */,
  3016. );
  3017. path = "Classes+Properties";
  3018. sourceTree = "<group>";
  3019. };
  3020. DDF847DB2C5C28550049BB3B /* LiveActivitySettings */ = {
  3021. isa = PBXGroup;
  3022. children = (
  3023. DDF847E22C5C28830049BB3B /* View */,
  3024. DDF847DC2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift */,
  3025. DDF847DE2C5C28780049BB3B /* LiveActivitySettingsProvider.swift */,
  3026. DDF847E02C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift */,
  3027. );
  3028. path = LiveActivitySettings;
  3029. sourceTree = "<group>";
  3030. };
  3031. DDF847E22C5C28830049BB3B /* View */ = {
  3032. isa = PBXGroup;
  3033. children = (
  3034. DDF847E32C5C288F0049BB3B /* LiveActivitySettingsRootView.swift */,
  3035. BD6EB2D52C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift */,
  3036. );
  3037. path = View;
  3038. sourceTree = "<group>";
  3039. };
  3040. E00EEBFC27368630002FF094 /* Assemblies */ = {
  3041. isa = PBXGroup;
  3042. children = (
  3043. E00EEBFD27368630002FF094 /* ServiceAssembly.swift */,
  3044. E00EEBFE27368630002FF094 /* SecurityAssembly.swift */,
  3045. E00EEBFF27368630002FF094 /* StorageAssembly.swift */,
  3046. E00EEC0027368630002FF094 /* UIAssembly.swift */,
  3047. E00EEC0127368630002FF094 /* APSAssembly.swift */,
  3048. E00EEC0227368630002FF094 /* NetworkAssembly.swift */,
  3049. );
  3050. path = Assemblies;
  3051. sourceTree = "<group>";
  3052. };
  3053. E42231DBF0DBE2B4B92D1B15 /* CarbRatioEditor */ = {
  3054. isa = PBXGroup;
  3055. children = (
  3056. 7E22146D3DF4853786C78132 /* CarbRatioEditorDataFlow.swift */,
  3057. 9C8D5F457B5AFF763F8CF3DF /* CarbRatioEditorProvider.swift */,
  3058. 64AA5E04A2761F6EEA6568E1 /* CarbRatioEditorStateModel.swift */,
  3059. 54946647FDCFE43028F60511 /* View */,
  3060. );
  3061. path = CarbRatioEditor;
  3062. sourceTree = "<group>";
  3063. };
  3064. E592A3722CEEC038009A472C /* View */ = {
  3065. isa = PBXGroup;
  3066. children = (
  3067. DDA6E3562D25988500C2988C /* ContactImageHelpView.swift */,
  3068. E592A3712CEEC038009A472C /* ContactImageRootView.swift */,
  3069. BDC531112D1060FA00088832 /* ContactImageDetailView.swift */,
  3070. BDC531132D10611D00088832 /* AddContactImageSheet.swift */,
  3071. );
  3072. path = View;
  3073. sourceTree = "<group>";
  3074. };
  3075. E592A3762CEEC038009A472C /* ContactImage */ = {
  3076. isa = PBXGroup;
  3077. children = (
  3078. E592A3722CEEC038009A472C /* View */,
  3079. E592A3732CEEC038009A472C /* ContactImageDataFlow.swift */,
  3080. E592A3742CEEC038009A472C /* ContactImageProvider.swift */,
  3081. E592A3752CEEC038009A472C /* ContactImageStateModel.swift */,
  3082. );
  3083. path = ContactImage;
  3084. sourceTree = "<group>";
  3085. };
  3086. E592A37E2CEEC046009A472C /* ContactImage */ = {
  3087. isa = PBXGroup;
  3088. children = (
  3089. BDC530FE2D0F6BE300088832 /* ContactImageManager.swift */,
  3090. BDC531152D10629000088832 /* ContactPicture.swift */,
  3091. BDC531172D1062F200088832 /* ContactImageState.swift */,
  3092. );
  3093. path = ContactImage;
  3094. sourceTree = "<group>";
  3095. };
  3096. EEC747824D6593B5CD87E195 /* View */ = {
  3097. isa = PBXGroup;
  3098. children = (
  3099. FBB3BAE7494CB771ABAC7B8B /* ISFEditorRootView.swift */,
  3100. );
  3101. path = View;
  3102. sourceTree = "<group>";
  3103. };
  3104. F5DE2E6D7B2133BBD3353DC7 /* View */ = {
  3105. isa = PBXGroup;
  3106. children = (
  3107. 22963BD06A9C83959D4914E4 /* GlucoseNotificationSettingsRootView.swift */,
  3108. );
  3109. path = View;
  3110. sourceTree = "<group>";
  3111. };
  3112. F66B236E00924A05D6A9F9DF /* GlucoseNotificationSettings */ = {
  3113. isa = PBXGroup;
  3114. children = (
  3115. 3260468377DA9DB4DEE9AF6D /* GlucoseNotificationSettingsDataFlow.swift */,
  3116. E625985B47742D498CB1681A /* GlucoseNotificationSettingsProvider.swift */,
  3117. DC2C6489D29ECCCAD78E0721 /* GlucoseNotificationSettingsStateModel.swift */,
  3118. F5DE2E6D7B2133BBD3353DC7 /* View */,
  3119. );
  3120. path = GlucoseNotificationSettings;
  3121. sourceTree = "<group>";
  3122. };
  3123. F75CB57ED6971B46F8756083 /* CGM */ = {
  3124. isa = PBXGroup;
  3125. children = (
  3126. B9B5C0607505A38F256BF99A /* CGMDataFlow.swift */,
  3127. 38FEF3FD2738083E00574A46 /* CGMProvider.swift */,
  3128. 5C018D1680307A31C9ED7120 /* CGMStateModel.swift */,
  3129. 0D76BBC81CEDC1A0050F45EF /* View */,
  3130. );
  3131. path = CGM;
  3132. sourceTree = "<group>";
  3133. };
  3134. F90692A8274B7A980037068D /* HealthKit */ = {
  3135. isa = PBXGroup;
  3136. children = (
  3137. F90692A9274B7AAE0037068D /* HealthKitManager.swift */,
  3138. );
  3139. path = HealthKit;
  3140. sourceTree = "<group>";
  3141. };
  3142. F90692CD274B99850037068D /* HealthKit */ = {
  3143. isa = PBXGroup;
  3144. children = (
  3145. F90692CE274B999A0037068D /* HealthKitDataFlow.swift */,
  3146. F90692D0274B99B60037068D /* HealthKitProvider.swift */,
  3147. F90692D5274B9A450037068D /* HealthKitStateModel.swift */,
  3148. F90692D4274B9A160037068D /* View */,
  3149. );
  3150. path = HealthKit;
  3151. sourceTree = "<group>";
  3152. };
  3153. F90692D4274B9A160037068D /* View */ = {
  3154. isa = PBXGroup;
  3155. children = (
  3156. F90692D2274B9A130037068D /* AppleHealthKitRootView.swift */,
  3157. );
  3158. path = View;
  3159. sourceTree = "<group>";
  3160. };
  3161. /* End PBXGroup section */
  3162. /* Begin PBXNativeTarget section */
  3163. 388E595725AD948C0019842D /* Trio */ = {
  3164. isa = PBXNativeTarget;
  3165. buildConfigurationList = 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "Trio" */;
  3166. buildPhases = (
  3167. 3811DEF525CA169200A708ED /* Swiftformat */,
  3168. DD88C8E02C4D716400F2D558 /* Run Script: get branch name and commit ID */,
  3169. 388E595425AD948C0019842D /* Sources */,
  3170. 388E595525AD948C0019842D /* Frameworks */,
  3171. 388E595625AD948C0019842D /* Resources */,
  3172. 3821ECD025DC703C00BC42AD /* Embed Frameworks */,
  3173. 38E8753D27554D5900975559 /* Embed Watch Content */,
  3174. 6B1A8D122B14D88E00E76752 /* Embed Foundation Extensions */,
  3175. CE95BF582BA5F8F300DC3DE3 /* Install plugins */,
  3176. DD88C8DF2C4D583900F2D558 /* Run Script: Capture Build Details */,
  3177. );
  3178. buildRules = (
  3179. );
  3180. dependencies = (
  3181. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */,
  3182. BDFF799E2D25AA890016C40C /* PBXTargetDependency */,
  3183. );
  3184. name = Trio;
  3185. packageProductDependencies = (
  3186. 3811DE0F25C9D37700A708ED /* Swinject */,
  3187. 38B17B6525DD90E0005CAE3D /* SwiftDate */,
  3188. 3833B46C26012030003021B3 /* Algorithms */,
  3189. 38DF1788276FC8C400B3528F /* SwiftMessages */,
  3190. CEB434FC28B90B7C00B70274 /* SwiftCharts */,
  3191. B958F1B62BA0711600484851 /* MKRingProgressView */,
  3192. );
  3193. productName = Trio;
  3194. productReference = 388E595825AD948C0019842D /* Trio.app */;
  3195. productType = "com.apple.product-type.application";
  3196. };
  3197. 38FCF3EC25E9028E0078B0D1 /* TrioTests */ = {
  3198. isa = PBXNativeTarget;
  3199. buildConfigurationList = 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "TrioTests" */;
  3200. buildPhases = (
  3201. 38FCF3E925E9028E0078B0D1 /* Sources */,
  3202. 38FCF3EA25E9028E0078B0D1 /* Frameworks */,
  3203. 38FCF3EB25E9028E0078B0D1 /* Resources */,
  3204. );
  3205. buildRules = (
  3206. );
  3207. dependencies = (
  3208. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */,
  3209. );
  3210. name = TrioTests;
  3211. productName = TrioTests;
  3212. productReference = 38FCF3ED25E9028E0078B0D1 /* TrioTests.xctest */;
  3213. productType = "com.apple.product-type.bundle.unit-test";
  3214. };
  3215. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */ = {
  3216. isa = PBXNativeTarget;
  3217. buildConfigurationList = 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */;
  3218. buildPhases = (
  3219. 6B1A8D132B14D91500E76752 /* Sources */,
  3220. 6B1A8D142B14D91500E76752 /* Frameworks */,
  3221. 6B1A8D152B14D91500E76752 /* Resources */,
  3222. );
  3223. buildRules = (
  3224. );
  3225. dependencies = (
  3226. );
  3227. fileSystemSynchronizedGroups = (
  3228. DDCEBF412CC1B42500DF4C36 /* Views */,
  3229. );
  3230. name = LiveActivityExtension;
  3231. productName = LiveActivityExtension;
  3232. productReference = 6B1A8D172B14D91600E76752 /* LiveActivityExtension.appex */;
  3233. productType = "com.apple.product-type.app-extension";
  3234. };
  3235. BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */ = {
  3236. isa = PBXNativeTarget;
  3237. buildConfigurationList = BD8207D32D2B42E80023339D /* Build configuration list for PBXNativeTarget "Trio Watch Complication Extension" */;
  3238. buildPhases = (
  3239. BD8207BF2D2B42E50023339D /* Sources */,
  3240. BD8207C02D2B42E50023339D /* Frameworks */,
  3241. BD8207C12D2B42E50023339D /* Resources */,
  3242. );
  3243. buildRules = (
  3244. );
  3245. dependencies = (
  3246. );
  3247. name = "Trio Watch Complication Extension";
  3248. packageProductDependencies = (
  3249. );
  3250. productName = "Trio Watch WidgetExtension";
  3251. productReference = BD8207C32D2B42E50023339D /* Trio Watch Complication Extension.appex */;
  3252. productType = "com.apple.product-type.app-extension";
  3253. };
  3254. BDFF797B2D25AA870016C40C /* Trio Watch App */ = {
  3255. isa = PBXNativeTarget;
  3256. buildConfigurationList = BDFF79A02D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch App" */;
  3257. buildPhases = (
  3258. BDFF79782D25AA870016C40C /* Sources */,
  3259. BDFF79792D25AA870016C40C /* Frameworks */,
  3260. BDFF797A2D25AA870016C40C /* Resources */,
  3261. BD8207CF2D2B42E80023339D /* Embed Foundation Extensions */,
  3262. );
  3263. buildRules = (
  3264. );
  3265. dependencies = (
  3266. BD8207CD2D2B42E70023339D /* PBXTargetDependency */,
  3267. );
  3268. fileSystemSynchronizedGroups = (
  3269. BDFF7A9E2D25FA970016C40C /* Preview Content */,
  3270. );
  3271. name = "Trio Watch App";
  3272. packageProductDependencies = (
  3273. );
  3274. productName = "TrioWatch Watch App";
  3275. productReference = BDFF797C2D25AA870016C40C /* Trio Watch App.app */;
  3276. productType = "com.apple.product-type.application";
  3277. };
  3278. BDFF798A2D25AA890016C40C /* Trio Watch AppTests */ = {
  3279. isa = PBXNativeTarget;
  3280. buildConfigurationList = BDFF79A32D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch AppTests" */;
  3281. buildPhases = (
  3282. BDFF79872D25AA890016C40C /* Sources */,
  3283. BDFF79882D25AA890016C40C /* Frameworks */,
  3284. BDFF79892D25AA890016C40C /* Resources */,
  3285. );
  3286. buildRules = (
  3287. );
  3288. dependencies = (
  3289. BDFF798D2D25AA890016C40C /* PBXTargetDependency */,
  3290. );
  3291. name = "Trio Watch AppTests";
  3292. packageProductDependencies = (
  3293. );
  3294. productName = "TrioWatch Watch AppTests";
  3295. productReference = BDFF798B2D25AA890016C40C /* Trio Watch AppTests.xctest */;
  3296. productType = "com.apple.product-type.bundle.unit-test";
  3297. };
  3298. /* End PBXNativeTarget section */
  3299. /* Begin PBXProject section */
  3300. 388E595025AD948C0019842D /* Project object */ = {
  3301. isa = PBXProject;
  3302. attributes = {
  3303. LastSwiftUpdateCheck = 1620;
  3304. LastUpgradeCheck = 1240;
  3305. TargetAttributes = {
  3306. 388E595725AD948C0019842D = {
  3307. CreatedOnToolsVersion = 12.3;
  3308. };
  3309. 38FCF3EC25E9028E0078B0D1 = {
  3310. CreatedOnToolsVersion = 12.4;
  3311. TestTargetID = 388E595725AD948C0019842D;
  3312. };
  3313. BD8207C22D2B42E50023339D = {
  3314. CreatedOnToolsVersion = 16.2;
  3315. };
  3316. BDFF797B2D25AA870016C40C = {
  3317. CreatedOnToolsVersion = 16.2;
  3318. };
  3319. BDFF798A2D25AA890016C40C = {
  3320. CreatedOnToolsVersion = 16.2;
  3321. TestTargetID = BDFF797B2D25AA870016C40C;
  3322. };
  3323. };
  3324. };
  3325. buildConfigurationList = 388E595325AD948C0019842D /* Build configuration list for PBXProject "Trio" */;
  3326. compatibilityVersion = "Xcode 9.3";
  3327. developmentRegion = en;
  3328. hasScannedForEncodings = 0;
  3329. knownRegions = (
  3330. en,
  3331. Base,
  3332. ar,
  3333. ca,
  3334. "zh-Hans",
  3335. da,
  3336. nl,
  3337. fr,
  3338. de,
  3339. he,
  3340. it,
  3341. nb,
  3342. pl,
  3343. ru,
  3344. es,
  3345. sv,
  3346. tr,
  3347. uk,
  3348. fi,
  3349. "pt-PT",
  3350. "pt-BR",
  3351. sk,
  3352. hu,
  3353. vi,
  3354. );
  3355. mainGroup = 388E594F25AD948C0019842D;
  3356. packageReferences = (
  3357. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */,
  3358. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */,
  3359. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */,
  3360. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */,
  3361. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */,
  3362. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */,
  3363. );
  3364. productRefGroup = 388E595925AD948C0019842D /* Products */;
  3365. projectDirPath = "";
  3366. projectRoot = "";
  3367. targets = (
  3368. 388E595725AD948C0019842D /* Trio */,
  3369. 38FCF3EC25E9028E0078B0D1 /* TrioTests */,
  3370. 6B1A8D162B14D91500E76752 /* LiveActivityExtension */,
  3371. BDFF797B2D25AA870016C40C /* Trio Watch App */,
  3372. BDFF798A2D25AA890016C40C /* Trio Watch AppTests */,
  3373. BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */,
  3374. );
  3375. };
  3376. /* End PBXProject section */
  3377. /* Begin PBXResourcesBuildPhase section */
  3378. 388E595625AD948C0019842D /* Resources */ = {
  3379. isa = PBXResourcesBuildPhase;
  3380. buildActionMask = 2147483647;
  3381. files = (
  3382. 198377D2266BFFF6004DE65E /* Localizable.strings in Resources */,
  3383. CE1F6DE72BAF1A180064EB8D /* BuildDetails.plist in Resources */,
  3384. 38DF178D27733E6800B3528F /* snow.sks in Resources */,
  3385. 388E597225AD9CF10019842D /* json in Resources */,
  3386. 38DF178E27733E6800B3528F /* Assets.xcassets in Resources */,
  3387. 19DA48E829CD339B00EEA1E7 /* Assets.xcassets in Resources */,
  3388. 388E596F25AD96040019842D /* javascript in Resources */,
  3389. B9CAAEFC2AE70836000F68BC /* branch.txt in Resources */,
  3390. 1927C8E62744606D00347C69 /* InfoPlist.strings in Resources */,
  3391. );
  3392. runOnlyForDeploymentPostprocessing = 0;
  3393. };
  3394. 38FCF3EB25E9028E0078B0D1 /* Resources */ = {
  3395. isa = PBXResourcesBuildPhase;
  3396. buildActionMask = 2147483647;
  3397. files = (
  3398. );
  3399. runOnlyForDeploymentPostprocessing = 0;
  3400. };
  3401. 6B1A8D152B14D91500E76752 /* Resources */ = {
  3402. isa = PBXResourcesBuildPhase;
  3403. buildActionMask = 2147483647;
  3404. files = (
  3405. 6B1A8D242B14D91700E76752 /* Assets.xcassets in Resources */,
  3406. );
  3407. runOnlyForDeploymentPostprocessing = 0;
  3408. };
  3409. BD8207C12D2B42E50023339D /* Resources */ = {
  3410. isa = PBXResourcesBuildPhase;
  3411. buildActionMask = 2147483647;
  3412. files = (
  3413. DD09D6442D2B553A000D82C9 /* Assets.xcassets in Resources */,
  3414. );
  3415. runOnlyForDeploymentPostprocessing = 0;
  3416. };
  3417. BDFF797A2D25AA870016C40C /* Resources */ = {
  3418. isa = PBXResourcesBuildPhase;
  3419. buildActionMask = 2147483647;
  3420. files = (
  3421. BDFF7A872D25F97D0016C40C /* Assets.xcassets in Resources */,
  3422. );
  3423. runOnlyForDeploymentPostprocessing = 0;
  3424. };
  3425. BDFF79892D25AA890016C40C /* Resources */ = {
  3426. isa = PBXResourcesBuildPhase;
  3427. buildActionMask = 2147483647;
  3428. files = (
  3429. );
  3430. runOnlyForDeploymentPostprocessing = 0;
  3431. };
  3432. /* End PBXResourcesBuildPhase section */
  3433. /* Begin PBXShellScriptBuildPhase section */
  3434. 3811DEF525CA169200A708ED /* Swiftformat */ = {
  3435. isa = PBXShellScriptBuildPhase;
  3436. buildActionMask = 12;
  3437. files = (
  3438. );
  3439. inputFileListPaths = (
  3440. );
  3441. inputPaths = (
  3442. );
  3443. name = Swiftformat;
  3444. outputFileListPaths = (
  3445. );
  3446. outputPaths = (
  3447. );
  3448. runOnlyForDeploymentPostprocessing = 0;
  3449. shellPath = /bin/sh;
  3450. shellScript = "source \"${SRCROOT}\"/scripts/swiftformat.sh\n\n";
  3451. };
  3452. CE95BF582BA5F8F300DC3DE3 /* Install plugins */ = {
  3453. isa = PBXShellScriptBuildPhase;
  3454. alwaysOutOfDate = 1;
  3455. buildActionMask = 2147483647;
  3456. files = (
  3457. );
  3458. inputFileListPaths = (
  3459. );
  3460. inputPaths = (
  3461. );
  3462. name = "Install plugins";
  3463. outputFileListPaths = (
  3464. );
  3465. outputPaths = (
  3466. );
  3467. runOnlyForDeploymentPostprocessing = 0;
  3468. shellPath = /bin/sh;
  3469. shellScript = "\"${SRCROOT}/Scripts/copy-plugins.sh\"\n";
  3470. };
  3471. DD88C8DF2C4D583900F2D558 /* Run Script: Capture Build Details */ = {
  3472. isa = PBXShellScriptBuildPhase;
  3473. buildActionMask = 2147483647;
  3474. files = (
  3475. );
  3476. inputFileListPaths = (
  3477. );
  3478. inputPaths = (
  3479. );
  3480. name = "Run Script: Capture Build Details";
  3481. outputFileListPaths = (
  3482. );
  3483. outputPaths = (
  3484. );
  3485. runOnlyForDeploymentPostprocessing = 0;
  3486. shellPath = /bin/sh;
  3487. shellScript = "\"${SRCROOT}/scripts/capture-build-details.sh\"\n";
  3488. };
  3489. DD88C8E02C4D716400F2D558 /* Run Script: get branch name and commit ID */ = {
  3490. isa = PBXShellScriptBuildPhase;
  3491. buildActionMask = 2147483647;
  3492. files = (
  3493. );
  3494. inputFileListPaths = (
  3495. );
  3496. inputPaths = (
  3497. );
  3498. name = "Run Script: get branch name and commit ID";
  3499. outputFileListPaths = (
  3500. );
  3501. outputPaths = (
  3502. );
  3503. runOnlyForDeploymentPostprocessing = 0;
  3504. shellPath = /bin/sh;
  3505. 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";
  3506. };
  3507. /* End PBXShellScriptBuildPhase section */
  3508. /* Begin PBXSourcesBuildPhase section */
  3509. 388E595425AD948C0019842D /* Sources */ = {
  3510. isa = PBXSourcesBuildPhase;
  3511. buildActionMask = 2147483647;
  3512. files = (
  3513. DD5DC9F12CF3D97C00AB8703 /* AdjustmentsStateModel+Overrides.swift in Sources */,
  3514. 3811DE2325C9D48300A708ED /* MainDataFlow.swift in Sources */,
  3515. C2A0A42F2CE03131003B98E8 /* ConstantValues.swift in Sources */,
  3516. BD3CC0722B0B89D50013189E /* MainChartView.swift in Sources */,
  3517. 3811DEEB25CA063400A708ED /* PersistedProperty.swift in Sources */,
  3518. 38E44537274E411700EC9A94 /* Disk+Helpers.swift in Sources */,
  3519. 388E5A6025B6F2310019842D /* Autosens.swift in Sources */,
  3520. DD9ECB6A2CA99F6C00AA7C45 /* PushMessage.swift in Sources */,
  3521. 3811DE8F25C9D80400A708ED /* User.swift in Sources */,
  3522. 5825A1BE2C97335C0046467E /* EditTempTargetForm.swift in Sources */,
  3523. 19D466A329AA2B80004D5F33 /* MealSettingsDataFlow.swift in Sources */,
  3524. 3811DEB225C9D88300A708ED /* KeychainItemAccessibility.swift in Sources */,
  3525. 38AEE73D25F0200C0013F05B /* TrioSettings.swift in Sources */,
  3526. 38FCF3FD25E997A80078B0D1 /* PumpHistoryStorage.swift in Sources */,
  3527. 58645BA72CA2D390008AFCE7 /* ChartAxisSetup.swift in Sources */,
  3528. 38D0B3B625EBE24900CB6E88 /* Battery.swift in Sources */,
  3529. 38C4D33725E9A1A300D30B77 /* DispatchQueue+Extensions.swift in Sources */,
  3530. F90692CF274B999A0037068D /* HealthKitDataFlow.swift in Sources */,
  3531. CE7CA3552A064973004BE681 /* ListStateIntent.swift in Sources */,
  3532. BDF530D82B40F8AC002CAF43 /* LockScreenView.swift in Sources */,
  3533. 195D80B72AF697B800D25097 /* DynamicSettingsDataFlow.swift in Sources */,
  3534. 58A3D5512C96EFA8003F90FC /* TempTargetStored+CoreDataClass.swift in Sources */,
  3535. 3862CC2E2743F9F700BF832C /* CalendarManager.swift in Sources */,
  3536. CEA4F62329BE10F70011ADF7 /* SavitzkyGolayFilter.swift in Sources */,
  3537. 38B4F3C325E2A20B00E76A18 /* PumpSetupView.swift in Sources */,
  3538. 38E4453C274E411700EC9A94 /* Disk+Codable.swift in Sources */,
  3539. 58D08B322C8DF88900AA37D3 /* DummyCharts.swift in Sources */,
  3540. 19E1F7EF29D08EBA005C8D20 /* IconConfigRootWiew.swift in Sources */,
  3541. 1967DFC229D053D300759F30 /* IconImage.swift in Sources */,
  3542. 382C134B25F14E3700715CE1 /* BGTargets.swift in Sources */,
  3543. 38AEE75725F0F18E0013F05B /* CarbsStorage.swift in Sources */,
  3544. 38B4F3CA25E502E200E76A18 /* SwiftNotificationCenter.swift in Sources */,
  3545. DD07CA142CE80B73002D45A9 /* TimeInRangeChartStyle.swift in Sources */,
  3546. 38AEE75225F022080013F05B /* SettingsManager.swift in Sources */,
  3547. 3894873A2614928B004DF424 /* DispatchTimer.swift in Sources */,
  3548. 3895E4C625B9E00D00214B37 /* Preferences.swift in Sources */,
  3549. CE94598429E9E3E60047C9C6 /* WatchConfigStateModel.swift in Sources */,
  3550. DD6B7CB92C7BAC6900B75029 /* NightscoutImportResultView.swift in Sources */,
  3551. 38DF1786276A73D400B3528F /* TagCloudView.swift in Sources */,
  3552. 38B4F3CD25E5031100E76A18 /* Broadcaster.swift in Sources */,
  3553. 383420D925FFEB3F002D46C1 /* Popup.swift in Sources */,
  3554. DD1745402C55BFC100211FAC /* AlgorithmAdvancedSettingsRootView.swift in Sources */,
  3555. 58645BA52CA2D347008AFCE7 /* ForecastSetup.swift in Sources */,
  3556. 110AEDEE2C51A0AE00615CC9 /* ShortcutsConfigStateModel.swift in Sources */,
  3557. DD9ECB722CA9A0BA00AA7C45 /* RemoteControlConfigDataFlow.swift in Sources */,
  3558. DD1745262C55526F00211FAC /* SMBSettingsRootView.swift in Sources */,
  3559. 3811DE3025C9D49500A708ED /* HomeStateModel.swift in Sources */,
  3560. 38BF021725E7CBBC00579895 /* PumpManagerExtensions.swift in Sources */,
  3561. 118DF76E2C5ECBC60067FEB7 /* OverridePresetsIntentRequest.swift in Sources */,
  3562. CEE9A6552BBB418300EB5194 /* CalibrationsProvider.swift in Sources */,
  3563. 19F95FF529F10FCF00314DDC /* StatProvider.swift in Sources */,
  3564. 38F3B2EF25ED8E2A005C48AA /* TempTargetsStorage.swift in Sources */,
  3565. 5A2325542BFCBF66003518CA /* NightscoutFetchView.swift in Sources */,
  3566. 19B0EF2128F6D66200069496 /* Statistics.swift in Sources */,
  3567. DDF847E82C5DABA30049BB3B /* WatchConfigAppleWatchView.swift in Sources */,
  3568. 3811DF1025CAAAE200A708ED /* APSManager.swift in Sources */,
  3569. 3870FF4725EC187A0088248F /* BloodGlucose.swift in Sources */,
  3570. 38A0364225ED069400FCBB52 /* TempBasal.swift in Sources */,
  3571. 3811DE1725C9D40400A708ED /* Screen.swift in Sources */,
  3572. 383948DA25CD64D500E91849 /* Glucose.swift in Sources */,
  3573. CE94598029E9E3BD0047C9C6 /* WatchConfigDataFlow.swift in Sources */,
  3574. 388E596C25AD95110019842D /* OpenAPS.swift in Sources */,
  3575. E00EEC0527368630002FF094 /* StorageAssembly.swift in Sources */,
  3576. DD1745552C55CA6C00211FAC /* UnitsLimitsSettingsRootView.swift in Sources */,
  3577. 384E803825C388640086DB71 /* Script.swift in Sources */,
  3578. CE94597E29E9E1EE0047C9C6 /* GarminManager.swift in Sources */,
  3579. 58A3D5542C96EFA8003F90FC /* TempTargetRunStored+CoreDataProperties.swift in Sources */,
  3580. 3883583425EEB38000E024B2 /* PumpSettings.swift in Sources */,
  3581. 38DAB280260CBB7F00F74C1A /* PumpView.swift in Sources */,
  3582. DDD1631C2C4C697400CD525A /* AddOverrideForm.swift in Sources */,
  3583. 3811DEB125C9D88300A708ED /* Keychain.swift in Sources */,
  3584. DD17453E2C55BFB600211FAC /* AlgorithmAdvancedSettingsStateModel.swift in Sources */,
  3585. CE95BF572BA5F5FE00DC3DE3 /* PluginManager.swift in Sources */,
  3586. 382C133725F13A1E00715CE1 /* InsulinSensitivities.swift in Sources */,
  3587. 19D466A529AA2BD4004D5F33 /* MealSettingsProvider.swift in Sources */,
  3588. DD5DC9F72CF3DA9300AB8703 /* TargetPicker.swift in Sources */,
  3589. 383948D625CD4D8900E91849 /* FileStorage.swift in Sources */,
  3590. CEE9A6572BBB418300EB5194 /* CalibrationsChart.swift in Sources */,
  3591. 3811DE4125C9D4A100A708ED /* SettingsRootView.swift in Sources */,
  3592. 38192E04261B82FA0094D973 /* ReachabilityManager.swift in Sources */,
  3593. 38E44539274E411700EC9A94 /* Disk+UIImage.swift in Sources */,
  3594. DD6B7CB62C7B748B00B75029 /* TotalInsulinDisplayType.swift in Sources */,
  3595. 388E595C25AD948C0019842D /* TrioApp.swift in Sources */,
  3596. 38FEF3FC2737E53800574A46 /* MainStateModel.swift in Sources */,
  3597. DD1745352C55AE7E00211FAC /* TargetBehavoirRootView.swift in Sources */,
  3598. 5887527C2BD986E1008B081D /* OpenAPSBattery.swift in Sources */,
  3599. 38569348270B5DFB0002C50D /* GlucoseSource.swift in Sources */,
  3600. CEE9A6582BBB418300EB5194 /* CalibrationsStateModel.swift in Sources */,
  3601. CEB434E328B8F9DB00B70274 /* BluetoothStateManager.swift in Sources */,
  3602. BDC2EA452C3043B000E5BBD0 /* OverrideStorage.swift in Sources */,
  3603. 3811DE4225C9D4A100A708ED /* SettingsDataFlow.swift in Sources */,
  3604. CEE9A6562BBB418300EB5194 /* CalibrationsRootView.swift in Sources */,
  3605. 3811DE2525C9D48300A708ED /* MainRootView.swift in Sources */,
  3606. CE94598229E9E3D30047C9C6 /* WatchConfigProvider.swift in Sources */,
  3607. DD1745322C55AE6000211FAC /* TargetBehavoirStateModel.swift in Sources */,
  3608. 38E44535274E411700EC9A94 /* Disk+Data.swift in Sources */,
  3609. 3811DE3125C9D49500A708ED /* HomeProvider.swift in Sources */,
  3610. FE41E4D629463EE20047FD55 /* NightscoutPreferences.swift in Sources */,
  3611. E013D872273AC6FE0014109C /* GlucoseSimulatorSource.swift in Sources */,
  3612. 58645BA32CA2D325008AFCE7 /* BatterySetup.swift in Sources */,
  3613. 388E5A5C25B6F0770019842D /* JSON.swift in Sources */,
  3614. 3811DF0225CA9FEA00A708ED /* Credentials.swift in Sources */,
  3615. 5837A5302BD2E3C700A5DC04 /* CarbEntryStored+helper.swift in Sources */,
  3616. 389A572026079BAA00BC102F /* Interpolation.swift in Sources */,
  3617. DD9ECB702CA9A0BA00AA7C45 /* RemoteControlConfigStateModel.swift in Sources */,
  3618. 19A910382A24EF3200C8951B /* ChartsView.swift in Sources */,
  3619. 58A3D5522C96EFA8003F90FC /* TempTargetStored+CoreDataProperties.swift in Sources */,
  3620. DD32CF9A2CC8247B003686D6 /* TrioRemoteControl+Meal.swift in Sources */,
  3621. BDF34F832C10C5B600D51995 /* DataManager.swift in Sources */,
  3622. 38B4F3C625E5017E00E76A18 /* NotificationCenter.swift in Sources */,
  3623. 19D466A729AA2C22004D5F33 /* MealSettingsStateModel.swift in Sources */,
  3624. DD17452B2C556E8100211FAC /* SettingInputHintView.swift in Sources */,
  3625. 38E44528274E401C00EC9A94 /* Protected.swift in Sources */,
  3626. 3811DEB625C9D88300A708ED /* UnlockManager.swift in Sources */,
  3627. 581516A42BCED84A00BF67D7 /* DebuggingIdentifiers.swift in Sources */,
  3628. E00EEC0827368630002FF094 /* NetworkAssembly.swift in Sources */,
  3629. 38A13D3225E28B4B00EAA382 /* PumpHistoryEvent.swift in Sources */,
  3630. E00EEC0627368630002FF094 /* UIAssembly.swift in Sources */,
  3631. 3811DE1825C9D40400A708ED /* Router.swift in Sources */,
  3632. CE7950262998056D00FA576E /* CGMSetupView.swift in Sources */,
  3633. 582FAE432C05102C00D1C13F /* CoreDataError.swift in Sources */,
  3634. 38A0363B25ECF07E00FCBB52 /* GlucoseStorage.swift in Sources */,
  3635. 65070A332BFDCB83006F213F /* TidepoolStartView.swift in Sources */,
  3636. 190EBCC629FF138000BA767D /* UserInterfaceSettingsProvider.swift in Sources */,
  3637. 38E98A2725F52C9300C0CED0 /* CollectionIssueReporter.swift in Sources */,
  3638. E00EEC0427368630002FF094 /* SecurityAssembly.swift in Sources */,
  3639. 3811DEE825CA063400A708ED /* Injected.swift in Sources */,
  3640. DD1745152C54388A00211FAC /* TherapySettingsView.swift in Sources */,
  3641. 585E2CAE2BE7BF46006ECF1A /* PumpEvent+helper.swift in Sources */,
  3642. DDAA29832D2D1D93006546A1 /* AdjustmentsRootView+Overrides.swift in Sources */,
  3643. DDD1631F2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld in Sources */,
  3644. DD1745482C55C61D00211FAC /* AutosensSettingsStateModel.swift in Sources */,
  3645. DD1745462C55C61500211FAC /* AutosensSettingsProvider.swift in Sources */,
  3646. DDA6E2852D2361F800C2988C /* LoopStatusView.swift in Sources */,
  3647. DDA6E3202D258E0500C2988C /* OverrideHelpView.swift in Sources */,
  3648. DDA6E2502D22187500C2988C /* ChartLegendView.swift in Sources */,
  3649. 3811DEAF25C9D88300A708ED /* KeyValueStorage.swift in Sources */,
  3650. DDD6D4D32CDE90720029439A /* HbA1cDisplayUnit.swift in Sources */,
  3651. DDA6E3572D25988500C2988C /* ContactImageHelpView.swift in Sources */,
  3652. 38FE826D25CC8461001FF17A /* NightscoutAPI.swift in Sources */,
  3653. 388358C825EEF6D200E024B2 /* BasalProfileEntry.swift in Sources */,
  3654. 3811DE0B25C9D32F00A708ED /* BaseView.swift in Sources */,
  3655. 3811DE3225C9D49500A708ED /* HomeDataFlow.swift in Sources */,
  3656. DD32CFA22CC824E2003686D6 /* TrioRemoteControl+Helpers.swift in Sources */,
  3657. CE1856F52ADC4858007E39C7 /* AddCarbPresetIntent.swift in Sources */,
  3658. 38569347270B5DFB0002C50D /* CGMType.swift in Sources */,
  3659. 3821ED4C25DD18BA00BC42AD /* Constants.swift in Sources */,
  3660. 384E803425C385E60086DB71 /* JavaScriptWorker.swift in Sources */,
  3661. CE1F6DE92BAF37C90064EB8D /* TidepoolConfigView.swift in Sources */,
  3662. 3811DE5D25C9D4D500A708ED /* Publisher.swift in Sources */,
  3663. E00EEC0727368630002FF094 /* APSAssembly.swift in Sources */,
  3664. 38B4F3AF25E2979F00E76A18 /* IndexedCollection.swift in Sources */,
  3665. 58D08B222C8DAA8E00AA37D3 /* OverrideView.swift in Sources */,
  3666. BD0B2EF32C5998E600B3298F /* MealPresetView.swift in Sources */,
  3667. E592A3702CEEC01E009A472C /* ContactTrickEntry.swift in Sources */,
  3668. DD6D67E42C9C253500660C9B /* ColorSchemeOption.swift in Sources */,
  3669. 582DF9752C8CDB92001F516D /* GlucoseChartView.swift in Sources */,
  3670. BD432CA12D2F4E3600D1EB79 /* WatchMessageKeys.swift in Sources */,
  3671. 58A3D53A2C96D4DE003F90FC /* AddTempTargetForm.swift in Sources */,
  3672. DD1745302C55AE5300211FAC /* TargetBehaviorProvider.swift in Sources */,
  3673. 58D08B382C8DFB6000AA37D3 /* BasalChart.swift in Sources */,
  3674. 118DF76D2C5ECBC60067FEB7 /* OverridePresetEntity.swift in Sources */,
  3675. 58645B9F2CA2D2BE008AFCE7 /* PumpHistorySetup.swift in Sources */,
  3676. DD17454E2C55CA4D00211FAC /* UnitsLimitsSettingsDataFlow.swift in Sources */,
  3677. DDF847E62C5D66490049BB3B /* AddMealPresetView.swift in Sources */,
  3678. 3811DEAE25C9D88300A708ED /* Cache.swift in Sources */,
  3679. BDA6CC882CAF219B00F942F9 /* TempTargetSetup.swift in Sources */,
  3680. 383420D625FFE38C002D46C1 /* LoopView.swift in Sources */,
  3681. DD1745192C543B5700211FAC /* NotificationsView.swift in Sources */,
  3682. 3811DEAD25C9D88300A708ED /* UserDefaults+Cache.swift in Sources */,
  3683. CE48C86628CA6B48007C0598 /* OmniPodManagerExtensions.swift in Sources */,
  3684. CEB434E728B9053300B70274 /* LoopUIColorPalette+Default.swift in Sources */,
  3685. 19F95FF329F10FBC00314DDC /* StatDataFlow.swift in Sources */,
  3686. 582DF97B2C8CE209001F516D /* CarbView.swift in Sources */,
  3687. DD940BAA2CA7585D000830A5 /* GlucoseColorScheme.swift in Sources */,
  3688. 3811DE2225C9D48300A708ED /* MainProvider.swift in Sources */,
  3689. 3811DE0C25C9D32F00A708ED /* BaseProvider.swift in Sources */,
  3690. CE95BF5A2BA62E4A00DC3DE3 /* PluginSource.swift in Sources */,
  3691. DD21FCB52C6952AD00AF2C25 /* DecimalPickerSettings.swift in Sources */,
  3692. 3811DE5C25C9D4D500A708ED /* Formatters.swift in Sources */,
  3693. 3871F39F25ED895A0013ECB5 /* Decimal+Extensions.swift in Sources */,
  3694. CEE9A6592BBB418300EB5194 /* CalibrationsDataFlow.swift in Sources */,
  3695. 3811DE3525C9D49500A708ED /* HomeRootView.swift in Sources */,
  3696. 38E98A2925F52C9300C0CED0 /* Error+Extensions.swift in Sources */,
  3697. 38EA05DA261F6E7C0064E39B /* SimpleLogReporter.swift in Sources */,
  3698. 3811DE6125C9D4D500A708ED /* ViewModifiers.swift in Sources */,
  3699. 3811DEAC25C9D88300A708ED /* NightscoutManager.swift in Sources */,
  3700. BD793CB22CE8033500D669AC /* TempTargetRunStored.swift in Sources */,
  3701. 19A910302A24BF6300C8951B /* StatsView.swift in Sources */,
  3702. BD7DA9A92AE06E9200601B20 /* BolusCalculatorStateModel.swift in Sources */,
  3703. CEB434E528B8FF5D00B70274 /* UIColor.swift in Sources */,
  3704. 190EBCCB29FF13CB00BA767D /* UserInterfaceSettingsRootView.swift in Sources */,
  3705. 3811DEA925C9D88300A708ED /* AppearanceManager.swift in Sources */,
  3706. CE7950242997D81700FA576E /* CGMSettingsView.swift in Sources */,
  3707. 58237D9E2BCF0A6B00A47A79 /* PopupView.swift in Sources */,
  3708. BD793CB02CE7C61500D669AC /* OverrideRunStored+helper.swift in Sources */,
  3709. 38D0B3D925EC07C400CB6E88 /* CarbsEntry.swift in Sources */,
  3710. DD32CF9C2CC82499003686D6 /* TrioRemoteControl+TempTarget.swift in Sources */,
  3711. 38A9260525F012D8009E3739 /* CarbRatios.swift in Sources */,
  3712. 38FCF3D625E8FDF40078B0D1 /* MD5.swift in Sources */,
  3713. DDD163142C4C68D300CD525A /* AdjustmentsProvider.swift in Sources */,
  3714. 3871F39C25ED892B0013ECB5 /* TempTarget.swift in Sources */,
  3715. 191F62682AD6B05A004D7911 /* NightscoutSettings.swift in Sources */,
  3716. 3811DEAB25C9D88300A708ED /* HTTPResponseStatus.swift in Sources */,
  3717. 3811DE5F25C9D4D500A708ED /* ProgressBar.swift in Sources */,
  3718. 38E87408274F9AD000975559 /* UserNotificationsManager.swift in Sources */,
  3719. CE82E02528E867BA00473A9C /* AlertStorage.swift in Sources */,
  3720. DD1745372C55B74200211FAC /* AlgorithmSettings.swift in Sources */,
  3721. 38BF021D25E7E3AF00579895 /* Reservoir.swift in Sources */,
  3722. DDF847E12C5C287F0049BB3B /* LiveActivitySettingsStateModel.swift in Sources */,
  3723. 583684082BD195A700070A60 /* Determination.swift in Sources */,
  3724. DD17451D2C543C5F00211FAC /* ServicesView.swift in Sources */,
  3725. 38BF021B25E7D06400579895 /* PumpSettingsView.swift in Sources */,
  3726. 3811DEEA25CA063400A708ED /* SyncAccess.swift in Sources */,
  3727. 190EBCC829FF13AA00BA767D /* UserInterfaceSettingsStateModel.swift in Sources */,
  3728. DDF847EA2C5DABAC0049BB3B /* WatchConfigGarminView.swift in Sources */,
  3729. 38BF021F25E7F0DE00579895 /* DeviceDataManager.swift in Sources */,
  3730. BD4E1A7A2D3681B700D21626 /* GlucoseTargetSetup.swift in Sources */,
  3731. BDB3C1192C03DD1000CEEAA1 /* UserDefaultsExtension.swift in Sources */,
  3732. 38A504A425DD9C4000C5B9E8 /* UserDefaultsExtensions.swift in Sources */,
  3733. 38FE826A25CC82DB001FF17A /* NetworkService.swift in Sources */,
  3734. FE66D16B291F74F8005D6F77 /* Bundle+Extensions.swift in Sources */,
  3735. DD940BAC2CA75889000830A5 /* DynamicGlucoseColor.swift in Sources */,
  3736. 3883581C25EE79BB00E024B2 /* TextFieldWithToolBar.swift in Sources */,
  3737. 58D08B302C8DEA7500AA37D3 /* ForecastView.swift in Sources */,
  3738. 6B1A8D2E2B156EEF00E76752 /* LiveActivityBridge.swift in Sources */,
  3739. 581516A92BCEEDF800BF67D7 /* NSPredicates.swift in Sources */,
  3740. DD6B7CB22C7B6F0800B75029 /* Rounding.swift in Sources */,
  3741. 38DAB28A260D349500F74C1A /* FetchGlucoseManager.swift in Sources */,
  3742. BDB8998A2C565D0C006F3298 /* CarbsGlucose+helper.swift in Sources */,
  3743. BD7DB88E2D2C4A17003D3155 /* BolusCalculationManager.swift in Sources */,
  3744. 38F37828261260DC009DB701 /* Color+Extensions.swift in Sources */,
  3745. BDCD47AF2C1F3F1700F8BCD5 /* OverrideStored+helper.swift in Sources */,
  3746. 3811DE3F25C9D4A100A708ED /* SettingsStateModel.swift in Sources */,
  3747. CE7CA3582A064E2F004BE681 /* ListStateView.swift in Sources */,
  3748. 193F6CDD2A512C8F001240FD /* Loops.swift in Sources */,
  3749. 38B4F3CB25E502E200E76A18 /* WeakObjectSet.swift in Sources */,
  3750. 38E989DD25F5021400C0CED0 /* PumpStatus.swift in Sources */,
  3751. BDFD165A2AE40438007F0DDA /* TreatmentsRootView.swift in Sources */,
  3752. BD54A9732D281ABC00F9C1EE /* TempTargetPresetWatch.swift in Sources */,
  3753. 38E98A2525F52C9300C0CED0 /* IssueReporter.swift in Sources */,
  3754. DD1745522C55CA5D00211FAC /* UnitsLimitsSettingsStateModel.swift in Sources */,
  3755. DD2CC85C2D25DA1000445446 /* GlucoseTargetsView.swift in Sources */,
  3756. 190EBCC429FF136900BA767D /* UserInterfaceSettingsDataFlow.swift in Sources */,
  3757. 5A2325582BFCC168003518CA /* NightscoutConnectView.swift in Sources */,
  3758. 3811DEB025C9D88300A708ED /* BaseKeychain.swift in Sources */,
  3759. 110AEDE42C5193D200615CC9 /* BolusIntentRequest.swift in Sources */,
  3760. 3811DE4325C9D4A100A708ED /* SettingsProvider.swift in Sources */,
  3761. 45252C95D220E796FDB3B022 /* ConfigEditorDataFlow.swift in Sources */,
  3762. CE7CA34E2A064973004BE681 /* AppShortcuts.swift in Sources */,
  3763. 38C4D33A25E9A1ED00D30B77 /* NSObject+AssociatedValues.swift in Sources */,
  3764. 110AEDEB2C51A0AE00615CC9 /* ShortcutsConfigView.swift in Sources */,
  3765. 38DF179027733EAD00B3528F /* SnowScene.swift in Sources */,
  3766. DD1DB7CC2BECCA1F0048B367 /* BuildDetails.swift in Sources */,
  3767. 1935364028496F7D001E0B16 /* Oref2_variables.swift in Sources */,
  3768. CE2FAD3A297D93F0001A872C /* BloodGlucoseExtensions.swift in Sources */,
  3769. 38E4453A274E411700EC9A94 /* Disk+[UIImage].swift in Sources */,
  3770. 72F1BD388F42FCA6C52E4500 /* ConfigEditorProvider.swift in Sources */,
  3771. E39E418C56A5A46B61D960EE /* ConfigEditorStateModel.swift in Sources */,
  3772. 45717281F743594AA9D87191 /* ConfigEditorRootView.swift in Sources */,
  3773. DD32CFA02CC824D6003686D6 /* TrioRemoteControl+APNS.swift in Sources */,
  3774. CE7CA3532A064973004BE681 /* TempPresetIntent.swift in Sources */,
  3775. D6DEC113821A7F1056C4AA1E /* NightscoutConfigDataFlow.swift in Sources */,
  3776. DD6B7CBB2C7FBBFA00B75029 /* ReviewInsulinActionView.swift in Sources */,
  3777. 38E98A3025F52FF700C0CED0 /* Config.swift in Sources */,
  3778. BDB899882C564509006F3298 /* ForecastChart.swift in Sources */,
  3779. 110AEDE32C5193D200615CC9 /* BolusIntent.swift in Sources */,
  3780. 58645BA12CA2D2F8008AFCE7 /* OverrideSetup.swift in Sources */,
  3781. DDD1631A2C4C695E00CD525A /* EditOverrideForm.swift in Sources */,
  3782. CE1856F72ADC4869007E39C7 /* CarbPresetIntentRequest.swift in Sources */,
  3783. CE1F6DDB2BAE08B60064EB8D /* TidepoolManager.swift in Sources */,
  3784. BD2B464E0745FBE7B79913F4 /* NightscoutConfigProvider.swift in Sources */,
  3785. 9825E5E923F0B8FA80C8C7C7 /* NightscoutConfigStateModel.swift in Sources */,
  3786. DDA6E3222D25901100C2988C /* TempTargetHelpView.swift in Sources */,
  3787. 58645B9D2CA2D275008AFCE7 /* DeterminationSetup.swift in Sources */,
  3788. DD1745442C55C60E00211FAC /* AutosensSettingsDataFlow.swift in Sources */,
  3789. BDCAF2382C639F35002DC907 /* SettingItems.swift in Sources */,
  3790. 58D08B342C8DF9A700AA37D3 /* CobIobChart.swift in Sources */,
  3791. 642F76A05A4FF530463A9FD0 /* NightscoutConfigRootView.swift in Sources */,
  3792. BD7DA9AC2AE06EB900601B20 /* BolusCalculatorConfigRootView.swift in Sources */,
  3793. AD3D2CD42CD01B9EB8F26522 /* PumpConfigDataFlow.swift in Sources */,
  3794. DD17452E2C55AE4800211FAC /* TargetBehavoirDataFlow.swift in Sources */,
  3795. 53F2382465BF74DB1A967C8B /* PumpConfigProvider.swift in Sources */,
  3796. 5D16287A969E64D18CE40E44 /* PumpConfigStateModel.swift in Sources */,
  3797. 19D466AA29AA3099004D5F33 /* MealSettingsRootView.swift in Sources */,
  3798. E974172296125A5AE99E634C /* PumpConfigRootView.swift in Sources */,
  3799. DD1745502C55CA5500211FAC /* UnitsLimitsSettingsProvider.swift in Sources */,
  3800. 581AC4392BE22ED10038760C /* JSONConverter.swift in Sources */,
  3801. BD4064D12C4ED26900582F43 /* CoreDataObserver.swift in Sources */,
  3802. 58645B9B2CA2D24F008AFCE7 /* CarbSetup.swift in Sources */,
  3803. 38E44536274E411700EC9A94 /* Disk.swift in Sources */,
  3804. 19A910362A24D6D700C8951B /* DateFilter.swift in Sources */,
  3805. 582DF9792C8CE1E5001F516D /* MainChartHelper.swift in Sources */,
  3806. E06B911A275B5EEA003C04B6 /* Array+Extension.swift in Sources */,
  3807. 38EA0600262091870064E39B /* BolusProgressViewStyle.swift in Sources */,
  3808. 389ECDFE2601061500D86C4F /* View+Snapshot.swift in Sources */,
  3809. 38FEF3FE2738083E00574A46 /* CGMProvider.swift in Sources */,
  3810. 38E98A3725F5509500C0CED0 /* String+Extensions.swift in Sources */,
  3811. CC76E9512BD4812E008BEB61 /* Forecast+helper.swift in Sources */,
  3812. DD1745242C55526000211FAC /* SMBSettingsStateModel.swift in Sources */,
  3813. F90692D1274B99B60037068D /* HealthKitProvider.swift in Sources */,
  3814. 19F95FF729F10FEE00314DDC /* StatStateModel.swift in Sources */,
  3815. 8B759CFCF47B392BB365C251 /* BasalProfileEditorDataFlow.swift in Sources */,
  3816. 195D80B42AF6973A00D25097 /* DynamicSettingsRootView.swift in Sources */,
  3817. 389442CB25F65F7100FA1F27 /* NightscoutTreatment.swift in Sources */,
  3818. DD09D47F2C5986E5003FEA5D /* CalendarEventSettingsStateModel.swift in Sources */,
  3819. CE7CA3512A064973004BE681 /* ApplyTempPresetIntent.swift in Sources */,
  3820. FA630397F76B582C8D8681A7 /* BasalProfileEditorProvider.swift in Sources */,
  3821. DD1745172C54389F00211FAC /* FeatureSettingsView.swift in Sources */,
  3822. DD9ECB712CA9A0BA00AA7C45 /* RemoteControlConfigProvider.swift in Sources */,
  3823. 63E890B4D951EAA91C071D5C /* BasalProfileEditorStateModel.swift in Sources */,
  3824. 38FEF3FA2737E42000574A46 /* BaseStateModel.swift in Sources */,
  3825. BDA25EFD2D261C0000035F34 /* WatchState.swift in Sources */,
  3826. CC6C406E2ACDD69E009B8058 /* RawFetchedProfile.swift in Sources */,
  3827. 385CEA8225F23DFD002D6D5B /* NightscoutStatus.swift in Sources */,
  3828. DD17453C2C55BFAD00211FAC /* AlgorithmAdvancedSettingsProvider.swift in Sources */,
  3829. F90692AA274B7AAE0037068D /* HealthKitManager.swift in Sources */,
  3830. 38887CCE25F5725200944304 /* IOBEntry.swift in Sources */,
  3831. 38E98A2425F52C9300C0CED0 /* Logger.swift in Sources */,
  3832. DD1E53592D273F26008F32A4 /* LoopStatusHelpView.swift in Sources */,
  3833. CA370FC152BC98B3D1832968 /* BasalProfileEditorRootView.swift in Sources */,
  3834. 195D80BB2AF6980B00D25097 /* DynamicSettingsStateModel.swift in Sources */,
  3835. E00EEC0327368630002FF094 /* ServiceAssembly.swift in Sources */,
  3836. 38192E07261BA9960094D973 /* FetchTreatmentsManager.swift in Sources */,
  3837. 19012CDC291D2CB900FB8210 /* LoopStats.swift in Sources */,
  3838. 6632A0DC746872439A858B44 /* ISFEditorDataFlow.swift in Sources */,
  3839. DD17454B2C55C62800211FAC /* AutosensSettingsRootView.swift in Sources */,
  3840. DDF847DF2C5C28780049BB3B /* LiveActivitySettingsProvider.swift in Sources */,
  3841. DDB37CC52D05048F00D99BF4 /* ContactImageStorage.swift in Sources */,
  3842. BD54A95B2D28087C00F9C1EE /* OverridePresetWatch.swift in Sources */,
  3843. DBA5254DBB2586C98F61220C /* ISFEditorProvider.swift in Sources */,
  3844. BDF34EBE2C0A31D100D51995 /* CustomNotification.swift in Sources */,
  3845. BDC2EA472C3045AD00E5BBD0 /* Override.swift in Sources */,
  3846. 1BBB001DAD60F3B8CEA4B1C7 /* ISFEditorStateModel.swift in Sources */,
  3847. DDB37CC72D05127500D99BF4 /* FontExtensions.swift in Sources */,
  3848. 582DF9772C8CDBE7001F516D /* InsulinView.swift in Sources */,
  3849. F816826028DB441800054060 /* BluetoothTransmitter.swift in Sources */,
  3850. DD68889D2C386E17006E3C44 /* NightscoutExercise.swift in Sources */,
  3851. 5864E8592C42CFAE00294306 /* DeterminationStorage.swift in Sources */,
  3852. BD7DA9A72AE06E2B00601B20 /* BolusCalculatorConfigProvider.swift in Sources */,
  3853. 38192E0D261BAF980094D973 /* ConvenienceExtensions.swift in Sources */,
  3854. 88AB39B23C9552BD6E0C9461 /* ISFEditorRootView.swift in Sources */,
  3855. BD6EB2D62C7D049B0086BBB6 /* LiveActivityWidgetConfiguration.swift in Sources */,
  3856. DD32CF982CC82463003686D6 /* TrioRemoteControl+Bolus.swift in Sources */,
  3857. F816825E28DB441200054060 /* HeartBeatManager.swift in Sources */,
  3858. 58F107742BD1A4D000B1A680 /* Determination+helper.swift in Sources */,
  3859. 38FEF413273B317A00574A46 /* HKUnit.swift in Sources */,
  3860. A33352ED40476125EBAC6EE0 /* CarbRatioEditorDataFlow.swift in Sources */,
  3861. 17A9D0899046B45E87834820 /* CarbRatioEditorProvider.swift in Sources */,
  3862. 69B9A368029F7EB39F525422 /* CarbRatioEditorStateModel.swift in Sources */,
  3863. 118DF76B2C5ECBC60067FEB7 /* CancelOverrideIntent.swift in Sources */,
  3864. 38E44538274E411700EC9A94 /* Disk+[Data].swift in Sources */,
  3865. 98641AF4F92123DA668AB931 /* CarbRatioEditorRootView.swift in Sources */,
  3866. BDF34F902C10CF8C00D51995 /* CoreDataStack.swift in Sources */,
  3867. CEE9A65C2BBB41C800EB5194 /* CalibrationService.swift in Sources */,
  3868. 110AEDED2C51A0AE00615CC9 /* ShortcutsConfigProvider.swift in Sources */,
  3869. 38E4453D274E411700EC9A94 /* Disk+Errors.swift in Sources */,
  3870. 58D08B3A2C8DFECD00AA37D3 /* TempTargets.swift in Sources */,
  3871. 38E98A2325F52C9300C0CED0 /* Signpost.swift in Sources */,
  3872. CE7CA3542A064973004BE681 /* TempPresetsIntentRequest.swift in Sources */,
  3873. 58A3D5442C96DE11003F90FC /* TempTargetStored+Helper.swift in Sources */,
  3874. 58A3D5532C96EFA8003F90FC /* TempTargetRunStored+CoreDataClass.swift in Sources */,
  3875. DD6B7CB42C7B71F700B75029 /* ForecastDisplayType.swift in Sources */,
  3876. DD5DC9F32CF3D9DD00AB8703 /* AdjustmentsStateModel+TempTargets.swift in Sources */,
  3877. F5F7E6C1B7F098F59EB67EC5 /* TargetsEditorDataFlow.swift in Sources */,
  3878. DD17453A2C55BFA600211FAC /* AlgorithmAdvancedSettingsDataFlow.swift in Sources */,
  3879. 5075C1608E6249A51495C422 /* TargetsEditorProvider.swift in Sources */,
  3880. E13B7DAB2A435F57066AF02E /* TargetsEditorStateModel.swift in Sources */,
  3881. 9702FF92A09C53942F20D7EA /* TargetsEditorRootView.swift in Sources */,
  3882. 1967DFBE29D052C200759F30 /* Icons.swift in Sources */,
  3883. DDD163182C4C694000CD525A /* AdjustmentsRootView.swift in Sources */,
  3884. 389ECE052601144100D86C4F /* ConcurrentMap.swift in Sources */,
  3885. 110AEDEC2C51A0AE00615CC9 /* ShortcutsConfigDataFlow.swift in Sources */,
  3886. CE7CA3562A064973004BE681 /* StateIntentRequest.swift in Sources */,
  3887. 19E1F7EA29D082ED005C8D20 /* IconConfigProvider.swift in Sources */,
  3888. DD09D4822C5986F6003FEA5D /* CalendarEventSettingsRootView.swift in Sources */,
  3889. CE48C86428CA69D5007C0598 /* OmniBLEPumpManagerExtensions.swift in Sources */,
  3890. DD5DC9F92CF3DAA900AB8703 /* RadioButton.swift in Sources */,
  3891. 38E44522274E3DDC00EC9A94 /* NetworkReachabilityManager.swift in Sources */,
  3892. CE7CA34F2A064973004BE681 /* BaseIntentsRequest.swift in Sources */,
  3893. E592A3772CEEC038009A472C /* ContactImageStateModel.swift in Sources */,
  3894. E592A3782CEEC038009A472C /* ContactImageDataFlow.swift in Sources */,
  3895. DDAA29852D2D1D9E006546A1 /* AdjustmentsRootView+TempTargets.swift in Sources */,
  3896. E592A3792CEEC038009A472C /* ContactImageRootView.swift in Sources */,
  3897. BDC531182D1062F200088832 /* ContactImageState.swift in Sources */,
  3898. E592A37A2CEEC038009A472C /* ContactImageProvider.swift in Sources */,
  3899. CE82E02728E869DF00473A9C /* AlertEntry.swift in Sources */,
  3900. 38E4451E274DB04600EC9A94 /* AppDelegate.swift in Sources */,
  3901. BD2FF1A02AE29D43005D1C5D /* CheckboxToggleStyle.swift in Sources */,
  3902. DDD163162C4C690300CD525A /* AdjustmentsDataFlow.swift in Sources */,
  3903. BDF34F932C10D0E100D51995 /* LiveActivityAttributes+Helper.swift in Sources */,
  3904. E0D4F80527513ECF00BDF1FE /* HealthKitSample.swift in Sources */,
  3905. 38AAF85525FFF846004AF583 /* CurrentGlucoseView.swift in Sources */,
  3906. 041D1E995A6AE92E9289DC49 /* TreatmentsDataFlow.swift in Sources */,
  3907. DD32CF9E2CC824C5003686D6 /* TrioRemoteControl+Override.swift in Sources */,
  3908. 23888883D4EA091C88480FF2 /* TreatmentsProvider.swift in Sources */,
  3909. 38E98A2D25F52DC400C0CED0 /* NSLocking+Extensions.swift in Sources */,
  3910. BDBAACFA2C2D439700370AAE /* OverrideData.swift in Sources */,
  3911. DD9ECB682CA99F4500AA7C45 /* TrioRemoteControl.swift in Sources */,
  3912. 38569353270B5E350002C50D /* CGMRootView.swift in Sources */,
  3913. 69A31254F2451C20361D172F /* TreatmentsStateModel.swift in Sources */,
  3914. 1967DFC029D053AC00759F30 /* IconSelection.swift in Sources */,
  3915. 19D4E4EB29FC6A9F00351451 /* Charts.swift in Sources */,
  3916. BDC531162D10629000088832 /* ContactPicture.swift in Sources */,
  3917. FEFFA7A22929FE49007B8193 /* UIDevice+Extensions.swift in Sources */,
  3918. BD4E1A7C2D3686D900D21626 /* StartEndMarkerSetup.swift in Sources */,
  3919. F90692D3274B9A130037068D /* AppleHealthKitRootView.swift in Sources */,
  3920. BDF34F852C10C62E00D51995 /* GlucoseData.swift in Sources */,
  3921. 19E1F7EC29D082FE005C8D20 /* IconConfigStateModel.swift in Sources */,
  3922. 711C0CB42CAABE788916BC9D /* ManualTempBasalDataFlow.swift in Sources */,
  3923. DD1745222C55524800211FAC /* SMBSettingsProvider.swift in Sources */,
  3924. BF1667ADE69E4B5B111CECAE /* ManualTempBasalProvider.swift in Sources */,
  3925. 583684062BD178DB00070A60 /* GlucoseStored+helper.swift in Sources */,
  3926. F90692D6274B9A450037068D /* HealthKitStateModel.swift in Sources */,
  3927. BD1661312B82ADAB00256551 /* CustomProgressView.swift in Sources */,
  3928. C967DACD3B1E638F8B43BE06 /* ManualTempBasalStateModel.swift in Sources */,
  3929. 38E4453B274E411700EC9A94 /* Disk+VolumeInformation.swift in Sources */,
  3930. 118DF76A2C5ECBC60067FEB7 /* ApplyOverridePresetIntent.swift in Sources */,
  3931. 58645B992CA2D1A4008AFCE7 /* GlucoseSetup.swift in Sources */,
  3932. 7BCFACB97C821041BA43A114 /* ManualTempBasalRootView.swift in Sources */,
  3933. 38E44534274E411700EC9A94 /* Disk+InternalHelpers.swift in Sources */,
  3934. 38A00B2325FC2B55006BC0B0 /* LRUCache.swift in Sources */,
  3935. DDD163122C4C689900CD525A /* AdjustmentsStateModel.swift in Sources */,
  3936. DD1745132C54169400211FAC /* DevicesView.swift in Sources */,
  3937. 7F7B756BE8543965D9FDF1A2 /* DataTableDataFlow.swift in Sources */,
  3938. 1D845DF2E3324130E1D95E67 /* DataTableProvider.swift in Sources */,
  3939. 19F95FFA29F1102A00314DDC /* StatRootView.swift in Sources */,
  3940. 0D9A5E34A899219C5C4CDFAF /* DataTableStateModel.swift in Sources */,
  3941. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3942. 195D80B92AF697F700D25097 /* DynamicSettingsProvider.swift in Sources */,
  3943. DD09D47D2C5986DA003FEA5D /* CalendarEventSettingsProvider.swift in Sources */,
  3944. DD09D47B2C5986D1003FEA5D /* CalendarEventSettingsDataFlow.swift in Sources */,
  3945. 6BCF84DD2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  3946. DD1745202C55523E00211FAC /* SMBSettingsDataFlow.swift in Sources */,
  3947. D6D02515BBFBE64FEBE89856 /* DataTableRootView.swift in Sources */,
  3948. DD1745292C55642100211FAC /* SettingInputSection.swift in Sources */,
  3949. 38569349270B5DFB0002C50D /* AppGroupSource.swift in Sources */,
  3950. F5CA3DB1F9DC8B05792BBFAA /* CGMDataFlow.swift in Sources */,
  3951. BDF34F952C10D27300D51995 /* DeterminationData.swift in Sources */,
  3952. BA00D96F7B2FF169A06FB530 /* CGMStateModel.swift in Sources */,
  3953. BD7DA9A52AE06DFC00601B20 /* BolusCalculatorConfigDataFlow.swift in Sources */,
  3954. 6EADD581738D64431902AC0A /* (null) in Sources */,
  3955. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3956. DD5DC9FB2CF3E1B100AB8703 /* AdjustmentsStateModel+Helpers.swift in Sources */,
  3957. DDF847E42C5C288F0049BB3B /* LiveActivitySettingsRootView.swift in Sources */,
  3958. DD88C8E22C50420800F2D558 /* DefinitionRow.swift in Sources */,
  3959. B7C465E9472624D8A2BE2A6A /* (null) in Sources */,
  3960. 71D44AAB2CA5F5EA0036EE9E /* AlertPermissionsChecker.swift in Sources */,
  3961. 320D030F724170A637F06D50 /* (null) in Sources */,
  3962. CE94598729E9E4110047C9C6 /* WatchConfigRootView.swift in Sources */,
  3963. 19E1F7E829D082D0005C8D20 /* IconConfigDataFlow.swift in Sources */,
  3964. 5A2325522BFCBF55003518CA /* NightscoutUploadView.swift in Sources */,
  3965. E3A08AAE59538BC8A8ABE477 /* GlucoseNotificationSettingsDataFlow.swift in Sources */,
  3966. 0F7A65FBD2CD8D6477ED4539 /* GlucoseNotificationSettingsProvider.swift in Sources */,
  3967. 3171D2818C7C72CD1584BB5E /* GlucoseNotificationSettingsStateModel.swift in Sources */,
  3968. DDE179522C910127003CDDB7 /* MealPresetStored+CoreDataClass.swift in Sources */,
  3969. DDE179532C910127003CDDB7 /* MealPresetStored+CoreDataProperties.swift in Sources */,
  3970. DDE179542C910127003CDDB7 /* LoopStatRecord+CoreDataClass.swift in Sources */,
  3971. BDC530FF2D0F6BE300088832 /* ContactImageManager.swift in Sources */,
  3972. BDC531122D1060FA00088832 /* ContactImageDetailView.swift in Sources */,
  3973. DDE179552C910127003CDDB7 /* LoopStatRecord+CoreDataProperties.swift in Sources */,
  3974. DDE179562C910127003CDDB7 /* BolusStored+CoreDataClass.swift in Sources */,
  3975. DDE179572C910127003CDDB7 /* BolusStored+CoreDataProperties.swift in Sources */,
  3976. DDE179582C910127003CDDB7 /* ForecastValue+CoreDataClass.swift in Sources */,
  3977. DDE179592C910127003CDDB7 /* ForecastValue+CoreDataProperties.swift in Sources */,
  3978. DDE1795A2C910127003CDDB7 /* CarbEntryStored+CoreDataClass.swift in Sources */,
  3979. DDE1795B2C910127003CDDB7 /* CarbEntryStored+CoreDataProperties.swift in Sources */,
  3980. DDE1795E2C910127003CDDB7 /* PumpEventStored+CoreDataClass.swift in Sources */,
  3981. BDDAF9EF2D00554500B34E7A /* SelectionPopoverView.swift in Sources */,
  3982. DDE1795F2C910127003CDDB7 /* PumpEventStored+CoreDataProperties.swift in Sources */,
  3983. DDE179602C910127003CDDB7 /* StatsData+CoreDataClass.swift in Sources */,
  3984. DDE179612C910127003CDDB7 /* StatsData+CoreDataProperties.swift in Sources */,
  3985. DDE179622C910127003CDDB7 /* Forecast+CoreDataClass.swift in Sources */,
  3986. DDE179632C910127003CDDB7 /* Forecast+CoreDataProperties.swift in Sources */,
  3987. DDE179642C910127003CDDB7 /* GlucoseStored+CoreDataClass.swift in Sources */,
  3988. DDE179652C910127003CDDB7 /* GlucoseStored+CoreDataProperties.swift in Sources */,
  3989. BDC531142D10611D00088832 /* AddContactImageSheet.swift in Sources */,
  3990. DDE179662C910127003CDDB7 /* OpenAPS_Battery+CoreDataClass.swift in Sources */,
  3991. DDE179672C910127003CDDB7 /* OpenAPS_Battery+CoreDataProperties.swift in Sources */,
  3992. DDE179682C910127003CDDB7 /* TempBasalStored+CoreDataClass.swift in Sources */,
  3993. DDE179692C910127003CDDB7 /* TempBasalStored+CoreDataProperties.swift in Sources */,
  3994. DDE1796C2C910127003CDDB7 /* OverrideRunStored+CoreDataClass.swift in Sources */,
  3995. DDE1796D2C910127003CDDB7 /* OverrideRunStored+CoreDataProperties.swift in Sources */,
  3996. DDE1796E2C910127003CDDB7 /* OrefDetermination+CoreDataClass.swift in Sources */,
  3997. DDE1796F2C910127003CDDB7 /* OrefDetermination+CoreDataProperties.swift in Sources */,
  3998. DDE179702C910127003CDDB7 /* OverrideStored+CoreDataClass.swift in Sources */,
  3999. DD9ECB742CA9A0C300AA7C45 /* RemoteControlConfig.swift in Sources */,
  4000. DDE179712C910127003CDDB7 /* OverrideStored+CoreDataProperties.swift in Sources */,
  4001. CD78BB94E43B249D60CC1A1B /* GlucoseNotificationSettingsRootView.swift in Sources */,
  4002. CE7CA3502A064973004BE681 /* CancelTempPresetIntent.swift in Sources */,
  4003. 6B1F539F9FF75646D1606066 /* SnoozeDataFlow.swift in Sources */,
  4004. 6FFAE524D1D9C262F2407CAE /* SnoozeProvider.swift in Sources */,
  4005. BD4ED4FD2CF9D5E8000EDC9C /* AppState.swift in Sources */,
  4006. DDF847DD2C5C28720049BB3B /* LiveActivitySettingsDataFlow.swift in Sources */,
  4007. 8194B80890CDD6A3C13B0FEE /* SnoozeStateModel.swift in Sources */,
  4008. BDA25EE42D260CD500035F34 /* AppleWatchManager.swift in Sources */,
  4009. 0437CE46C12535A56504EC19 /* SnoozeRootView.swift in Sources */,
  4010. );
  4011. runOnlyForDeploymentPostprocessing = 0;
  4012. };
  4013. 38FCF3E925E9028E0078B0D1 /* Sources */ = {
  4014. isa = PBXSourcesBuildPhase;
  4015. buildActionMask = 2147483647;
  4016. files = (
  4017. CEE9A65E2BBC9F6500EB5194 /* CalibrationsTests.swift in Sources */,
  4018. CE1F6DD92BADF4620064EB8D /* PluginManagerTests.swift in Sources */,
  4019. 38FCF3F925E902C20078B0D1 /* FileStorageTests.swift in Sources */,
  4020. );
  4021. runOnlyForDeploymentPostprocessing = 0;
  4022. };
  4023. 6B1A8D132B14D91500E76752 /* Sources */ = {
  4024. isa = PBXSourcesBuildPhase;
  4025. buildActionMask = 2147483647;
  4026. files = (
  4027. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  4028. 6BCF84DE2B16843A003AD46E /* LiveActitiyAttributes.swift in Sources */,
  4029. DDCEBF5B2CC1B76400DF4C36 /* LiveActivity+Helper.swift in Sources */,
  4030. 6B1A8D1E2B14D91600E76752 /* LiveActivityBundle.swift in Sources */,
  4031. 6B1A8D202B14D91600E76752 /* LiveActivity.swift in Sources */,
  4032. );
  4033. runOnlyForDeploymentPostprocessing = 0;
  4034. };
  4035. BD8207BF2D2B42E50023339D /* Sources */ = {
  4036. isa = PBXSourcesBuildPhase;
  4037. buildActionMask = 2147483647;
  4038. files = (
  4039. DD09D6462D2B553A000D82C9 /* TrioWatchComplication.swift in Sources */,
  4040. );
  4041. runOnlyForDeploymentPostprocessing = 0;
  4042. };
  4043. BDFF79782D25AA870016C40C /* Sources */ = {
  4044. isa = PBXSourcesBuildPhase;
  4045. buildActionMask = 2147483647;
  4046. files = (
  4047. BDA25F222D26D62800035F34 /* BolusInputView.swift in Sources */,
  4048. BDFF7A882D25F97D0016C40C /* TrioMainWatchView.swift in Sources */,
  4049. BDA25F202D26D5FE00035F34 /* CarbsInputView.swift in Sources */,
  4050. BDA25F1C2D26BD0700035F34 /* TrendShape.swift in Sources */,
  4051. BDFF7A892D25F97D0016C40C /* TrioWatchApp.swift in Sources */,
  4052. DD09D5C72D29EB2F000D82C9 /* Helper+Enums.swift in Sources */,
  4053. BD54A9742D281AEF00F9C1EE /* TempTargetPresetWatch.swift in Sources */,
  4054. BD54A95C2D2808A300F9C1EE /* OverridePresetWatch.swift in Sources */,
  4055. BD54A9592D27FB7800F9C1EE /* OverridePresetsView.swift in Sources */,
  4056. BDA25F1E2D26D5DD00035F34 /* GlucoseChartView.swift in Sources */,
  4057. DD6F63CC2D27F615007D94CF /* TreatmentMenuView.swift in Sources */,
  4058. DD3A3CE72D29C93F00AE478E /* Helper+Extensions.swift in Sources */,
  4059. DD246F062D2836AA0027DDE0 /* GlucoseTrendView.swift in Sources */,
  4060. BD432CA22D2F4E4000D1EB79 /* WatchMessageKeys.swift in Sources */,
  4061. DD8262CB2D289297009F6F62 /* BolusConfirmationView.swift in Sources */,
  4062. BD54A9712D281A8100F9C1EE /* TempTargetPresetsView.swift in Sources */,
  4063. DD3A3CE92D29C97800AE478E /* Helper+ButtonStyles.swift in Sources */,
  4064. BDAE40002D372BAD009C12B1 /* WatchState+Requests.swift in Sources */,
  4065. BDA25EE62D260D5E00035F34 /* WatchState.swift in Sources */,
  4066. BD04ECCE2D29952A008C5FEB /* BolusProgressOverlay.swift in Sources */,
  4067. DD09D5C92D29F3D0000D82C9 /* AcknowledgementPendingView.swift in Sources */,
  4068. );
  4069. runOnlyForDeploymentPostprocessing = 0;
  4070. };
  4071. BDFF79872D25AA890016C40C /* Sources */ = {
  4072. isa = PBXSourcesBuildPhase;
  4073. buildActionMask = 2147483647;
  4074. files = (
  4075. BDFF7A8B2D25F97D0016C40C /* Unit Tests.swift in Sources */,
  4076. );
  4077. runOnlyForDeploymentPostprocessing = 0;
  4078. };
  4079. /* End PBXSourcesBuildPhase section */
  4080. /* Begin PBXTargetDependency section */
  4081. 38FCF3F325E9028E0078B0D1 /* PBXTargetDependency */ = {
  4082. isa = PBXTargetDependency;
  4083. target = 388E595725AD948C0019842D /* Trio */;
  4084. targetProxy = 38FCF3F225E9028E0078B0D1 /* PBXContainerItemProxy */;
  4085. };
  4086. 6B1A8D272B14D91700E76752 /* PBXTargetDependency */ = {
  4087. isa = PBXTargetDependency;
  4088. target = 6B1A8D162B14D91500E76752 /* LiveActivityExtension */;
  4089. targetProxy = 6B1A8D262B14D91700E76752 /* PBXContainerItemProxy */;
  4090. };
  4091. BD8207CD2D2B42E70023339D /* PBXTargetDependency */ = {
  4092. isa = PBXTargetDependency;
  4093. target = BD8207C22D2B42E50023339D /* Trio Watch Complication Extension */;
  4094. targetProxy = BD8207CC2D2B42E70023339D /* PBXContainerItemProxy */;
  4095. };
  4096. BDFF798D2D25AA890016C40C /* PBXTargetDependency */ = {
  4097. isa = PBXTargetDependency;
  4098. target = BDFF797B2D25AA870016C40C /* Trio Watch App */;
  4099. targetProxy = BDFF798C2D25AA890016C40C /* PBXContainerItemProxy */;
  4100. };
  4101. BDFF799E2D25AA890016C40C /* PBXTargetDependency */ = {
  4102. isa = PBXTargetDependency;
  4103. target = BDFF797B2D25AA870016C40C /* Trio Watch App */;
  4104. targetProxy = BDFF799D2D25AA890016C40C /* PBXContainerItemProxy */;
  4105. };
  4106. /* End PBXTargetDependency section */
  4107. /* Begin PBXVariantGroup section */
  4108. 1927C8E82744606D00347C69 /* InfoPlist.strings */ = {
  4109. isa = PBXVariantGroup;
  4110. children = (
  4111. 1927C8E92744611700347C69 /* ar */,
  4112. 1927C8EA2744611800347C69 /* ca */,
  4113. 1927C8EB2744611900347C69 /* zh-Hans */,
  4114. 1927C8EC2744611A00347C69 /* da */,
  4115. 1927C8ED2744611B00347C69 /* fi */,
  4116. 1927C8EE2744611C00347C69 /* nl */,
  4117. 1927C8EF2744611D00347C69 /* fr */,
  4118. 1927C8F02744611E00347C69 /* de */,
  4119. 1927C8F12744611E00347C69 /* he */,
  4120. 1927C8F22744611F00347C69 /* it */,
  4121. 1927C8F32744612000347C69 /* nb */,
  4122. 1927C8F42744612100347C69 /* pl */,
  4123. 1927C8F52744612100347C69 /* pt-BR */,
  4124. 1927C8F62744612200347C69 /* pt-PT */,
  4125. 1927C8F72744612300347C69 /* ru */,
  4126. 1927C8F82744612400347C69 /* es */,
  4127. 1927C8F92744612400347C69 /* sv */,
  4128. 1927C8FA2744612500347C69 /* tr */,
  4129. 1927C8FB2744612600347C69 /* uk */,
  4130. 1927C8FE274489BA00347C69 /* Base */,
  4131. 19C166682756EFBD00ED12E3 /* sk */,
  4132. 193F1E392B44C13B00525770 /* hu */,
  4133. 193F1E3B2B44C14800525770 /* vi */,
  4134. );
  4135. name = InfoPlist.strings;
  4136. sourceTree = "<group>";
  4137. };
  4138. 198377D4266BFFF6004DE65E /* Localizable.strings */ = {
  4139. isa = PBXVariantGroup;
  4140. children = (
  4141. 198377D3266BFFF6004DE65E /* en */,
  4142. 198377D5266C0A05004DE65E /* ar */,
  4143. 198377D6266C0A0A004DE65E /* ca */,
  4144. 198377D7266C0A15004DE65E /* zh-Hans */,
  4145. 198377D8266C0A1C004DE65E /* da */,
  4146. 198377D9266C0A21004DE65E /* nl */,
  4147. 198377DA266C0A2B004DE65E /* fr */,
  4148. 198377DB266C0A32004DE65E /* de */,
  4149. 198377DC266C0A3C004DE65E /* he */,
  4150. 198377DD266C0A51004DE65E /* it */,
  4151. 198377DE266C0A69004DE65E /* nb */,
  4152. 198377DF266C0A7F004DE65E /* pl */,
  4153. 198377E0266C0AB5004DE65E /* ru */,
  4154. 198377E1266C0ABF004DE65E /* es */,
  4155. 198377E2266C0AC8004DE65E /* sv */,
  4156. 198377E3266C0ADC004DE65E /* tr */,
  4157. 198377E4266C13D2004DE65E /* uk */,
  4158. 1918333A26ADA46800F45722 /* fi */,
  4159. 199732B4271B72DD00129A3F /* pt-PT */,
  4160. 199732B5271B9EE900129A3F /* pt-BR */,
  4161. 19C166692756EFBD00ED12E3 /* sk */,
  4162. 193F1E3A2B44C13B00525770 /* hu */,
  4163. 193F1E3C2B44C14800525770 /* vi */,
  4164. );
  4165. name = Localizable.strings;
  4166. sourceTree = "<group>";
  4167. };
  4168. /* End PBXVariantGroup section */
  4169. /* Begin XCBuildConfiguration section */
  4170. 388E596525AD948E0019842D /* Debug */ = {
  4171. isa = XCBuildConfiguration;
  4172. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  4173. buildSettings = {
  4174. ALWAYS_SEARCH_USER_PATHS = NO;
  4175. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  4176. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4177. CLANG_ANALYZER_NONNULL = YES;
  4178. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4179. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4180. CLANG_CXX_LIBRARY = "libc++";
  4181. CLANG_ENABLE_MODULES = YES;
  4182. CLANG_ENABLE_OBJC_ARC = YES;
  4183. CLANG_ENABLE_OBJC_WEAK = YES;
  4184. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4185. CLANG_WARN_BOOL_CONVERSION = YES;
  4186. CLANG_WARN_COMMA = YES;
  4187. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4188. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4189. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4190. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4191. CLANG_WARN_EMPTY_BODY = YES;
  4192. CLANG_WARN_ENUM_CONVERSION = YES;
  4193. CLANG_WARN_INFINITE_RECURSION = YES;
  4194. CLANG_WARN_INT_CONVERSION = YES;
  4195. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4196. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4197. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4198. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4199. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4200. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4201. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4202. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4203. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4204. CLANG_WARN_UNREACHABLE_CODE = YES;
  4205. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4206. COPY_PHASE_STRIP = NO;
  4207. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  4208. DEBUG_INFORMATION_FORMAT = dwarf;
  4209. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4210. ENABLE_TESTABILITY = YES;
  4211. GCC_C_LANGUAGE_STANDARD = gnu11;
  4212. GCC_DYNAMIC_NO_PIC = NO;
  4213. GCC_NO_COMMON_BLOCKS = YES;
  4214. GCC_OPTIMIZATION_LEVEL = 0;
  4215. GCC_PREPROCESSOR_DEFINITIONS = (
  4216. "DEBUG=1",
  4217. "$(inherited)",
  4218. );
  4219. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4220. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4221. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4222. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4223. GCC_WARN_UNUSED_FUNCTION = YES;
  4224. GCC_WARN_UNUSED_VARIABLE = YES;
  4225. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4226. MARKETING_VERSION = "$(APP_VERSION)";
  4227. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  4228. MTL_FAST_MATH = YES;
  4229. ONLY_ACTIVE_ARCH = YES;
  4230. SDKROOT = iphoneos;
  4231. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  4232. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  4233. };
  4234. name = Debug;
  4235. };
  4236. 388E596625AD948E0019842D /* Release */ = {
  4237. isa = XCBuildConfiguration;
  4238. baseConfigurationReference = 38F3783A2613555C009DB701 /* Config.xcconfig */;
  4239. buildSettings = {
  4240. ALWAYS_SEARCH_USER_PATHS = NO;
  4241. APP_GROUP_ID = "group.$(BUNDLE_IDENTIFIER).trio-app-group";
  4242. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  4243. CLANG_ANALYZER_NONNULL = YES;
  4244. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  4245. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  4246. CLANG_CXX_LIBRARY = "libc++";
  4247. CLANG_ENABLE_MODULES = YES;
  4248. CLANG_ENABLE_OBJC_ARC = YES;
  4249. CLANG_ENABLE_OBJC_WEAK = YES;
  4250. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  4251. CLANG_WARN_BOOL_CONVERSION = YES;
  4252. CLANG_WARN_COMMA = YES;
  4253. CLANG_WARN_CONSTANT_CONVERSION = YES;
  4254. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  4255. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  4256. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  4257. CLANG_WARN_EMPTY_BODY = YES;
  4258. CLANG_WARN_ENUM_CONVERSION = YES;
  4259. CLANG_WARN_INFINITE_RECURSION = YES;
  4260. CLANG_WARN_INT_CONVERSION = YES;
  4261. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  4262. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  4263. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  4264. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  4265. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  4266. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  4267. CLANG_WARN_STRICT_PROTOTYPES = YES;
  4268. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  4269. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  4270. CLANG_WARN_UNREACHABLE_CODE = YES;
  4271. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  4272. COPY_PHASE_STRIP = NO;
  4273. CURRENT_PROJECT_VERSION = "$(APP_BUILD_NUMBER)";
  4274. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  4275. ENABLE_NS_ASSERTIONS = NO;
  4276. ENABLE_STRICT_OBJC_MSGSEND = YES;
  4277. GCC_C_LANGUAGE_STANDARD = gnu11;
  4278. GCC_NO_COMMON_BLOCKS = YES;
  4279. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  4280. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  4281. GCC_WARN_UNDECLARED_SELECTOR = YES;
  4282. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  4283. GCC_WARN_UNUSED_FUNCTION = YES;
  4284. GCC_WARN_UNUSED_VARIABLE = YES;
  4285. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4286. MARKETING_VERSION = "$(APP_VERSION)";
  4287. MTL_ENABLE_DEBUG_INFO = NO;
  4288. MTL_FAST_MATH = YES;
  4289. SDKROOT = iphoneos;
  4290. SWIFT_COMPILATION_MODE = wholemodule;
  4291. SWIFT_OPTIMIZATION_LEVEL = "-O";
  4292. VALIDATE_PRODUCT = YES;
  4293. };
  4294. name = Release;
  4295. };
  4296. 388E596825AD948E0019842D /* Debug */ = {
  4297. isa = XCBuildConfiguration;
  4298. buildSettings = {
  4299. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  4300. APP_GROUP_ID = "$(APP_GROUP_ID)";
  4301. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  4302. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4303. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  4304. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4305. CODE_SIGN_ENTITLEMENTS = Trio/Resources/Trio.entitlements;
  4306. CODE_SIGN_IDENTITY = "Apple Development";
  4307. CODE_SIGN_STYLE = Automatic;
  4308. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  4309. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  4310. DEVELOPMENT_ASSET_PATHS = "";
  4311. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4312. ENABLE_PREVIEWS = YES;
  4313. INFOPLIST_FILE = Trio/Resources/Info.plist;
  4314. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4315. LD_RUNPATH_SEARCH_PATHS = (
  4316. "$(inherited)",
  4317. "@executable_path/Frameworks",
  4318. );
  4319. LIBRARY_SEARCH_PATHS = (
  4320. "$(inherited)",
  4321. "$(SDKROOT)/usr/lib/swift",
  4322. );
  4323. MARKETING_VERSION = "$(APP_VERSION)";
  4324. OTHER_LDFLAGS = (
  4325. "-weak_framework",
  4326. CoreNFC,
  4327. "-ObjC",
  4328. );
  4329. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4330. PRODUCT_NAME = "$(TARGET_NAME)";
  4331. PROVISIONING_PROFILE_SPECIFIER = "";
  4332. SWIFT_VERSION = 5.0;
  4333. TARGETED_DEVICE_FAMILY = "1,2";
  4334. };
  4335. name = Debug;
  4336. };
  4337. 388E596925AD948E0019842D /* Release */ = {
  4338. isa = XCBuildConfiguration;
  4339. buildSettings = {
  4340. APP_DISPLAY_NAME = "$(APP_DISPLAY_NAME)";
  4341. APP_GROUP_ID = "$(APP_GROUP_ID)";
  4342. ASSETCATALOG_COMPILER_APPICON_NAME = "$(APP_ICON)";
  4343. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4344. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  4345. BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4346. CODE_SIGN_ENTITLEMENTS = Trio/Resources/Trio.entitlements;
  4347. CODE_SIGN_IDENTITY = "Apple Development";
  4348. CODE_SIGN_STYLE = Automatic;
  4349. CURRENT_PROJECT_VERSION = $APP_BUILD_NUMBER;
  4350. DEVELOPER_TEAM = "$(DEVELOPER_TEAM)";
  4351. DEVELOPMENT_ASSET_PATHS = "";
  4352. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4353. ENABLE_PREVIEWS = YES;
  4354. INFOPLIST_FILE = Trio/Resources/Info.plist;
  4355. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4356. LD_RUNPATH_SEARCH_PATHS = (
  4357. "$(inherited)",
  4358. "@executable_path/Frameworks",
  4359. );
  4360. LIBRARY_SEARCH_PATHS = (
  4361. "$(inherited)",
  4362. "$(SDKROOT)/usr/lib/swift",
  4363. );
  4364. MARKETING_VERSION = "$(APP_VERSION)";
  4365. OTHER_LDFLAGS = (
  4366. "-weak_framework",
  4367. CoreNFC,
  4368. "-ObjC",
  4369. );
  4370. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER)";
  4371. PRODUCT_NAME = "$(TARGET_NAME)";
  4372. PROVISIONING_PROFILE_SPECIFIER = "";
  4373. SWIFT_VERSION = 5.0;
  4374. TARGETED_DEVICE_FAMILY = "1,2";
  4375. };
  4376. name = Release;
  4377. };
  4378. 38FCF3F525E9028E0078B0D1 /* Debug */ = {
  4379. isa = XCBuildConfiguration;
  4380. buildSettings = {
  4381. BUNDLE_LOADER = "$(TEST_HOST)";
  4382. CODE_SIGN_STYLE = Automatic;
  4383. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4384. INFOPLIST_FILE = TrioTests/Info.plist;
  4385. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4386. LD_RUNPATH_SEARCH_PATHS = (
  4387. "$(inherited)",
  4388. "@executable_path/Frameworks",
  4389. "@loader_path/Frameworks",
  4390. );
  4391. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioTests";
  4392. PRODUCT_NAME = "$(TARGET_NAME)";
  4393. SWIFT_VERSION = 5.0;
  4394. TARGETED_DEVICE_FAMILY = "1,2";
  4395. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio.app/Trio";
  4396. };
  4397. name = Debug;
  4398. };
  4399. 38FCF3F625E9028E0078B0D1 /* Release */ = {
  4400. isa = XCBuildConfiguration;
  4401. buildSettings = {
  4402. BUNDLE_LOADER = "$(TEST_HOST)";
  4403. CODE_SIGN_STYLE = Automatic;
  4404. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4405. INFOPLIST_FILE = TrioTests/Info.plist;
  4406. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4407. LD_RUNPATH_SEARCH_PATHS = (
  4408. "$(inherited)",
  4409. "@executable_path/Frameworks",
  4410. "@loader_path/Frameworks",
  4411. );
  4412. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).TrioTests";
  4413. PRODUCT_NAME = "$(TARGET_NAME)";
  4414. SWIFT_VERSION = 5.0;
  4415. TARGETED_DEVICE_FAMILY = "1,2";
  4416. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio.app/Trio";
  4417. };
  4418. name = Release;
  4419. };
  4420. 6B1A8D2A2B14D91800E76752 /* Debug */ = {
  4421. isa = XCBuildConfiguration;
  4422. buildSettings = {
  4423. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4424. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4425. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4426. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4427. CODE_SIGN_STYLE = Automatic;
  4428. CURRENT_PROJECT_VERSION = 1;
  4429. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4430. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4431. GCC_C_LANGUAGE_STANDARD = gnu17;
  4432. GENERATE_INFOPLIST_FILE = YES;
  4433. INFOPLIST_FILE = LiveActivity/Info.plist;
  4434. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  4435. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4436. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4437. LD_RUNPATH_SEARCH_PATHS = (
  4438. "$(inherited)",
  4439. "@executable_path/Frameworks",
  4440. "@executable_path/../../Frameworks",
  4441. );
  4442. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4443. MARKETING_VERSION = 1.0;
  4444. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  4445. PRODUCT_NAME = "$(TARGET_NAME)";
  4446. SKIP_INSTALL = YES;
  4447. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4448. SWIFT_EMIT_LOC_STRINGS = YES;
  4449. SWIFT_VERSION = 5.0;
  4450. TARGETED_DEVICE_FAMILY = "1,2";
  4451. };
  4452. name = Debug;
  4453. };
  4454. 6B1A8D2B2B14D91800E76752 /* Release */ = {
  4455. isa = XCBuildConfiguration;
  4456. buildSettings = {
  4457. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4458. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4459. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4460. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4461. CODE_SIGN_STYLE = Automatic;
  4462. CURRENT_PROJECT_VERSION = 1;
  4463. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4464. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4465. GCC_C_LANGUAGE_STANDARD = gnu17;
  4466. GENERATE_INFOPLIST_FILE = YES;
  4467. INFOPLIST_FILE = LiveActivity/Info.plist;
  4468. INFOPLIST_KEY_CFBundleDisplayName = LiveActivity;
  4469. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4470. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  4471. LD_RUNPATH_SEARCH_PATHS = (
  4472. "$(inherited)",
  4473. "@executable_path/Frameworks",
  4474. "@executable_path/../../Frameworks",
  4475. );
  4476. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4477. MARKETING_VERSION = 1.0;
  4478. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).LiveActivity";
  4479. PRODUCT_NAME = "$(TARGET_NAME)";
  4480. SKIP_INSTALL = YES;
  4481. SWIFT_EMIT_LOC_STRINGS = YES;
  4482. SWIFT_VERSION = 5.0;
  4483. TARGETED_DEVICE_FAMILY = "1,2";
  4484. };
  4485. name = Release;
  4486. };
  4487. BD8207D02D2B42E80023339D /* Debug */ = {
  4488. isa = XCBuildConfiguration;
  4489. buildSettings = {
  4490. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4491. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4492. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4493. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4494. CODE_SIGN_IDENTITY = "Apple Development";
  4495. CODE_SIGN_STYLE = Automatic;
  4496. CURRENT_PROJECT_VERSION = 1;
  4497. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4498. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4499. GCC_C_LANGUAGE_STANDARD = gnu17;
  4500. GENERATE_INFOPLIST_FILE = YES;
  4501. INFOPLIST_FILE = "Trio Watch Complication/Info.plist";
  4502. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4503. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4504. LD_RUNPATH_SEARCH_PATHS = (
  4505. "$(inherited)",
  4506. "@executable_path/Frameworks",
  4507. "@executable_path/../../Frameworks",
  4508. "@executable_path/../../../../Frameworks",
  4509. );
  4510. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4511. MARKETING_VERSION = 1.0;
  4512. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.TrioWatchComplication";
  4513. PRODUCT_NAME = "$(TARGET_NAME)";
  4514. SDKROOT = watchos;
  4515. SKIP_INSTALL = YES;
  4516. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4517. SWIFT_EMIT_LOC_STRINGS = YES;
  4518. SWIFT_VERSION = 5.0;
  4519. TARGETED_DEVICE_FAMILY = 4;
  4520. WATCHOS_DEPLOYMENT_TARGET = 10;
  4521. };
  4522. name = Debug;
  4523. };
  4524. BD8207D12D2B42E80023339D /* Release */ = {
  4525. isa = XCBuildConfiguration;
  4526. buildSettings = {
  4527. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4528. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4529. ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
  4530. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4531. CODE_SIGN_IDENTITY = "Apple Development";
  4532. CODE_SIGN_STYLE = Automatic;
  4533. CURRENT_PROJECT_VERSION = 1;
  4534. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4535. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4536. GCC_C_LANGUAGE_STANDARD = gnu17;
  4537. GENERATE_INFOPLIST_FILE = YES;
  4538. INFOPLIST_FILE = "Trio Watch Complication/Info.plist";
  4539. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4540. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  4541. LD_RUNPATH_SEARCH_PATHS = (
  4542. "$(inherited)",
  4543. "@executable_path/Frameworks",
  4544. "@executable_path/../../Frameworks",
  4545. "@executable_path/../../../../Frameworks",
  4546. );
  4547. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4548. MARKETING_VERSION = 1.0;
  4549. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp.TrioWatchComplication";
  4550. PRODUCT_NAME = "$(TARGET_NAME)";
  4551. SDKROOT = watchos;
  4552. SKIP_INSTALL = YES;
  4553. SWIFT_EMIT_LOC_STRINGS = YES;
  4554. SWIFT_VERSION = 5.0;
  4555. TARGETED_DEVICE_FAMILY = 4;
  4556. WATCHOS_DEPLOYMENT_TARGET = 10;
  4557. };
  4558. name = Release;
  4559. };
  4560. BDFF79A12D25AA890016C40C /* Debug */ = {
  4561. isa = XCBuildConfiguration;
  4562. buildSettings = {
  4563. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4564. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4565. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4566. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4567. CODE_SIGN_IDENTITY = "Apple Development";
  4568. CODE_SIGN_STYLE = Automatic;
  4569. CURRENT_PROJECT_VERSION = 1;
  4570. DEVELOPMENT_ASSET_PATHS = "\"Trio Watch App Extension/Preview Content\"";
  4571. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4572. ENABLE_PREVIEWS = YES;
  4573. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4574. GCC_C_LANGUAGE_STANDARD = gnu17;
  4575. GENERATE_INFOPLIST_FILE = YES;
  4576. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4577. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  4578. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  4579. LD_RUNPATH_SEARCH_PATHS = (
  4580. "$(inherited)",
  4581. "@executable_path/Frameworks",
  4582. );
  4583. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4584. MARKETING_VERSION = 1.0;
  4585. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  4586. PRODUCT_NAME = "$(TARGET_NAME)";
  4587. SDKROOT = watchos;
  4588. SKIP_INSTALL = YES;
  4589. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4590. SWIFT_EMIT_LOC_STRINGS = YES;
  4591. SWIFT_VERSION = 5.0;
  4592. TARGETED_DEVICE_FAMILY = 4;
  4593. WATCHOS_DEPLOYMENT_TARGET = 10;
  4594. };
  4595. name = Debug;
  4596. };
  4597. BDFF79A22D25AA890016C40C /* Release */ = {
  4598. isa = XCBuildConfiguration;
  4599. buildSettings = {
  4600. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  4601. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4602. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  4603. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4604. CODE_SIGN_IDENTITY = "Apple Development";
  4605. CODE_SIGN_STYLE = Automatic;
  4606. CURRENT_PROJECT_VERSION = 1;
  4607. DEVELOPMENT_ASSET_PATHS = "\"Trio Watch App Extension/Preview Content\"";
  4608. DEVELOPMENT_TEAM = "$(DEVELOPER_TEAM)";
  4609. ENABLE_PREVIEWS = YES;
  4610. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4611. GCC_C_LANGUAGE_STANDARD = gnu17;
  4612. GENERATE_INFOPLIST_FILE = YES;
  4613. INFOPLIST_KEY_CFBundleDisplayName = Trio;
  4614. INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  4615. INFOPLIST_KEY_WKCompanionAppBundleIdentifier = "$(BUNDLE_IDENTIFIER)";
  4616. LD_RUNPATH_SEARCH_PATHS = (
  4617. "$(inherited)",
  4618. "@executable_path/Frameworks",
  4619. );
  4620. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4621. MARKETING_VERSION = 1.0;
  4622. PRODUCT_BUNDLE_IDENTIFIER = "$(BUNDLE_IDENTIFIER).watchkitapp";
  4623. PRODUCT_NAME = "$(TARGET_NAME)";
  4624. SDKROOT = watchos;
  4625. SKIP_INSTALL = YES;
  4626. SWIFT_EMIT_LOC_STRINGS = YES;
  4627. SWIFT_VERSION = 5.0;
  4628. TARGETED_DEVICE_FAMILY = 4;
  4629. WATCHOS_DEPLOYMENT_TARGET = 10;
  4630. };
  4631. name = Release;
  4632. };
  4633. BDFF79A42D25AA890016C40C /* Debug */ = {
  4634. isa = XCBuildConfiguration;
  4635. buildSettings = {
  4636. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4637. BUNDLE_LOADER = "$(TEST_HOST)";
  4638. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4639. CODE_SIGN_STYLE = Automatic;
  4640. CURRENT_PROJECT_VERSION = 1;
  4641. DEVELOPMENT_TEAM = 9X82U8BHFK;
  4642. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4643. GCC_C_LANGUAGE_STANDARD = gnu17;
  4644. GENERATE_INFOPLIST_FILE = YES;
  4645. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4646. MARKETING_VERSION = 1.0;
  4647. PRODUCT_BUNDLE_IDENTIFIER = "org.nightscout.--DEVELOPMENT-TEAM-.trio.TrioWatch-Watch-AppTests";
  4648. PRODUCT_NAME = "$(TARGET_NAME)";
  4649. SDKROOT = watchos;
  4650. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  4651. SWIFT_EMIT_LOC_STRINGS = NO;
  4652. SWIFT_VERSION = 5.0;
  4653. TARGETED_DEVICE_FAMILY = 4;
  4654. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Trio Watch App";
  4655. WATCHOS_DEPLOYMENT_TARGET = 10;
  4656. };
  4657. name = Debug;
  4658. };
  4659. BDFF79A52D25AA890016C40C /* Release */ = {
  4660. isa = XCBuildConfiguration;
  4661. buildSettings = {
  4662. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  4663. BUNDLE_LOADER = "$(TEST_HOST)";
  4664. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  4665. CODE_SIGN_STYLE = Automatic;
  4666. CURRENT_PROJECT_VERSION = 1;
  4667. DEVELOPMENT_TEAM = 9X82U8BHFK;
  4668. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  4669. GCC_C_LANGUAGE_STANDARD = gnu17;
  4670. GENERATE_INFOPLIST_FILE = YES;
  4671. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  4672. MARKETING_VERSION = 1.0;
  4673. PRODUCT_BUNDLE_IDENTIFIER = "org.nightscout.--DEVELOPMENT-TEAM-.trio.TrioWatch-Watch-AppTests";
  4674. PRODUCT_NAME = "$(TARGET_NAME)";
  4675. SDKROOT = watchos;
  4676. SWIFT_EMIT_LOC_STRINGS = NO;
  4677. SWIFT_VERSION = 5.0;
  4678. TARGETED_DEVICE_FAMILY = 4;
  4679. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Trio Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Trio Watch App";
  4680. WATCHOS_DEPLOYMENT_TARGET = 10;
  4681. };
  4682. name = Release;
  4683. };
  4684. /* End XCBuildConfiguration section */
  4685. /* Begin XCConfigurationList section */
  4686. 388E595325AD948C0019842D /* Build configuration list for PBXProject "Trio" */ = {
  4687. isa = XCConfigurationList;
  4688. buildConfigurations = (
  4689. 388E596525AD948E0019842D /* Debug */,
  4690. 388E596625AD948E0019842D /* Release */,
  4691. );
  4692. defaultConfigurationIsVisible = 0;
  4693. defaultConfigurationName = Debug;
  4694. };
  4695. 388E596725AD948E0019842D /* Build configuration list for PBXNativeTarget "Trio" */ = {
  4696. isa = XCConfigurationList;
  4697. buildConfigurations = (
  4698. 388E596825AD948E0019842D /* Debug */,
  4699. 388E596925AD948E0019842D /* Release */,
  4700. );
  4701. defaultConfigurationIsVisible = 0;
  4702. defaultConfigurationName = Debug;
  4703. };
  4704. 38FCF3F425E9028E0078B0D1 /* Build configuration list for PBXNativeTarget "TrioTests" */ = {
  4705. isa = XCConfigurationList;
  4706. buildConfigurations = (
  4707. 38FCF3F525E9028E0078B0D1 /* Debug */,
  4708. 38FCF3F625E9028E0078B0D1 /* Release */,
  4709. );
  4710. defaultConfigurationIsVisible = 0;
  4711. defaultConfigurationName = Debug;
  4712. };
  4713. 6B1A8D292B14D91800E76752 /* Build configuration list for PBXNativeTarget "LiveActivityExtension" */ = {
  4714. isa = XCConfigurationList;
  4715. buildConfigurations = (
  4716. 6B1A8D2A2B14D91800E76752 /* Debug */,
  4717. 6B1A8D2B2B14D91800E76752 /* Release */,
  4718. );
  4719. defaultConfigurationIsVisible = 0;
  4720. defaultConfigurationName = Debug;
  4721. };
  4722. BD8207D32D2B42E80023339D /* Build configuration list for PBXNativeTarget "Trio Watch Complication Extension" */ = {
  4723. isa = XCConfigurationList;
  4724. buildConfigurations = (
  4725. BD8207D02D2B42E80023339D /* Debug */,
  4726. BD8207D12D2B42E80023339D /* Release */,
  4727. );
  4728. defaultConfigurationIsVisible = 0;
  4729. defaultConfigurationName = Debug;
  4730. };
  4731. BDFF79A02D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch App" */ = {
  4732. isa = XCConfigurationList;
  4733. buildConfigurations = (
  4734. BDFF79A12D25AA890016C40C /* Debug */,
  4735. BDFF79A22D25AA890016C40C /* Release */,
  4736. );
  4737. defaultConfigurationIsVisible = 0;
  4738. defaultConfigurationName = Debug;
  4739. };
  4740. BDFF79A32D25AA890016C40C /* Build configuration list for PBXNativeTarget "Trio Watch AppTests" */ = {
  4741. isa = XCConfigurationList;
  4742. buildConfigurations = (
  4743. BDFF79A42D25AA890016C40C /* Debug */,
  4744. BDFF79A52D25AA890016C40C /* Release */,
  4745. );
  4746. defaultConfigurationIsVisible = 0;
  4747. defaultConfigurationName = Debug;
  4748. };
  4749. /* End XCConfigurationList section */
  4750. /* Begin XCRemoteSwiftPackageReference section */
  4751. 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */ = {
  4752. isa = XCRemoteSwiftPackageReference;
  4753. repositoryURL = "https://github.com/Swinject/Swinject";
  4754. requirement = {
  4755. kind = upToNextMajorVersion;
  4756. minimumVersion = 2.7.1;
  4757. };
  4758. };
  4759. 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */ = {
  4760. isa = XCRemoteSwiftPackageReference;
  4761. repositoryURL = "https://github.com/apple/swift-algorithms";
  4762. requirement = {
  4763. kind = upToNextMajorVersion;
  4764. minimumVersion = 0.0.3;
  4765. };
  4766. };
  4767. 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */ = {
  4768. isa = XCRemoteSwiftPackageReference;
  4769. repositoryURL = "https://github.com/malcommac/SwiftDate";
  4770. requirement = {
  4771. kind = upToNextMajorVersion;
  4772. minimumVersion = 6.3.1;
  4773. };
  4774. };
  4775. 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */ = {
  4776. isa = XCRemoteSwiftPackageReference;
  4777. repositoryURL = "https://github.com/SwiftKickMobile/SwiftMessages";
  4778. requirement = {
  4779. kind = upToNextMajorVersion;
  4780. minimumVersion = 9.0.0;
  4781. };
  4782. };
  4783. B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */ = {
  4784. isa = XCRemoteSwiftPackageReference;
  4785. repositoryURL = "https://github.com/maxkonovalov/MKRingProgressView.git";
  4786. requirement = {
  4787. branch = master;
  4788. kind = branch;
  4789. };
  4790. };
  4791. CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */ = {
  4792. isa = XCRemoteSwiftPackageReference;
  4793. repositoryURL = "https://github.com/ivanschuetz/SwiftCharts.git";
  4794. requirement = {
  4795. branch = master;
  4796. kind = branch;
  4797. };
  4798. };
  4799. /* End XCRemoteSwiftPackageReference section */
  4800. /* Begin XCSwiftPackageProductDependency section */
  4801. 3811DE0F25C9D37700A708ED /* Swinject */ = {
  4802. isa = XCSwiftPackageProductDependency;
  4803. package = 3811DE0E25C9D37700A708ED /* XCRemoteSwiftPackageReference "Swinject" */;
  4804. productName = Swinject;
  4805. };
  4806. 3833B46C26012030003021B3 /* Algorithms */ = {
  4807. isa = XCSwiftPackageProductDependency;
  4808. package = 3833B46B26012030003021B3 /* XCRemoteSwiftPackageReference "swift-algorithms" */;
  4809. productName = Algorithms;
  4810. };
  4811. 38B17B6525DD90E0005CAE3D /* SwiftDate */ = {
  4812. isa = XCSwiftPackageProductDependency;
  4813. package = 38B17B6425DD90E0005CAE3D /* XCRemoteSwiftPackageReference "SwiftDate" */;
  4814. productName = SwiftDate;
  4815. };
  4816. 38DF1788276FC8C400B3528F /* SwiftMessages */ = {
  4817. isa = XCSwiftPackageProductDependency;
  4818. package = 38DF1787276FC8C300B3528F /* XCRemoteSwiftPackageReference "SwiftMessages" */;
  4819. productName = SwiftMessages;
  4820. };
  4821. B958F1B62BA0711600484851 /* MKRingProgressView */ = {
  4822. isa = XCSwiftPackageProductDependency;
  4823. package = B958F1B52BA0711600484851 /* XCRemoteSwiftPackageReference "MKRingProgressView" */;
  4824. productName = MKRingProgressView;
  4825. };
  4826. CEB434FC28B90B7C00B70274 /* SwiftCharts */ = {
  4827. isa = XCSwiftPackageProductDependency;
  4828. package = CEB434FB28B90B7C00B70274 /* XCRemoteSwiftPackageReference "SwiftCharts" */;
  4829. productName = SwiftCharts;
  4830. };
  4831. /* End XCSwiftPackageProductDependency section */
  4832. /* Begin XCVersionGroup section */
  4833. DDD1631D2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodeld */ = {
  4834. isa = XCVersionGroup;
  4835. children = (
  4836. DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */,
  4837. );
  4838. currentVersion = DDD1631E2C4C6F6900CD525A /* TrioCoreDataPersistentContainer.xcdatamodel */;
  4839. path = TrioCoreDataPersistentContainer.xcdatamodeld;
  4840. sourceTree = "<group>";
  4841. versionGroupType = wrapper.xcdatamodel;
  4842. };
  4843. /* End XCVersionGroup section */
  4844. };
  4845. rootObject = 388E595025AD948C0019842D /* Project object */;
  4846. }