project.pbxproj 248 KB

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