project.pbxproj 229 KB

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