project.pbxproj 208 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 70;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3F1335F351590E573D8E6962 /* Pods_LoopFollow.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7D55B42A22051DAD69E89D0 /* Pods_LoopFollow.framework */; };
  10. 654132E72E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654132E62E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift */; };
  11. 654132EA2E19F24800BDBE08 /* TOTPGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654132E92E19F24800BDBE08 /* TOTPGenerator.swift */; };
  12. 654134182E1DC09700BDBE08 /* OverridePresetsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654134172E1DC09700BDBE08 /* OverridePresetsView.swift */; };
  13. 6541341A2E1DC27900BDBE08 /* OverridePresetData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 654134192E1DC27900BDBE08 /* OverridePresetData.swift */; };
  14. 6541341C2E1DC28000BDBE08 /* DateExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6541341B2E1DC28000BDBE08 /* DateExtensions.swift */; };
  15. 656F8C102E49F36F0008DC1D /* QRCodeDisplayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656F8C0F2E49F36F0008DC1D /* QRCodeDisplayView.swift */; };
  16. 656F8C122E49F3780008DC1D /* QRCodeGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656F8C112E49F3780008DC1D /* QRCodeGenerator.swift */; };
  17. 656F8C142E49F3D20008DC1D /* RemoteCommandSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 656F8C132E49F3D20008DC1D /* RemoteCommandSettings.swift */; };
  18. 657F98182F043D8100F732BD /* HomeContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 657F98172F043D8100F732BD /* HomeContentView.swift */; };
  19. 657F99E92F0BC81500F732BD /* OTPSecureMessenger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 657F99E82F0BC81500F732BD /* OTPSecureMessenger.swift */; };
  20. 6584B1012E4A263900135D4D /* TOTPService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6584B1002E4A263900135D4D /* TOTPService.swift */; };
  21. 6589CC622E9E7D1600BB18FE /* ImportExportSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC532E9E7D1600BB18FE /* ImportExportSettingsView.swift */; };
  22. 6589CC632E9E7D1600BB18FE /* GeneralSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5D2E9E7D1600BB18FE /* GeneralSettingsView.swift */; };
  23. 6589CC642E9E7D1600BB18FE /* ContactSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC592E9E7D1600BB18FE /* ContactSettingsView.swift */; };
  24. 6589CC652E9E7D1600BB18FE /* DexcomSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5C2E9E7D1600BB18FE /* DexcomSettingsViewModel.swift */; };
  25. 6589CC662E9E7D1600BB18FE /* AdvancedSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC562E9E7D1600BB18FE /* AdvancedSettingsView.swift */; };
  26. 6589CC672E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC542E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift */; };
  27. 6589CC682E9E7D1600BB18FE /* ExportableSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC522E9E7D1600BB18FE /* ExportableSettings.swift */; };
  28. 6589CC692E9E7D1600BB18FE /* ContactSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5A2E9E7D1600BB18FE /* ContactSettingsViewModel.swift */; };
  29. 6589CC6A2E9E7D1600BB18FE /* DexcomSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5B2E9E7D1600BB18FE /* DexcomSettingsView.swift */; };
  30. 6589CC6B2E9E7D1600BB18FE /* TabCustomizationModal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC602E9E7D1600BB18FE /* TabCustomizationModal.swift */; };
  31. 6589CC6C2E9E7D1600BB18FE /* GraphSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5E2E9E7D1600BB18FE /* GraphSettingsView.swift */; };
  32. 6589CC6D2E9E7D1600BB18FE /* CalendarSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC582E9E7D1600BB18FE /* CalendarSettingsView.swift */; };
  33. 6589CC6E2E9E7D1600BB18FE /* SettingsMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC5F2E9E7D1600BB18FE /* SettingsMenuView.swift */; };
  34. 6589CC6F2E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC572E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift */; };
  35. 6589CC712E9E814F00BB18FE /* AlarmSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC702E9E814F00BB18FE /* AlarmSelectionView.swift */; };
  36. 6589CC752E9EAFB700BB18FE /* SettingsMigrationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6589CC742E9EAFB700BB18FE /* SettingsMigrationManager.swift */; };
  37. 6584B1012E4A263900135D4D /* TOTPService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6584B1002E4A263900135D4D /* TOTPService.swift */; };
  38. 65E153C32E4BB69100693A4F /* URLTokenValidationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E153C22E4BB69100693A4F /* URLTokenValidationView.swift */; };
  39. 65E8A2862E44B0300065037B /* VolumeButtonHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E8A2852E44B0300065037B /* VolumeButtonHandler.swift */; };
  40. DD0247592DB2E89600FCADF6 /* AlarmCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0247582DB2E89600FCADF6 /* AlarmCondition.swift */; };
  41. DD0247712DB4337700FCADF6 /* BuildExpireCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD02475B2DB2E8FB00FCADF6 /* BuildExpireCondition.swift */; };
  42. DD026E592EA2C8A200A39CB5 /* InsulinPrecisionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD026E582EA2C8A200A39CB5 /* InsulinPrecisionManager.swift */; };
  43. DD026E5B2EA2C9C300A39CB5 /* InsulinFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD026E5A2EA2C9C300A39CB5 /* InsulinFormatter.swift */; };
  44. DD0650A92DCA8A10004D3B41 /* AlarmBGSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650A82DCA8A10004D3B41 /* AlarmBGSection.swift */; };
  45. DD0650EB2DCE8385004D3B41 /* LowBGCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650EA2DCE8385004D3B41 /* LowBGCondition.swift */; };
  46. DD0650ED2DCE9371004D3B41 /* HighBgAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650EC2DCE9371004D3B41 /* HighBgAlarmEditor.swift */; };
  47. DD0650EF2DCE96FF004D3B41 /* HighBGCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650EE2DCE96FF004D3B41 /* HighBGCondition.swift */; };
  48. DD0650F12DCE9A9E004D3B41 /* MissedReadingCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F02DCE9A9E004D3B41 /* MissedReadingCondition.swift */; };
  49. DD0650F32DCE9B3D004D3B41 /* MissedReadingEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F22DCE9B3D004D3B41 /* MissedReadingEditor.swift */; };
  50. DD0650F52DCF303F004D3B41 /* AlarmStepperSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F42DCF303F004D3B41 /* AlarmStepperSection.swift */; };
  51. DD0650F72DCFDA26004D3B41 /* InfoBanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F62DCFDA26004D3B41 /* InfoBanner.swift */; };
  52. DD0650F92DCFE7BE004D3B41 /* FastDropAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0650F82DCFE7BE004D3B41 /* FastDropAlarmEditor.swift */; };
  53. DD07B5C929E2F9C400C6A635 /* NightscoutUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD07B5C829E2F9C400C6A635 /* NightscoutUtils.swift */; };
  54. DD0B9D562DE1EC8A0090C337 /* AlarmType+Snooze.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0B9D552DE1EC8A0090C337 /* AlarmType+Snooze.swift */; };
  55. DD0B9D582DE1F3B20090C337 /* AlarmType+canAcknowledge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0B9D572DE1F3B20090C337 /* AlarmType+canAcknowledge.swift */; };
  56. DD0C0C602C415B9D00DBADDF /* ProfileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C5F2C415B9D00DBADDF /* ProfileManager.swift */; };
  57. DD0C0C622C4175FD00DBADDF /* NSProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C612C4175FD00DBADDF /* NSProfile.swift */; };
  58. DD0C0C642C45A59400DBADDF /* HKUnit+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C632C45A59400DBADDF /* HKUnit+Extensions.swift */; };
  59. DD0C0C662C46E54C00DBADDF /* InfoDataSeparator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C652C46E54C00DBADDF /* InfoDataSeparator.swift */; };
  60. DD0C0C682C48529400DBADDF /* Metric.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C672C48529400DBADDF /* Metric.swift */; };
  61. DD0C0C6B2C48562000DBADDF /* InsulinMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C6A2C48562000DBADDF /* InsulinMetric.swift */; };
  62. DD0C0C6D2C48606200DBADDF /* CarbMetric.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C6C2C48606200DBADDF /* CarbMetric.swift */; };
  63. DD0C0C702C4AFFE800DBADDF /* RemoteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C6F2C4AFFE800DBADDF /* RemoteViewController.swift */; };
  64. DD0C0C722C4B000800DBADDF /* TrioNightscoutRemoteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0C0C712C4B000800DBADDF /* TrioNightscoutRemoteView.swift */; };
  65. DD12D4852E1705D9004E0112 /* AlarmViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD12D4842E1705D9004E0112 /* AlarmViewController.swift */; };
  66. DD12D4872E1705E6004E0112 /* AlarmsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD12D4862E1705E6004E0112 /* AlarmsContainerView.swift */; };
  67. DD13BC752C3FD6210062313B /* InfoType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD13BC742C3FD6200062313B /* InfoType.swift */; };
  68. DD13BC772C3FD64E0062313B /* InfoData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD13BC762C3FD64E0062313B /* InfoData.swift */; };
  69. DD13BC792C3FE63A0062313B /* InfoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD13BC782C3FE63A0062313B /* InfoManager.swift */; };
  70. DD16AF0D2C98485400FB655A /* SecureStorageValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD16AF0C2C98485400FB655A /* SecureStorageValue.swift */; };
  71. DD16AF0F2C99592F00FB655A /* HKQuantityInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD16AF0E2C99592F00FB655A /* HKQuantityInputView.swift */; };
  72. DD16AF112C997B4600FB655A /* LoadingButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD16AF102C997B4600FB655A /* LoadingButtonView.swift */; };
  73. DD1D52B92E1EB5DC00432050 /* TabPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1D52B82E1EB5DC00432050 /* TabPosition.swift */; };
  74. DD1D52BB2E1EB60B00432050 /* MoreMenuViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1D52BA2E1EB60B00432050 /* MoreMenuViewController.swift */; };
  75. DD1D52C02E4C100000000001 /* AppearanceMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1D52BF2E4C100000000001 /* AppearanceMode.swift */; };
  76. DD2C2E4F2D3B8AF1006413A5 /* NightscoutSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2C2E4E2D3B8AEC006413A5 /* NightscoutSettingsView.swift */; };
  77. DD2C2E512D3B8B0C006413A5 /* NightscoutSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2C2E502D3B8B0B006413A5 /* NightscoutSettingsViewModel.swift */; };
  78. DD485F142E454B2600CE8CBF /* SecureMessenger.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD485F132E454B2600CE8CBF /* SecureMessenger.swift */; };
  79. DD485F162E46631000CE8CBF /* CryptoSwift in Frameworks */ = {isa = PBXBuildFile; productRef = DD485F152E46631000CE8CBF /* CryptoSwift */; };
  80. DD4878032C7B297E0048F05C /* StorageValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878022C7B297E0048F05C /* StorageValue.swift */; };
  81. DD4878052C7B2C970048F05C /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878042C7B2C970048F05C /* Storage.swift */; };
  82. DD4878082C7B30BF0048F05C /* RemoteSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878072C7B30BF0048F05C /* RemoteSettingsView.swift */; };
  83. DD48780A2C7B30D40048F05C /* RemoteSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878092C7B30D40048F05C /* RemoteSettingsViewModel.swift */; };
  84. DD48780E2C7B74A40048F05C /* TrioRemoteControlViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48780D2C7B74A40048F05C /* TrioRemoteControlViewModel.swift */; };
  85. DD4878102C7B74BF0048F05C /* TrioRemoteControlView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48780F2C7B74BF0048F05C /* TrioRemoteControlView.swift */; };
  86. DD4878132C7B750D0048F05C /* TempTargetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878122C7B750D0048F05C /* TempTargetView.swift */; };
  87. DD4878152C7B75230048F05C /* MealView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878142C7B75230048F05C /* MealView.swift */; };
  88. DD4878172C7B75350048F05C /* BolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878162C7B75350048F05C /* BolusView.swift */; };
  89. DD4878192C7C56D60048F05C /* TrioNightscoutRemoteController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4878182C7C56D60048F05C /* TrioNightscoutRemoteController.swift */; };
  90. DD48781C2C7DAF140048F05C /* SwiftJWT in Frameworks */ = {isa = PBXBuildFile; productRef = DD48781B2C7DAF140048F05C /* SwiftJWT */; };
  91. DD48781E2C7DAF2F0048F05C /* PushNotificationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48781D2C7DAF2F0048F05C /* PushNotificationManager.swift */; };
  92. DD4878202C7DAF890048F05C /* PushMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD48781F2C7DAF890048F05C /* PushMessage.swift */; };
  93. DD493AD52ACF2109009A6922 /* ResumePump.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AD42ACF2109009A6922 /* ResumePump.swift */; };
  94. DD493AD72ACF2139009A6922 /* SuspendPump.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AD62ACF2139009A6922 /* SuspendPump.swift */; };
  95. DD493AD92ACF2171009A6922 /* Carbs.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AD82ACF2171009A6922 /* Carbs.swift */; };
  96. DD493ADB2ACF21A3009A6922 /* Bolus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493ADA2ACF21A3009A6922 /* Bolus.swift */; };
  97. DD493ADD2ACF21E0009A6922 /* Basals.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493ADC2ACF21E0009A6922 /* Basals.swift */; };
  98. DD493ADF2ACF22BB009A6922 /* SAge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493ADE2ACF22BB009A6922 /* SAge.swift */; };
  99. DD493AE12ACF22FE009A6922 /* Profile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE02ACF22FE009A6922 /* Profile.swift */; };
  100. DD493AE32ACF2358009A6922 /* CAge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE22ACF2358009A6922 /* CAge.swift */; };
  101. DD493AE52ACF2383009A6922 /* Treatments.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE42ACF2383009A6922 /* Treatments.swift */; };
  102. DD493AE72ACF23CF009A6922 /* DeviceStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE62ACF23CF009A6922 /* DeviceStatus.swift */; };
  103. DD493AE92ACF2445009A6922 /* BGData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD493AE82ACF2445009A6922 /* BGData.swift */; };
  104. DD4A407E2E6AFEE6007B318B /* AuthService.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4A407D2E6AFEE6007B318B /* AuthService.swift */; };
  105. DD4AFB3B2DB55CB600BB593F /* TimeOfDay.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB3A2DB55CB600BB593F /* TimeOfDay.swift */; };
  106. DD4AFB3D2DB55D2900BB593F /* AlarmConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB3C2DB55D2900BB593F /* AlarmConfiguration.swift */; };
  107. DD4AFB492DB576C200BB593F /* AlarmSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB482DB576C200BB593F /* AlarmSettingsView.swift */; };
  108. DD4AFB612DB68BBC00BB593F /* AlarmListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB602DB68BBC00BB593F /* AlarmListView.swift */; };
  109. DD4AFB672DB68C5500BB593F /* UUID+Identifiable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB662DB68C5500BB593F /* UUID+Identifiable.swift */; };
  110. DD4AFB6B2DB6BF2A00BB593F /* Binding+Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4AFB6A2DB6BF2A00BB593F /* Binding+Optional.swift */; };
  111. DD50C7552D0862770057AE6F /* ContactImageUpdater.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD50C7542D0862770057AE6F /* ContactImageUpdater.swift */; };
  112. DD5334212C60EBEE00062F9D /* InsulinCartridgeChange.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334202C60EBEE00062F9D /* InsulinCartridgeChange.swift */; };
  113. DD5334232C60ED3600062F9D /* IAge.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334222C60ED3600062F9D /* IAge.swift */; };
  114. DD5334272C61668800062F9D /* InfoDisplaySettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334262C61668700062F9D /* InfoDisplaySettingsViewModel.swift */; };
  115. DD5334292C6166A500062F9D /* InfoDisplaySettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334282C6166A500062F9D /* InfoDisplaySettingsView.swift */; };
  116. DD5334B02D1447C500CDD6EA /* BLEManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5334AF2D1447C500CDD6EA /* BLEManager.swift */; };
  117. DD5817172D2710E90041FB98 /* BLEDeviceSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5817162D2710E50041FB98 /* BLEDeviceSelectionView.swift */; };
  118. DD58171A2D299EF80041FB98 /* DexcomHeartbeatBluetoothDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5817192D299EF40041FB98 /* DexcomHeartbeatBluetoothDevice.swift */; };
  119. DD58171C2D299F940041FB98 /* BluetoothDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD58171B2D299F8D0041FB98 /* BluetoothDevice.swift */; };
  120. DD58171E2D299FCA0041FB98 /* BluetoothDeviceDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD58171D2D299FC50041FB98 /* BluetoothDeviceDelegate.swift */; };
  121. DD5DA27C2DC930D6003D44FC /* GlucoseValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5DA27B2DC930D6003D44FC /* GlucoseValue.swift */; };
  122. DD608A082C1F584900F91132 /* DeviceStatusLoop.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD608A072C1F584900F91132 /* DeviceStatusLoop.swift */; };
  123. DD608A0A2C23593900F91132 /* SMB.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD608A092C23593900F91132 /* SMB.swift */; };
  124. DD608A0C2C27415C00F91132 /* BackgroundAlertManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD608A0B2C27415C00F91132 /* BackgroundAlertManager.swift */; };
  125. DD6A935E2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6A935D2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift */; };
  126. DD7B0D442D730A3B0063DCB6 /* CycleHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7B0D432D730A320063DCB6 /* CycleHelper.swift */; };
  127. DD7E19842ACDA50C00DBD158 /* Overrides.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19832ACDA50C00DBD158 /* Overrides.swift */; };
  128. DD7E19862ACDA59700DBD158 /* BGCheck.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19852ACDA59700DBD158 /* BGCheck.swift */; };
  129. DD7E19882ACDA5DA00DBD158 /* Notes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19872ACDA5DA00DBD158 /* Notes.swift */; };
  130. DD7E198A2ACDA62600DBD158 /* SensorStart.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7E19892ACDA62600DBD158 /* SensorStart.swift */; };
  131. DD7F4B9D2DD1EAE500D449E9 /* AlarmAudioSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4B9C2DD1EAE500D449E9 /* AlarmAudioSection.swift */; };
  132. DD7F4B9F2DD1F92700D449E9 /* AlarmActiveSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4B9E2DD1F92700D449E9 /* AlarmActiveSection.swift */; };
  133. DD7F4BA12DD2193F00D449E9 /* AlarmSnoozeSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4BA02DD2193F00D449E9 /* AlarmSnoozeSection.swift */; };
  134. DD7F4BC52DD3CE0700D449E9 /* AlarmBGLimitSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4BC42DD3CE0700D449E9 /* AlarmBGLimitSection.swift */; };
  135. DD7F4BC72DD473A600D449E9 /* FastDropCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4BC62DD473A600D449E9 /* FastDropCondition.swift */; };
  136. DD7F4C032DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C022DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift */; };
  137. DD7F4C052DD4BBE200D449E9 /* NotLoopingCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C042DD4BBE200D449E9 /* NotLoopingCondition.swift */; };
  138. DD7F4C072DD5042F00D449E9 /* OverrideStartAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C062DD5042F00D449E9 /* OverrideStartAlarmEditor.swift */; };
  139. DD7F4C092DD504A700D449E9 /* OverrideStartCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C082DD504A700D449E9 /* OverrideStartCondition.swift */; };
  140. DD7F4C0B2DD51C5500D449E9 /* OverrideEndCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C0A2DD51C5500D449E9 /* OverrideEndCondition.swift */; };
  141. DD7F4C0D2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C0C2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift */; };
  142. DD7F4C0F2DD51EC200D449E9 /* TempTargetStartCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C0E2DD51EC200D449E9 /* TempTargetStartCondition.swift */; };
  143. DD7F4C112DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C102DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift */; };
  144. DD7F4C132DD51FD500D449E9 /* TempTargetEndCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C122DD51FD500D449E9 /* TempTargetEndCondition.swift */; };
  145. DD7F4C152DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C142DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift */; };
  146. DD7F4C172DD63FA700D449E9 /* RecBolusCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C162DD63FA700D449E9 /* RecBolusCondition.swift */; };
  147. DD7F4C192DD63FD500D449E9 /* RecBolusAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C182DD63FD500D449E9 /* RecBolusAlarmEditor.swift */; };
  148. DD7F4C1B2DD6501D00D449E9 /* COBCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C1A2DD6501D00D449E9 /* COBCondition.swift */; };
  149. DD7F4C1D2DD650D500D449E9 /* COBAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C1C2DD650D500D449E9 /* COBAlarmEditor.swift */; };
  150. DD7F4C1F2DD6648B00D449E9 /* FastRiseCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C1E2DD6648B00D449E9 /* FastRiseCondition.swift */; };
  151. DD7F4C212DD66BB200D449E9 /* FastRiseAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C202DD66BB100D449E9 /* FastRiseAlarmEditor.swift */; };
  152. DD7F4C232DD7A62200D449E9 /* AlarmType+SortDirection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C222DD7A62200D449E9 /* AlarmType+SortDirection.swift */; };
  153. DD7F4C252DD7B20700D449E9 /* AlarmType+timeUnit.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7F4C242DD7B20700D449E9 /* AlarmType+timeUnit.swift */; };
  154. DD7FFAFD2A72953000C3A304 /* EKEventStore+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7FFAFC2A72953000C3A304 /* EKEventStore+Extensions.swift */; };
  155. DD8316442DE47CA9004467AA /* BGPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8316432DE47CA9004467AA /* BGPicker.swift */; };
  156. DD8316482DE49EE5004467AA /* Storage+Migrate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8316472DE49EE5004467AA /* Storage+Migrate.swift */; };
  157. DD83164A2DE4C504004467AA /* SettingsStepperRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8316492DE4C504004467AA /* SettingsStepperRow.swift */; };
  158. DD83164C2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD83164B2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift */; };
  159. DD85E9952D739CFE001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD85E9942D739CED001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift */; };
  160. DD91E4DD2BDEC3F8002D9E97 /* GlucoseConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */; };
  161. DD98F54424BCEFEE0007425A /* ShareClientExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD98F54324BCEFEE0007425A /* ShareClientExtension.swift */; };
  162. DD9ACA042D32821400415D8A /* DeviceStatusTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA032D32821200415D8A /* DeviceStatusTask.swift */; };
  163. DD9ACA062D32AF7900415D8A /* TreatmentsTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA052D32AF6E00415D8A /* TreatmentsTask.swift */; };
  164. DD9ACA082D32F68B00415D8A /* BGTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA072D32F68900415D8A /* BGTask.swift */; };
  165. DD9ACA0A2D33095600415D8A /* MinAgoTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA092D33095500415D8A /* MinAgoTask.swift */; };
  166. DD9ACA0C2D33BB8600415D8A /* CalendarTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA0B2D33BB8400415D8A /* CalendarTask.swift */; };
  167. DD9ACA0E2D340BFF00415D8A /* AlarmTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA0D2D340BFE00415D8A /* AlarmTask.swift */; };
  168. DD9ACA102D34129200415D8A /* Task.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ACA0F2D34128600415D8A /* Task.swift */; };
  169. DD9ED0C82D355244000D2A63 /* LogViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0C72D35523F000D2A63 /* LogViewModel.swift */; };
  170. DD9ED0CA2D355257000D2A63 /* LogView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0C92D355256000D2A63 /* LogView.swift */; };
  171. DD9ED0CC2D35526E000D2A63 /* SearchBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0CB2D35526E000D2A63 /* SearchBar.swift */; };
  172. DD9ED0CE2D35587A000D2A63 /* LogEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9ED0CD2D355879000D2A63 /* LogEntry.swift */; };
  173. DDA9ACA82D6A66E200E6F1A9 /* ContactColorOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACA72D6A66DD00E6F1A9 /* ContactColorOption.swift */; };
  174. DDA9ACAA2D6A6B8300E6F1A9 /* ContactIncludeOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACA92D6A6B8200E6F1A9 /* ContactIncludeOption.swift */; };
  175. DDA9ACAC2D6B317100E6F1A9 /* ContactType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDA9ACAB2D6B316F00E6F1A9 /* ContactType.swift */; };
  176. DDAD162F2D2EF9830084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDAD162E2D2EF97C0084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift */; };
  177. DDB0AF522BB1A8BE00AFA48B /* BuildDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB0AF512BB1A8BE00AFA48B /* BuildDetails.swift */; };
  178. DDB0AF552BB1B24A00AFA48B /* BuildDetails.plist in Resources */ = {isa = PBXBuildFile; fileRef = DDB0AF542BB1B24A00AFA48B /* BuildDetails.plist */; };
  179. DDB9FC7B2DDB573F00EFAA76 /* IOBCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB9FC7A2DDB573F00EFAA76 /* IOBCondition.swift */; };
  180. DDB9FC7D2DDB575300EFAA76 /* IOBAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB9FC7C2DDB575300EFAA76 /* IOBAlarmEditor.swift */; };
  181. DDB9FC7F2DDB584500EFAA76 /* BolusEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB9FC7E2DDB584500EFAA76 /* BolusEntry.swift */; };
  182. DDBD19962DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDBD19952DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift */; };
  183. DDBE3ABD2CB5A961006B37DC /* OverrideView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDBE3ABC2CB5A961006B37DC /* OverrideView.swift */; };
  184. DDC6CA3D2DD7C6090060EE25 /* TemporaryCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA3C2DD7C6090060EE25 /* TemporaryCondition.swift */; };
  185. DDC6CA3F2DD7C6340060EE25 /* TemporaryAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA3E2DD7C6340060EE25 /* TemporaryAlarmEditor.swift */; };
  186. DDC6CA412DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA402DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift */; };
  187. DDC6CA432DD8CED20060EE25 /* SensorAgeCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA422DD8CED20060EE25 /* SensorAgeCondition.swift */; };
  188. DDC6CA452DD8D8E60060EE25 /* PumpChangeCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA442DD8D8E60060EE25 /* PumpChangeCondition.swift */; };
  189. DDC6CA472DD8D9010060EE25 /* PumpChangeAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA462DD8D9010060EE25 /* PumpChangeAlarmEditor.swift */; };
  190. DDC6CA492DD8E47A0060EE25 /* PumpVolumeCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA482DD8E47A0060EE25 /* PumpVolumeCondition.swift */; };
  191. DDC6CA4B2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC6CA4A2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift */; };
  192. DDC7E5152DBCFA7900EB1127 /* SnoozerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5132DBCE1B900EB1127 /* SnoozerViewController.swift */; };
  193. DDC7E5162DBCFA7F00EB1127 /* SnoozerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5122DBCE1B900EB1127 /* SnoozerView.swift */; };
  194. DDC7E5382DBD887400EB1127 /* isOnPhoneCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5372DBD887400EB1127 /* isOnPhoneCall.swift */; };
  195. DDC7E5422DBD8A1600EB1127 /* AlarmGeneralSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5392DBD8A1600EB1127 /* AlarmGeneralSection.swift */; };
  196. DDC7E5432DBD8A1600EB1127 /* SoundFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E53A2DBD8A1600EB1127 /* SoundFile.swift */; };
  197. DDC7E5442DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E53C2DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift */; };
  198. DDC7E5462DBD8A1600EB1127 /* LowBgAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E53E2DBD8A1600EB1127 /* LowBgAlarmEditor.swift */; };
  199. DDC7E5472DBD8A1600EB1127 /* AlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5402DBD8A1600EB1127 /* AlarmEditor.swift */; };
  200. DDC7E5CF2DC77C2000EB1127 /* SnoozerViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E5CE2DC77C2000EB1127 /* SnoozerViewModel.swift */; };
  201. DDCC3A4B2DDBB5E4006F1C10 /* BatteryCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A4A2DDBB5E4006F1C10 /* BatteryCondition.swift */; };
  202. DDCC3A502DDED000006F1C10 /* PumpBatteryCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A512DDED000006F1C10 /* PumpBatteryCondition.swift */; };
  203. DDCC3A4D2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A4C2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift */; };
  204. DDCC3A5B2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A5C2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift */; };
  205. DDCC3A4F2DDC5B54006F1C10 /* BatteryDropCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A4E2DDC5B54006F1C10 /* BatteryDropCondition.swift */; };
  206. DDCC3A542DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A532DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift */; };
  207. DDCC3A562DDC9617006F1C10 /* MissedBolusCondition.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A552DDC9617006F1C10 /* MissedBolusCondition.swift */; };
  208. DDCC3A582DDC9655006F1C10 /* MissedBolusAlarmEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A572DDC9655006F1C10 /* MissedBolusAlarmEditor.swift */; };
  209. DDCC3A5A2DDC988F006F1C10 /* CarbSample.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCC3A592DDC988F006F1C10 /* CarbSample.swift */; };
  210. DDCF979424C0D380002C9752 /* UIViewExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF979324C0D380002C9752 /* UIViewExtension.swift */; };
  211. DDCF9A802D85FD0B004DF4DD /* Alarm.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A7F2D85FD09004DF4DD /* Alarm.swift */; };
  212. DDCF9A822D85FD15004DF4DD /* AlarmType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A812D85FD14004DF4DD /* AlarmType.swift */; };
  213. DDCF9A882D85FD33004DF4DD /* AlarmData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A872D85FD33004DF4DD /* AlarmData.swift */; };
  214. DDCF9A8C2D86005E004DF4DD /* AlarmManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCF9A8B2D86005E004DF4DD /* AlarmManager.swift */; };
  215. DDCFCAF22B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = DDCFCAF12B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig */; };
  216. DDD10EFF2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10EFE2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift */; };
  217. DDD10F012C510C6B00D76A8E /* ObservableUserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F002C510C6B00D76A8E /* ObservableUserDefaults.swift */; };
  218. DDD10F032C518A6500D76A8E /* TreatmentResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F022C518A6500D76A8E /* TreatmentResponse.swift */; };
  219. DDD10F052C529DA200D76A8E /* ObservableValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F042C529DA200D76A8E /* ObservableValue.swift */; };
  220. DDD10F072C529DE800D76A8E /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F062C529DE800D76A8E /* Observable.swift */; };
  221. DDD10F0B2C54192A00D76A8E /* TemporaryTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD10F0A2C54192A00D76A8E /* TemporaryTarget.swift */; };
  222. DDDB86F12DF7223C00AADDAC /* DeleteAlarmSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDB86F02DF7223C00AADDAC /* DeleteAlarmSection.swift */; };
  223. DDDC01DD2E244B3100D9975C /* JWTManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDC01DC2E244B3100D9975C /* JWTManager.swift */; };
  224. DDDC31CC2E13A7DF009EA0F3 /* AddAlarmSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDC31CB2E13A7DF009EA0F3 /* AddAlarmSheet.swift */; };
  225. DDDC31CE2E13A811009EA0F3 /* AlarmTile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDC31CD2E13A811009EA0F3 /* AlarmTile.swift */; };
  226. DDDF6F492D479AF000884336 /* NoRemoteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDF6F482D479AEF00884336 /* NoRemoteView.swift */; };
  227. DDE69ED22C7256260013EAEC /* RemoteType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE69ED12C7256260013EAEC /* RemoteType.swift */; };
  228. DDE75D232DE5E505007C1FC1 /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D222DE5E505007C1FC1 /* Glyph.swift */; };
  229. DDE75D272DE5E539007C1FC1 /* ActionRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D262DE5E539007C1FC1 /* ActionRow.swift */; };
  230. DDE75D292DE5E56C007C1FC1 /* LinkRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D282DE5E56C007C1FC1 /* LinkRow.swift */; };
  231. DDE75D2B2DE5E613007C1FC1 /* NavigationRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D2A2DE5E613007C1FC1 /* NavigationRow.swift */; };
  232. DDE75D2D2DE71401007C1FC1 /* TogglableSecureInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE75D2C2DE71401007C1FC1 /* TogglableSecureInput.swift */; };
  233. DDEF503A2D31615000999A5D /* LogManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50392D31614200999A5D /* LogManager.swift */; };
  234. DDEF503C2D31BE2D00999A5D /* TaskScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF503B2D31BE2A00999A5D /* TaskScheduler.swift */; };
  235. DDEF503F2D32754F00999A5D /* ProfileTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF503E2D32754A00999A5D /* ProfileTask.swift */; };
  236. DDEF50402D479B8A00884336 /* LoopAPNSService.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF503F2D479B8A00884336 /* LoopAPNSService.swift */; };
  237. DDEF50422D479BAA00884336 /* LoopAPNSCarbsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50412D479BAA00884336 /* LoopAPNSCarbsView.swift */; };
  238. DDEF50432D479BBA00884336 /* LoopAPNSBolusView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50422D479BBA00884336 /* LoopAPNSBolusView.swift */; };
  239. DDEF50452D479BDA00884336 /* LoopAPNSRemoteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDEF50442D479BDA00884336 /* LoopAPNSRemoteView.swift */; };
  240. DDF2C0102BEFA991007A20E6 /* GitHubService.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF2C00F2BEFA991007A20E6 /* GitHubService.swift */; };
  241. DDF2C0122BEFB733007A20E6 /* AppVersionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF2C0112BEFB733007A20E6 /* AppVersionManager.swift */; };
  242. DDF2C0142BEFD468007A20E6 /* blacklisted-versions.json in Resources */ = {isa = PBXBuildFile; fileRef = DDF2C0132BEFD468007A20E6 /* blacklisted-versions.json */; };
  243. DDF699962C5582290058A8D9 /* TextFieldWithToolBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF699952C5582290058A8D9 /* TextFieldWithToolBar.swift */; };
  244. DDF699992C5AA3060058A8D9 /* TempTargetPresetManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF699982C5AA3060058A8D9 /* TempTargetPresetManager.swift */; };
  245. DDF6999B2C5AA32E0058A8D9 /* TempTargetPreset.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF6999A2C5AA32E0058A8D9 /* TempTargetPreset.swift */; };
  246. DDF6999E2C5AAA640058A8D9 /* ErrorMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF6999D2C5AAA640058A8D9 /* ErrorMessageView.swift */; };
  247. DDF9676E2AD08C6E00C5EB95 /* SiteChange.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF9676D2AD08C6E00C5EB95 /* SiteChange.swift */; };
  248. DDFD5C532CB167DA00D3FD68 /* TRCCommandType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFD5C522CB167DA00D3FD68 /* TRCCommandType.swift */; };
  249. DDFF3D7F2D1414A200BF9D9E /* BLEDevice.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D7E2D1414A200BF9D9E /* BLEDevice.swift */; };
  250. DDFF3D852D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D842D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift */; };
  251. DDFF3D872D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D862D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift */; };
  252. DDFF3D892D1429AB00BF9D9E /* BackgroundRefreshType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFF3D882D1429AB00BF9D9E /* BackgroundRefreshType.swift */; };
  253. FC16A97A24996673003D6245 /* NightScout.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A97924996673003D6245 /* NightScout.swift */; };
  254. FC16A97B249966A3003D6245 /* AlarmSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC7CE589248ABEA3001F83B8 /* AlarmSound.swift */; };
  255. FC16A97D24996747003D6245 /* SpeakBG.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A97C24996747003D6245 /* SpeakBG.swift */; };
  256. FC16A97F249969E2003D6245 /* Graphs.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A97E249969E2003D6245 /* Graphs.swift */; };
  257. FC16A98124996C07003D6245 /* DateTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC16A98024996C07003D6245 /* DateTime.swift */; };
  258. FC1BDD2B24A22650001B652C /* Stats.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1BDD2A24A22650001B652C /* Stats.swift */; };
  259. FC1BDD2D24A23204001B652C /* MainViewController+updateStats.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1BDD2C24A23204001B652C /* MainViewController+updateStats.swift */; };
  260. FC1BDD3224A2585C001B652C /* DataStructs.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1BDD2E24A232A3001B652C /* DataStructs.swift */; };
  261. FC3AE7B5249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = FC3AE7B3249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld */; };
  262. FC3CAB022493B6220068A152 /* BackgroundTaskAudio.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC688592489554800A0279D /* BackgroundTaskAudio.swift */; };
  263. FC5A5C3D2497B229009C550E /* Config.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = FC5A5C3C2497B229009C550E /* Config.xcconfig */; };
  264. FC7CE518248ABE37001F83B8 /* Siri_Alert_Calibration_Needed.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4A9248ABE2B001F83B8 /* Siri_Alert_Calibration_Needed.caf */; };
  265. FC7CE519248ABE37001F83B8 /* Rise_And_Shine.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AA248ABE2B001F83B8 /* Rise_And_Shine.caf */; };
  266. FC7CE51A248ABE37001F83B8 /* Jingle_All_The_Way.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AB248ABE2B001F83B8 /* Jingle_All_The_Way.caf */; };
  267. FC7CE51B248ABE37001F83B8 /* Thunder_Sound_FX.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AC248ABE2B001F83B8 /* Thunder_Sound_FX.caf */; };
  268. FC7CE51C248ABE37001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AD248ABE2B001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf */; };
  269. FC7CE51D248ABE37001F83B8 /* Not_Kiddin.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AE248ABE2B001F83B8 /* Not_Kiddin.caf */; };
  270. FC7CE51E248ABE37001F83B8 /* Computer_Magic.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4AF248ABE2B001F83B8 /* Computer_Magic.caf */; };
  271. FC7CE51F248ABE37001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B0248ABE2B001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf */; };
  272. FC7CE520248ABE37001F83B8 /* Burglar_Alarm_Siren_1.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B1248ABE2C001F83B8 /* Burglar_Alarm_Siren_1.caf */; };
  273. FC7CE521248ABE37001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B2248ABE2C001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf */; };
  274. FC7CE522248ABE37001F83B8 /* Signature_Corporate.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B3248ABE2C001F83B8 /* Signature_Corporate.caf */; };
  275. FC7CE523248ABE37001F83B8 /* Wake_Up_Will_You.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B4248ABE2C001F83B8 /* Wake_Up_Will_You.caf */; };
  276. FC7CE524248ABE37001F83B8 /* Marimba_Flutter_or_Shake.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B5248ABE2C001F83B8 /* Marimba_Flutter_or_Shake.caf */; };
  277. FC7CE525248ABE37001F83B8 /* Sci-Fi_Warning.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B6248ABE2C001F83B8 /* Sci-Fi_Warning.caf */; };
  278. FC7CE526248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_3.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B7248ABE2C001F83B8 /* Sci-Fi_Alarm_Loop_3.caf */; };
  279. FC7CE527248ABE37001F83B8 /* Alert_Tone_Ringtone_2.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B8248ABE2C001F83B8 /* Alert_Tone_Ringtone_2.caf */; };
  280. FC7CE528248ABE37001F83B8 /* Cartoon_Bounce_To_Ceiling.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4B9248ABE2D001F83B8 /* Cartoon_Bounce_To_Ceiling.caf */; };
  281. FC7CE529248ABE37001F83B8 /* Laser_Shoot.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BA248ABE2D001F83B8 /* Laser_Shoot.caf */; };
  282. FC7CE52A248ABE37001F83B8 /* Nightguard.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BB248ABE2D001F83B8 /* Nightguard.caf */; };
  283. FC7CE52B248ABE37001F83B8 /* Machine_Charge.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BC248ABE2D001F83B8 /* Machine_Charge.caf */; };
  284. FC7CE52C248ABE37001F83B8 /* Cuckoo_Clock.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BD248ABE2D001F83B8 /* Cuckoo_Clock.caf */; };
  285. FC7CE52D248ABE37001F83B8 /* Siri_Urgent_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BE248ABE2D001F83B8 /* Siri_Urgent_High_Glucose.caf */; };
  286. FC7CE52E248ABE37001F83B8 /* Cartoon_Villain_Horns.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4BF248ABE2D001F83B8 /* Cartoon_Villain_Horns.caf */; };
  287. FC7CE52F248ABE37001F83B8 /* Siri_Glucose_Rising_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C0248ABE2D001F83B8 /* Siri_Glucose_Rising_Fast.caf */; };
  288. FC7CE530248ABE37001F83B8 /* Dhol_Shuffleloop.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C1248ABE2E001F83B8 /* Dhol_Shuffleloop.caf */; };
  289. FC7CE531248ABE37001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C2248ABE2E001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf */; };
  290. FC7CE532248ABE37001F83B8 /* Siri_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C3248ABE2E001F83B8 /* Siri_High_Glucose.caf */; };
  291. FC7CE533248ABE37001F83B8 /* Ending_Reached.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C4248ABE2E001F83B8 /* Ending_Reached.caf */; };
  292. FC7CE534248ABE37001F83B8 /* Siri_Missed_Readings.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C5248ABE2E001F83B8 /* Siri_Missed_Readings.caf */; };
  293. FC7CE535248ABE37001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C6248ABE2E001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf */; };
  294. FC7CE536248ABE37001F83B8 /* Fly.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C7248ABE2E001F83B8 /* Fly.caf */; };
  295. FC7CE537248ABE37001F83B8 /* Open_Your_Eyes_And_See.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C8248ABE2E001F83B8 /* Open_Your_Eyes_And_See.caf */; };
  296. FC7CE538248ABE37001F83B8 /* 20ms-of-silence.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4C9248ABE2F001F83B8 /* 20ms-of-silence.caf */; };
  297. FC7CE539248ABE37001F83B8 /* Remembers_Me_Of_Asia.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CA248ABE2F001F83B8 /* Remembers_Me_Of_Asia.caf */; };
  298. FC7CE53A248ABE37001F83B8 /* Alarm_Clock.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CB248ABE2F001F83B8 /* Alarm_Clock.caf */; };
  299. FC7CE53B248ABE37001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CC248ABE2F001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf */; };
  300. FC7CE53C248ABE37001F83B8 /* Early_Sunrise.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CD248ABE2F001F83B8 /* Early_Sunrise.caf */; };
  301. FC7CE53D248ABE37001F83B8 /* 1-millisecond-of-silence.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CE248ABE2F001F83B8 /* 1-millisecond-of-silence.mp3 */; };
  302. FC7CE53E248ABE37001F83B8 /* Soft_Warm_Airy_Optimistic.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4CF248ABE30001F83B8 /* Soft_Warm_Airy_Optimistic.caf */; };
  303. FC7CE53F248ABE37001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D0248ABE30001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf */; };
  304. FC7CE540248ABE37001F83B8 /* Two_Turtle_Doves.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D1248ABE30001F83B8 /* Two_Turtle_Doves.caf */; };
  305. FC7CE541248ABE37001F83B8 /* Discreet.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D2248ABE30001F83B8 /* Discreet.caf */; };
  306. FC7CE542248ABE37001F83B8 /* Alien_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D3248ABE30001F83B8 /* Alien_Siren.caf */; };
  307. FC7CE543248ABE37001F83B8 /* Pager_Beeps.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D4248ABE30001F83B8 /* Pager_Beeps.caf */; };
  308. FC7CE544248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_1.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D5248ABE31001F83B8 /* Sci-Fi_Alarm_Loop_1.caf */; };
  309. FC7CE545248ABE37001F83B8 /* Indeed.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D6248ABE31001F83B8 /* Indeed.caf */; };
  310. FC7CE546248ABE37001F83B8 /* Cartoon_Uh_Oh.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D7248ABE31001F83B8 /* Cartoon_Uh_Oh.caf */; };
  311. FC7CE547248ABE37001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D8248ABE31001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf */; };
  312. FC7CE548248ABE37001F83B8 /* Store_Door_Chime.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4D9248ABE31001F83B8 /* Store_Door_Chime.caf */; };
  313. FC7CE549248ABE37001F83B8 /* Magical_Twinkle.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DA248ABE31001F83B8 /* Magical_Twinkle.caf */; };
  314. FC7CE54A248ABE37001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DB248ABE31001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf */; };
  315. FC7CE54B248ABE37001F83B8 /* Siri_Alert_Device_Muted.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DC248ABE32001F83B8 /* Siri_Alert_Device_Muted.caf */; };
  316. FC7CE54C248ABE37001F83B8 /* Emergency_Alarm_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DD248ABE32001F83B8 /* Emergency_Alarm_Siren.caf */; };
  317. FC7CE54D248ABE37001F83B8 /* Analog_Watch_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DE248ABE32001F83B8 /* Analog_Watch_Alarm.caf */; };
  318. FC7CE54E248ABE37001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4DF248ABE32001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf */; };
  319. FC7CE54F248ABE37001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E0248ABE32001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf */; };
  320. FC7CE550248ABE37001F83B8 /* Siri_Alert_High_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E1248ABE32001F83B8 /* Siri_Alert_High_Glucose.caf */; };
  321. FC7CE551248ABE37001F83B8 /* Marimba_Descend.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E2248ABE32001F83B8 /* Marimba_Descend.caf */; };
  322. FC7CE552248ABE37001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E3248ABE32001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf */; };
  323. FC7CE553248ABE37001F83B8 /* Sci-Fi_Eerie_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E4248ABE32001F83B8 /* Sci-Fi_Eerie_Alarm.caf */; };
  324. FC7CE554248ABE37001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E5248ABE32001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf */; };
  325. FC7CE555248ABE37001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E6248ABE32001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf */; };
  326. FC7CE556248ABE37001F83B8 /* Sci-Fi_Console_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E7248ABE33001F83B8 /* Sci-Fi_Console_Alarm.caf */; };
  327. FC7CE557248ABE37001F83B8 /* Soft_Marimba_Pad_Positive.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E8248ABE33001F83B8 /* Soft_Marimba_Pad_Positive.caf */; };
  328. FC7CE558248ABE37001F83B8 /* Rush.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4E9248ABE33001F83B8 /* Rush.caf */; };
  329. FC7CE559248ABE37001F83B8 /* Martian_Scanner.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EA248ABE33001F83B8 /* Martian_Scanner.caf */; };
  330. FC7CE55A248ABE37001F83B8 /* Alert_Tone_Ringtone_1.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EB248ABE33001F83B8 /* Alert_Tone_Ringtone_1.caf */; };
  331. FC7CE55B248ABE37001F83B8 /* 500ms-of-silence.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EC248ABE33001F83B8 /* 500ms-of-silence.mp3 */; };
  332. FC7CE55C248ABE37001F83B8 /* Big_Clock_Ticking.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4ED248ABE33001F83B8 /* Big_Clock_Ticking.caf */; };
  333. FC7CE55D248ABE37001F83B8 /* Metallic.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EE248ABE33001F83B8 /* Metallic.caf */; };
  334. FC7CE55E248ABE37001F83B8 /* Cell_Phone_Ring_Tone.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4EF248ABE33001F83B8 /* Cell_Phone_Ring_Tone.caf */; };
  335. FC7CE55F248ABE37001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F0248ABE33001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf */; };
  336. FC7CE560248ABE37001F83B8 /* Burglar_Alarm_Siren_2.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F1248ABE33001F83B8 /* Burglar_Alarm_Siren_2.caf */; };
  337. FC7CE561248ABE37001F83B8 /* Wrong_Answer.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F2248ABE34001F83B8 /* Wrong_Answer.caf */; };
  338. FC7CE562248ABE37001F83B8 /* Soft_Warm_Airy_Reassuring.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F3248ABE34001F83B8 /* Soft_Warm_Airy_Reassuring.caf */; };
  339. FC7CE563248ABE37001F83B8 /* CSFX-2_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F4248ABE34001F83B8 /* CSFX-2_Alarm.caf */; };
  340. FC7CE564248ABE37001F83B8 /* Siri_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F5248ABE34001F83B8 /* Siri_Low_Glucose.caf */; };
  341. FC7CE565248ABE37001F83B8 /* Sci-Fi_Spaceship_Message.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F6248ABE34001F83B8 /* Sci-Fi_Spaceship_Message.caf */; };
  342. FC7CE566248ABE37001F83B8 /* In_A_Hurry.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F7248ABE34001F83B8 /* In_A_Hurry.caf */; };
  343. FC7CE567248ABE37001F83B8 /* Orchestral_Horns.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F8248ABE34001F83B8 /* Orchestral_Horns.caf */; };
  344. FC7CE568248ABE37001F83B8 /* Sci-Fi_Engine_Shut_Down.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4F9248ABE34001F83B8 /* Sci-Fi_Engine_Shut_Down.caf */; };
  345. FC7CE569248ABE37001F83B8 /* silence-1sec.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FA248ABE34001F83B8 /* silence-1sec.mp3 */; };
  346. FC7CE56A248ABE37001F83B8 /* Cartoon_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FB248ABE34001F83B8 /* Cartoon_Siren.caf */; };
  347. FC7CE56B248ABE37001F83B8 /* Cartoon_Ascend_Then_Descend.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FC248ABE34001F83B8 /* Cartoon_Ascend_Then_Descend.caf */; };
  348. FC7CE56C248ABE37001F83B8 /* Time_Has_Come.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FD248ABE35001F83B8 /* Time_Has_Come.caf */; };
  349. FC7CE56D248ABE37001F83B8 /* Siri_Alert_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FE248ABE35001F83B8 /* Siri_Alert_Low_Glucose.caf */; };
  350. FC7CE56E248ABE37001F83B8 /* Ambulance.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE4FF248ABE35001F83B8 /* Ambulance.caf */; };
  351. FC7CE56F248ABE37001F83B8 /* Ghost_Hover.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE500248ABE35001F83B8 /* Ghost_Hover.caf */; };
  352. FC7CE570248ABE37001F83B8 /* Insistently.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE501248ABE35001F83B8 /* Insistently.caf */; };
  353. FC7CE571248ABE37001F83B8 /* Sunny.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE502248ABE35001F83B8 /* Sunny.caf */; };
  354. FC7CE572248ABE37001F83B8 /* Siri_Calibration_Needed.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE503248ABE35001F83B8 /* Siri_Calibration_Needed.caf */; };
  355. FC7CE573248ABE37001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE504248ABE35001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf */; };
  356. FC7CE574248ABE37001F83B8 /* Chimes_Glassy.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE505248ABE35001F83B8 /* Chimes_Glassy.caf */; };
  357. FC7CE575248ABE37001F83B8 /* Siri_Device_Muted.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE506248ABE35001F83B8 /* Siri_Device_Muted.caf */; };
  358. FC7CE576248ABE37001F83B8 /* Alarm_Buzzer.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE507248ABE35001F83B8 /* Alarm_Buzzer.caf */; };
  359. FC7CE577248ABE37001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE508248ABE35001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf */; };
  360. FC7CE578248ABE37001F83B8 /* Siri_Alert_Missed_Readings.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE509248ABE36001F83B8 /* Siri_Alert_Missed_Readings.caf */; };
  361. FC7CE579248ABE37001F83B8 /* Good_Morning.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50A248ABE36001F83B8 /* Good_Morning.caf */; };
  362. FC7CE57A248ABE37001F83B8 /* Emergency_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50B248ABE36001F83B8 /* Emergency_Alarm.caf */; };
  363. FC7CE57B248ABE37001F83B8 /* Alert_Tone_Busy.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50C248ABE36001F83B8 /* Alert_Tone_Busy.caf */; };
  364. FC7CE57C248ABE37001F83B8 /* Tornado_Siren.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50D248ABE36001F83B8 /* Tornado_Siren.caf */; };
  365. FC7CE57D248ABE37001F83B8 /* Win_Gain.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50E248ABE36001F83B8 /* Win_Gain.caf */; };
  366. FC7CE57E248ABE37001F83B8 /* Unpaved.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE50F248ABE36001F83B8 /* Unpaved.caf */; };
  367. FC7CE57F248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_4.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE510248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_4.caf */; };
  368. FC7CE580248ABE37001F83B8 /* Sci-Fi_Alarm.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE511248ABE36001F83B8 /* Sci-Fi_Alarm.caf */; };
  369. FC7CE581248ABE37001F83B8 /* Siri_Urgent_Low_Glucose.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE512248ABE36001F83B8 /* Siri_Urgent_Low_Glucose.caf */; };
  370. FC7CE582248ABE37001F83B8 /* Siri_Transmitter_Battery_Low.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE513248ABE36001F83B8 /* Siri_Transmitter_Battery_Low.caf */; };
  371. FC7CE583248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_2.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE514248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_2.caf */; };
  372. FC7CE584248ABE37001F83B8 /* Oringz.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE515248ABE37001F83B8 /* Oringz.caf */; };
  373. FC7CE585248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE516248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf */; };
  374. FC7CE586248ABE37001F83B8 /* Martian_Gun.caf in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE517248ABE37001F83B8 /* Martian_Gun.caf */; };
  375. FC7CE58D248ABEF2001F83B8 /* alarm.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE58B248ABEF1001F83B8 /* alarm.mp3 */; };
  376. FC7CE58E248ABEF2001F83B8 /* alarm-notification.m4a in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE58C248ABEF1001F83B8 /* alarm-notification.m4a */; };
  377. FC7CE59C248D33A9001F83B8 /* dragbar.png in Resources */ = {isa = PBXBuildFile; fileRef = FC7CE59B248D33A9001F83B8 /* dragbar.png */; };
  378. FC8589BF252B54F500C8FC73 /* Mobileprovision.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC8589BE252B54F500C8FC73 /* Mobileprovision.swift */; };
  379. FC9788182485969B00A7906C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC9788172485969B00A7906C /* AppDelegate.swift */; };
  380. FC97881A2485969B00A7906C /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC9788192485969B00A7906C /* SceneDelegate.swift */; };
  381. FC97881C2485969B00A7906C /* MainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC97881B2485969B00A7906C /* MainViewController.swift */; };
  382. FC97881E2485969B00A7906C /* NightScoutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC97881D2485969B00A7906C /* NightScoutViewController.swift */; };
  383. FC9788212485969B00A7906C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FC97881F2485969B00A7906C /* Main.storyboard */; };
  384. FC9788262485969C00A7906C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FC9788252485969C00A7906C /* Assets.xcassets */; };
  385. FC9788292485969C00A7906C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FC9788272485969C00A7906C /* LaunchScreen.storyboard */; };
  386. FCA2DDE62501095000254A8C /* Timers.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCA2DDE52501095000254A8C /* Timers.swift */; };
  387. FCC0FAC224922A22003E610E /* DictionaryKeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC0FAC124922A22003E610E /* DictionaryKeyPath.swift */; };
  388. FCC6885C2489559400A0279D /* blank.wav in Resources */ = {isa = PBXBuildFile; fileRef = FCC6885B2489559400A0279D /* blank.wav */; };
  389. FCC6885E24896A6C00A0279D /* silence.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = FCC6885D24896A6C00A0279D /* silence.mp3 */; };
  390. FCC6886724898F8000A0279D /* UserDefaultsValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886624898F8000A0279D /* UserDefaultsValue.swift */; };
  391. FCC6886924898FB100A0279D /* UserDefaultsValueGroups.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886824898FB100A0279D /* UserDefaultsValueGroups.swift */; };
  392. FCC6886B24898FD800A0279D /* ObservationToken.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886A24898FD800A0279D /* ObservationToken.swift */; };
  393. FCC6886D2489909D00A0279D /* AnyConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886C2489909D00A0279D /* AnyConvertible.swift */; };
  394. FCC6886F2489A53800A0279D /* AppConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC6886E2489A53800A0279D /* AppConstants.swift */; };
  395. FCD2A27D24C9D044009F7B7B /* Globals.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCD2A27C24C9D044009F7B7B /* Globals.swift */; };
  396. FCE537BC249A4D7D00F80BF8 /* carbBolusArrays.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCE537BB249A4D7D00F80BF8 /* carbBolusArrays.swift */; };
  397. FCEF87AC24A141A700AE6FA0 /* Localizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCEF87AA24A1417900AE6FA0 /* Localizer.swift */; };
  398. FCFEEC9E2486E68E00402A7F /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FCFEEC9D2486E68E00402A7F /* WebKit.framework */; };
  399. FCFEECA02488157B00402A7F /* Chart.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCFEEC9F2488157B00402A7F /* Chart.swift */; };
  400. FCFEECA2248857A600402A7F /* SettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCFEECA1248857A600402A7F /* SettingsViewController.swift */; };
  401. /* End PBXBuildFile section */
  402. /* Begin PBXContainerItemProxy section */
  403. DDCC3ADA2DDE1790006F1C10 /* PBXContainerItemProxy */ = {
  404. isa = PBXContainerItemProxy;
  405. containerPortal = FC97880C2485969B00A7906C /* Project object */;
  406. proxyType = 1;
  407. remoteGlobalIDString = FC9788132485969B00A7906C;
  408. remoteInfo = LoopFollow;
  409. };
  410. /* End PBXContainerItemProxy section */
  411. /* Begin PBXFileReference section */
  412. 059B0FA59AABFE72FE13DDDA /* Pods-LoopFollow.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LoopFollow.release.xcconfig"; path = "Target Support Files/Pods-LoopFollow/Pods-LoopFollow.release.xcconfig"; sourceTree = "<group>"; };
  413. 654132E62E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleQRCodeScannerView.swift; sourceTree = "<group>"; };
  414. 654132E92E19F24800BDBE08 /* TOTPGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TOTPGenerator.swift; sourceTree = "<group>"; };
  415. 654134172E1DC09700BDBE08 /* OverridePresetsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetsView.swift; sourceTree = "<group>"; };
  416. 654134192E1DC27900BDBE08 /* OverridePresetData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverridePresetData.swift; sourceTree = "<group>"; };
  417. 6541341B2E1DC28000BDBE08 /* DateExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateExtensions.swift; sourceTree = "<group>"; };
  418. 656F8C0F2E49F36F0008DC1D /* QRCodeDisplayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeDisplayView.swift; sourceTree = "<group>"; };
  419. 656F8C112E49F3780008DC1D /* QRCodeGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeGenerator.swift; sourceTree = "<group>"; };
  420. 656F8C132E49F3D20008DC1D /* RemoteCommandSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteCommandSettings.swift; sourceTree = "<group>"; };
  421. 657F98172F043D8100F732BD /* HomeContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeContentView.swift; sourceTree = "<group>"; };
  422. 657F99E82F0BC81500F732BD /* OTPSecureMessenger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OTPSecureMessenger.swift; sourceTree = "<group>"; };
  423. 6584B1002E4A263900135D4D /* TOTPService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TOTPService.swift; sourceTree = "<group>"; };
  424. 6589CC522E9E7D1600BB18FE /* ExportableSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExportableSettings.swift; sourceTree = "<group>"; };
  425. 6589CC532E9E7D1600BB18FE /* ImportExportSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImportExportSettingsView.swift; sourceTree = "<group>"; };
  426. 6589CC542E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImportExportSettingsViewModel.swift; sourceTree = "<group>"; };
  427. 6589CC562E9E7D1600BB18FE /* AdvancedSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvancedSettingsView.swift; sourceTree = "<group>"; };
  428. 6589CC572E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvancedSettingsViewModel.swift; sourceTree = "<group>"; };
  429. 6589CC582E9E7D1600BB18FE /* CalendarSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarSettingsView.swift; sourceTree = "<group>"; };
  430. 6589CC592E9E7D1600BB18FE /* ContactSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactSettingsView.swift; sourceTree = "<group>"; };
  431. 6589CC5A2E9E7D1600BB18FE /* ContactSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactSettingsViewModel.swift; sourceTree = "<group>"; };
  432. 6589CC5B2E9E7D1600BB18FE /* DexcomSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSettingsView.swift; sourceTree = "<group>"; };
  433. 6589CC5C2E9E7D1600BB18FE /* DexcomSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomSettingsViewModel.swift; sourceTree = "<group>"; };
  434. 6589CC5D2E9E7D1600BB18FE /* GeneralSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeneralSettingsView.swift; sourceTree = "<group>"; };
  435. 6589CC5E2E9E7D1600BB18FE /* GraphSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GraphSettingsView.swift; sourceTree = "<group>"; };
  436. 6589CC5F2E9E7D1600BB18FE /* SettingsMenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsMenuView.swift; sourceTree = "<group>"; };
  437. 6589CC602E9E7D1600BB18FE /* TabCustomizationModal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabCustomizationModal.swift; sourceTree = "<group>"; };
  438. 6589CC702E9E814F00BB18FE /* AlarmSelectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmSelectionView.swift; sourceTree = "<group>"; };
  439. 6589CC742E9EAFB700BB18FE /* SettingsMigrationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsMigrationManager.swift; sourceTree = "<group>"; };
  440. 6584B1002E4A263900135D4D /* TOTPService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TOTPService.swift; sourceTree = "<group>"; };
  441. 65E153C22E4BB69100693A4F /* URLTokenValidationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLTokenValidationView.swift; sourceTree = "<group>"; };
  442. 65E8A2852E44B0300065037B /* VolumeButtonHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VolumeButtonHandler.swift; sourceTree = "<group>"; };
  443. A7D55B42A22051DAD69E89D0 /* Pods_LoopFollow.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LoopFollow.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  444. DD0247582DB2E89600FCADF6 /* AlarmCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmCondition.swift; sourceTree = "<group>"; };
  445. DD02475B2DB2E8FB00FCADF6 /* BuildExpireCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildExpireCondition.swift; sourceTree = "<group>"; };
  446. DD026E582EA2C8A200A39CB5 /* InsulinPrecisionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinPrecisionManager.swift; sourceTree = "<group>"; };
  447. DD026E5A2EA2C9C300A39CB5 /* InsulinFormatter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinFormatter.swift; sourceTree = "<group>"; };
  448. DD0650A82DCA8A10004D3B41 /* AlarmBGSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmBGSection.swift; sourceTree = "<group>"; };
  449. DD0650EA2DCE8385004D3B41 /* LowBGCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowBGCondition.swift; sourceTree = "<group>"; };
  450. DD0650EC2DCE9371004D3B41 /* HighBgAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HighBgAlarmEditor.swift; sourceTree = "<group>"; };
  451. DD0650EE2DCE96FF004D3B41 /* HighBGCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HighBGCondition.swift; sourceTree = "<group>"; };
  452. DD0650F02DCE9A9E004D3B41 /* MissedReadingCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedReadingCondition.swift; sourceTree = "<group>"; };
  453. DD0650F22DCE9B3D004D3B41 /* MissedReadingEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedReadingEditor.swift; sourceTree = "<group>"; };
  454. DD0650F42DCF303F004D3B41 /* AlarmStepperSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmStepperSection.swift; sourceTree = "<group>"; };
  455. DD0650F62DCFDA26004D3B41 /* InfoBanner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoBanner.swift; sourceTree = "<group>"; };
  456. DD0650F82DCFE7BE004D3B41 /* FastDropAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastDropAlarmEditor.swift; sourceTree = "<group>"; };
  457. DD07B5C829E2F9C400C6A635 /* NightscoutUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutUtils.swift; sourceTree = "<group>"; };
  458. DD0B9D552DE1EC8A0090C337 /* AlarmType+Snooze.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+Snooze.swift"; sourceTree = "<group>"; };
  459. DD0B9D572DE1F3B20090C337 /* AlarmType+canAcknowledge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+canAcknowledge.swift"; sourceTree = "<group>"; };
  460. DD0C0C5F2C415B9D00DBADDF /* ProfileManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileManager.swift; sourceTree = "<group>"; };
  461. DD0C0C612C4175FD00DBADDF /* NSProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSProfile.swift; sourceTree = "<group>"; };
  462. DD0C0C632C45A59400DBADDF /* HKUnit+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HKUnit+Extensions.swift"; sourceTree = "<group>"; };
  463. DD0C0C652C46E54C00DBADDF /* InfoDataSeparator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoDataSeparator.swift; sourceTree = "<group>"; };
  464. DD0C0C672C48529400DBADDF /* Metric.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Metric.swift; sourceTree = "<group>"; };
  465. DD0C0C6A2C48562000DBADDF /* InsulinMetric.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinMetric.swift; sourceTree = "<group>"; };
  466. DD0C0C6C2C48606200DBADDF /* CarbMetric.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbMetric.swift; sourceTree = "<group>"; };
  467. DD0C0C6F2C4AFFE800DBADDF /* RemoteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteViewController.swift; sourceTree = "<group>"; };
  468. DD0C0C712C4B000800DBADDF /* TrioNightscoutRemoteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioNightscoutRemoteView.swift; sourceTree = "<group>"; };
  469. DD12D4842E1705D9004E0112 /* AlarmViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmViewController.swift; sourceTree = "<group>"; };
  470. DD12D4862E1705E6004E0112 /* AlarmsContainerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmsContainerView.swift; sourceTree = "<group>"; };
  471. DD13BC742C3FD6200062313B /* InfoType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoType.swift; sourceTree = "<group>"; };
  472. DD13BC762C3FD64E0062313B /* InfoData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoData.swift; sourceTree = "<group>"; };
  473. DD13BC782C3FE63A0062313B /* InfoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoManager.swift; sourceTree = "<group>"; };
  474. DD16AF0C2C98485400FB655A /* SecureStorageValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureStorageValue.swift; sourceTree = "<group>"; };
  475. DD16AF0E2C99592F00FB655A /* HKQuantityInputView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HKQuantityInputView.swift; sourceTree = "<group>"; };
  476. DD16AF102C997B4600FB655A /* LoadingButtonView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadingButtonView.swift; sourceTree = "<group>"; };
  477. DD1D52B82E1EB5DC00432050 /* TabPosition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabPosition.swift; sourceTree = "<group>"; };
  478. DD1D52BA2E1EB60B00432050 /* MoreMenuViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoreMenuViewController.swift; sourceTree = "<group>"; };
  479. DD1D52BF2E4C100000000001 /* AppearanceMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearanceMode.swift; sourceTree = "<group>"; };
  480. DD2C2E4E2D3B8AEC006413A5 /* NightscoutSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettingsView.swift; sourceTree = "<group>"; };
  481. DD2C2E502D3B8B0B006413A5 /* NightscoutSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightscoutSettingsViewModel.swift; sourceTree = "<group>"; };
  482. DD485F132E454B2600CE8CBF /* SecureMessenger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureMessenger.swift; sourceTree = "<group>"; };
  483. DD4878022C7B297E0048F05C /* StorageValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StorageValue.swift; sourceTree = "<group>"; };
  484. DD4878042C7B2C970048F05C /* Storage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Storage.swift; sourceTree = "<group>"; };
  485. DD4878072C7B30BF0048F05C /* RemoteSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteSettingsView.swift; sourceTree = "<group>"; };
  486. DD4878092C7B30D40048F05C /* RemoteSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteSettingsViewModel.swift; sourceTree = "<group>"; };
  487. DD48780D2C7B74A40048F05C /* TrioRemoteControlViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControlViewModel.swift; sourceTree = "<group>"; };
  488. DD48780F2C7B74BF0048F05C /* TrioRemoteControlView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioRemoteControlView.swift; sourceTree = "<group>"; };
  489. DD4878122C7B750D0048F05C /* TempTargetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetView.swift; sourceTree = "<group>"; };
  490. DD4878142C7B75230048F05C /* MealView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealView.swift; sourceTree = "<group>"; };
  491. DD4878162C7B75350048F05C /* BolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusView.swift; sourceTree = "<group>"; };
  492. DD4878182C7C56D60048F05C /* TrioNightscoutRemoteController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrioNightscoutRemoteController.swift; sourceTree = "<group>"; };
  493. DD48781D2C7DAF2F0048F05C /* PushNotificationManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushNotificationManager.swift; sourceTree = "<group>"; };
  494. DD48781F2C7DAF890048F05C /* PushMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushMessage.swift; sourceTree = "<group>"; };
  495. DD493AD42ACF2109009A6922 /* ResumePump.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ResumePump.swift; sourceTree = "<group>"; };
  496. DD493AD62ACF2139009A6922 /* SuspendPump.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SuspendPump.swift; sourceTree = "<group>"; };
  497. DD493AD82ACF2171009A6922 /* Carbs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Carbs.swift; sourceTree = "<group>"; };
  498. DD493ADA2ACF21A3009A6922 /* Bolus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bolus.swift; sourceTree = "<group>"; };
  499. DD493ADC2ACF21E0009A6922 /* Basals.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Basals.swift; sourceTree = "<group>"; };
  500. DD493ADE2ACF22BB009A6922 /* SAge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SAge.swift; sourceTree = "<group>"; };
  501. DD493AE02ACF22FE009A6922 /* Profile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Profile.swift; sourceTree = "<group>"; };
  502. DD493AE22ACF2358009A6922 /* CAge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CAge.swift; sourceTree = "<group>"; };
  503. DD493AE42ACF2383009A6922 /* Treatments.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Treatments.swift; sourceTree = "<group>"; };
  504. DD493AE62ACF23CF009A6922 /* DeviceStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatus.swift; sourceTree = "<group>"; };
  505. DD493AE82ACF2445009A6922 /* BGData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGData.swift; sourceTree = "<group>"; };
  506. DD4A407D2E6AFEE6007B318B /* AuthService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthService.swift; sourceTree = "<group>"; };
  507. DD4AFB3A2DB55CB600BB593F /* TimeOfDay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeOfDay.swift; sourceTree = "<group>"; };
  508. DD4AFB3C2DB55D2900BB593F /* AlarmConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmConfiguration.swift; sourceTree = "<group>"; };
  509. DD4AFB482DB576C200BB593F /* AlarmSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmSettingsView.swift; sourceTree = "<group>"; };
  510. DD4AFB602DB68BBC00BB593F /* AlarmListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmListView.swift; sourceTree = "<group>"; };
  511. DD4AFB662DB68C5500BB593F /* UUID+Identifiable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UUID+Identifiable.swift"; sourceTree = "<group>"; };
  512. DD4AFB6A2DB6BF2A00BB593F /* Binding+Optional.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Binding+Optional.swift"; sourceTree = "<group>"; };
  513. DD50C7542D0862770057AE6F /* ContactImageUpdater.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactImageUpdater.swift; sourceTree = "<group>"; };
  514. DD5334202C60EBEE00062F9D /* InsulinCartridgeChange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InsulinCartridgeChange.swift; sourceTree = "<group>"; };
  515. DD5334222C60ED3600062F9D /* IAge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IAge.swift; sourceTree = "<group>"; };
  516. DD5334262C61668700062F9D /* InfoDisplaySettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoDisplaySettingsViewModel.swift; sourceTree = "<group>"; };
  517. DD5334282C6166A500062F9D /* InfoDisplaySettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InfoDisplaySettingsView.swift; sourceTree = "<group>"; };
  518. DD5334AF2D1447C500CDD6EA /* BLEManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEManager.swift; sourceTree = "<group>"; };
  519. DD5817162D2710E50041FB98 /* BLEDeviceSelectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEDeviceSelectionView.swift; sourceTree = "<group>"; };
  520. DD5817192D299EF40041FB98 /* DexcomHeartbeatBluetoothDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DexcomHeartbeatBluetoothDevice.swift; sourceTree = "<group>"; };
  521. DD58171B2D299F8D0041FB98 /* BluetoothDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothDevice.swift; sourceTree = "<group>"; };
  522. DD58171D2D299FC50041FB98 /* BluetoothDeviceDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BluetoothDeviceDelegate.swift; sourceTree = "<group>"; };
  523. DD5DA27B2DC930D6003D44FC /* GlucoseValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseValue.swift; sourceTree = "<group>"; };
  524. DD608A072C1F584900F91132 /* DeviceStatusLoop.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatusLoop.swift; sourceTree = "<group>"; };
  525. DD608A092C23593900F91132 /* SMB.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SMB.swift; sourceTree = "<group>"; };
  526. DD608A0B2C27415C00F91132 /* BackgroundAlertManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundAlertManager.swift; sourceTree = "<group>"; };
  527. DD6A935D2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatusOpenAPS.swift; sourceTree = "<group>"; };
  528. DD7B0D432D730A320063DCB6 /* CycleHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CycleHelper.swift; sourceTree = "<group>"; };
  529. DD7E19832ACDA50C00DBD158 /* Overrides.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Overrides.swift; sourceTree = "<group>"; };
  530. DD7E19852ACDA59700DBD158 /* BGCheck.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGCheck.swift; sourceTree = "<group>"; };
  531. DD7E19872ACDA5DA00DBD158 /* Notes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Notes.swift; sourceTree = "<group>"; };
  532. DD7E19892ACDA62600DBD158 /* SensorStart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SensorStart.swift; sourceTree = "<group>"; };
  533. DD7F4B9C2DD1EAE500D449E9 /* AlarmAudioSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmAudioSection.swift; sourceTree = "<group>"; };
  534. DD7F4B9E2DD1F92700D449E9 /* AlarmActiveSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmActiveSection.swift; sourceTree = "<group>"; };
  535. DD7F4BA02DD2193F00D449E9 /* AlarmSnoozeSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmSnoozeSection.swift; sourceTree = "<group>"; };
  536. DD7F4BC42DD3CE0700D449E9 /* AlarmBGLimitSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmBGLimitSection.swift; sourceTree = "<group>"; };
  537. DD7F4BC62DD473A600D449E9 /* FastDropCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastDropCondition.swift; sourceTree = "<group>"; };
  538. DD7F4C022DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotLoopingAlarmEditor.swift; sourceTree = "<group>"; };
  539. DD7F4C042DD4BBE200D449E9 /* NotLoopingCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotLoopingCondition.swift; sourceTree = "<group>"; };
  540. DD7F4C062DD5042F00D449E9 /* OverrideStartAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStartAlarmEditor.swift; sourceTree = "<group>"; };
  541. DD7F4C082DD504A700D449E9 /* OverrideStartCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideStartCondition.swift; sourceTree = "<group>"; };
  542. DD7F4C0A2DD51C5500D449E9 /* OverrideEndCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideEndCondition.swift; sourceTree = "<group>"; };
  543. DD7F4C0C2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideEndAlarmEditor.swift; sourceTree = "<group>"; };
  544. DD7F4C0E2DD51EC200D449E9 /* TempTargetStartCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetStartCondition.swift; sourceTree = "<group>"; };
  545. DD7F4C102DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetStartAlarmEditor.swift; sourceTree = "<group>"; };
  546. DD7F4C122DD51FD500D449E9 /* TempTargetEndCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetEndCondition.swift; sourceTree = "<group>"; };
  547. DD7F4C142DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetEndAlarmEditor.swift; sourceTree = "<group>"; };
  548. DD7F4C162DD63FA700D449E9 /* RecBolusCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecBolusCondition.swift; sourceTree = "<group>"; };
  549. DD7F4C182DD63FD500D449E9 /* RecBolusAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecBolusAlarmEditor.swift; sourceTree = "<group>"; };
  550. DD7F4C1A2DD6501D00D449E9 /* COBCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = COBCondition.swift; sourceTree = "<group>"; };
  551. DD7F4C1C2DD650D500D449E9 /* COBAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = COBAlarmEditor.swift; sourceTree = "<group>"; };
  552. DD7F4C1E2DD6648B00D449E9 /* FastRiseCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastRiseCondition.swift; sourceTree = "<group>"; };
  553. DD7F4C202DD66BB100D449E9 /* FastRiseAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FastRiseAlarmEditor.swift; sourceTree = "<group>"; };
  554. DD7F4C222DD7A62200D449E9 /* AlarmType+SortDirection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+SortDirection.swift"; sourceTree = "<group>"; };
  555. DD7F4C242DD7B20700D449E9 /* AlarmType+timeUnit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AlarmType+timeUnit.swift"; sourceTree = "<group>"; };
  556. DD7FFAFC2A72953000C3A304 /* EKEventStore+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "EKEventStore+Extensions.swift"; sourceTree = "<group>"; };
  557. DD8316432DE47CA9004467AA /* BGPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGPicker.swift; sourceTree = "<group>"; };
  558. DD8316472DE49EE5004467AA /* Storage+Migrate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Storage+Migrate.swift"; sourceTree = "<group>"; };
  559. DD8316492DE4C504004467AA /* SettingsStepperRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsStepperRow.swift; sourceTree = "<group>"; };
  560. DD83164B2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BinaryFloatingPoint+localized.swift"; sourceTree = "<group>"; };
  561. DD85E9942D739CED001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OmnipodDashHeartbeatBluetoothTransmitter.swift; sourceTree = "<group>"; };
  562. DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlucoseConversion.swift; sourceTree = "<group>"; };
  563. DD98F54324BCEFEE0007425A /* ShareClientExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareClientExtension.swift; sourceTree = "<group>"; };
  564. DD9ACA032D32821200415D8A /* DeviceStatusTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceStatusTask.swift; sourceTree = "<group>"; };
  565. DD9ACA052D32AF6E00415D8A /* TreatmentsTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentsTask.swift; sourceTree = "<group>"; };
  566. DD9ACA072D32F68900415D8A /* BGTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BGTask.swift; sourceTree = "<group>"; };
  567. DD9ACA092D33095500415D8A /* MinAgoTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MinAgoTask.swift; sourceTree = "<group>"; };
  568. DD9ACA0B2D33BB8400415D8A /* CalendarTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CalendarTask.swift; sourceTree = "<group>"; };
  569. DD9ACA0D2D340BFE00415D8A /* AlarmTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmTask.swift; sourceTree = "<group>"; };
  570. DD9ACA0F2D34128600415D8A /* Task.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Task.swift; sourceTree = "<group>"; };
  571. DD9ED0C72D35523F000D2A63 /* LogViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogViewModel.swift; sourceTree = "<group>"; };
  572. DD9ED0C92D355256000D2A63 /* LogView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogView.swift; sourceTree = "<group>"; };
  573. DD9ED0CB2D35526E000D2A63 /* SearchBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchBar.swift; sourceTree = "<group>"; };
  574. DD9ED0CD2D355879000D2A63 /* LogEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogEntry.swift; sourceTree = "<group>"; };
  575. DDA9ACA72D6A66DD00E6F1A9 /* ContactColorOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactColorOption.swift; sourceTree = "<group>"; };
  576. DDA9ACA92D6A6B8200E6F1A9 /* ContactIncludeOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactIncludeOption.swift; sourceTree = "<group>"; };
  577. DDA9ACAB2D6B316F00E6F1A9 /* ContactType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactType.swift; sourceTree = "<group>"; };
  578. DDAD162E2D2EF97C0084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RileyLinkHeartbeatBluetoothDevice.swift; sourceTree = "<group>"; };
  579. DDB0AF502BB1A84500AFA48B /* capture-build-details.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "capture-build-details.sh"; sourceTree = "<group>"; };
  580. DDB0AF512BB1A8BE00AFA48B /* BuildDetails.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildDetails.swift; sourceTree = "<group>"; };
  581. DDB0AF542BB1B24A00AFA48B /* BuildDetails.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = BuildDetails.plist; sourceTree = "<group>"; };
  582. DDB9FC7A2DDB573F00EFAA76 /* IOBCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBCondition.swift; sourceTree = "<group>"; };
  583. DDB9FC7C2DDB575300EFAA76 /* IOBAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOBAlarmEditor.swift; sourceTree = "<group>"; };
  584. DDB9FC7E2DDB584500EFAA76 /* BolusEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BolusEntry.swift; sourceTree = "<group>"; };
  585. DDBD19952DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Alarm+byPriorityThenSpec.swift"; sourceTree = "<group>"; };
  586. DDBE3ABC2CB5A961006B37DC /* OverrideView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OverrideView.swift; sourceTree = "<group>"; };
  587. DDC6CA3C2DD7C6090060EE25 /* TemporaryCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemporaryCondition.swift; sourceTree = "<group>"; };
  588. DDC6CA3E2DD7C6340060EE25 /* TemporaryAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemporaryAlarmEditor.swift; sourceTree = "<group>"; };
  589. DDC6CA402DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SensorAgeAlarmEditor.swift; sourceTree = "<group>"; };
  590. DDC6CA422DD8CED20060EE25 /* SensorAgeCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SensorAgeCondition.swift; sourceTree = "<group>"; };
  591. DDC6CA442DD8D8E60060EE25 /* PumpChangeCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpChangeCondition.swift; sourceTree = "<group>"; };
  592. DDC6CA462DD8D9010060EE25 /* PumpChangeAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpChangeAlarmEditor.swift; sourceTree = "<group>"; };
  593. DDC6CA482DD8E47A0060EE25 /* PumpVolumeCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpVolumeCondition.swift; sourceTree = "<group>"; };
  594. DDC6CA4A2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpVolumeAlarmEditor.swift; sourceTree = "<group>"; };
  595. DDC7E5122DBCE1B900EB1127 /* SnoozerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnoozerView.swift; sourceTree = "<group>"; };
  596. DDC7E5132DBCE1B900EB1127 /* SnoozerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnoozerViewController.swift; sourceTree = "<group>"; };
  597. DDC7E5372DBD887400EB1127 /* isOnPhoneCall.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = isOnPhoneCall.swift; sourceTree = "<group>"; };
  598. DDC7E5392DBD8A1600EB1127 /* AlarmGeneralSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmGeneralSection.swift; sourceTree = "<group>"; };
  599. DDC7E53A2DBD8A1600EB1127 /* SoundFile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SoundFile.swift; sourceTree = "<group>"; };
  600. DDC7E53C2DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuildExpireAlarmEditor.swift; sourceTree = "<group>"; };
  601. DDC7E53E2DBD8A1600EB1127 /* LowBgAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowBgAlarmEditor.swift; sourceTree = "<group>"; };
  602. DDC7E5402DBD8A1600EB1127 /* AlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmEditor.swift; sourceTree = "<group>"; };
  603. DDC7E5CE2DC77C2000EB1127 /* SnoozerViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnoozerViewModel.swift; sourceTree = "<group>"; };
  604. DDCC3A4A2DDBB5E4006F1C10 /* BatteryCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryCondition.swift; sourceTree = "<group>"; };
  605. DDCC3A512DDED000006F1C10 /* PumpBatteryCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpBatteryCondition.swift; sourceTree = "<group>"; };
  606. DDCC3A4C2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneBatteryAlarmEditor.swift; sourceTree = "<group>"; };
  607. DDCC3A5C2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PumpBatteryAlarmEditor.swift; sourceTree = "<group>"; };
  608. DDCC3A4E2DDC5B54006F1C10 /* BatteryDropCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryDropCondition.swift; sourceTree = "<group>"; };
  609. DDCC3A532DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BatteryDropAlarmEditor.swift; sourceTree = "<group>"; };
  610. DDCC3A552DDC9617006F1C10 /* MissedBolusCondition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedBolusCondition.swift; sourceTree = "<group>"; };
  611. DDCC3A572DDC9655006F1C10 /* MissedBolusAlarmEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MissedBolusAlarmEditor.swift; sourceTree = "<group>"; };
  612. DDCC3A592DDC988F006F1C10 /* CarbSample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarbSample.swift; sourceTree = "<group>"; };
  613. DDCC3ABF2DDE10B0006F1C10 /* Testing.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Testing.framework; path = Platforms/iPhoneOS.platform/Developer/Library/Frameworks/Testing.framework; sourceTree = DEVELOPER_DIR; };
  614. DDCC3AD62DDE1790006F1C10 /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  615. DDCF979324C0D380002C9752 /* UIViewExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIViewExtension.swift; sourceTree = "<group>"; };
  616. DDCF9A7F2D85FD09004DF4DD /* Alarm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Alarm.swift; sourceTree = "<group>"; };
  617. DDCF9A812D85FD14004DF4DD /* AlarmType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmType.swift; sourceTree = "<group>"; };
  618. DDCF9A872D85FD33004DF4DD /* AlarmData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmData.swift; sourceTree = "<group>"; };
  619. DDCF9A8B2D86005E004DF4DD /* AlarmManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmManager.swift; sourceTree = "<group>"; };
  620. DDCFCAF12B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = LoopFollowDisplayNameConfig.xcconfig; sourceTree = "<group>"; };
  621. DDD10EFE2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableUserDefaultsValue.swift; sourceTree = "<group>"; };
  622. DDD10F002C510C6B00D76A8E /* ObservableUserDefaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableUserDefaults.swift; sourceTree = "<group>"; };
  623. DDD10F022C518A6500D76A8E /* TreatmentResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TreatmentResponse.swift; sourceTree = "<group>"; };
  624. DDD10F042C529DA200D76A8E /* ObservableValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableValue.swift; sourceTree = "<group>"; };
  625. DDD10F062C529DE800D76A8E /* Observable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Observable.swift; sourceTree = "<group>"; };
  626. DDD10F0A2C54192A00D76A8E /* TemporaryTarget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemporaryTarget.swift; sourceTree = "<group>"; };
  627. DDDB86F02DF7223C00AADDAC /* DeleteAlarmSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeleteAlarmSection.swift; sourceTree = "<group>"; };
  628. DDDC01DC2E244B3100D9975C /* JWTManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JWTManager.swift; sourceTree = "<group>"; };
  629. DDDC31CB2E13A7DF009EA0F3 /* AddAlarmSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddAlarmSheet.swift; sourceTree = "<group>"; };
  630. DDDC31CD2E13A811009EA0F3 /* AlarmTile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlarmTile.swift; sourceTree = "<group>"; };
  631. DDDF6F482D479AEF00884336 /* NoRemoteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoRemoteView.swift; sourceTree = "<group>"; };
  632. DDE69ED12C7256260013EAEC /* RemoteType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteType.swift; sourceTree = "<group>"; };
  633. DDE75D222DE5E505007C1FC1 /* Glyph.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Glyph.swift; sourceTree = "<group>"; };
  634. DDE75D262DE5E539007C1FC1 /* ActionRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionRow.swift; sourceTree = "<group>"; };
  635. DDE75D282DE5E56C007C1FC1 /* LinkRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LinkRow.swift; sourceTree = "<group>"; };
  636. DDE75D2A2DE5E613007C1FC1 /* NavigationRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationRow.swift; sourceTree = "<group>"; };
  637. DDE75D2C2DE71401007C1FC1 /* TogglableSecureInput.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TogglableSecureInput.swift; sourceTree = "<group>"; };
  638. DDEF50392D31614200999A5D /* LogManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogManager.swift; sourceTree = "<group>"; };
  639. DDEF503B2D31BE2A00999A5D /* TaskScheduler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaskScheduler.swift; sourceTree = "<group>"; };
  640. DDEF503E2D32754A00999A5D /* ProfileTask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileTask.swift; sourceTree = "<group>"; };
  641. DDEF503F2D479B8A00884336 /* LoopAPNSService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSService.swift; sourceTree = "<group>"; };
  642. DDEF50412D479BAA00884336 /* LoopAPNSCarbsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSCarbsView.swift; sourceTree = "<group>"; };
  643. DDEF50422D479BBA00884336 /* LoopAPNSBolusView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSBolusView.swift; sourceTree = "<group>"; };
  644. DDEF50442D479BDA00884336 /* LoopAPNSRemoteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoopAPNSRemoteView.swift; sourceTree = "<group>"; };
  645. DDF2C00F2BEFA991007A20E6 /* GitHubService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GitHubService.swift; sourceTree = "<group>"; };
  646. DDF2C0112BEFB733007A20E6 /* AppVersionManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppVersionManager.swift; sourceTree = "<group>"; };
  647. DDF2C0132BEFD468007A20E6 /* blacklisted-versions.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "blacklisted-versions.json"; sourceTree = "<group>"; };
  648. DDF699952C5582290058A8D9 /* TextFieldWithToolBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextFieldWithToolBar.swift; sourceTree = "<group>"; };
  649. DDF699982C5AA3060058A8D9 /* TempTargetPresetManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPresetManager.swift; sourceTree = "<group>"; };
  650. DDF6999A2C5AA32E0058A8D9 /* TempTargetPreset.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TempTargetPreset.swift; sourceTree = "<group>"; };
  651. DDF6999D2C5AAA640058A8D9 /* ErrorMessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorMessageView.swift; sourceTree = "<group>"; };
  652. DDF9676D2AD08C6E00C5EB95 /* SiteChange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SiteChange.swift; sourceTree = "<group>"; };
  653. DDFD5C522CB167DA00D3FD68 /* TRCCommandType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TRCCommandType.swift; sourceTree = "<group>"; };
  654. DDFF3D7E2D1414A200BF9D9E /* BLEDevice.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEDevice.swift; sourceTree = "<group>"; };
  655. DDFF3D842D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshSettingsView.swift; sourceTree = "<group>"; };
  656. DDFF3D862D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshSettingsViewModel.swift; sourceTree = "<group>"; };
  657. DDFF3D882D1429AB00BF9D9E /* BackgroundRefreshType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackgroundRefreshType.swift; sourceTree = "<group>"; };
  658. ECA3EFB4037410B4973BB632 /* Pods-LoopFollow.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LoopFollow.debug.xcconfig"; path = "Target Support Files/Pods-LoopFollow/Pods-LoopFollow.debug.xcconfig"; sourceTree = "<group>"; };
  659. FC16A97924996673003D6245 /* NightScout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightScout.swift; sourceTree = "<group>"; };
  660. FC16A97C24996747003D6245 /* SpeakBG.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpeakBG.swift; sourceTree = "<group>"; };
  661. FC16A97E249969E2003D6245 /* Graphs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Graphs.swift; sourceTree = "<group>"; };
  662. FC16A98024996C07003D6245 /* DateTime.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateTime.swift; sourceTree = "<group>"; };
  663. FC1BDD2A24A22650001B652C /* Stats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Stats.swift; sourceTree = "<group>"; };
  664. FC1BDD2C24A23204001B652C /* MainViewController+updateStats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MainViewController+updateStats.swift"; sourceTree = "<group>"; };
  665. FC1BDD2E24A232A3001B652C /* DataStructs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataStructs.swift; sourceTree = "<group>"; };
  666. FC3AE7B4249E8E0E00AAE1E0 /* LoopFollow.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = LoopFollow.xcdatamodel; sourceTree = "<group>"; };
  667. FC5A5C3C2497B229009C550E /* Config.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = "<group>"; };
  668. FC7CE4A9248ABE2B001F83B8 /* Siri_Alert_Calibration_Needed.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Calibration_Needed.caf; sourceTree = "<group>"; };
  669. FC7CE4AA248ABE2B001F83B8 /* Rise_And_Shine.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Rise_And_Shine.caf; sourceTree = "<group>"; };
  670. FC7CE4AB248ABE2B001F83B8 /* Jingle_All_The_Way.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Jingle_All_The_Way.caf; sourceTree = "<group>"; };
  671. FC7CE4AC248ABE2B001F83B8 /* Thunder_Sound_FX.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Thunder_Sound_FX.caf; sourceTree = "<group>"; };
  672. FC7CE4AD248ABE2B001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Spaceship_Warm_Up.caf"; sourceTree = "<group>"; };
  673. FC7CE4AE248ABE2B001F83B8 /* Not_Kiddin.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Not_Kiddin.caf; sourceTree = "<group>"; };
  674. FC7CE4AF248ABE2B001F83B8 /* Computer_Magic.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Computer_Magic.caf; sourceTree = "<group>"; };
  675. FC7CE4B0248ABE2B001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Tip_Toe_Sneaky_Walk.caf; sourceTree = "<group>"; };
  676. FC7CE4B1248ABE2C001F83B8 /* Burglar_Alarm_Siren_1.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Burglar_Alarm_Siren_1.caf; sourceTree = "<group>"; };
  677. FC7CE4B2248ABE2C001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Emergency_Alarm_Carbon_Monoxide.caf; sourceTree = "<group>"; };
  678. FC7CE4B3248ABE2C001F83B8 /* Signature_Corporate.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Signature_Corporate.caf; sourceTree = "<group>"; };
  679. FC7CE4B4248ABE2C001F83B8 /* Wake_Up_Will_You.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Wake_Up_Will_You.caf; sourceTree = "<group>"; };
  680. FC7CE4B5248ABE2C001F83B8 /* Marimba_Flutter_or_Shake.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Marimba_Flutter_or_Shake.caf; sourceTree = "<group>"; };
  681. FC7CE4B6248ABE2C001F83B8 /* Sci-Fi_Warning.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Warning.caf"; sourceTree = "<group>"; };
  682. FC7CE4B7248ABE2C001F83B8 /* Sci-Fi_Alarm_Loop_3.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_3.caf"; sourceTree = "<group>"; };
  683. FC7CE4B8248ABE2C001F83B8 /* Alert_Tone_Ringtone_2.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alert_Tone_Ringtone_2.caf; sourceTree = "<group>"; };
  684. FC7CE4B9248ABE2D001F83B8 /* Cartoon_Bounce_To_Ceiling.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Bounce_To_Ceiling.caf; sourceTree = "<group>"; };
  685. FC7CE4BA248ABE2D001F83B8 /* Laser_Shoot.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Laser_Shoot.caf; sourceTree = "<group>"; };
  686. FC7CE4BB248ABE2D001F83B8 /* Nightguard.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Nightguard.caf; sourceTree = "<group>"; };
  687. FC7CE4BC248ABE2D001F83B8 /* Machine_Charge.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Machine_Charge.caf; sourceTree = "<group>"; };
  688. FC7CE4BD248ABE2D001F83B8 /* Cuckoo_Clock.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cuckoo_Clock.caf; sourceTree = "<group>"; };
  689. FC7CE4BE248ABE2D001F83B8 /* Siri_Urgent_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Urgent_High_Glucose.caf; sourceTree = "<group>"; };
  690. FC7CE4BF248ABE2D001F83B8 /* Cartoon_Villain_Horns.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Villain_Horns.caf; sourceTree = "<group>"; };
  691. FC7CE4C0248ABE2D001F83B8 /* Siri_Glucose_Rising_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Glucose_Rising_Fast.caf; sourceTree = "<group>"; };
  692. FC7CE4C1248ABE2E001F83B8 /* Dhol_Shuffleloop.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Dhol_Shuffleloop.caf; sourceTree = "<group>"; };
  693. FC7CE4C2248ABE2E001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Computer_Console_Alarm.caf"; sourceTree = "<group>"; };
  694. FC7CE4C3248ABE2E001F83B8 /* Siri_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_High_Glucose.caf; sourceTree = "<group>"; };
  695. FC7CE4C4248ABE2E001F83B8 /* Ending_Reached.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ending_Reached.caf; sourceTree = "<group>"; };
  696. FC7CE4C5248ABE2E001F83B8 /* Siri_Missed_Readings.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Missed_Readings.caf; sourceTree = "<group>"; };
  697. FC7CE4C6248ABE2E001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Ascend_Climb_Sneaky.caf; sourceTree = "<group>"; };
  698. FC7CE4C7248ABE2E001F83B8 /* Fly.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Fly.caf; sourceTree = "<group>"; };
  699. FC7CE4C8248ABE2E001F83B8 /* Open_Your_Eyes_And_See.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Open_Your_Eyes_And_See.caf; sourceTree = "<group>"; };
  700. FC7CE4C9248ABE2F001F83B8 /* 20ms-of-silence.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "20ms-of-silence.caf"; sourceTree = "<group>"; };
  701. FC7CE4CA248ABE2F001F83B8 /* Remembers_Me_Of_Asia.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Remembers_Me_Of_Asia.caf; sourceTree = "<group>"; };
  702. FC7CE4CB248ABE2F001F83B8 /* Alarm_Clock.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alarm_Clock.caf; sourceTree = "<group>"; };
  703. FC7CE4CC248ABE2F001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Dreamy_Glissando_Harp.caf; sourceTree = "<group>"; };
  704. FC7CE4CD248ABE2F001F83B8 /* Early_Sunrise.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Early_Sunrise.caf; sourceTree = "<group>"; };
  705. FC7CE4CE248ABE2F001F83B8 /* 1-millisecond-of-silence.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = "1-millisecond-of-silence.mp3"; sourceTree = "<group>"; };
  706. FC7CE4CF248ABE30001F83B8 /* Soft_Warm_Airy_Optimistic.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Soft_Warm_Airy_Optimistic.caf; sourceTree = "<group>"; };
  707. FC7CE4D0248ABE30001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Glucose_Dropping_Fast.caf; sourceTree = "<group>"; };
  708. FC7CE4D1248ABE30001F83B8 /* Two_Turtle_Doves.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Two_Turtle_Doves.caf; sourceTree = "<group>"; };
  709. FC7CE4D2248ABE30001F83B8 /* Discreet.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Discreet.caf; sourceTree = "<group>"; };
  710. FC7CE4D3248ABE30001F83B8 /* Alien_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alien_Siren.caf; sourceTree = "<group>"; };
  711. FC7CE4D4248ABE30001F83B8 /* Pager_Beeps.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Pager_Beeps.caf; sourceTree = "<group>"; };
  712. FC7CE4D5248ABE31001F83B8 /* Sci-Fi_Alarm_Loop_1.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_1.caf"; sourceTree = "<group>"; };
  713. FC7CE4D6248ABE31001F83B8 /* Indeed.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Indeed.caf; sourceTree = "<group>"; };
  714. FC7CE4D7248ABE31001F83B8 /* Cartoon_Uh_Oh.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Uh_Oh.caf; sourceTree = "<group>"; };
  715. FC7CE4D8248ABE31001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Air_Raid_Alarm.caf"; sourceTree = "<group>"; };
  716. FC7CE4D9248ABE31001F83B8 /* Store_Door_Chime.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Store_Door_Chime.caf; sourceTree = "<group>"; };
  717. FC7CE4DA248ABE31001F83B8 /* Magical_Twinkle.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Magical_Twinkle.caf; sourceTree = "<group>"; };
  718. FC7CE4DB248ABE31001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Urgent_High_Glucose.caf; sourceTree = "<group>"; };
  719. FC7CE4DC248ABE32001F83B8 /* Siri_Alert_Device_Muted.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Device_Muted.caf; sourceTree = "<group>"; };
  720. FC7CE4DD248ABE32001F83B8 /* Emergency_Alarm_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Emergency_Alarm_Siren.caf; sourceTree = "<group>"; };
  721. FC7CE4DE248ABE32001F83B8 /* Analog_Watch_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Analog_Watch_Alarm.caf; sourceTree = "<group>"; };
  722. FC7CE4DF248ABE32001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Hell_Yeah_Somewhat_Calmer.caf; sourceTree = "<group>"; };
  723. FC7CE4E0248ABE32001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Machine_Clumsy_Loop.caf; sourceTree = "<group>"; };
  724. FC7CE4E1248ABE32001F83B8 /* Siri_Alert_High_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_High_Glucose.caf; sourceTree = "<group>"; };
  725. FC7CE4E2248ABE32001F83B8 /* Marimba_Descend.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Marimba_Descend.caf; sourceTree = "<group>"; };
  726. FC7CE4E3248ABE32001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Urgent_Low_Glucose.caf; sourceTree = "<group>"; };
  727. FC7CE4E4248ABE32001F83B8 /* Sci-Fi_Eerie_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Eerie_Alarm.caf"; sourceTree = "<group>"; };
  728. FC7CE4E5248ABE32001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Glucose_Rising_Fast.caf; sourceTree = "<group>"; };
  729. FC7CE4E6248ABE32001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Incoming_Message_Alert.caf"; sourceTree = "<group>"; };
  730. FC7CE4E7248ABE33001F83B8 /* Sci-Fi_Console_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Console_Alarm.caf"; sourceTree = "<group>"; };
  731. FC7CE4E8248ABE33001F83B8 /* Soft_Marimba_Pad_Positive.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Soft_Marimba_Pad_Positive.caf; sourceTree = "<group>"; };
  732. FC7CE4E9248ABE33001F83B8 /* Rush.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Rush.caf; sourceTree = "<group>"; };
  733. FC7CE4EA248ABE33001F83B8 /* Martian_Scanner.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Martian_Scanner.caf; sourceTree = "<group>"; };
  734. FC7CE4EB248ABE33001F83B8 /* Alert_Tone_Ringtone_1.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alert_Tone_Ringtone_1.caf; sourceTree = "<group>"; };
  735. FC7CE4EC248ABE33001F83B8 /* 500ms-of-silence.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = "500ms-of-silence.mp3"; sourceTree = "<group>"; };
  736. FC7CE4ED248ABE33001F83B8 /* Big_Clock_Ticking.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Big_Clock_Ticking.caf; sourceTree = "<group>"; };
  737. FC7CE4EE248ABE33001F83B8 /* Metallic.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Metallic.caf; sourceTree = "<group>"; };
  738. FC7CE4EF248ABE33001F83B8 /* Cell_Phone_Ring_Tone.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cell_Phone_Ring_Tone.caf; sourceTree = "<group>"; };
  739. FC7CE4F0248ABE33001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Transmitter_Battery_Low.caf; sourceTree = "<group>"; };
  740. FC7CE4F1248ABE33001F83B8 /* Burglar_Alarm_Siren_2.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Burglar_Alarm_Siren_2.caf; sourceTree = "<group>"; };
  741. FC7CE4F2248ABE34001F83B8 /* Wrong_Answer.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Wrong_Answer.caf; sourceTree = "<group>"; };
  742. FC7CE4F3248ABE34001F83B8 /* Soft_Warm_Airy_Reassuring.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Soft_Warm_Airy_Reassuring.caf; sourceTree = "<group>"; };
  743. FC7CE4F4248ABE34001F83B8 /* CSFX-2_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "CSFX-2_Alarm.caf"; sourceTree = "<group>"; };
  744. FC7CE4F5248ABE34001F83B8 /* Siri_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Low_Glucose.caf; sourceTree = "<group>"; };
  745. FC7CE4F6248ABE34001F83B8 /* Sci-Fi_Spaceship_Message.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Spaceship_Message.caf"; sourceTree = "<group>"; };
  746. FC7CE4F7248ABE34001F83B8 /* In_A_Hurry.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = In_A_Hurry.caf; sourceTree = "<group>"; };
  747. FC7CE4F8248ABE34001F83B8 /* Orchestral_Horns.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Orchestral_Horns.caf; sourceTree = "<group>"; };
  748. FC7CE4F9248ABE34001F83B8 /* Sci-Fi_Engine_Shut_Down.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Engine_Shut_Down.caf"; sourceTree = "<group>"; };
  749. FC7CE4FA248ABE34001F83B8 /* silence-1sec.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = "silence-1sec.mp3"; sourceTree = "<group>"; };
  750. FC7CE4FB248ABE34001F83B8 /* Cartoon_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Siren.caf; sourceTree = "<group>"; };
  751. FC7CE4FC248ABE34001F83B8 /* Cartoon_Ascend_Then_Descend.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Ascend_Then_Descend.caf; sourceTree = "<group>"; };
  752. FC7CE4FD248ABE35001F83B8 /* Time_Has_Come.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Time_Has_Come.caf; sourceTree = "<group>"; };
  753. FC7CE4FE248ABE35001F83B8 /* Siri_Alert_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Low_Glucose.caf; sourceTree = "<group>"; };
  754. FC7CE4FF248ABE35001F83B8 /* Ambulance.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ambulance.caf; sourceTree = "<group>"; };
  755. FC7CE500248ABE35001F83B8 /* Ghost_Hover.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ghost_Hover.caf; sourceTree = "<group>"; };
  756. FC7CE501248ABE35001F83B8 /* Insistently.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Insistently.caf; sourceTree = "<group>"; };
  757. FC7CE502248ABE35001F83B8 /* Sunny.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Sunny.caf; sourceTree = "<group>"; };
  758. FC7CE503248ABE35001F83B8 /* Siri_Calibration_Needed.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Calibration_Needed.caf; sourceTree = "<group>"; };
  759. FC7CE504248ABE35001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Marching_Heavy_Footed_Fat_Elephants.caf; sourceTree = "<group>"; };
  760. FC7CE505248ABE35001F83B8 /* Chimes_Glassy.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Chimes_Glassy.caf; sourceTree = "<group>"; };
  761. FC7CE506248ABE35001F83B8 /* Siri_Device_Muted.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Device_Muted.caf; sourceTree = "<group>"; };
  762. FC7CE507248ABE35001F83B8 /* Alarm_Buzzer.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alarm_Buzzer.caf; sourceTree = "<group>"; };
  763. FC7CE508248ABE35001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Cartoon_Fail_Strings_Trumpet.caf; sourceTree = "<group>"; };
  764. FC7CE509248ABE36001F83B8 /* Siri_Alert_Missed_Readings.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Alert_Missed_Readings.caf; sourceTree = "<group>"; };
  765. FC7CE50A248ABE36001F83B8 /* Good_Morning.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Good_Morning.caf; sourceTree = "<group>"; };
  766. FC7CE50B248ABE36001F83B8 /* Emergency_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Emergency_Alarm.caf; sourceTree = "<group>"; };
  767. FC7CE50C248ABE36001F83B8 /* Alert_Tone_Busy.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Alert_Tone_Busy.caf; sourceTree = "<group>"; };
  768. FC7CE50D248ABE36001F83B8 /* Tornado_Siren.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Tornado_Siren.caf; sourceTree = "<group>"; };
  769. FC7CE50E248ABE36001F83B8 /* Win_Gain.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Win_Gain.caf; sourceTree = "<group>"; };
  770. FC7CE50F248ABE36001F83B8 /* Unpaved.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Unpaved.caf; sourceTree = "<group>"; };
  771. FC7CE510248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_4.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_4.caf"; sourceTree = "<group>"; };
  772. FC7CE511248ABE36001F83B8 /* Sci-Fi_Alarm.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm.caf"; sourceTree = "<group>"; };
  773. FC7CE512248ABE36001F83B8 /* Siri_Urgent_Low_Glucose.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Urgent_Low_Glucose.caf; sourceTree = "<group>"; };
  774. FC7CE513248ABE36001F83B8 /* Siri_Transmitter_Battery_Low.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Transmitter_Battery_Low.caf; sourceTree = "<group>"; };
  775. FC7CE514248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_2.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Sci-Fi_Alarm_Loop_2.caf"; sourceTree = "<group>"; };
  776. FC7CE515248ABE37001F83B8 /* Oringz.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Oringz.caf; sourceTree = "<group>"; };
  777. FC7CE516248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Siri_Glucose_Dropping_Fast.caf; sourceTree = "<group>"; };
  778. FC7CE517248ABE37001F83B8 /* Martian_Gun.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Martian_Gun.caf; sourceTree = "<group>"; };
  779. FC7CE589248ABEA3001F83B8 /* AlarmSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlarmSound.swift; sourceTree = "<group>"; };
  780. FC7CE58B248ABEF1001F83B8 /* alarm.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = alarm.mp3; sourceTree = "<group>"; };
  781. FC7CE58C248ABEF1001F83B8 /* alarm-notification.m4a */ = {isa = PBXFileReference; lastKnownFileType = file; path = "alarm-notification.m4a"; sourceTree = "<group>"; };
  782. FC7CE59B248D33A9001F83B8 /* dragbar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = dragbar.png; sourceTree = "<group>"; };
  783. FC8589BE252B54F500C8FC73 /* Mobileprovision.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Mobileprovision.swift; sourceTree = "<group>"; };
  784. FC8DEEE62485D1ED0075863F /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  785. FC9788142485969B00A7906C /* Loop Follow.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Loop Follow.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  786. FC9788172485969B00A7906C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  787. FC9788192485969B00A7906C /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
  788. FC97881B2485969B00A7906C /* MainViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainViewController.swift; sourceTree = "<group>"; };
  789. FC97881D2485969B00A7906C /* NightScoutViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NightScoutViewController.swift; sourceTree = "<group>"; };
  790. FC9788202485969B00A7906C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  791. FC9788252485969C00A7906C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  792. FC9788282485969C00A7906C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  793. FCA2DDE52501095000254A8C /* Timers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Timers.swift; sourceTree = "<group>"; };
  794. FCC0FAC124922A22003E610E /* DictionaryKeyPath.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DictionaryKeyPath.swift; sourceTree = "<group>"; };
  795. FCC688592489554800A0279D /* BackgroundTaskAudio.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackgroundTaskAudio.swift; sourceTree = "<group>"; };
  796. FCC6885B2489559400A0279D /* blank.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = blank.wav; sourceTree = "<group>"; };
  797. FCC6885D24896A6C00A0279D /* silence.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = silence.mp3; sourceTree = "<group>"; };
  798. FCC6886624898F8000A0279D /* UserDefaultsValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsValue.swift; sourceTree = "<group>"; };
  799. FCC6886824898FB100A0279D /* UserDefaultsValueGroups.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultsValueGroups.swift; sourceTree = "<group>"; };
  800. FCC6886A24898FD800A0279D /* ObservationToken.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservationToken.swift; sourceTree = "<group>"; };
  801. FCC6886C2489909D00A0279D /* AnyConvertible.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnyConvertible.swift; sourceTree = "<group>"; };
  802. FCC6886E2489A53800A0279D /* AppConstants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppConstants.swift; sourceTree = "<group>"; };
  803. FCC688702489A57C00A0279D /* Loop Follow.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Loop Follow.entitlements"; sourceTree = "<group>"; };
  804. FCD2A27C24C9D044009F7B7B /* Globals.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Globals.swift; sourceTree = "<group>"; };
  805. FCE537BB249A4D7D00F80BF8 /* carbBolusArrays.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = carbBolusArrays.swift; sourceTree = "<group>"; };
  806. FCE537C2249AAB2600F80BF8 /* NotificationCenter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = NotificationCenter.framework; path = System/Library/Frameworks/NotificationCenter.framework; sourceTree = SDKROOT; };
  807. FCEF87AA24A1417900AE6FA0 /* Localizer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Localizer.swift; sourceTree = "<group>"; };
  808. FCFEEC9D2486E68E00402A7F /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
  809. FCFEEC9F2488157B00402A7F /* Chart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Chart.swift; sourceTree = "<group>"; };
  810. FCFEECA1248857A600402A7F /* SettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsViewController.swift; sourceTree = "<group>"; };
  811. /* End PBXFileReference section */
  812. /* Begin PBXFileSystemSynchronizedRootGroup section */
  813. 65AC25F52ECFD5E800421360 /* Stats */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Stats; sourceTree = "<group>"; };
  814. 65AC26702ED245DF00421360 /* Treatments */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Treatments; sourceTree = "<group>"; };
  815. DDCC3AD72DDE1790006F1C10 /* Tests */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Tests; sourceTree = "<group>"; };
  816. /* End PBXFileSystemSynchronizedRootGroup section */
  817. /* Begin PBXFrameworksBuildPhase section */
  818. DDCC3AD32DDE1790006F1C10 /* Frameworks */ = {
  819. isa = PBXFrameworksBuildPhase;
  820. buildActionMask = 2147483647;
  821. files = (
  822. );
  823. runOnlyForDeploymentPostprocessing = 0;
  824. };
  825. FC9788112485969B00A7906C /* Frameworks */ = {
  826. isa = PBXFrameworksBuildPhase;
  827. buildActionMask = 2147483647;
  828. files = (
  829. FCFEEC9E2486E68E00402A7F /* WebKit.framework in Frameworks */,
  830. DD485F162E46631000CE8CBF /* CryptoSwift in Frameworks */,
  831. 3F1335F351590E573D8E6962 /* Pods_LoopFollow.framework in Frameworks */,
  832. DD48781C2C7DAF140048F05C /* SwiftJWT in Frameworks */,
  833. );
  834. runOnlyForDeploymentPostprocessing = 0;
  835. };
  836. /* End PBXFrameworksBuildPhase section */
  837. /* Begin PBXGroup section */
  838. 6589CC552E9E7D1600BB18FE /* ImportExport */ = {
  839. isa = PBXGroup;
  840. children = (
  841. 6589CC742E9EAFB700BB18FE /* SettingsMigrationManager.swift */,
  842. 6589CC702E9E814F00BB18FE /* AlarmSelectionView.swift */,
  843. 6589CC522E9E7D1600BB18FE /* ExportableSettings.swift */,
  844. 6589CC532E9E7D1600BB18FE /* ImportExportSettingsView.swift */,
  845. 6589CC542E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift */,
  846. );
  847. path = ImportExport;
  848. sourceTree = "<group>";
  849. };
  850. 6589CC612E9E7D1600BB18FE /* Settings */ = {
  851. isa = PBXGroup;
  852. children = (
  853. 6589CC552E9E7D1600BB18FE /* ImportExport */,
  854. 6589CC562E9E7D1600BB18FE /* AdvancedSettingsView.swift */,
  855. 6589CC572E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift */,
  856. 6589CC582E9E7D1600BB18FE /* CalendarSettingsView.swift */,
  857. 6589CC592E9E7D1600BB18FE /* ContactSettingsView.swift */,
  858. 6589CC5A2E9E7D1600BB18FE /* ContactSettingsViewModel.swift */,
  859. 6589CC5B2E9E7D1600BB18FE /* DexcomSettingsView.swift */,
  860. 6589CC5C2E9E7D1600BB18FE /* DexcomSettingsViewModel.swift */,
  861. 6589CC5D2E9E7D1600BB18FE /* GeneralSettingsView.swift */,
  862. 6589CC5E2E9E7D1600BB18FE /* GraphSettingsView.swift */,
  863. 657F98172F043D8100F732BD /* HomeContentView.swift */,
  864. 6589CC5F2E9E7D1600BB18FE /* SettingsMenuView.swift */,
  865. 6589CC602E9E7D1600BB18FE /* TabCustomizationModal.swift */,
  866. );
  867. path = Settings;
  868. sourceTree = "<group>";
  869. };
  870. 6A5880E0B811AF443B05AB02 /* Frameworks */ = {
  871. isa = PBXGroup;
  872. children = (
  873. DDCC3ABF2DDE10B0006F1C10 /* Testing.framework */,
  874. FCFEEC9D2486E68E00402A7F /* WebKit.framework */,
  875. A7D55B42A22051DAD69E89D0 /* Pods_LoopFollow.framework */,
  876. FCE537C2249AAB2600F80BF8 /* NotificationCenter.framework */,
  877. );
  878. name = Frameworks;
  879. sourceTree = "<group>";
  880. };
  881. 8E32230C453C93FDCE59C2B9 /* Pods */ = {
  882. isa = PBXGroup;
  883. children = (
  884. ECA3EFB4037410B4973BB632 /* Pods-LoopFollow.debug.xcconfig */,
  885. 059B0FA59AABFE72FE13DDDA /* Pods-LoopFollow.release.xcconfig */,
  886. );
  887. path = Pods;
  888. sourceTree = "<group>";
  889. };
  890. DD02475A2DB2E8CE00FCADF6 /* AlarmCondition */ = {
  891. isa = PBXGroup;
  892. children = (
  893. DDCC3A552DDC9617006F1C10 /* MissedBolusCondition.swift */,
  894. DDCC3A4E2DDC5B54006F1C10 /* BatteryDropCondition.swift */,
  895. DDCC3A4A2DDBB5E4006F1C10 /* BatteryCondition.swift */,
  896. DDCC3A512DDED000006F1C10 /* PumpBatteryCondition.swift */,
  897. DDB9FC7A2DDB573F00EFAA76 /* IOBCondition.swift */,
  898. DDC6CA482DD8E47A0060EE25 /* PumpVolumeCondition.swift */,
  899. DDC6CA442DD8D8E60060EE25 /* PumpChangeCondition.swift */,
  900. DDC6CA422DD8CED20060EE25 /* SensorAgeCondition.swift */,
  901. DDC6CA3C2DD7C6090060EE25 /* TemporaryCondition.swift */,
  902. DD7F4C1E2DD6648B00D449E9 /* FastRiseCondition.swift */,
  903. DD7F4C1A2DD6501D00D449E9 /* COBCondition.swift */,
  904. DD7F4C162DD63FA700D449E9 /* RecBolusCondition.swift */,
  905. DD7F4C122DD51FD500D449E9 /* TempTargetEndCondition.swift */,
  906. DD7F4C0E2DD51EC200D449E9 /* TempTargetStartCondition.swift */,
  907. DD7F4C0A2DD51C5500D449E9 /* OverrideEndCondition.swift */,
  908. DD7F4C042DD4BBE200D449E9 /* NotLoopingCondition.swift */,
  909. DD7F4C082DD504A700D449E9 /* OverrideStartCondition.swift */,
  910. DD7F4BC62DD473A600D449E9 /* FastDropCondition.swift */,
  911. DD0650EA2DCE8385004D3B41 /* LowBGCondition.swift */,
  912. DD02475B2DB2E8FB00FCADF6 /* BuildExpireCondition.swift */,
  913. DD0247582DB2E89600FCADF6 /* AlarmCondition.swift */,
  914. DD0650EE2DCE96FF004D3B41 /* HighBGCondition.swift */,
  915. DD0650F02DCE9A9E004D3B41 /* MissedReadingCondition.swift */,
  916. );
  917. path = AlarmCondition;
  918. sourceTree = "<group>";
  919. };
  920. DD0C0C692C4852A100DBADDF /* Metric */ = {
  921. isa = PBXGroup;
  922. children = (
  923. DD0C0C672C48529400DBADDF /* Metric.swift */,
  924. DD0C0C6A2C48562000DBADDF /* InsulinMetric.swift */,
  925. DD0C0C6C2C48606200DBADDF /* CarbMetric.swift */,
  926. );
  927. path = Metric;
  928. sourceTree = "<group>";
  929. };
  930. DD0C0C6E2C4AFFB800DBADDF /* Remote */ = {
  931. isa = PBXGroup;
  932. children = (
  933. DDDF6F4A2D479B6A00884336 /* Nightscout */,
  934. DDDF6F482D479AEF00884336 /* NoRemoteView.swift */,
  935. DDEF503E2D479B8A00884336 /* LoopAPNS */,
  936. DD4878112C7B74F90048F05C /* TRC */,
  937. DD4878062C7B2E9E0048F05C /* Settings */,
  938. DDF699972C5AA2E50058A8D9 /* TempTargetPreset */,
  939. DD0C0C6F2C4AFFE800DBADDF /* RemoteViewController.swift */,
  940. DDE69ED12C7256260013EAEC /* RemoteType.swift */,
  941. );
  942. path = Remote;
  943. sourceTree = "<group>";
  944. };
  945. DD13BC732C3FD60E0062313B /* InfoTable */ = {
  946. isa = PBXGroup;
  947. children = (
  948. DD13BC742C3FD6200062313B /* InfoType.swift */,
  949. DD13BC762C3FD64E0062313B /* InfoData.swift */,
  950. DD13BC782C3FE63A0062313B /* InfoManager.swift */,
  951. DD0C0C652C46E54C00DBADDF /* InfoDataSeparator.swift */,
  952. );
  953. path = InfoTable;
  954. sourceTree = "<group>";
  955. };
  956. DD2C2E4D2D3B8ACF006413A5 /* Nightscout */ = {
  957. isa = PBXGroup;
  958. children = (
  959. DD2C2E502D3B8B0B006413A5 /* NightscoutSettingsViewModel.swift */,
  960. DD2C2E4E2D3B8AEC006413A5 /* NightscoutSettingsView.swift */,
  961. );
  962. path = Nightscout;
  963. sourceTree = "<group>";
  964. };
  965. DD4878062C7B2E9E0048F05C /* Settings */ = {
  966. isa = PBXGroup;
  967. children = (
  968. 65E153C22E4BB69100693A4F /* URLTokenValidationView.swift */,
  969. 656F8C132E49F3D20008DC1D /* RemoteCommandSettings.swift */,
  970. DD4878072C7B30BF0048F05C /* RemoteSettingsView.swift */,
  971. DD4878092C7B30D40048F05C /* RemoteSettingsViewModel.swift */,
  972. );
  973. path = Settings;
  974. sourceTree = "<group>";
  975. };
  976. DD4878112C7B74F90048F05C /* TRC */ = {
  977. isa = PBXGroup;
  978. children = (
  979. DD485F132E454B2600CE8CBF /* SecureMessenger.swift */,
  980. DD48781F2C7DAF890048F05C /* PushMessage.swift */,
  981. DD4878122C7B750D0048F05C /* TempTargetView.swift */,
  982. DD48781D2C7DAF2F0048F05C /* PushNotificationManager.swift */,
  983. DD4878142C7B75230048F05C /* MealView.swift */,
  984. DD48780F2C7B74BF0048F05C /* TrioRemoteControlView.swift */,
  985. DD48780D2C7B74A40048F05C /* TrioRemoteControlViewModel.swift */,
  986. DD4878162C7B75350048F05C /* BolusView.swift */,
  987. DDD10F022C518A6500D76A8E /* TreatmentResponse.swift */,
  988. DD4878182C7C56D60048F05C /* TrioNightscoutRemoteController.swift */,
  989. DDFD5C522CB167DA00D3FD68 /* TRCCommandType.swift */,
  990. DDBE3ABC2CB5A961006B37DC /* OverrideView.swift */,
  991. );
  992. path = TRC;
  993. sourceTree = "<group>";
  994. };
  995. DD493AEA2ACF2761009A6922 /* Treatments */ = {
  996. isa = PBXGroup;
  997. children = (
  998. DD7E19872ACDA5DA00DBD158 /* Notes.swift */,
  999. DD7E19832ACDA50C00DBD158 /* Overrides.swift */,
  1000. DD7E19852ACDA59700DBD158 /* BGCheck.swift */,
  1001. DD7E19892ACDA62600DBD158 /* SensorStart.swift */,
  1002. DD493AD62ACF2139009A6922 /* SuspendPump.swift */,
  1003. DD493AD82ACF2171009A6922 /* Carbs.swift */,
  1004. DD493ADC2ACF21E0009A6922 /* Basals.swift */,
  1005. DD493ADA2ACF21A3009A6922 /* Bolus.swift */,
  1006. DD493AD42ACF2109009A6922 /* ResumePump.swift */,
  1007. DDF9676D2AD08C6E00C5EB95 /* SiteChange.swift */,
  1008. DD608A092C23593900F91132 /* SMB.swift */,
  1009. DDD10F0A2C54192A00D76A8E /* TemporaryTarget.swift */,
  1010. DD5334202C60EBEE00062F9D /* InsulinCartridgeChange.swift */,
  1011. );
  1012. path = Treatments;
  1013. sourceTree = "<group>";
  1014. };
  1015. DD50C74D2D0828250057AE6F /* Contact */ = {
  1016. isa = PBXGroup;
  1017. children = (
  1018. DDA9ACAB2D6B316F00E6F1A9 /* ContactType.swift */,
  1019. DDA9ACA92D6A6B8200E6F1A9 /* ContactIncludeOption.swift */,
  1020. DDA9ACA72D6A66DD00E6F1A9 /* ContactColorOption.swift */,
  1021. DD50C7542D0862770057AE6F /* ContactImageUpdater.swift */,
  1022. );
  1023. path = Contact;
  1024. sourceTree = "<group>";
  1025. };
  1026. DD5334252C61667700062F9D /* InfoDisplaySettings */ = {
  1027. isa = PBXGroup;
  1028. children = (
  1029. DD5334262C61668700062F9D /* InfoDisplaySettingsViewModel.swift */,
  1030. DD5334282C6166A500062F9D /* InfoDisplaySettingsView.swift */,
  1031. );
  1032. path = InfoDisplaySettings;
  1033. sourceTree = "<group>";
  1034. };
  1035. DD7E19802ACDA0EA00DBD158 /* Nightscout */ = {
  1036. isa = PBXGroup;
  1037. children = (
  1038. DD493AEA2ACF2761009A6922 /* Treatments */,
  1039. DD493ADE2ACF22BB009A6922 /* SAge.swift */,
  1040. DD493AE02ACF22FE009A6922 /* Profile.swift */,
  1041. DD493AE22ACF2358009A6922 /* CAge.swift */,
  1042. DD493AE42ACF2383009A6922 /* Treatments.swift */,
  1043. DD493AE62ACF23CF009A6922 /* DeviceStatus.swift */,
  1044. DD493AE82ACF2445009A6922 /* BGData.swift */,
  1045. DD6A935D2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift */,
  1046. DD608A072C1F584900F91132 /* DeviceStatusLoop.swift */,
  1047. DD0C0C5F2C415B9D00DBADDF /* ProfileManager.swift */,
  1048. DD0C0C612C4175FD00DBADDF /* NSProfile.swift */,
  1049. DD5334222C60ED3600062F9D /* IAge.swift */,
  1050. );
  1051. path = Nightscout;
  1052. sourceTree = "<group>";
  1053. };
  1054. DD98F54224BCEF190007425A /* Extensions */ = {
  1055. isa = PBXGroup;
  1056. children = (
  1057. DD98F54324BCEFEE0007425A /* ShareClientExtension.swift */,
  1058. DDCF979324C0D380002C9752 /* UIViewExtension.swift */,
  1059. DD7FFAFC2A72953000C3A304 /* EKEventStore+Extensions.swift */,
  1060. DD0C0C632C45A59400DBADDF /* HKUnit+Extensions.swift */,
  1061. DD4AFB662DB68C5500BB593F /* UUID+Identifiable.swift */,
  1062. DD4AFB6A2DB6BF2A00BB593F /* Binding+Optional.swift */,
  1063. );
  1064. path = Extensions;
  1065. sourceTree = "<group>";
  1066. };
  1067. DD9ED0C62D355225000D2A63 /* Log */ = {
  1068. isa = PBXGroup;
  1069. children = (
  1070. DD9ED0CD2D355879000D2A63 /* LogEntry.swift */,
  1071. DD9ED0CB2D35526E000D2A63 /* SearchBar.swift */,
  1072. DD9ED0C92D355256000D2A63 /* LogView.swift */,
  1073. DD9ED0C72D35523F000D2A63 /* LogViewModel.swift */,
  1074. DDEF50392D31614200999A5D /* LogManager.swift */,
  1075. );
  1076. path = Log;
  1077. sourceTree = "<group>";
  1078. };
  1079. DDAD16302D2EF98C0084BE10 /* Devices */ = {
  1080. isa = PBXGroup;
  1081. children = (
  1082. DD85E9942D739CED001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift */,
  1083. DDAD162E2D2EF97C0084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift */,
  1084. DD5817192D299EF40041FB98 /* DexcomHeartbeatBluetoothDevice.swift */,
  1085. );
  1086. path = Devices;
  1087. sourceTree = "<group>";
  1088. };
  1089. DDB0AF4F2BB1A81F00AFA48B /* Scripts */ = {
  1090. isa = PBXGroup;
  1091. children = (
  1092. DDB0AF502BB1A84500AFA48B /* capture-build-details.sh */,
  1093. );
  1094. path = Scripts;
  1095. sourceTree = "<group>";
  1096. };
  1097. DDC6CA3B2DD7B9050060EE25 /* AlarmType */ = {
  1098. isa = PBXGroup;
  1099. children = (
  1100. DDCF9A812D85FD14004DF4DD /* AlarmType.swift */,
  1101. DD7F4C222DD7A62200D449E9 /* AlarmType+SortDirection.swift */,
  1102. DD7F4C242DD7B20700D449E9 /* AlarmType+timeUnit.swift */,
  1103. DD0B9D552DE1EC8A0090C337 /* AlarmType+Snooze.swift */,
  1104. DD0B9D572DE1F3B20090C337 /* AlarmType+canAcknowledge.swift */,
  1105. );
  1106. path = AlarmType;
  1107. sourceTree = "<group>";
  1108. };
  1109. DDC7E5142DBCE1B900EB1127 /* Snoozer */ = {
  1110. isa = PBXGroup;
  1111. children = (
  1112. DDC7E5CE2DC77C2000EB1127 /* SnoozerViewModel.swift */,
  1113. DDC7E5122DBCE1B900EB1127 /* SnoozerView.swift */,
  1114. DDC7E5132DBCE1B900EB1127 /* SnoozerViewController.swift */,
  1115. );
  1116. path = Snoozer;
  1117. sourceTree = "<group>";
  1118. };
  1119. DDC7E53B2DBD8A1600EB1127 /* Components */ = {
  1120. isa = PBXGroup;
  1121. children = (
  1122. DDDB86F02DF7223C00AADDAC /* DeleteAlarmSection.swift */,
  1123. DD7F4BC42DD3CE0700D449E9 /* AlarmBGLimitSection.swift */,
  1124. DD7F4BA02DD2193F00D449E9 /* AlarmSnoozeSection.swift */,
  1125. DD7F4B9E2DD1F92700D449E9 /* AlarmActiveSection.swift */,
  1126. DD7F4B9C2DD1EAE500D449E9 /* AlarmAudioSection.swift */,
  1127. DD0650F62DCFDA26004D3B41 /* InfoBanner.swift */,
  1128. DD0650F42DCF303F004D3B41 /* AlarmStepperSection.swift */,
  1129. DD0650A82DCA8A10004D3B41 /* AlarmBGSection.swift */,
  1130. DDC7E5392DBD8A1600EB1127 /* AlarmGeneralSection.swift */,
  1131. DDC7E53A2DBD8A1600EB1127 /* SoundFile.swift */,
  1132. );
  1133. path = Components;
  1134. sourceTree = "<group>";
  1135. };
  1136. DDC7E53F2DBD8A1600EB1127 /* Editors */ = {
  1137. isa = PBXGroup;
  1138. children = (
  1139. DDCC3A572DDC9655006F1C10 /* MissedBolusAlarmEditor.swift */,
  1140. DDCC3A532DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift */,
  1141. DDCC3A4C2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift */,
  1142. DDCC3A5C2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift */,
  1143. DDB9FC7C2DDB575300EFAA76 /* IOBAlarmEditor.swift */,
  1144. DDC6CA4A2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift */,
  1145. DDC6CA462DD8D9010060EE25 /* PumpChangeAlarmEditor.swift */,
  1146. DDC6CA402DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift */,
  1147. DDC6CA3E2DD7C6340060EE25 /* TemporaryAlarmEditor.swift */,
  1148. DD7F4C202DD66BB100D449E9 /* FastRiseAlarmEditor.swift */,
  1149. DD7F4C1C2DD650D500D449E9 /* COBAlarmEditor.swift */,
  1150. DD7F4C182DD63FD500D449E9 /* RecBolusAlarmEditor.swift */,
  1151. DD7F4C142DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift */,
  1152. DD7F4C102DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift */,
  1153. DD7F4C0C2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift */,
  1154. DD7F4C062DD5042F00D449E9 /* OverrideStartAlarmEditor.swift */,
  1155. DD7F4C022DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift */,
  1156. DD0650EC2DCE9371004D3B41 /* HighBgAlarmEditor.swift */,
  1157. DDC7E53C2DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift */,
  1158. DDC7E53E2DBD8A1600EB1127 /* LowBgAlarmEditor.swift */,
  1159. DD0650F22DCE9B3D004D3B41 /* MissedReadingEditor.swift */,
  1160. DD0650F82DCFE7BE004D3B41 /* FastDropAlarmEditor.swift */,
  1161. );
  1162. path = Editors;
  1163. sourceTree = "<group>";
  1164. };
  1165. DDC7E5412DBD8A1600EB1127 /* AlarmEditing */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. DDC7E53B2DBD8A1600EB1127 /* Components */,
  1169. DDC7E53F2DBD8A1600EB1127 /* Editors */,
  1170. DDC7E5402DBD8A1600EB1127 /* AlarmEditor.swift */,
  1171. );
  1172. path = AlarmEditing;
  1173. sourceTree = "<group>";
  1174. };
  1175. DDC7E5CD2DC6637800EB1127 /* Storage */ = {
  1176. isa = PBXGroup;
  1177. children = (
  1178. FCC688512489363F00A0279D /* Framework */,
  1179. DDD10F002C510C6B00D76A8E /* ObservableUserDefaults.swift */,
  1180. DDD10F062C529DE800D76A8E /* Observable.swift */,
  1181. DD4878042C7B2C970048F05C /* Storage.swift */,
  1182. DD8316472DE49EE5004467AA /* Storage+Migrate.swift */,
  1183. );
  1184. path = Storage;
  1185. sourceTree = "<group>";
  1186. };
  1187. DDCC3A502DDC5BD4006F1C10 /* DataStructs */ = {
  1188. isa = PBXGroup;
  1189. children = (
  1190. DDCC3A592DDC988F006F1C10 /* CarbSample.swift */,
  1191. DDB9FC7E2DDB584500EFAA76 /* BolusEntry.swift */,
  1192. DD5DA27B2DC930D6003D44FC /* GlucoseValue.swift */,
  1193. );
  1194. path = DataStructs;
  1195. sourceTree = "<group>";
  1196. };
  1197. DDCF9A7E2D85FCE6004DF4DD /* Alarm */ = {
  1198. isa = PBXGroup;
  1199. children = (
  1200. DD12D4862E1705E6004E0112 /* AlarmsContainerView.swift */,
  1201. DDDC31CA2E13A7D2009EA0F3 /* AddAlarm */,
  1202. DDCC3A502DDC5BD4006F1C10 /* DataStructs */,
  1203. DDC6CA3B2DD7B9050060EE25 /* AlarmType */,
  1204. DD4AFB602DB68BBC00BB593F /* AlarmListView.swift */,
  1205. DDC7E5412DBD8A1600EB1127 /* AlarmEditing */,
  1206. DD4AFB482DB576C200BB593F /* AlarmSettingsView.swift */,
  1207. DD4AFB3C2DB55D2900BB593F /* AlarmConfiguration.swift */,
  1208. DD02475A2DB2E8CE00FCADF6 /* AlarmCondition */,
  1209. DDCF9A8B2D86005E004DF4DD /* AlarmManager.swift */,
  1210. DDCF9A872D85FD33004DF4DD /* AlarmData.swift */,
  1211. DDCF9A7F2D85FD09004DF4DD /* Alarm.swift */,
  1212. DDBD19952DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift */,
  1213. );
  1214. path = Alarm;
  1215. sourceTree = "<group>";
  1216. };
  1217. DDDC31CA2E13A7D2009EA0F3 /* AddAlarm */ = {
  1218. isa = PBXGroup;
  1219. children = (
  1220. DDDC31CD2E13A811009EA0F3 /* AlarmTile.swift */,
  1221. DDDC31CB2E13A7DF009EA0F3 /* AddAlarmSheet.swift */,
  1222. );
  1223. path = AddAlarm;
  1224. sourceTree = "<group>";
  1225. };
  1226. DDDF6F4A2D479B6A00884336 /* Nightscout */ = {
  1227. isa = PBXGroup;
  1228. children = (
  1229. DD0C0C712C4B000800DBADDF /* TrioNightscoutRemoteView.swift */,
  1230. );
  1231. path = Nightscout;
  1232. sourceTree = "<group>";
  1233. };
  1234. DDEF503D2D32753A00999A5D /* Task */ = {
  1235. isa = PBXGroup;
  1236. children = (
  1237. DD9ACA0F2D34128600415D8A /* Task.swift */,
  1238. DD9ACA0D2D340BFE00415D8A /* AlarmTask.swift */,
  1239. DD9ACA0B2D33BB8400415D8A /* CalendarTask.swift */,
  1240. DD9ACA092D33095500415D8A /* MinAgoTask.swift */,
  1241. DD9ACA072D32F68900415D8A /* BGTask.swift */,
  1242. DD9ACA052D32AF6E00415D8A /* TreatmentsTask.swift */,
  1243. DD9ACA032D32821200415D8A /* DeviceStatusTask.swift */,
  1244. DDEF503E2D32754A00999A5D /* ProfileTask.swift */,
  1245. DDEF503B2D31BE2A00999A5D /* TaskScheduler.swift */,
  1246. );
  1247. path = Task;
  1248. sourceTree = "<group>";
  1249. };
  1250. DDEF503E2D479B8A00884336 /* LoopAPNS */ = {
  1251. isa = PBXGroup;
  1252. children = (
  1253. 657F99E82F0BC81500F732BD /* OTPSecureMessenger.swift */,
  1254. 6584B1002E4A263900135D4D /* TOTPService.swift */,
  1255. DDEF503F2D479B8A00884336 /* LoopAPNSService.swift */,
  1256. DDEF50412D479BAA00884336 /* LoopAPNSCarbsView.swift */,
  1257. DDEF50422D479BBA00884336 /* LoopAPNSBolusView.swift */,
  1258. 654134172E1DC09700BDBE08 /* OverridePresetsView.swift */,
  1259. 654134192E1DC27900BDBE08 /* OverridePresetData.swift */,
  1260. DDEF50442D479BDA00884336 /* LoopAPNSRemoteView.swift */,
  1261. );
  1262. path = LoopAPNS;
  1263. sourceTree = "<group>";
  1264. };
  1265. DDF699972C5AA2E50058A8D9 /* TempTargetPreset */ = {
  1266. isa = PBXGroup;
  1267. children = (
  1268. DDF699982C5AA3060058A8D9 /* TempTargetPresetManager.swift */,
  1269. DDF6999A2C5AA32E0058A8D9 /* TempTargetPreset.swift */,
  1270. );
  1271. path = TempTargetPreset;
  1272. sourceTree = "<group>";
  1273. };
  1274. DDF6999C2C5AAA4C0058A8D9 /* Views */ = {
  1275. isa = PBXGroup;
  1276. children = (
  1277. 656F8C0F2E49F36F0008DC1D /* QRCodeDisplayView.swift */,
  1278. DDE75D2C2DE71401007C1FC1 /* TogglableSecureInput.swift */,
  1279. DDE75D222DE5E505007C1FC1 /* Glyph.swift */,
  1280. DD8316492DE4C504004467AA /* SettingsStepperRow.swift */,
  1281. DD8316432DE47CA9004467AA /* BGPicker.swift */,
  1282. DDF6999D2C5AAA640058A8D9 /* ErrorMessageView.swift */,
  1283. DD16AF0E2C99592F00FB655A /* HKQuantityInputView.swift */,
  1284. DD16AF102C997B4600FB655A /* LoadingButtonView.swift */,
  1285. DDE75D262DE5E539007C1FC1 /* ActionRow.swift */,
  1286. 654132E62E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift */,
  1287. DDE75D282DE5E56C007C1FC1 /* LinkRow.swift */,
  1288. DDE75D2A2DE5E613007C1FC1 /* NavigationRow.swift */,
  1289. );
  1290. path = Views;
  1291. sourceTree = "<group>";
  1292. };
  1293. DDFF3D792D140F1800BF9D9E /* BackgroundRefresh */ = {
  1294. isa = PBXGroup;
  1295. children = (
  1296. DDFF3D7A2D140F4200BF9D9E /* BT */,
  1297. DDFF3D842D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift */,
  1298. DDFF3D862D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift */,
  1299. DDFF3D882D1429AB00BF9D9E /* BackgroundRefreshType.swift */,
  1300. );
  1301. path = BackgroundRefresh;
  1302. sourceTree = "<group>";
  1303. };
  1304. DDFF3D7A2D140F4200BF9D9E /* BT */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. DDAD16302D2EF98C0084BE10 /* Devices */,
  1308. DD58171D2D299FC50041FB98 /* BluetoothDeviceDelegate.swift */,
  1309. DD58171B2D299F8D0041FB98 /* BluetoothDevice.swift */,
  1310. DD5817162D2710E50041FB98 /* BLEDeviceSelectionView.swift */,
  1311. DDFF3D7E2D1414A200BF9D9E /* BLEDevice.swift */,
  1312. DD5334AF2D1447C500CDD6EA /* BLEManager.swift */,
  1313. );
  1314. path = BT;
  1315. sourceTree = "<group>";
  1316. };
  1317. FC16A97624995FEE003D6245 /* Application */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. FC97881F2485969B00A7906C /* Main.storyboard */,
  1321. FC9788172485969B00A7906C /* AppDelegate.swift */,
  1322. FC9788192485969B00A7906C /* SceneDelegate.swift */,
  1323. FC9788272485969C00A7906C /* LaunchScreen.storyboard */,
  1324. );
  1325. path = Application;
  1326. sourceTree = "<group>";
  1327. };
  1328. FC16A9782499657E003D6245 /* Controllers */ = {
  1329. isa = PBXGroup;
  1330. children = (
  1331. DD7E19802ACDA0EA00DBD158 /* Nightscout */,
  1332. FC7CE589248ABEA3001F83B8 /* AlarmSound.swift */,
  1333. FC16A97924996673003D6245 /* NightScout.swift */,
  1334. FC16A97C24996747003D6245 /* SpeakBG.swift */,
  1335. FC16A97E249969E2003D6245 /* Graphs.swift */,
  1336. FC1BDD2A24A22650001B652C /* Stats.swift */,
  1337. FC1BDD2C24A23204001B652C /* MainViewController+updateStats.swift */,
  1338. FCA2DDE52501095000254A8C /* Timers.swift */,
  1339. DD608A0B2C27415C00F91132 /* BackgroundAlertManager.swift */,
  1340. 65E8A2852E44B0300065037B /* VolumeButtonHandler.swift */,
  1341. );
  1342. path = Controllers;
  1343. sourceTree = "<group>";
  1344. };
  1345. FC7CE4A8248ABE0D001F83B8 /* Alarm Sounds */ = {
  1346. isa = PBXGroup;
  1347. children = (
  1348. FC7CE58C248ABEF1001F83B8 /* alarm-notification.m4a */,
  1349. FC7CE58B248ABEF1001F83B8 /* alarm.mp3 */,
  1350. FC7CE4CE248ABE2F001F83B8 /* 1-millisecond-of-silence.mp3 */,
  1351. FC7CE4C9248ABE2F001F83B8 /* 20ms-of-silence.caf */,
  1352. FC7CE4EC248ABE33001F83B8 /* 500ms-of-silence.mp3 */,
  1353. FC7CE507248ABE35001F83B8 /* Alarm_Buzzer.caf */,
  1354. FC7CE4CB248ABE2F001F83B8 /* Alarm_Clock.caf */,
  1355. FC7CE50C248ABE36001F83B8 /* Alert_Tone_Busy.caf */,
  1356. FC7CE4EB248ABE33001F83B8 /* Alert_Tone_Ringtone_1.caf */,
  1357. FC7CE4B8248ABE2C001F83B8 /* Alert_Tone_Ringtone_2.caf */,
  1358. FC7CE4D3248ABE30001F83B8 /* Alien_Siren.caf */,
  1359. FC7CE4FF248ABE35001F83B8 /* Ambulance.caf */,
  1360. FC7CE4DE248ABE32001F83B8 /* Analog_Watch_Alarm.caf */,
  1361. FC7CE4ED248ABE33001F83B8 /* Big_Clock_Ticking.caf */,
  1362. FC7CE4B1248ABE2C001F83B8 /* Burglar_Alarm_Siren_1.caf */,
  1363. FC7CE4F1248ABE33001F83B8 /* Burglar_Alarm_Siren_2.caf */,
  1364. FC7CE4C6248ABE2E001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf */,
  1365. FC7CE4FC248ABE34001F83B8 /* Cartoon_Ascend_Then_Descend.caf */,
  1366. FC7CE4B9248ABE2D001F83B8 /* Cartoon_Bounce_To_Ceiling.caf */,
  1367. FC7CE4CC248ABE2F001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf */,
  1368. FC7CE508248ABE35001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf */,
  1369. FC7CE4E0248ABE32001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf */,
  1370. FC7CE4FB248ABE34001F83B8 /* Cartoon_Siren.caf */,
  1371. FC7CE4B0248ABE2B001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf */,
  1372. FC7CE4D7248ABE31001F83B8 /* Cartoon_Uh_Oh.caf */,
  1373. FC7CE4BF248ABE2D001F83B8 /* Cartoon_Villain_Horns.caf */,
  1374. FC7CE4EF248ABE33001F83B8 /* Cell_Phone_Ring_Tone.caf */,
  1375. FC7CE505248ABE35001F83B8 /* Chimes_Glassy.caf */,
  1376. FC7CE4AF248ABE2B001F83B8 /* Computer_Magic.caf */,
  1377. FC7CE4F4248ABE34001F83B8 /* CSFX-2_Alarm.caf */,
  1378. FC7CE4BD248ABE2D001F83B8 /* Cuckoo_Clock.caf */,
  1379. FC7CE4C1248ABE2E001F83B8 /* Dhol_Shuffleloop.caf */,
  1380. FC7CE4D2248ABE30001F83B8 /* Discreet.caf */,
  1381. FC7CE4CD248ABE2F001F83B8 /* Early_Sunrise.caf */,
  1382. FC7CE4B2248ABE2C001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf */,
  1383. FC7CE4DD248ABE32001F83B8 /* Emergency_Alarm_Siren.caf */,
  1384. FC7CE50B248ABE36001F83B8 /* Emergency_Alarm.caf */,
  1385. FC7CE4C4248ABE2E001F83B8 /* Ending_Reached.caf */,
  1386. FC7CE4C7248ABE2E001F83B8 /* Fly.caf */,
  1387. FC7CE500248ABE35001F83B8 /* Ghost_Hover.caf */,
  1388. FC7CE50A248ABE36001F83B8 /* Good_Morning.caf */,
  1389. FC7CE4DF248ABE32001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf */,
  1390. FC7CE4F7248ABE34001F83B8 /* In_A_Hurry.caf */,
  1391. FC7CE4D6248ABE31001F83B8 /* Indeed.caf */,
  1392. FC7CE501248ABE35001F83B8 /* Insistently.caf */,
  1393. FC7CE4AB248ABE2B001F83B8 /* Jingle_All_The_Way.caf */,
  1394. FC7CE4BA248ABE2D001F83B8 /* Laser_Shoot.caf */,
  1395. FC7CE4BC248ABE2D001F83B8 /* Machine_Charge.caf */,
  1396. FC7CE4DA248ABE31001F83B8 /* Magical_Twinkle.caf */,
  1397. FC7CE504248ABE35001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf */,
  1398. FC7CE4E2248ABE32001F83B8 /* Marimba_Descend.caf */,
  1399. FC7CE4B5248ABE2C001F83B8 /* Marimba_Flutter_or_Shake.caf */,
  1400. FC7CE517248ABE37001F83B8 /* Martian_Gun.caf */,
  1401. FC7CE4EA248ABE33001F83B8 /* Martian_Scanner.caf */,
  1402. FC7CE4EE248ABE33001F83B8 /* Metallic.caf */,
  1403. FC7CE4BB248ABE2D001F83B8 /* Nightguard.caf */,
  1404. FC7CE4AE248ABE2B001F83B8 /* Not_Kiddin.caf */,
  1405. FC7CE4C8248ABE2E001F83B8 /* Open_Your_Eyes_And_See.caf */,
  1406. FC7CE4F8248ABE34001F83B8 /* Orchestral_Horns.caf */,
  1407. FC7CE515248ABE37001F83B8 /* Oringz.caf */,
  1408. FC7CE4D4248ABE30001F83B8 /* Pager_Beeps.caf */,
  1409. FC7CE4CA248ABE2F001F83B8 /* Remembers_Me_Of_Asia.caf */,
  1410. FC7CE4AA248ABE2B001F83B8 /* Rise_And_Shine.caf */,
  1411. FC7CE4E9248ABE33001F83B8 /* Rush.caf */,
  1412. FC7CE4D8248ABE31001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf */,
  1413. FC7CE4D5248ABE31001F83B8 /* Sci-Fi_Alarm_Loop_1.caf */,
  1414. FC7CE514248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_2.caf */,
  1415. FC7CE4B7248ABE2C001F83B8 /* Sci-Fi_Alarm_Loop_3.caf */,
  1416. FC7CE510248ABE36001F83B8 /* Sci-Fi_Alarm_Loop_4.caf */,
  1417. FC7CE511248ABE36001F83B8 /* Sci-Fi_Alarm.caf */,
  1418. FC7CE4C2248ABE2E001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf */,
  1419. FC7CE4E7248ABE33001F83B8 /* Sci-Fi_Console_Alarm.caf */,
  1420. FC7CE4E4248ABE32001F83B8 /* Sci-Fi_Eerie_Alarm.caf */,
  1421. FC7CE4F9248ABE34001F83B8 /* Sci-Fi_Engine_Shut_Down.caf */,
  1422. FC7CE4E6248ABE32001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf */,
  1423. FC7CE4F6248ABE34001F83B8 /* Sci-Fi_Spaceship_Message.caf */,
  1424. FC7CE4AD248ABE2B001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf */,
  1425. FC7CE4B6248ABE2C001F83B8 /* Sci-Fi_Warning.caf */,
  1426. FC7CE4B3248ABE2C001F83B8 /* Signature_Corporate.caf */,
  1427. FC7CE4FA248ABE34001F83B8 /* silence-1sec.mp3 */,
  1428. FC7CE4A9248ABE2B001F83B8 /* Siri_Alert_Calibration_Needed.caf */,
  1429. FC7CE4DC248ABE32001F83B8 /* Siri_Alert_Device_Muted.caf */,
  1430. FC7CE4D0248ABE30001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf */,
  1431. FC7CE4E5248ABE32001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf */,
  1432. FC7CE4E1248ABE32001F83B8 /* Siri_Alert_High_Glucose.caf */,
  1433. FC7CE4FE248ABE35001F83B8 /* Siri_Alert_Low_Glucose.caf */,
  1434. FC7CE509248ABE36001F83B8 /* Siri_Alert_Missed_Readings.caf */,
  1435. FC7CE4F0248ABE33001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf */,
  1436. FC7CE4DB248ABE31001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf */,
  1437. FC7CE4E3248ABE32001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf */,
  1438. FC7CE503248ABE35001F83B8 /* Siri_Calibration_Needed.caf */,
  1439. FC7CE506248ABE35001F83B8 /* Siri_Device_Muted.caf */,
  1440. FC7CE516248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf */,
  1441. FC7CE4C0248ABE2D001F83B8 /* Siri_Glucose_Rising_Fast.caf */,
  1442. FC7CE4C3248ABE2E001F83B8 /* Siri_High_Glucose.caf */,
  1443. FC7CE4F5248ABE34001F83B8 /* Siri_Low_Glucose.caf */,
  1444. FC7CE4C5248ABE2E001F83B8 /* Siri_Missed_Readings.caf */,
  1445. FC7CE513248ABE36001F83B8 /* Siri_Transmitter_Battery_Low.caf */,
  1446. FC7CE4BE248ABE2D001F83B8 /* Siri_Urgent_High_Glucose.caf */,
  1447. FC7CE512248ABE36001F83B8 /* Siri_Urgent_Low_Glucose.caf */,
  1448. FC7CE4E8248ABE33001F83B8 /* Soft_Marimba_Pad_Positive.caf */,
  1449. FC7CE4CF248ABE30001F83B8 /* Soft_Warm_Airy_Optimistic.caf */,
  1450. FC7CE4F3248ABE34001F83B8 /* Soft_Warm_Airy_Reassuring.caf */,
  1451. FC7CE4D9248ABE31001F83B8 /* Store_Door_Chime.caf */,
  1452. FC7CE502248ABE35001F83B8 /* Sunny.caf */,
  1453. FC7CE4AC248ABE2B001F83B8 /* Thunder_Sound_FX.caf */,
  1454. FC7CE4FD248ABE35001F83B8 /* Time_Has_Come.caf */,
  1455. FC7CE50D248ABE36001F83B8 /* Tornado_Siren.caf */,
  1456. FC7CE4D1248ABE30001F83B8 /* Two_Turtle_Doves.caf */,
  1457. FC7CE50F248ABE36001F83B8 /* Unpaved.caf */,
  1458. FC7CE4B4248ABE2C001F83B8 /* Wake_Up_Will_You.caf */,
  1459. FC7CE50E248ABE36001F83B8 /* Win_Gain.caf */,
  1460. FC7CE4F2248ABE34001F83B8 /* Wrong_Answer.caf */,
  1461. );
  1462. path = "Alarm Sounds";
  1463. sourceTree = "<group>";
  1464. };
  1465. FC7CE59A248D334B001F83B8 /* Resources */ = {
  1466. isa = PBXGroup;
  1467. children = (
  1468. FCC6885D24896A6C00A0279D /* silence.mp3 */,
  1469. FCC6885B2489559400A0279D /* blank.wav */,
  1470. FC7CE4A8248ABE0D001F83B8 /* Alarm Sounds */,
  1471. FC9788252485969C00A7906C /* Assets.xcassets */,
  1472. FC7CE59B248D33A9001F83B8 /* dragbar.png */,
  1473. );
  1474. path = Resources;
  1475. sourceTree = "<group>";
  1476. };
  1477. FC8DEEE32485D1680075863F /* LoopFollow */ = {
  1478. isa = PBXGroup;
  1479. children = (
  1480. 6589CC612E9E7D1600BB18FE /* Settings */,
  1481. 65AC26702ED245DF00421360 /* Treatments */,
  1482. 65AC25F52ECFD5E800421360 /* Stats */,
  1483. DDCF9A7E2D85FCE6004DF4DD /* Alarm */,
  1484. FC16A97624995FEE003D6245 /* Application */,
  1485. DDFF3D792D140F1800BF9D9E /* BackgroundRefresh */,
  1486. DD50C74D2D0828250057AE6F /* Contact */,
  1487. FC16A9782499657E003D6245 /* Controllers */,
  1488. DD98F54224BCEF190007425A /* Extensions */,
  1489. FCC688542489367300A0279D /* Helpers */,
  1490. FC8DEEE62485D1ED0075863F /* Info.plist */,
  1491. DD5334252C61667700062F9D /* InfoDisplaySettings */,
  1492. DD13BC732C3FD60E0062313B /* InfoTable */,
  1493. DD9ED0C62D355225000D2A63 /* Log */,
  1494. FCC688702489A57C00A0279D /* Loop Follow.entitlements */,
  1495. DD0C0C692C4852A100DBADDF /* Metric */,
  1496. DD2C2E4D2D3B8ACF006413A5 /* Nightscout */,
  1497. DD0C0C6E2C4AFFB800DBADDF /* Remote */,
  1498. FC7CE59A248D334B001F83B8 /* Resources */,
  1499. DDC7E5142DBCE1B900EB1127 /* Snoozer */,
  1500. DDC7E5CD2DC6637800EB1127 /* Storage */,
  1501. DDEF503D2D32753A00999A5D /* Task */,
  1502. FCC68871248A736700A0279D /* ViewControllers */,
  1503. );
  1504. path = LoopFollow;
  1505. sourceTree = "<group>";
  1506. };
  1507. FC97880B2485969B00A7906C = {
  1508. isa = PBXGroup;
  1509. children = (
  1510. DDF2C0132BEFD468007A20E6 /* blacklisted-versions.json */,
  1511. DDB0AF542BB1B24A00AFA48B /* BuildDetails.plist */,
  1512. DDB0AF4F2BB1A81F00AFA48B /* Scripts */,
  1513. DDCFCAF12B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig */,
  1514. FC3AE7B3249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld */,
  1515. FC5A5C3C2497B229009C550E /* Config.xcconfig */,
  1516. FC8DEEE32485D1680075863F /* LoopFollow */,
  1517. DDCC3AD72DDE1790006F1C10 /* Tests */,
  1518. FC9788152485969B00A7906C /* Products */,
  1519. 8E32230C453C93FDCE59C2B9 /* Pods */,
  1520. 6A5880E0B811AF443B05AB02 /* Frameworks */,
  1521. );
  1522. sourceTree = "<group>";
  1523. };
  1524. FC9788152485969B00A7906C /* Products */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. FC9788142485969B00A7906C /* Loop Follow.app */,
  1528. DDCC3AD62DDE1790006F1C10 /* Tests.xctest */,
  1529. );
  1530. name = Products;
  1531. sourceTree = "<group>";
  1532. };
  1533. FCC688512489363F00A0279D /* Framework */ = {
  1534. isa = PBXGroup;
  1535. children = (
  1536. FCC6886624898F8000A0279D /* UserDefaultsValue.swift */,
  1537. FCC6886824898FB100A0279D /* UserDefaultsValueGroups.swift */,
  1538. DDD10EFE2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift */,
  1539. DDD10F042C529DA200D76A8E /* ObservableValue.swift */,
  1540. DD4878022C7B297E0048F05C /* StorageValue.swift */,
  1541. DD16AF0C2C98485400FB655A /* SecureStorageValue.swift */,
  1542. );
  1543. path = Framework;
  1544. sourceTree = "<group>";
  1545. };
  1546. FCC688542489367300A0279D /* Helpers */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. DD026E5A2EA2C9C300A39CB5 /* InsulinFormatter.swift */,
  1550. DD026E582EA2C8A200A39CB5 /* InsulinPrecisionManager.swift */,
  1551. 656F8C112E49F3780008DC1D /* QRCodeGenerator.swift */,
  1552. DD4A407D2E6AFEE6007B318B /* AuthService.swift */,
  1553. DD1D52BF2E4C100000000001 /* AppearanceMode.swift */,
  1554. DD1D52B82E1EB5DC00432050 /* TabPosition.swift */,
  1555. DD83164B2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift */,
  1556. DD4AFB3A2DB55CB600BB593F /* TimeOfDay.swift */,
  1557. DD7B0D432D730A320063DCB6 /* CycleHelper.swift */,
  1558. DDF6999C2C5AAA4C0058A8D9 /* Views */,
  1559. FCC6886E2489A53800A0279D /* AppConstants.swift */,
  1560. FCC6886A24898FD800A0279D /* ObservationToken.swift */,
  1561. FCC6886C2489909D00A0279D /* AnyConvertible.swift */,
  1562. FCC688592489554800A0279D /* BackgroundTaskAudio.swift */,
  1563. FCFEEC9F2488157B00402A7F /* Chart.swift */,
  1564. FCC0FAC124922A22003E610E /* DictionaryKeyPath.swift */,
  1565. FC16A98024996C07003D6245 /* DateTime.swift */,
  1566. 654132E92E19F24800BDBE08 /* TOTPGenerator.swift */,
  1567. FCE537BB249A4D7D00F80BF8 /* carbBolusArrays.swift */,
  1568. FCEF87AA24A1417900AE6FA0 /* Localizer.swift */,
  1569. FC1BDD2E24A232A3001B652C /* DataStructs.swift */,
  1570. FCD2A27C24C9D044009F7B7B /* Globals.swift */,
  1571. FC8589BE252B54F500C8FC73 /* Mobileprovision.swift */,
  1572. DD07B5C829E2F9C400C6A635 /* NightscoutUtils.swift */,
  1573. DDB0AF512BB1A8BE00AFA48B /* BuildDetails.swift */,
  1574. DD91E4DC2BDEC3F8002D9E97 /* GlucoseConversion.swift */,
  1575. DDF2C00F2BEFA991007A20E6 /* GitHubService.swift */,
  1576. DDF2C0112BEFB733007A20E6 /* AppVersionManager.swift */,
  1577. DDF699952C5582290058A8D9 /* TextFieldWithToolBar.swift */,
  1578. DDC7E5372DBD887400EB1127 /* isOnPhoneCall.swift */,
  1579. DDDC01DC2E244B3100D9975C /* JWTManager.swift */,
  1580. 6541341B2E1DC28000BDBE08 /* DateExtensions.swift */,
  1581. );
  1582. path = Helpers;
  1583. sourceTree = "<group>";
  1584. };
  1585. FCC68871248A736700A0279D /* ViewControllers */ = {
  1586. isa = PBXGroup;
  1587. children = (
  1588. DD1D52BA2E1EB60B00432050 /* MoreMenuViewController.swift */,
  1589. DD12D4842E1705D9004E0112 /* AlarmViewController.swift */,
  1590. FC97881B2485969B00A7906C /* MainViewController.swift */,
  1591. FC97881D2485969B00A7906C /* NightScoutViewController.swift */,
  1592. FCFEECA1248857A600402A7F /* SettingsViewController.swift */,
  1593. );
  1594. path = ViewControllers;
  1595. sourceTree = "<group>";
  1596. };
  1597. /* End PBXGroup section */
  1598. /* Begin PBXNativeTarget section */
  1599. DDCC3AD52DDE1790006F1C10 /* Tests */ = {
  1600. isa = PBXNativeTarget;
  1601. buildConfigurationList = DDCC3ADC2DDE1790006F1C10 /* Build configuration list for PBXNativeTarget "Tests" */;
  1602. buildPhases = (
  1603. DDCC3AD22DDE1790006F1C10 /* Sources */,
  1604. DDCC3AD32DDE1790006F1C10 /* Frameworks */,
  1605. DDCC3AD42DDE1790006F1C10 /* Resources */,
  1606. );
  1607. buildRules = (
  1608. );
  1609. dependencies = (
  1610. DDCC3ADB2DDE1790006F1C10 /* PBXTargetDependency */,
  1611. );
  1612. fileSystemSynchronizedGroups = (
  1613. DDCC3AD72DDE1790006F1C10 /* Tests */,
  1614. );
  1615. name = Tests;
  1616. packageProductDependencies = (
  1617. );
  1618. productName = Tests;
  1619. productReference = DDCC3AD62DDE1790006F1C10 /* Tests.xctest */;
  1620. productType = "com.apple.product-type.bundle.unit-test";
  1621. };
  1622. FC9788132485969B00A7906C /* LoopFollow */ = {
  1623. isa = PBXNativeTarget;
  1624. buildConfigurationList = FC97882D2485969C00A7906C /* Build configuration list for PBXNativeTarget "LoopFollow" */;
  1625. buildPhases = (
  1626. DD7F4BEA2DD48B9600D449E9 /* Swiftformat */,
  1627. B038D39450A1F9A97D2B8BA4 /* [CP] Check Pods Manifest.lock */,
  1628. FC9788102485969B00A7906C /* Sources */,
  1629. FC9788112485969B00A7906C /* Frameworks */,
  1630. FC9788122485969B00A7906C /* Resources */,
  1631. 04DA71CCA0280FA5FA2DF7A6 /* [CP] Embed Pods Frameworks */,
  1632. DDB0AF532BB1AA0900AFA48B /* Capture Build Details */,
  1633. );
  1634. buildRules = (
  1635. );
  1636. dependencies = (
  1637. );
  1638. fileSystemSynchronizedGroups = (
  1639. 65AC25F52ECFD5E800421360 /* Stats */,
  1640. 65AC26702ED245DF00421360 /* Treatments */,
  1641. );
  1642. name = LoopFollow;
  1643. packageProductDependencies = (
  1644. DD48781B2C7DAF140048F05C /* SwiftJWT */,
  1645. DD485F152E46631000CE8CBF /* CryptoSwift */,
  1646. );
  1647. productName = LoopFollow;
  1648. productReference = FC9788142485969B00A7906C /* Loop Follow.app */;
  1649. productType = "com.apple.product-type.application";
  1650. };
  1651. /* End PBXNativeTarget section */
  1652. /* Begin PBXProject section */
  1653. FC97880C2485969B00A7906C /* Project object */ = {
  1654. isa = PBXProject;
  1655. attributes = {
  1656. LastSwiftUpdateCheck = 1630;
  1657. LastUpgradeCheck = 1140;
  1658. ORGANIZATIONNAME = "Jon Fawcett";
  1659. TargetAttributes = {
  1660. DDCC3AD52DDE1790006F1C10 = {
  1661. CreatedOnToolsVersion = 16.3;
  1662. TestTargetID = FC9788132485969B00A7906C;
  1663. };
  1664. FC9788132485969B00A7906C = {
  1665. CreatedOnToolsVersion = 11.4.1;
  1666. };
  1667. };
  1668. };
  1669. buildConfigurationList = FC97880F2485969B00A7906C /* Build configuration list for PBXProject "LoopFollow" */;
  1670. compatibilityVersion = "Xcode 9.3";
  1671. developmentRegion = en;
  1672. hasScannedForEncodings = 0;
  1673. knownRegions = (
  1674. en,
  1675. Base,
  1676. );
  1677. mainGroup = FC97880B2485969B00A7906C;
  1678. packageReferences = (
  1679. DD48781A2C7DAF140048F05C /* XCRemoteSwiftPackageReference "Swift-JWT" */,
  1680. 654132E82E19F0B800BDBE08 /* XCRemoteSwiftPackageReference "swift-crypto" */,
  1681. DD485F0B2E4547C800CE8CBF /* XCRemoteSwiftPackageReference "CryptoSwift" */,
  1682. );
  1683. productRefGroup = FC9788152485969B00A7906C /* Products */;
  1684. projectDirPath = "";
  1685. projectRoot = "";
  1686. targets = (
  1687. FC9788132485969B00A7906C /* LoopFollow */,
  1688. DDCC3AD52DDE1790006F1C10 /* Tests */,
  1689. );
  1690. };
  1691. /* End PBXProject section */
  1692. /* Begin PBXResourcesBuildPhase section */
  1693. DDCC3AD42DDE1790006F1C10 /* Resources */ = {
  1694. isa = PBXResourcesBuildPhase;
  1695. buildActionMask = 2147483647;
  1696. files = (
  1697. );
  1698. runOnlyForDeploymentPostprocessing = 0;
  1699. };
  1700. FC9788122485969B00A7906C /* Resources */ = {
  1701. isa = PBXResourcesBuildPhase;
  1702. buildActionMask = 2147483647;
  1703. files = (
  1704. FC7CE51C248ABE37001F83B8 /* Sci-Fi_Spaceship_Warm_Up.caf in Resources */,
  1705. FC7CE526248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_3.caf in Resources */,
  1706. FC7CE54C248ABE37001F83B8 /* Emergency_Alarm_Siren.caf in Resources */,
  1707. FC7CE559248ABE37001F83B8 /* Martian_Scanner.caf in Resources */,
  1708. FC7CE524248ABE37001F83B8 /* Marimba_Flutter_or_Shake.caf in Resources */,
  1709. FC7CE52D248ABE37001F83B8 /* Siri_Urgent_High_Glucose.caf in Resources */,
  1710. FC7CE573248ABE37001F83B8 /* Marching_Heavy_Footed_Fat_Elephants.caf in Resources */,
  1711. FC7CE51F248ABE37001F83B8 /* Cartoon_Tip_Toe_Sneaky_Walk.caf in Resources */,
  1712. FC7CE53B248ABE37001F83B8 /* Cartoon_Dreamy_Glissando_Harp.caf in Resources */,
  1713. FC7CE547248ABE37001F83B8 /* Sci-Fi_Air_Raid_Alarm.caf in Resources */,
  1714. FC7CE57F248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_4.caf in Resources */,
  1715. FC7CE576248ABE37001F83B8 /* Alarm_Buzzer.caf in Resources */,
  1716. FC7CE51D248ABE37001F83B8 /* Not_Kiddin.caf in Resources */,
  1717. FCC6885E24896A6C00A0279D /* silence.mp3 in Resources */,
  1718. FC7CE570248ABE37001F83B8 /* Insistently.caf in Resources */,
  1719. FC7CE521248ABE37001F83B8 /* Emergency_Alarm_Carbon_Monoxide.caf in Resources */,
  1720. FC7CE52C248ABE37001F83B8 /* Cuckoo_Clock.caf in Resources */,
  1721. FC7CE53D248ABE37001F83B8 /* 1-millisecond-of-silence.mp3 in Resources */,
  1722. FC7CE585248ABE37001F83B8 /* Siri_Glucose_Dropping_Fast.caf in Resources */,
  1723. FC7CE563248ABE37001F83B8 /* CSFX-2_Alarm.caf in Resources */,
  1724. FC7CE58D248ABEF2001F83B8 /* alarm.mp3 in Resources */,
  1725. FC7CE534248ABE37001F83B8 /* Siri_Missed_Readings.caf in Resources */,
  1726. FC7CE548248ABE37001F83B8 /* Store_Door_Chime.caf in Resources */,
  1727. FC7CE584248ABE37001F83B8 /* Oringz.caf in Resources */,
  1728. FC7CE56D248ABE37001F83B8 /* Siri_Alert_Low_Glucose.caf in Resources */,
  1729. FC7CE53F248ABE37001F83B8 /* Siri_Alert_Glucose_Dropping_Fast.caf in Resources */,
  1730. FC7CE561248ABE37001F83B8 /* Wrong_Answer.caf in Resources */,
  1731. FCC6885C2489559400A0279D /* blank.wav in Resources */,
  1732. DDB0AF552BB1B24A00AFA48B /* BuildDetails.plist in Resources */,
  1733. FC7CE528248ABE37001F83B8 /* Cartoon_Bounce_To_Ceiling.caf in Resources */,
  1734. FC7CE57B248ABE37001F83B8 /* Alert_Tone_Busy.caf in Resources */,
  1735. FC7CE51B248ABE37001F83B8 /* Thunder_Sound_FX.caf in Resources */,
  1736. FC7CE57D248ABE37001F83B8 /* Win_Gain.caf in Resources */,
  1737. FC7CE55F248ABE37001F83B8 /* Siri_Alert_Transmitter_Battery_Low.caf in Resources */,
  1738. FC9788292485969C00A7906C /* LaunchScreen.storyboard in Resources */,
  1739. FC7CE583248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_2.caf in Resources */,
  1740. FC7CE549248ABE37001F83B8 /* Magical_Twinkle.caf in Resources */,
  1741. FC7CE540248ABE37001F83B8 /* Two_Turtle_Doves.caf in Resources */,
  1742. FC7CE545248ABE37001F83B8 /* Indeed.caf in Resources */,
  1743. FC7CE564248ABE37001F83B8 /* Siri_Low_Glucose.caf in Resources */,
  1744. FC7CE55D248ABE37001F83B8 /* Metallic.caf in Resources */,
  1745. FC7CE568248ABE37001F83B8 /* Sci-Fi_Engine_Shut_Down.caf in Resources */,
  1746. FC7CE580248ABE37001F83B8 /* Sci-Fi_Alarm.caf in Resources */,
  1747. DDF2C0142BEFD468007A20E6 /* blacklisted-versions.json in Resources */,
  1748. FC7CE533248ABE37001F83B8 /* Ending_Reached.caf in Resources */,
  1749. FC7CE558248ABE37001F83B8 /* Rush.caf in Resources */,
  1750. FC7CE52A248ABE37001F83B8 /* Nightguard.caf in Resources */,
  1751. FC7CE569248ABE37001F83B8 /* silence-1sec.mp3 in Resources */,
  1752. FC7CE519248ABE37001F83B8 /* Rise_And_Shine.caf in Resources */,
  1753. FC7CE565248ABE37001F83B8 /* Sci-Fi_Spaceship_Message.caf in Resources */,
  1754. FC7CE52B248ABE37001F83B8 /* Machine_Charge.caf in Resources */,
  1755. FC7CE536248ABE37001F83B8 /* Fly.caf in Resources */,
  1756. FC7CE567248ABE37001F83B8 /* Orchestral_Horns.caf in Resources */,
  1757. FC7CE544248ABE37001F83B8 /* Sci-Fi_Alarm_Loop_1.caf in Resources */,
  1758. FC7CE551248ABE37001F83B8 /* Marimba_Descend.caf in Resources */,
  1759. FC7CE520248ABE37001F83B8 /* Burglar_Alarm_Siren_1.caf in Resources */,
  1760. FC7CE54D248ABE37001F83B8 /* Analog_Watch_Alarm.caf in Resources */,
  1761. FC7CE530248ABE37001F83B8 /* Dhol_Shuffleloop.caf in Resources */,
  1762. FC7CE59C248D33A9001F83B8 /* dragbar.png in Resources */,
  1763. FC7CE56C248ABE37001F83B8 /* Time_Has_Come.caf in Resources */,
  1764. FC7CE574248ABE37001F83B8 /* Chimes_Glassy.caf in Resources */,
  1765. FC7CE55A248ABE37001F83B8 /* Alert_Tone_Ringtone_1.caf in Resources */,
  1766. FC7CE543248ABE37001F83B8 /* Pager_Beeps.caf in Resources */,
  1767. FC7CE56F248ABE37001F83B8 /* Ghost_Hover.caf in Resources */,
  1768. FC7CE537248ABE37001F83B8 /* Open_Your_Eyes_And_See.caf in Resources */,
  1769. FC7CE56E248ABE37001F83B8 /* Ambulance.caf in Resources */,
  1770. FC7CE571248ABE37001F83B8 /* Sunny.caf in Resources */,
  1771. FC7CE546248ABE37001F83B8 /* Cartoon_Uh_Oh.caf in Resources */,
  1772. FC9788262485969C00A7906C /* Assets.xcassets in Resources */,
  1773. FC7CE557248ABE37001F83B8 /* Soft_Marimba_Pad_Positive.caf in Resources */,
  1774. FC7CE54F248ABE37001F83B8 /* Cartoon_Machine_Clumsy_Loop.caf in Resources */,
  1775. FC7CE562248ABE37001F83B8 /* Soft_Warm_Airy_Reassuring.caf in Resources */,
  1776. FC7CE54B248ABE37001F83B8 /* Siri_Alert_Device_Muted.caf in Resources */,
  1777. FC7CE566248ABE37001F83B8 /* In_A_Hurry.caf in Resources */,
  1778. FC7CE531248ABE37001F83B8 /* Sci-Fi_Computer_Console_Alarm.caf in Resources */,
  1779. FC7CE532248ABE37001F83B8 /* Siri_High_Glucose.caf in Resources */,
  1780. FC7CE555248ABE37001F83B8 /* Sci-Fi_Incoming_Message_Alert.caf in Resources */,
  1781. FC7CE518248ABE37001F83B8 /* Siri_Alert_Calibration_Needed.caf in Resources */,
  1782. FC5A5C3D2497B229009C550E /* Config.xcconfig in Resources */,
  1783. FC7CE550248ABE37001F83B8 /* Siri_Alert_High_Glucose.caf in Resources */,
  1784. DDCFCAF22B17273200BE5751 /* LoopFollowDisplayNameConfig.xcconfig in Resources */,
  1785. FC7CE525248ABE37001F83B8 /* Sci-Fi_Warning.caf in Resources */,
  1786. FC7CE556248ABE37001F83B8 /* Sci-Fi_Console_Alarm.caf in Resources */,
  1787. FC7CE55C248ABE37001F83B8 /* Big_Clock_Ticking.caf in Resources */,
  1788. FC7CE57C248ABE37001F83B8 /* Tornado_Siren.caf in Resources */,
  1789. FC7CE57E248ABE37001F83B8 /* Unpaved.caf in Resources */,
  1790. FC7CE539248ABE37001F83B8 /* Remembers_Me_Of_Asia.caf in Resources */,
  1791. FC7CE542248ABE37001F83B8 /* Alien_Siren.caf in Resources */,
  1792. FC7CE51E248ABE37001F83B8 /* Computer_Magic.caf in Resources */,
  1793. FC7CE541248ABE37001F83B8 /* Discreet.caf in Resources */,
  1794. FC7CE535248ABE37001F83B8 /* Cartoon_Ascend_Climb_Sneaky.caf in Resources */,
  1795. FC7CE529248ABE37001F83B8 /* Laser_Shoot.caf in Resources */,
  1796. FC7CE54A248ABE37001F83B8 /* Siri_Alert_Urgent_High_Glucose.caf in Resources */,
  1797. FC7CE579248ABE37001F83B8 /* Good_Morning.caf in Resources */,
  1798. FC9788212485969B00A7906C /* Main.storyboard in Resources */,
  1799. FC7CE538248ABE37001F83B8 /* 20ms-of-silence.caf in Resources */,
  1800. FC7CE56B248ABE37001F83B8 /* Cartoon_Ascend_Then_Descend.caf in Resources */,
  1801. FC7CE54E248ABE37001F83B8 /* Hell_Yeah_Somewhat_Calmer.caf in Resources */,
  1802. FC7CE586248ABE37001F83B8 /* Martian_Gun.caf in Resources */,
  1803. FC7CE523248ABE37001F83B8 /* Wake_Up_Will_You.caf in Resources */,
  1804. FC7CE552248ABE37001F83B8 /* Siri_Alert_Urgent_Low_Glucose.caf in Resources */,
  1805. FC7CE577248ABE37001F83B8 /* Cartoon_Fail_Strings_Trumpet.caf in Resources */,
  1806. FC7CE582248ABE37001F83B8 /* Siri_Transmitter_Battery_Low.caf in Resources */,
  1807. FC7CE57A248ABE37001F83B8 /* Emergency_Alarm.caf in Resources */,
  1808. FC7CE51A248ABE37001F83B8 /* Jingle_All_The_Way.caf in Resources */,
  1809. FC7CE53C248ABE37001F83B8 /* Early_Sunrise.caf in Resources */,
  1810. FC7CE560248ABE37001F83B8 /* Burglar_Alarm_Siren_2.caf in Resources */,
  1811. FC7CE522248ABE37001F83B8 /* Signature_Corporate.caf in Resources */,
  1812. FC7CE572248ABE37001F83B8 /* Siri_Calibration_Needed.caf in Resources */,
  1813. FC7CE53E248ABE37001F83B8 /* Soft_Warm_Airy_Optimistic.caf in Resources */,
  1814. FC7CE58E248ABEF2001F83B8 /* alarm-notification.m4a in Resources */,
  1815. FC7CE52F248ABE37001F83B8 /* Siri_Glucose_Rising_Fast.caf in Resources */,
  1816. FC7CE55E248ABE37001F83B8 /* Cell_Phone_Ring_Tone.caf in Resources */,
  1817. FC7CE554248ABE37001F83B8 /* Siri_Alert_Glucose_Rising_Fast.caf in Resources */,
  1818. FC7CE575248ABE37001F83B8 /* Siri_Device_Muted.caf in Resources */,
  1819. FC7CE52E248ABE37001F83B8 /* Cartoon_Villain_Horns.caf in Resources */,
  1820. FC7CE527248ABE37001F83B8 /* Alert_Tone_Ringtone_2.caf in Resources */,
  1821. FC7CE53A248ABE37001F83B8 /* Alarm_Clock.caf in Resources */,
  1822. FC7CE578248ABE37001F83B8 /* Siri_Alert_Missed_Readings.caf in Resources */,
  1823. FC7CE55B248ABE37001F83B8 /* 500ms-of-silence.mp3 in Resources */,
  1824. FC7CE581248ABE37001F83B8 /* Siri_Urgent_Low_Glucose.caf in Resources */,
  1825. FC7CE553248ABE37001F83B8 /* Sci-Fi_Eerie_Alarm.caf in Resources */,
  1826. FC7CE56A248ABE37001F83B8 /* Cartoon_Siren.caf in Resources */,
  1827. );
  1828. runOnlyForDeploymentPostprocessing = 0;
  1829. };
  1830. /* End PBXResourcesBuildPhase section */
  1831. /* Begin PBXShellScriptBuildPhase section */
  1832. 04DA71CCA0280FA5FA2DF7A6 /* [CP] Embed Pods Frameworks */ = {
  1833. isa = PBXShellScriptBuildPhase;
  1834. buildActionMask = 2147483647;
  1835. files = (
  1836. );
  1837. inputFileListPaths = (
  1838. "${PODS_ROOT}/Target Support Files/Pods-LoopFollow/Pods-LoopFollow-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1839. );
  1840. inputPaths = (
  1841. );
  1842. name = "[CP] Embed Pods Frameworks";
  1843. outputFileListPaths = (
  1844. "${PODS_ROOT}/Target Support Files/Pods-LoopFollow/Pods-LoopFollow-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1845. );
  1846. outputPaths = (
  1847. );
  1848. runOnlyForDeploymentPostprocessing = 0;
  1849. shellPath = /bin/sh;
  1850. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LoopFollow/Pods-LoopFollow-frameworks.sh\"\n";
  1851. showEnvVarsInLog = 0;
  1852. };
  1853. B038D39450A1F9A97D2B8BA4 /* [CP] Check Pods Manifest.lock */ = {
  1854. isa = PBXShellScriptBuildPhase;
  1855. buildActionMask = 2147483647;
  1856. files = (
  1857. );
  1858. inputFileListPaths = (
  1859. );
  1860. inputPaths = (
  1861. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1862. "${PODS_ROOT}/Manifest.lock",
  1863. );
  1864. name = "[CP] Check Pods Manifest.lock";
  1865. outputFileListPaths = (
  1866. );
  1867. outputPaths = (
  1868. "$(DERIVED_FILE_DIR)/Pods-LoopFollow-checkManifestLockResult.txt",
  1869. );
  1870. runOnlyForDeploymentPostprocessing = 0;
  1871. shellPath = /bin/sh;
  1872. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1873. showEnvVarsInLog = 0;
  1874. };
  1875. DD7F4BEA2DD48B9600D449E9 /* Swiftformat */ = {
  1876. isa = PBXShellScriptBuildPhase;
  1877. alwaysOutOfDate = 1;
  1878. buildActionMask = 2147483647;
  1879. files = (
  1880. );
  1881. inputFileListPaths = (
  1882. );
  1883. inputPaths = (
  1884. );
  1885. name = Swiftformat;
  1886. outputFileListPaths = (
  1887. );
  1888. outputPaths = (
  1889. );
  1890. runOnlyForDeploymentPostprocessing = 0;
  1891. shellPath = /bin/sh;
  1892. shellScript = "source \"${SRCROOT}\"/Scripts/swiftformat.sh\n";
  1893. };
  1894. DDB0AF532BB1AA0900AFA48B /* Capture Build Details */ = {
  1895. isa = PBXShellScriptBuildPhase;
  1896. buildActionMask = 2147483647;
  1897. files = (
  1898. );
  1899. inputFileListPaths = (
  1900. );
  1901. inputPaths = (
  1902. );
  1903. name = "Capture Build Details";
  1904. outputFileListPaths = (
  1905. );
  1906. outputPaths = (
  1907. );
  1908. runOnlyForDeploymentPostprocessing = 0;
  1909. shellPath = /bin/sh;
  1910. shellScript = "\"${SRCROOT}/Scripts/capture-build-details.sh\"\n";
  1911. };
  1912. /* End PBXShellScriptBuildPhase section */
  1913. /* Begin PBXSourcesBuildPhase section */
  1914. DDCC3AD22DDE1790006F1C10 /* Sources */ = {
  1915. isa = PBXSourcesBuildPhase;
  1916. buildActionMask = 2147483647;
  1917. files = (
  1918. );
  1919. runOnlyForDeploymentPostprocessing = 0;
  1920. };
  1921. FC9788102485969B00A7906C /* Sources */ = {
  1922. isa = PBXSourcesBuildPhase;
  1923. buildActionMask = 2147483647;
  1924. files = (
  1925. DD5334292C6166A500062F9D /* InfoDisplaySettingsView.swift in Sources */,
  1926. DD48781E2C7DAF2F0048F05C /* PushNotificationManager.swift in Sources */,
  1927. DD0B9D582DE1F3B20090C337 /* AlarmType+canAcknowledge.swift in Sources */,
  1928. DD7F4BC52DD3CE0700D449E9 /* AlarmBGLimitSection.swift in Sources */,
  1929. DD7F4B9F2DD1F92700D449E9 /* AlarmActiveSection.swift in Sources */,
  1930. DD4AFB672DB68C5500BB593F /* UUID+Identifiable.swift in Sources */,
  1931. DD9ED0CA2D355257000D2A63 /* LogView.swift in Sources */,
  1932. DD9ACA082D32F68B00415D8A /* BGTask.swift in Sources */,
  1933. DD9ACA102D34129200415D8A /* Task.swift in Sources */,
  1934. DD4AFB492DB576C200BB593F /* AlarmSettingsView.swift in Sources */,
  1935. DD7F4C032DD4B92E00D449E9 /* NotLoopingAlarmEditor.swift in Sources */,
  1936. DD7F4C1B2DD6501D00D449E9 /* COBCondition.swift in Sources */,
  1937. DDE75D232DE5E505007C1FC1 /* Glyph.swift in Sources */,
  1938. DD4878202C7DAF890048F05C /* PushMessage.swift in Sources */,
  1939. DD0247712DB4337700FCADF6 /* BuildExpireCondition.swift in Sources */,
  1940. DDF6999B2C5AA32E0058A8D9 /* TempTargetPreset.swift in Sources */,
  1941. DD7F4C0F2DD51EC200D449E9 /* TempTargetStartCondition.swift in Sources */,
  1942. DDBD19962DFB44B0005C2D69 /* Alarm+byPriorityThenSpec.swift in Sources */,
  1943. 656F8C102E49F36F0008DC1D /* QRCodeDisplayView.swift in Sources */,
  1944. DDC6CA3D2DD7C6090060EE25 /* TemporaryCondition.swift in Sources */,
  1945. DD9ACA0E2D340BFF00415D8A /* AlarmTask.swift in Sources */,
  1946. DDCF9A822D85FD15004DF4DD /* AlarmType.swift in Sources */,
  1947. DD7FFAFD2A72953000C3A304 /* EKEventStore+Extensions.swift in Sources */,
  1948. 656F8C122E49F3780008DC1D /* QRCodeGenerator.swift in Sources */,
  1949. 6541341A2E1DC27900BDBE08 /* OverridePresetData.swift in Sources */,
  1950. FCC6886724898F8000A0279D /* UserDefaultsValue.swift in Sources */,
  1951. DD7F4C092DD504A700D449E9 /* OverrideStartCondition.swift in Sources */,
  1952. DDEF503F2D32754F00999A5D /* ProfileTask.swift in Sources */,
  1953. DD7F4C052DD4BBE200D449E9 /* NotLoopingCondition.swift in Sources */,
  1954. DD5334212C60EBEE00062F9D /* InsulinCartridgeChange.swift in Sources */,
  1955. DDDB86F12DF7223C00AADDAC /* DeleteAlarmSection.swift in Sources */,
  1956. DD7F4B9D2DD1EAE500D449E9 /* AlarmAudioSection.swift in Sources */,
  1957. FC97881E2485969B00A7906C /* NightScoutViewController.swift in Sources */,
  1958. DD608A0A2C23593900F91132 /* SMB.swift in Sources */,
  1959. FC3AE7B5249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld in Sources */,
  1960. DD7F4C252DD7B20700D449E9 /* AlarmType+timeUnit.swift in Sources */,
  1961. DDC7E5152DBCFA7900EB1127 /* SnoozerViewController.swift in Sources */,
  1962. DD7F4C072DD5042F00D449E9 /* OverrideStartAlarmEditor.swift in Sources */,
  1963. DDCC3A4B2DDBB5E4006F1C10 /* BatteryCondition.swift in Sources */,
  1964. DDCC3A502DDED000006F1C10 /* PumpBatteryCondition.swift in Sources */,
  1965. DDDF6F492D479AF000884336 /* NoRemoteView.swift in Sources */,
  1966. 656F8C142E49F3D20008DC1D /* RemoteCommandSettings.swift in Sources */,
  1967. DD12D4872E1705E6004E0112 /* AlarmsContainerView.swift in Sources */,
  1968. DD83164A2DE4C504004467AA /* SettingsStepperRow.swift in Sources */,
  1969. DD0650ED2DCE9371004D3B41 /* HighBgAlarmEditor.swift in Sources */,
  1970. DD7F4C172DD63FA700D449E9 /* RecBolusCondition.swift in Sources */,
  1971. FCC6886F2489A53800A0279D /* AppConstants.swift in Sources */,
  1972. DDE75D2D2DE71401007C1FC1 /* TogglableSecureInput.swift in Sources */,
  1973. DD7E19842ACDA50C00DBD158 /* Overrides.swift in Sources */,
  1974. DD0B9D562DE1EC8A0090C337 /* AlarmType+Snooze.swift in Sources */,
  1975. DDF2C0102BEFA991007A20E6 /* GitHubService.swift in Sources */,
  1976. FC16A97A24996673003D6245 /* NightScout.swift in Sources */,
  1977. DD07B5C929E2F9C400C6A635 /* NightscoutUtils.swift in Sources */,
  1978. DDCF9A8C2D86005E004DF4DD /* AlarmManager.swift in Sources */,
  1979. DDCC3A4F2DDC5B54006F1C10 /* BatteryDropCondition.swift in Sources */,
  1980. FCC6886924898FB100A0279D /* UserDefaultsValueGroups.swift in Sources */,
  1981. DDF2C0122BEFB733007A20E6 /* AppVersionManager.swift in Sources */,
  1982. DDB9FC7B2DDB573F00EFAA76 /* IOBCondition.swift in Sources */,
  1983. DD7E19862ACDA59700DBD158 /* BGCheck.swift in Sources */,
  1984. DDCC3A5A2DDC988F006F1C10 /* CarbSample.swift in Sources */,
  1985. DD0650F12DCE9A9E004D3B41 /* MissedReadingCondition.swift in Sources */,
  1986. DDC6CA4B2DD8E4960060EE25 /* PumpVolumeAlarmEditor.swift in Sources */,
  1987. 6589CC752E9EAFB700BB18FE /* SettingsMigrationManager.swift in Sources */,
  1988. DD16AF0F2C99592F00FB655A /* HKQuantityInputView.swift in Sources */,
  1989. DDFF3D7F2D1414A200BF9D9E /* BLEDevice.swift in Sources */,
  1990. DD9ACA042D32821400415D8A /* DeviceStatusTask.swift in Sources */,
  1991. FC16A97D24996747003D6245 /* SpeakBG.swift in Sources */,
  1992. DDFD5C532CB167DA00D3FD68 /* TRCCommandType.swift in Sources */,
  1993. DD16AF112C997B4600FB655A /* LoadingButtonView.swift in Sources */,
  1994. DD0650F92DCFE7BE004D3B41 /* FastDropAlarmEditor.swift in Sources */,
  1995. DD5817172D2710E90041FB98 /* BLEDeviceSelectionView.swift in Sources */,
  1996. FC16A97B249966A3003D6245 /* AlarmSound.swift in Sources */,
  1997. DDCC3A562DDC9617006F1C10 /* MissedBolusCondition.swift in Sources */,
  1998. DDBE3ABD2CB5A961006B37DC /* OverrideView.swift in Sources */,
  1999. DDB0AF522BB1A8BE00AFA48B /* BuildDetails.swift in Sources */,
  2000. DDA9ACAA2D6A6B8300E6F1A9 /* ContactIncludeOption.swift in Sources */,
  2001. DD7F4C1D2DD650D500D449E9 /* COBAlarmEditor.swift in Sources */,
  2002. DDE75D272DE5E539007C1FC1 /* ActionRow.swift in Sources */,
  2003. DD0C0C622C4175FD00DBADDF /* NSProfile.swift in Sources */,
  2004. DD58171E2D299FCA0041FB98 /* BluetoothDeviceDelegate.swift in Sources */,
  2005. DDE69ED22C7256260013EAEC /* RemoteType.swift in Sources */,
  2006. DDD10F032C518A6500D76A8E /* TreatmentResponse.swift in Sources */,
  2007. DDD10F0B2C54192A00D76A8E /* TemporaryTarget.swift in Sources */,
  2008. DD7F4C1F2DD6648B00D449E9 /* FastRiseCondition.swift in Sources */,
  2009. DD5334272C61668800062F9D /* InfoDisplaySettingsViewModel.swift in Sources */,
  2010. DD0247592DB2E89600FCADF6 /* AlarmCondition.swift in Sources */,
  2011. DD0650F32DCE9B3D004D3B41 /* MissedReadingEditor.swift in Sources */,
  2012. 6584B1012E4A263900135D4D /* TOTPService.swift in Sources */,
  2013. DD48780E2C7B74A40048F05C /* TrioRemoteControlViewModel.swift in Sources */,
  2014. DDEF503A2D31615000999A5D /* LogManager.swift in Sources */,
  2015. DD4878172C7B75350048F05C /* BolusView.swift in Sources */,
  2016. DD026E592EA2C8A200A39CB5 /* InsulinPrecisionManager.swift in Sources */,
  2017. DD493AE72ACF23CF009A6922 /* DeviceStatus.swift in Sources */,
  2018. DDC7E5162DBCFA7F00EB1127 /* SnoozerView.swift in Sources */,
  2019. FCFEECA2248857A600402A7F /* SettingsViewController.swift in Sources */,
  2020. DD7F4C232DD7A62200D449E9 /* AlarmType+SortDirection.swift in Sources */,
  2021. 65E8A2862E44B0300065037B /* VolumeButtonHandler.swift in Sources */,
  2022. DD0650F72DCFDA26004D3B41 /* InfoBanner.swift in Sources */,
  2023. DDE75D292DE5E56C007C1FC1 /* LinkRow.swift in Sources */,
  2024. DD4AFB612DB68BBC00BB593F /* AlarmListView.swift in Sources */,
  2025. DD7B0D442D730A3B0063DCB6 /* CycleHelper.swift in Sources */,
  2026. DDDC31CC2E13A7DF009EA0F3 /* AddAlarmSheet.swift in Sources */,
  2027. DD7F4BA12DD2193F00D449E9 /* AlarmSnoozeSection.swift in Sources */,
  2028. DD9ACA0C2D33BB8600415D8A /* CalendarTask.swift in Sources */,
  2029. DD13BC792C3FE63A0062313B /* InfoManager.swift in Sources */,
  2030. DD0C0C702C4AFFE800DBADDF /* RemoteViewController.swift in Sources */,
  2031. DD48780A2C7B30D40048F05C /* RemoteSettingsViewModel.swift in Sources */,
  2032. FCFEECA02488157B00402A7F /* Chart.swift in Sources */,
  2033. DDDC31CE2E13A811009EA0F3 /* AlarmTile.swift in Sources */,
  2034. DDCF979424C0D380002C9752 /* UIViewExtension.swift in Sources */,
  2035. DD0C0C6D2C48606200DBADDF /* CarbMetric.swift in Sources */,
  2036. DDC7E5422DBD8A1600EB1127 /* AlarmGeneralSection.swift in Sources */,
  2037. DD7F4BC72DD473A600D449E9 /* FastDropCondition.swift in Sources */,
  2038. DD7F4C0D2DD51C8100D449E9 /* OverrideEndAlarmEditor.swift in Sources */,
  2039. DDC7E5432DBD8A1600EB1127 /* SoundFile.swift in Sources */,
  2040. DDC7E5442DBD8A1600EB1127 /* BuildExpireAlarmEditor.swift in Sources */,
  2041. DDC7E5462DBD8A1600EB1127 /* LowBgAlarmEditor.swift in Sources */,
  2042. DDC7E5472DBD8A1600EB1127 /* AlarmEditor.swift in Sources */,
  2043. DDA9ACA82D6A66E200E6F1A9 /* ContactColorOption.swift in Sources */,
  2044. DDC7E5382DBD887400EB1127 /* isOnPhoneCall.swift in Sources */,
  2045. DD7E19882ACDA5DA00DBD158 /* Notes.swift in Sources */,
  2046. FCEF87AC24A141A700AE6FA0 /* Localizer.swift in Sources */,
  2047. FC1BDD3224A2585C001B652C /* DataStructs.swift in Sources */,
  2048. DDF6999E2C5AAA640058A8D9 /* ErrorMessageView.swift in Sources */,
  2049. DD1D52BB2E1EB60B00432050 /* MoreMenuViewController.swift in Sources */,
  2050. 654132E72E19EA7E00BDBE08 /* SimpleQRCodeScannerView.swift in Sources */,
  2051. DD4878152C7B75230048F05C /* MealView.swift in Sources */,
  2052. FC16A97F249969E2003D6245 /* Graphs.swift in Sources */,
  2053. FC8589BF252B54F500C8FC73 /* Mobileprovision.swift in Sources */,
  2054. DD4878052C7B2C970048F05C /* Storage.swift in Sources */,
  2055. DD493AE12ACF22FE009A6922 /* Profile.swift in Sources */,
  2056. 6589CC622E9E7D1600BB18FE /* ImportExportSettingsView.swift in Sources */,
  2057. 6589CC632E9E7D1600BB18FE /* GeneralSettingsView.swift in Sources */,
  2058. 6589CC642E9E7D1600BB18FE /* ContactSettingsView.swift in Sources */,
  2059. 6589CC652E9E7D1600BB18FE /* DexcomSettingsViewModel.swift in Sources */,
  2060. 6589CC662E9E7D1600BB18FE /* AdvancedSettingsView.swift in Sources */,
  2061. 6589CC672E9E7D1600BB18FE /* ImportExportSettingsViewModel.swift in Sources */,
  2062. 6589CC682E9E7D1600BB18FE /* ExportableSettings.swift in Sources */,
  2063. 6589CC692E9E7D1600BB18FE /* ContactSettingsViewModel.swift in Sources */,
  2064. 6589CC6A2E9E7D1600BB18FE /* DexcomSettingsView.swift in Sources */,
  2065. 6589CC6B2E9E7D1600BB18FE /* TabCustomizationModal.swift in Sources */,
  2066. 6589CC6C2E9E7D1600BB18FE /* GraphSettingsView.swift in Sources */,
  2067. 6589CC6D2E9E7D1600BB18FE /* CalendarSettingsView.swift in Sources */,
  2068. 6589CC6E2E9E7D1600BB18FE /* SettingsMenuView.swift in Sources */,
  2069. 657F98182F043D8100F732BD /* HomeContentView.swift in Sources */,
  2070. 6589CC6F2E9E7D1600BB18FE /* AdvancedSettingsViewModel.swift in Sources */,
  2071. DD493ADF2ACF22BB009A6922 /* SAge.swift in Sources */,
  2072. DDC6CA3F2DD7C6340060EE25 /* TemporaryAlarmEditor.swift in Sources */,
  2073. DDF699992C5AA3060058A8D9 /* TempTargetPresetManager.swift in Sources */,
  2074. DDC6CA452DD8D8E60060EE25 /* PumpChangeCondition.swift in Sources */,
  2075. DD0C0C722C4B000800DBADDF /* TrioNightscoutRemoteView.swift in Sources */,
  2076. DD493ADB2ACF21A3009A6922 /* Bolus.swift in Sources */,
  2077. DDF9676E2AD08C6E00C5EB95 /* SiteChange.swift in Sources */,
  2078. DDCC3A542DDC5D62006F1C10 /* BatteryDropAlarmEditor.swift in Sources */,
  2079. DD13BC772C3FD64E0062313B /* InfoData.swift in Sources */,
  2080. DD13BC752C3FD6210062313B /* InfoType.swift in Sources */,
  2081. DDCC3A4D2DDBB77C006F1C10 /* PhoneBatteryAlarmEditor.swift in Sources */,
  2082. DDCC3A5B2DDE2000006F1C10 /* PumpBatteryAlarmEditor.swift in Sources */,
  2083. DDC6CA492DD8E47A0060EE25 /* PumpVolumeCondition.swift in Sources */,
  2084. DD9ACA0A2D33095600415D8A /* MinAgoTask.swift in Sources */,
  2085. DD9ED0CC2D35526E000D2A63 /* SearchBar.swift in Sources */,
  2086. DDD10EFF2C510C3C00D76A8E /* ObservableUserDefaultsValue.swift in Sources */,
  2087. DDB9FC7D2DDB575300EFAA76 /* IOBAlarmEditor.swift in Sources */,
  2088. DD58171A2D299EF80041FB98 /* DexcomHeartbeatBluetoothDevice.swift in Sources */,
  2089. DD7F4C0B2DD51C5500D449E9 /* OverrideEndCondition.swift in Sources */,
  2090. DDFF3D872D14280500BF9D9E /* BackgroundRefreshSettingsViewModel.swift in Sources */,
  2091. 6589CC712E9E814F00BB18FE /* AlarmSelectionView.swift in Sources */,
  2092. DD7F4C192DD63FD500D449E9 /* RecBolusAlarmEditor.swift in Sources */,
  2093. DDAD162F2D2EF9830084BE10 /* RileyLinkHeartbeatBluetoothDevice.swift in Sources */,
  2094. FC97881C2485969B00A7906C /* MainViewController.swift in Sources */,
  2095. DD6A935E2BFA6FA2003FFB8E /* DeviceStatusOpenAPS.swift in Sources */,
  2096. DD493AD52ACF2109009A6922 /* ResumePump.swift in Sources */,
  2097. DD85E9952D739CFE001C8BB7 /* OmnipodDashHeartbeatBluetoothTransmitter.swift in Sources */,
  2098. DD8316442DE47CA9004467AA /* BGPicker.swift in Sources */,
  2099. FCC0FAC224922A22003E610E /* DictionaryKeyPath.swift in Sources */,
  2100. DD493AD72ACF2139009A6922 /* SuspendPump.swift in Sources */,
  2101. DDB9FC7F2DDB584500EFAA76 /* BolusEntry.swift in Sources */,
  2102. FC9788182485969B00A7906C /* AppDelegate.swift in Sources */,
  2103. DD4A407E2E6AFEE6007B318B /* AuthService.swift in Sources */,
  2104. 654134182E1DC09700BDBE08 /* OverridePresetsView.swift in Sources */,
  2105. DDDC01DD2E244B3100D9975C /* JWTManager.swift in Sources */,
  2106. DDD10F072C529DE800D76A8E /* Observable.swift in Sources */,
  2107. DDFF3D852D14279B00BF9D9E /* BackgroundRefreshSettingsView.swift in Sources */,
  2108. DDCF9A882D85FD33004DF4DD /* AlarmData.swift in Sources */,
  2109. DD608A0C2C27415C00F91132 /* BackgroundAlertManager.swift in Sources */,
  2110. DD4878082C7B30BF0048F05C /* RemoteSettingsView.swift in Sources */,
  2111. DDE75D2B2DE5E613007C1FC1 /* NavigationRow.swift in Sources */,
  2112. DD4AFB3B2DB55CB600BB593F /* TimeOfDay.swift in Sources */,
  2113. DDEF503C2D31BE2D00999A5D /* TaskScheduler.swift in Sources */,
  2114. DD0650EB2DCE8385004D3B41 /* LowBGCondition.swift in Sources */,
  2115. DD12D4852E1705D9004E0112 /* AlarmViewController.swift in Sources */,
  2116. DD0C0C6B2C48562000DBADDF /* InsulinMetric.swift in Sources */,
  2117. DD493AD92ACF2171009A6922 /* Carbs.swift in Sources */,
  2118. DD493AE92ACF2445009A6922 /* BGData.swift in Sources */,
  2119. DD0650A92DCA8A10004D3B41 /* AlarmBGSection.swift in Sources */,
  2120. FCC6886B24898FD800A0279D /* ObservationToken.swift in Sources */,
  2121. DD4AFB6B2DB6BF2A00BB593F /* Binding+Optional.swift in Sources */,
  2122. DD608A082C1F584900F91132 /* DeviceStatusLoop.swift in Sources */,
  2123. DD5DA27C2DC930D6003D44FC /* GlucoseValue.swift in Sources */,
  2124. DD9ACA062D32AF7900415D8A /* TreatmentsTask.swift in Sources */,
  2125. DD98F54424BCEFEE0007425A /* ShareClientExtension.swift in Sources */,
  2126. 657F99E92F0BC81500F732BD /* OTPSecureMessenger.swift in Sources */,
  2127. DD9ED0CE2D35587A000D2A63 /* LogEntry.swift in Sources */,
  2128. DD0C0C602C415B9D00DBADDF /* ProfileManager.swift in Sources */,
  2129. DD83164C2DE4DB3A004467AA /* BinaryFloatingPoint+localized.swift in Sources */,
  2130. DD4AFB3D2DB55D2900BB593F /* AlarmConfiguration.swift in Sources */,
  2131. DDF699962C5582290058A8D9 /* TextFieldWithToolBar.swift in Sources */,
  2132. DD91E4DD2BDEC3F8002D9E97 /* GlucoseConversion.swift in Sources */,
  2133. DD0650EF2DCE96FF004D3B41 /* HighBGCondition.swift in Sources */,
  2134. DDC6CA472DD8D9010060EE25 /* PumpChangeAlarmEditor.swift in Sources */,
  2135. DD4878132C7B750D0048F05C /* TempTargetView.swift in Sources */,
  2136. 65E153C32E4BB69100693A4F /* URLTokenValidationView.swift in Sources */,
  2137. DD0C0C682C48529400DBADDF /* Metric.swift in Sources */,
  2138. FCC6886D2489909D00A0279D /* AnyConvertible.swift in Sources */,
  2139. DDC6CA432DD8CED20060EE25 /* SensorAgeCondition.swift in Sources */,
  2140. DD7F4C212DD66BB200D449E9 /* FastRiseAlarmEditor.swift in Sources */,
  2141. FC97881A2485969B00A7906C /* SceneDelegate.swift in Sources */,
  2142. DD0C0C662C46E54C00DBADDF /* InfoDataSeparator.swift in Sources */,
  2143. DD58171C2D299F940041FB98 /* BluetoothDevice.swift in Sources */,
  2144. DD7E198A2ACDA62600DBD158 /* SensorStart.swift in Sources */,
  2145. DD026E5B2EA2C9C300A39CB5 /* InsulinFormatter.swift in Sources */,
  2146. DD5334B02D1447C500CDD6EA /* BLEManager.swift in Sources */,
  2147. DD4878032C7B297E0048F05C /* StorageValue.swift in Sources */,
  2148. DD4878192C7C56D60048F05C /* TrioNightscoutRemoteController.swift in Sources */,
  2149. FC1BDD2B24A22650001B652C /* Stats.swift in Sources */,
  2150. DDA9ACAC2D6B317100E6F1A9 /* ContactType.swift in Sources */,
  2151. DDD10F052C529DA200D76A8E /* ObservableValue.swift in Sources */,
  2152. FC1BDD2D24A23204001B652C /* MainViewController+updateStats.swift in Sources */,
  2153. DD4878102C7B74BF0048F05C /* TrioRemoteControlView.swift in Sources */,
  2154. DD7F4C152DD51FEB00D449E9 /* TempTargetEndAlarmEditor.swift in Sources */,
  2155. FCE537BC249A4D7D00F80BF8 /* carbBolusArrays.swift in Sources */,
  2156. DD5334232C60ED3600062F9D /* IAge.swift in Sources */,
  2157. FCD2A27D24C9D044009F7B7B /* Globals.swift in Sources */,
  2158. DD0C0C642C45A59400DBADDF /* HKUnit+Extensions.swift in Sources */,
  2159. DDC6CA412DD8CCCE0060EE25 /* SensorAgeAlarmEditor.swift in Sources */,
  2160. DD493AE52ACF2383009A6922 /* Treatments.swift in Sources */,
  2161. DD7F4C112DD51ED900D449E9 /* TempTargetStartAlarmEditor.swift in Sources */,
  2162. DD1D52B92E1EB5DC00432050 /* TabPosition.swift in Sources */,
  2163. DD1D52C02E4C100000000001 /* AppearanceMode.swift in Sources */,
  2164. DD50C7552D0862770057AE6F /* ContactImageUpdater.swift in Sources */,
  2165. 654132EA2E19F24800BDBE08 /* TOTPGenerator.swift in Sources */,
  2166. 6541341C2E1DC28000BDBE08 /* DateExtensions.swift in Sources */,
  2167. DD0650F52DCF303F004D3B41 /* AlarmStepperSection.swift in Sources */,
  2168. DDCF9A802D85FD0B004DF4DD /* Alarm.swift in Sources */,
  2169. DD7F4C132DD51FD500D449E9 /* TempTargetEndCondition.swift in Sources */,
  2170. DDD10F012C510C6B00D76A8E /* ObservableUserDefaults.swift in Sources */,
  2171. DD16AF0D2C98485400FB655A /* SecureStorageValue.swift in Sources */,
  2172. DDC7E5CF2DC77C2000EB1127 /* SnoozerViewModel.swift in Sources */,
  2173. DD2C2E4F2D3B8AF1006413A5 /* NightscoutSettingsView.swift in Sources */,
  2174. DD8316482DE49EE5004467AA /* Storage+Migrate.swift in Sources */,
  2175. FCA2DDE62501095000254A8C /* Timers.swift in Sources */,
  2176. DD2C2E512D3B8B0C006413A5 /* NightscoutSettingsViewModel.swift in Sources */,
  2177. DD9ED0C82D355244000D2A63 /* LogViewModel.swift in Sources */,
  2178. DDFF3D892D1429AB00BF9D9E /* BackgroundRefreshType.swift in Sources */,
  2179. DD493AE32ACF2358009A6922 /* CAge.swift in Sources */,
  2180. DD493ADD2ACF21E0009A6922 /* Basals.swift in Sources */,
  2181. FC16A98124996C07003D6245 /* DateTime.swift in Sources */,
  2182. FC3CAB022493B6220068A152 /* BackgroundTaskAudio.swift in Sources */,
  2183. DDCC3A582DDC9655006F1C10 /* MissedBolusAlarmEditor.swift in Sources */,
  2184. DDEF50402D479B8A00884336 /* LoopAPNSService.swift in Sources */,
  2185. DD485F142E454B2600CE8CBF /* SecureMessenger.swift in Sources */,
  2186. DDEF50422D479BAA00884336 /* LoopAPNSCarbsView.swift in Sources */,
  2187. DDEF50432D479BBA00884336 /* LoopAPNSBolusView.swift in Sources */,
  2188. DDEF50452D479BDA00884336 /* LoopAPNSRemoteView.swift in Sources */,
  2189. );
  2190. runOnlyForDeploymentPostprocessing = 0;
  2191. };
  2192. /* End PBXSourcesBuildPhase section */
  2193. /* Begin PBXTargetDependency section */
  2194. DDCC3ADB2DDE1790006F1C10 /* PBXTargetDependency */ = {
  2195. isa = PBXTargetDependency;
  2196. target = FC9788132485969B00A7906C /* LoopFollow */;
  2197. targetProxy = DDCC3ADA2DDE1790006F1C10 /* PBXContainerItemProxy */;
  2198. };
  2199. /* End PBXTargetDependency section */
  2200. /* Begin PBXVariantGroup section */
  2201. FC97881F2485969B00A7906C /* Main.storyboard */ = {
  2202. isa = PBXVariantGroup;
  2203. children = (
  2204. FC9788202485969B00A7906C /* Base */,
  2205. );
  2206. name = Main.storyboard;
  2207. sourceTree = "<group>";
  2208. };
  2209. FC9788272485969C00A7906C /* LaunchScreen.storyboard */ = {
  2210. isa = PBXVariantGroup;
  2211. children = (
  2212. FC9788282485969C00A7906C /* Base */,
  2213. );
  2214. name = LaunchScreen.storyboard;
  2215. sourceTree = "<group>";
  2216. };
  2217. /* End PBXVariantGroup section */
  2218. /* Begin XCBuildConfiguration section */
  2219. DDCC3ADD2DDE1790006F1C10 /* Debug */ = {
  2220. isa = XCBuildConfiguration;
  2221. buildSettings = {
  2222. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2223. BUNDLE_LOADER = "$(TEST_HOST)";
  2224. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2225. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2226. CODE_SIGN_STYLE = Automatic;
  2227. CURRENT_PROJECT_VERSION = 1;
  2228. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2229. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2230. GCC_C_LANGUAGE_STANDARD = gnu17;
  2231. GENERATE_INFOPLIST_FILE = YES;
  2232. IPHONEOS_DEPLOYMENT_TARGET = 18.4;
  2233. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2234. MARKETING_VERSION = 1.0;
  2235. PRODUCT_BUNDLE_IDENTIFIER = "com.--unique-id-.LoopFollowTests--app-suffix-.Tests";
  2236. PRODUCT_MODULE_NAME = Tests;
  2237. PRODUCT_NAME = "$(TARGET_NAME)";
  2238. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  2239. SWIFT_EMIT_LOC_STRINGS = NO;
  2240. SWIFT_VERSION = 5.0;
  2241. TARGETED_DEVICE_FAMILY = "1,2";
  2242. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Loop Follow.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Loop Follow";
  2243. };
  2244. name = Debug;
  2245. };
  2246. DDCC3ADE2DDE1790006F1C10 /* Release */ = {
  2247. isa = XCBuildConfiguration;
  2248. buildSettings = {
  2249. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2250. BUNDLE_LOADER = "$(TEST_HOST)";
  2251. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2252. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2253. CODE_SIGN_STYLE = Automatic;
  2254. CURRENT_PROJECT_VERSION = 1;
  2255. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2256. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2257. GCC_C_LANGUAGE_STANDARD = gnu17;
  2258. GENERATE_INFOPLIST_FILE = YES;
  2259. IPHONEOS_DEPLOYMENT_TARGET = 18.4;
  2260. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2261. MARKETING_VERSION = 1.0;
  2262. PRODUCT_BUNDLE_IDENTIFIER = "com.--unique-id-.LoopFollowTests--app-suffix-.Tests";
  2263. PRODUCT_MODULE_NAME = Tests;
  2264. PRODUCT_NAME = "$(TARGET_NAME)";
  2265. SWIFT_EMIT_LOC_STRINGS = NO;
  2266. SWIFT_VERSION = 5.0;
  2267. TARGETED_DEVICE_FAMILY = "1,2";
  2268. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Loop Follow.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Loop Follow";
  2269. };
  2270. name = Release;
  2271. };
  2272. FC97882B2485969C00A7906C /* Debug */ = {
  2273. isa = XCBuildConfiguration;
  2274. baseConfigurationReference = FC5A5C3C2497B229009C550E /* Config.xcconfig */;
  2275. buildSettings = {
  2276. ALWAYS_SEARCH_USER_PATHS = NO;
  2277. CLANG_ANALYZER_NONNULL = YES;
  2278. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2279. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2280. CLANG_CXX_LIBRARY = "libc++";
  2281. CLANG_ENABLE_MODULES = YES;
  2282. CLANG_ENABLE_OBJC_ARC = YES;
  2283. CLANG_ENABLE_OBJC_WEAK = YES;
  2284. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2285. CLANG_WARN_BOOL_CONVERSION = YES;
  2286. CLANG_WARN_COMMA = YES;
  2287. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2288. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2289. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2290. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2291. CLANG_WARN_EMPTY_BODY = YES;
  2292. CLANG_WARN_ENUM_CONVERSION = YES;
  2293. CLANG_WARN_INFINITE_RECURSION = YES;
  2294. CLANG_WARN_INT_CONVERSION = YES;
  2295. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2296. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2297. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2298. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2299. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2300. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2301. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2302. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2303. CLANG_WARN_UNREACHABLE_CODE = YES;
  2304. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2305. COPY_PHASE_STRIP = NO;
  2306. DEBUG_INFORMATION_FORMAT = dwarf;
  2307. DEFINES_MODULE = YES;
  2308. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2309. ENABLE_TESTABILITY = YES;
  2310. GCC_C_LANGUAGE_STANDARD = gnu11;
  2311. GCC_DYNAMIC_NO_PIC = NO;
  2312. GCC_NO_COMMON_BLOCKS = YES;
  2313. GCC_OPTIMIZATION_LEVEL = 0;
  2314. GCC_PREPROCESSOR_DEFINITIONS = (
  2315. "DEBUG=1",
  2316. "$(inherited)",
  2317. );
  2318. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2319. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2320. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2321. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2322. GCC_WARN_UNUSED_FUNCTION = YES;
  2323. GCC_WARN_UNUSED_VARIABLE = YES;
  2324. IPHONEOS_DEPLOYMENT_TARGET = 15.6;
  2325. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2326. MTL_FAST_MATH = YES;
  2327. ONLY_ACTIVE_ARCH = YES;
  2328. PRODUCT_MODULE_NAME = LoopFollow;
  2329. SDKROOT = iphoneos;
  2330. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2331. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2332. };
  2333. name = Debug;
  2334. };
  2335. FC97882C2485969C00A7906C /* Release */ = {
  2336. isa = XCBuildConfiguration;
  2337. baseConfigurationReference = FC5A5C3C2497B229009C550E /* Config.xcconfig */;
  2338. buildSettings = {
  2339. ALWAYS_SEARCH_USER_PATHS = NO;
  2340. CLANG_ANALYZER_NONNULL = YES;
  2341. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2342. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2343. CLANG_CXX_LIBRARY = "libc++";
  2344. CLANG_ENABLE_MODULES = YES;
  2345. CLANG_ENABLE_OBJC_ARC = YES;
  2346. CLANG_ENABLE_OBJC_WEAK = YES;
  2347. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2348. CLANG_WARN_BOOL_CONVERSION = YES;
  2349. CLANG_WARN_COMMA = YES;
  2350. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2351. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2352. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2353. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2354. CLANG_WARN_EMPTY_BODY = YES;
  2355. CLANG_WARN_ENUM_CONVERSION = YES;
  2356. CLANG_WARN_INFINITE_RECURSION = YES;
  2357. CLANG_WARN_INT_CONVERSION = YES;
  2358. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2359. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2360. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2361. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2362. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2363. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2364. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2365. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2366. CLANG_WARN_UNREACHABLE_CODE = YES;
  2367. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2368. COPY_PHASE_STRIP = NO;
  2369. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2370. DEFINES_MODULE = YES;
  2371. ENABLE_NS_ASSERTIONS = NO;
  2372. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2373. GCC_C_LANGUAGE_STANDARD = gnu11;
  2374. GCC_NO_COMMON_BLOCKS = YES;
  2375. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2376. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2377. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2378. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2379. GCC_WARN_UNUSED_FUNCTION = YES;
  2380. GCC_WARN_UNUSED_VARIABLE = YES;
  2381. IPHONEOS_DEPLOYMENT_TARGET = 15.6;
  2382. MTL_ENABLE_DEBUG_INFO = NO;
  2383. MTL_FAST_MATH = YES;
  2384. PRODUCT_MODULE_NAME = LoopFollow;
  2385. SDKROOT = iphoneos;
  2386. SWIFT_COMPILATION_MODE = wholemodule;
  2387. SWIFT_OPTIMIZATION_LEVEL = "-O";
  2388. VALIDATE_PRODUCT = YES;
  2389. };
  2390. name = Release;
  2391. };
  2392. FC97882E2485969C00A7906C /* Debug */ = {
  2393. isa = XCBuildConfiguration;
  2394. baseConfigurationReference = ECA3EFB4037410B4973BB632 /* Pods-LoopFollow.debug.xcconfig */;
  2395. buildSettings = {
  2396. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  2397. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2398. CODE_SIGN_ENTITLEMENTS = "LoopFollow/Loop Follow.entitlements";
  2399. CODE_SIGN_STYLE = Automatic;
  2400. DEFINES_MODULE = YES;
  2401. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2402. INFOPLIST_FILE = LoopFollow/Info.plist;
  2403. IPHONEOS_DEPLOYMENT_TARGET = 16.6;
  2404. LD_RUNPATH_SEARCH_PATHS = (
  2405. "$(inherited)",
  2406. "@executable_path/Frameworks",
  2407. );
  2408. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix)";
  2409. PRODUCT_NAME = "Loop Follow";
  2410. SUPPORTS_MACCATALYST = YES;
  2411. SWIFT_VERSION = 5.0;
  2412. TARGETED_DEVICE_FAMILY = "1,2";
  2413. };
  2414. name = Debug;
  2415. };
  2416. FC97882F2485969C00A7906C /* Release */ = {
  2417. isa = XCBuildConfiguration;
  2418. baseConfigurationReference = 059B0FA59AABFE72FE13DDDA /* Pods-LoopFollow.release.xcconfig */;
  2419. buildSettings = {
  2420. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
  2421. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2422. CODE_SIGN_ENTITLEMENTS = "LoopFollow/Loop Follow.entitlements";
  2423. CODE_SIGN_STYLE = Automatic;
  2424. DEFINES_MODULE = YES;
  2425. DEVELOPMENT_TEAM = "$(LF_DEVELOPMENT_TEAM)";
  2426. INFOPLIST_FILE = LoopFollow/Info.plist;
  2427. IPHONEOS_DEPLOYMENT_TARGET = 16.6;
  2428. LD_RUNPATH_SEARCH_PATHS = (
  2429. "$(inherited)",
  2430. "@executable_path/Frameworks",
  2431. );
  2432. PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix)";
  2433. PRODUCT_NAME = "Loop Follow";
  2434. SUPPORTS_MACCATALYST = YES;
  2435. SWIFT_VERSION = 5.0;
  2436. TARGETED_DEVICE_FAMILY = "1,2";
  2437. };
  2438. name = Release;
  2439. };
  2440. /* End XCBuildConfiguration section */
  2441. /* Begin XCConfigurationList section */
  2442. DDCC3ADC2DDE1790006F1C10 /* Build configuration list for PBXNativeTarget "Tests" */ = {
  2443. isa = XCConfigurationList;
  2444. buildConfigurations = (
  2445. DDCC3ADD2DDE1790006F1C10 /* Debug */,
  2446. DDCC3ADE2DDE1790006F1C10 /* Release */,
  2447. );
  2448. defaultConfigurationIsVisible = 0;
  2449. defaultConfigurationName = Release;
  2450. };
  2451. FC97880F2485969B00A7906C /* Build configuration list for PBXProject "LoopFollow" */ = {
  2452. isa = XCConfigurationList;
  2453. buildConfigurations = (
  2454. FC97882B2485969C00A7906C /* Debug */,
  2455. FC97882C2485969C00A7906C /* Release */,
  2456. );
  2457. defaultConfigurationIsVisible = 0;
  2458. defaultConfigurationName = Release;
  2459. };
  2460. FC97882D2485969C00A7906C /* Build configuration list for PBXNativeTarget "LoopFollow" */ = {
  2461. isa = XCConfigurationList;
  2462. buildConfigurations = (
  2463. FC97882E2485969C00A7906C /* Debug */,
  2464. FC97882F2485969C00A7906C /* Release */,
  2465. );
  2466. defaultConfigurationIsVisible = 0;
  2467. defaultConfigurationName = Release;
  2468. };
  2469. /* End XCConfigurationList section */
  2470. /* Begin XCRemoteSwiftPackageReference section */
  2471. 654132E82E19F0B800BDBE08 /* XCRemoteSwiftPackageReference "swift-crypto" */ = {
  2472. isa = XCRemoteSwiftPackageReference;
  2473. repositoryURL = "https://github.com/apple/swift-crypto.git";
  2474. requirement = {
  2475. kind = upToNextMajorVersion;
  2476. minimumVersion = 3.12.3;
  2477. };
  2478. };
  2479. DD485F0B2E4547C800CE8CBF /* XCRemoteSwiftPackageReference "CryptoSwift" */ = {
  2480. isa = XCRemoteSwiftPackageReference;
  2481. repositoryURL = "https://github.com/krzyzanowskim/CryptoSwift.git";
  2482. requirement = {
  2483. kind = upToNextMajorVersion;
  2484. minimumVersion = 1.9.0;
  2485. };
  2486. };
  2487. DD48781A2C7DAF140048F05C /* XCRemoteSwiftPackageReference "Swift-JWT" */ = {
  2488. isa = XCRemoteSwiftPackageReference;
  2489. repositoryURL = "https://github.com/Kitura/Swift-JWT.git";
  2490. requirement = {
  2491. kind = exactVersion;
  2492. version = 4.0.1;
  2493. };
  2494. };
  2495. /* End XCRemoteSwiftPackageReference section */
  2496. /* Begin XCSwiftPackageProductDependency section */
  2497. DD485F152E46631000CE8CBF /* CryptoSwift */ = {
  2498. isa = XCSwiftPackageProductDependency;
  2499. productName = CryptoSwift;
  2500. };
  2501. DD48781B2C7DAF140048F05C /* SwiftJWT */ = {
  2502. isa = XCSwiftPackageProductDependency;
  2503. package = DD48781A2C7DAF140048F05C /* XCRemoteSwiftPackageReference "Swift-JWT" */;
  2504. productName = SwiftJWT;
  2505. };
  2506. /* End XCSwiftPackageProductDependency section */
  2507. /* Begin XCVersionGroup section */
  2508. FC3AE7B3249E8E0E00AAE1E0 /* LoopFollow.xcdatamodeld */ = {
  2509. isa = XCVersionGroup;
  2510. children = (
  2511. FC3AE7B4249E8E0E00AAE1E0 /* LoopFollow.xcdatamodel */,
  2512. );
  2513. currentVersion = FC3AE7B4249E8E0E00AAE1E0 /* LoopFollow.xcdatamodel */;
  2514. name = LoopFollow.xcdatamodeld;
  2515. path = LoopFollow/LoopFollow.xcdatamodeld;
  2516. sourceTree = "<group>";
  2517. versionGroupType = wrapper.xcdatamodel;
  2518. };
  2519. /* End XCVersionGroup section */
  2520. };
  2521. rootObject = FC97880C2485969B00A7906C /* Project object */;
  2522. }