Showing 10 changed files with 1368 additions and 114 deletions
+16 -0
HealthProbe/Services/HealthKitService.swift
@@ -69,6 +69,7 @@ struct LegacySnapshotTypeSummary: Sendable {
69 69
 
70 70
 struct LegacySnapshotOutcome: Sendable {
71 71
     let snapshotID: UUID
72
+    let archiveObservationID: Int64?
72 73
     let timestamp: Date
73 74
     let deviceID: String
74 75
     let triggerReason: String
@@ -287,6 +288,7 @@ enum LegacySwiftDataBridge {
287 288
     private static func snapshotOutcome(from snapshot: HealthSnapshot) -> LegacySnapshotOutcome {
288 289
         LegacySnapshotOutcome(
289 290
             snapshotID: snapshot.id,
291
+            archiveObservationID: snapshot.archiveObservationID,
290 292
             timestamp: snapshot.timestamp,
291 293
             deviceID: snapshot.deviceID,
292 294
             triggerReason: snapshot.triggerReason,
@@ -299,6 +301,20 @@ enum LegacySwiftDataBridge {
299 301
         )
300 302
     }
301 303
 
304
+    static func snapshotID(forArchiveObservationID observationID: Int64) -> UUID? {
305
+        do {
306
+            let context = try modelContext()
307
+            let descriptor = FetchDescriptor<HealthSnapshot>(
308
+                predicate: #Predicate { snapshot in
309
+                    snapshot.archiveObservationID == observationID
310
+                }
311
+            )
312
+            return try context.fetch(descriptor).first?.id
313
+        } catch {
314
+            return nil
315
+        }
316
+    }
317
+
302 318
     private static func modelContext() throws -> ModelContext {
303 319
         if let context { return context }
304 320
         guard let container else {
+0 -2
HealthProbe/Utilities/AppSettings.swift
@@ -6,8 +6,6 @@ final class AppSettings {
6 6
     private static let captureProfileKey = "hp_captureProfile"
7 7
     static let adaptiveTimeoutsEnabledKey = "hp_adaptiveTimeoutsEnabled"
8 8
     static let simplifiedUIModeEnabledKey = "hp_simplifiedUIModeEnabled"
9
-    static let typeDetailCacheBackfillVersionKey = "hp_typeDetailCacheBackfillVersion"
10
-    static let currentTypeDetailCacheBackfillVersion = 2
11 9
 
12 10
     private enum CaptureProfile: String {
13 11
         case allAvailable
+42 -2
HealthProbe/Utilities/DiagnosticReportStore.swift
@@ -7,6 +7,8 @@ struct DiagnosticReportFile: Identifiable, Equatable {
7 7
 
8 8
     var id: String { url.path }
9 9
     var filename: String { url.lastPathComponent }
10
+    var snapshotID: UUID? { Self.uuidValue(after: "_snapshot-", in: filename) }
11
+    var observationID: Int64? { Self.int64Value(after: "_observation-", in: filename) }
10 12
 
11 13
     var displayTitle: String {
12 14
         filename
@@ -18,6 +20,22 @@ struct DiagnosticReportFile: Identifiable, Equatable {
18 20
         let size = ByteCountFormatter.string(fromByteCount: sizeBytes, countStyle: .file)
19 21
         return "\(DiagnosticReportStore.displayFormatter.string(from: createdAt)) - \(size)"
20 22
     }
23
+
24
+    private static func uuidValue(after marker: String, in value: String) -> UUID? {
25
+        guard let markerRange = value.range(of: marker) else { return nil }
26
+        let suffix = value[markerRange.upperBound...]
27
+        let rawValue = suffix.split(separator: "_", maxSplits: 1).first?
28
+            .replacingOccurrences(of: ".txt", with: "")
29
+        return rawValue.flatMap(UUID.init(uuidString:))
30
+    }
31
+
32
+    private static func int64Value(after marker: String, in value: String) -> Int64? {
33
+        guard let markerRange = value.range(of: marker) else { return nil }
34
+        let suffix = value[markerRange.upperBound...]
35
+        let rawValue = suffix.split(separator: "_", maxSplits: 1).first?
36
+            .replacingOccurrences(of: ".txt", with: "")
37
+        return rawValue.flatMap(Int64.init)
38
+    }
21 39
 }
22 40
 
23 41
 enum DiagnosticReportStore {
@@ -31,12 +49,13 @@ enum DiagnosticReportStore {
31 49
         return formatter
32 50
     }()
33 51
 
34
-    static func persist(text: String, snapshotID: UUID, operationID: UUID?) throws {
52
+    static func persist(text: String, snapshotID: UUID, observationID: Int64?, operationID: UUID?) throws {
35 53
         try FileManager.default.createDirectory(at: directory, withIntermediateDirectories: true)
36 54
 
37 55
         let timestamp = Self.filenameTimestamp(Date())
56
+        let observationPart = observationID.map { "_observation-\($0)" } ?? ""
38 57
         let operationPart = operationID.map { "_operation-\($0.uuidString)" } ?? ""
39
-        let filename = "\(timestamp)_snapshot-\(snapshotID.uuidString)\(operationPart).txt"
58
+        let filename = "\(timestamp)_snapshot-\(snapshotID.uuidString)\(observationPart)\(operationPart).txt"
40 59
         let fileURL = directory.appending(path: filename, directoryHint: .notDirectory)
41 60
         try text.write(to: fileURL, atomically: true, encoding: .utf8)
42 61
     }
@@ -68,6 +87,27 @@ enum DiagnosticReportStore {
68 87
         return reports
69 88
     }
70 89
 
90
+    static func list(
91
+        snapshotID: UUID?,
92
+        observationID: Int64?,
93
+        limit: Int? = nil
94
+    ) throws -> [DiagnosticReportFile] {
95
+        let reports = try list(limit: nil).filter { report in
96
+            if let observationID, report.observationID == observationID {
97
+                return true
98
+            }
99
+            if let snapshotID, report.snapshotID == snapshotID {
100
+                return true
101
+            }
102
+            return false
103
+        }
104
+
105
+        if let limit {
106
+            return Array(reports.prefix(limit))
107
+        }
108
+        return reports
109
+    }
110
+
71 111
     static func read(_ report: DiagnosticReportFile) throws -> String {
72 112
         try String(contentsOf: report.url, encoding: .utf8)
73 113
     }
+23 -12
HealthProbe/Utilities/SnapshotFetchProgress.swift
@@ -165,6 +165,7 @@ final class SnapshotFetchProgress {
165 165
         var captureMode: String = "unavailable"
166 166
         var deltaEventCount: Int = 0
167 167
         var blockProgress: String = ""
168
+        var segmentStartElapsedSeconds: TimeInterval = 0
168 169
         var blockElapsedSeconds: TimeInterval = 0
169 170
         var blockSamplesPerSecond: Double = 0
170 171
     }
@@ -181,6 +182,7 @@ final class SnapshotFetchProgress {
181 182
     var monitoredTypeSetHash: String = ""
182 183
     var monitoredRegistryVersion: Int?
183 184
     private let operationTimer = MonotonicTimer()
185
+    private var lastSegmentEndElapsedSeconds: TimeInterval = 0
184 186
     private let displayNamesByID: [String: String]
185 187
 
186 188
     var visibleTypes: [TypeProgress] { types }
@@ -268,8 +270,17 @@ final class SnapshotFetchProgress {
268 270
             break
269 271
         }
270 272
         switch status {
271
-        case .fetching, .complete, .failed:
272
-            types[index].blockElapsedSeconds = operationElapsedSeconds
273
+        case .fetching:
274
+            types[index].segmentStartElapsedSeconds = lastSegmentEndElapsedSeconds
275
+            let elapsed = max(0, operationElapsedSeconds - types[index].segmentStartElapsedSeconds)
276
+            types[index].blockElapsedSeconds = elapsed
277
+            types[index].blockSamplesPerSecond = rate(for: types[index].recordCount, elapsedSeconds: elapsed)
278
+        case .complete, .failed:
279
+            let finishedAt = operationElapsedSeconds
280
+            let elapsed = max(0, finishedAt - types[index].segmentStartElapsedSeconds)
281
+            types[index].blockElapsedSeconds = elapsed
282
+            types[index].blockSamplesPerSecond = rate(for: types[index].recordCount, elapsedSeconds: elapsed)
283
+            lastSegmentEndElapsedSeconds = max(lastSegmentEndElapsedSeconds, finishedAt)
273 284
         case .pending:
274 285
             break
275 286
         }
@@ -320,10 +331,9 @@ final class SnapshotFetchProgress {
320 331
         types[index].timingBreakdown = timingBreakdown
321 332
         types[index].captureMode = captureMode
322 333
         types[index].deltaEventCount = deltaEventCount
323
-        types[index].blockElapsedSeconds = operationElapsedSeconds
324
-        if recordCount > 0, operationElapsedSeconds > 0 {
325
-            types[index].blockSamplesPerSecond = Double(recordCount) / operationElapsedSeconds
326
-        }
334
+        let elapsed = max(0, operationElapsedSeconds - types[index].segmentStartElapsedSeconds)
335
+        types[index].blockElapsedSeconds = elapsed
336
+        types[index].blockSamplesPerSecond = rate(for: recordCount, elapsedSeconds: elapsed)
327 337
     }
328 338
 
329 339
     func updateTimeoutProfile(
@@ -356,14 +366,10 @@ final class SnapshotFetchProgress {
356 366
         if let recordCount {
357 367
             types[index].recordCount = recordCount
358 368
         }
359
-        let elapsed = operationElapsedSeconds
369
+        let elapsed = max(0, operationElapsedSeconds - types[index].segmentStartElapsedSeconds)
360 370
         types[index].blockElapsedSeconds = elapsed
361 371
         let effectiveRecordCount = recordCount ?? types[index].recordCount
362
-        if effectiveRecordCount > 0, elapsed > 0 {
363
-            types[index].blockSamplesPerSecond = Double(effectiveRecordCount) / elapsed
364
-        } else if samplesPerSecond != nil || elapsedSeconds != nil {
365
-            types[index].blockSamplesPerSecond = 0
366
-        }
372
+        types[index].blockSamplesPerSecond = rate(for: effectiveRecordCount, elapsedSeconds: elapsed)
367 373
     }
368 374
 
369 375
     func markUnavailable(_ id: String) {
@@ -385,4 +391,9 @@ final class SnapshotFetchProgress {
385 391
         )
386 392
         return 0
387 393
     }
394
+
395
+    private func rate(for recordCount: Int, elapsedSeconds: TimeInterval) -> Double {
396
+        guard recordCount > 0, elapsedSeconds > 0 else { return 0 }
397
+        return Double(recordCount) / elapsedSeconds
398
+    }
388 399
 }
+3 -0
HealthProbe/ViewModels/DashboardViewModel.swift
@@ -17,6 +17,7 @@ final class DashboardViewModel {
17 17
     var fetchStartDate: Date? = nil
18 18
     var operationID: UUID? = nil
19 19
     var completedSnapshotID: UUID? = nil
20
+    var completedArchiveObservationID: Int64? = nil
20 21
     var completedSnapshotTimestamp: Date? = nil
21 22
     var completedSnapshotDeviceID: String? = nil
22 23
     var completedSnapshotTriggerReason: String? = nil
@@ -75,6 +76,7 @@ final class DashboardViewModel {
75 76
         fetchDurationSeconds = nil
76 77
         operationID = UUID()
77 78
         completedSnapshotID = nil
79
+        completedArchiveObservationID = nil
78 80
         completedSnapshotTimestamp = nil
79 81
         completedSnapshotDeviceID = nil
80 82
         completedSnapshotTriggerReason = nil
@@ -379,6 +381,7 @@ final class DashboardViewModel {
379 381
 
380 382
     private func applyOutcome(_ outcome: LegacySnapshotOutcome) {
381 383
         completedSnapshotID = outcome.snapshotID
384
+        completedArchiveObservationID = outcome.archiveObservationID
382 385
         completedSnapshotTimestamp = outcome.timestamp
383 386
         completedSnapshotDeviceID = outcome.deviceID
384 387
         completedSnapshotTriggerReason = outcome.triggerReason
+55 -0
HealthProbe/Views/Components/DiagnosticReportsListSection.swift
@@ -0,0 +1,55 @@
1
+import SwiftUI
2
+
3
+struct DiagnosticReportsListSection: View {
4
+    let title: String
5
+    let emptyMessage: String
6
+    let message: String?
7
+    let reports: [DiagnosticReportFile]
8
+    let onOpen: (DiagnosticReportFile) -> Void
9
+    let onDelete: (DiagnosticReportFile) -> Void
10
+    let onRefresh: () -> Void
11
+
12
+    var body: some View {
13
+        Section(title) {
14
+            if reports.isEmpty {
15
+                Text(emptyMessage)
16
+                    .foregroundStyle(.secondary)
17
+            } else {
18
+                ForEach(reports) { report in
19
+                    Button {
20
+                        onOpen(report)
21
+                    } label: {
22
+                        VStack(alignment: .leading, spacing: 3) {
23
+                            Text(report.displayTitle)
24
+                                .font(.subheadline.weight(.semibold))
25
+                                .foregroundStyle(.primary)
26
+                                .lineLimit(2)
27
+                            Text(report.displaySubtitle)
28
+                                .font(.caption)
29
+                                .foregroundStyle(.secondary)
30
+                        }
31
+                    }
32
+                    .swipeActions {
33
+                        Button(role: .destructive) {
34
+                            onDelete(report)
35
+                        } label: {
36
+                            Label("Delete", systemImage: "trash")
37
+                        }
38
+                    }
39
+                }
40
+            }
41
+
42
+            Button {
43
+                onRefresh()
44
+            } label: {
45
+                Label("Refresh Results", systemImage: "arrow.clockwise")
46
+            }
47
+
48
+            if let message {
49
+                Label(message, systemImage: "exclamationmark.triangle")
50
+                    .font(.caption)
51
+                    .foregroundStyle(Color.warningAmber)
52
+            }
53
+        }
54
+    }
55
+}
+2 -0
HealthProbe/Views/Dashboard/DashboardView.swift
@@ -339,6 +339,7 @@ struct DashboardView: View {
339 339
         lines.append("")
340 340
         lines.append("OPERATION SUMMARY")
341 341
         lines.append("Snapshot:   \(snapshotID)")
342
+        lines.append("Archive Observation: \(viewModel.completedArchiveObservationID.map(String.init) ?? "unknown")")
342 343
         lines.append("Device:     \(deviceID)")
343 344
         lines.append("Timestamp:  \(tsStr)")
344 345
         lines.append("Quality:    \(quality)")
@@ -1148,6 +1149,7 @@ struct DashboardView: View {
1148 1149
             try DiagnosticReportStore.persist(
1149 1150
                 text: text,
1150 1151
                 snapshotID: snapshotID,
1152
+                observationID: viewModel.completedArchiveObservationID,
1151 1153
                 operationID: viewModel.operationID
1152 1154
             )
1153 1155
             savedDiagnosticSnapshotIDs.insert(snapshotID)
+11 -98
HealthProbe/Views/Settings/SettingsView.swift
@@ -2,7 +2,6 @@ import SwiftUI
2 2
 
3 3
 struct SettingsView: View {
4 4
     @Environment(AppSettings.self) private var appSettings
5
-    @AppStorage("checkFrequencyHours") private var checkFrequencyHours: Int = 6
6 5
     @State private var showDeleteCacheConfirm = false
7 6
     @State private var showResetDataConfirm = false
8 7
     @State private var dataMaintenanceMessage: String?
@@ -10,8 +9,6 @@ struct SettingsView: View {
10 9
     @State private var timeoutProfiles: [LocalMetricTimeoutProfile] = []
11 10
     @State private var currentDeviceProfile: LocalDeviceProfile?
12 11
     @State private var resetScheduled = PrototypeStoreResetPolicy.isResetScheduled(appSupportURL: .applicationSupportDirectory)
13
-    @State private var diagnosticReports: [DiagnosticReportFile] = []
14
-    @State private var diagnosticReportText: DiagnosticReportText?
15 12
 
16 13
     private var currentDeviceID: String {
17 14
         AppSettings.currentDeviceID
@@ -21,12 +18,11 @@ struct SettingsView: View {
21 18
         NavigationStack {
22 19
             List {
23 20
                 deviceSection
24
-                interfaceSection
25
-                monitoringSection
21
+                captureProfileSection
26 22
                 timeoutCalibrationSection
23
+                interfaceSection
27 24
                 typeSelectionSections
28
-                dataSection
29
-                diagnosticReportsSection
25
+                archiveMaintenanceSection
30 26
                 aboutSection
31 27
             }
32 28
             .navigationTitle("Settings")
@@ -34,10 +30,6 @@ struct SettingsView: View {
34 30
                 loadCurrentDeviceProfile()
35 31
                 loadTimeoutProfiles()
36 32
                 loadArchiveCacheStatus()
37
-                loadDiagnosticReports()
38
-            }
39
-            .sheet(item: $diagnosticReportText) { report in
40
-                DiagnosticReportSheet(reportText: report.text)
41 33
             }
42 34
             .confirmationDialog(
43 35
                 "Delete Rebuildable UI Cache",
@@ -114,19 +106,8 @@ struct SettingsView: View {
114 106
         }
115 107
     }
116 108
 
117
-    private var monitoringSection: some View {
118
-        Section("Monitoring") {
119
-            Picker("Check Frequency", selection: $checkFrequencyHours) {
120
-                Text("Every 2 hours").tag(2)
121
-                Text("Every 6 hours").tag(6)
122
-                Text("Every 12 hours").tag(12)
123
-                Text("Every 24 hours").tag(24)
124
-            }
125
-        }
126
-    }
127
-
128 109
     private var interfaceSection: some View {
129
-        Section("Interface") {
110
+        Section("Display") {
130 111
             Toggle("Simplified Detail Views", isOn: Binding(
131 112
                 get: { appSettings.simplifiedUIModeEnabled },
132 113
                 set: { appSettings.simplifiedUIModeEnabled = $0 }
@@ -135,7 +116,7 @@ struct SettingsView: View {
135 116
     }
136 117
 
137 118
     private var timeoutCalibrationSection: some View {
138
-        Section("Timeout Calibration") {
119
+        Section("Performance") {
139 120
             Toggle("Adaptive Timeouts", isOn: Binding(
140 121
                 get: { appSettings.adaptiveTimeoutsEnabled },
141 122
                 set: { appSettings.adaptiveTimeoutsEnabled = $0 }
@@ -171,7 +152,7 @@ struct SettingsView: View {
171 152
     }
172 153
 
173 154
     @ViewBuilder
174
-    private var typeSelectionSections: some View {
155
+    private var captureProfileSection: some View {
175 156
         Section("Capture Profile") {
176 157
             InfoRow(label: "Profile") {
177 158
                 Text(appSettings.captureProfileDescription)
@@ -204,7 +185,10 @@ struct SettingsView: View {
204 185
             }
205 186
             .disabled(appSettings.selectedTypeIDs.isEmpty)
206 187
         }
188
+    }
207 189
 
190
+    @ViewBuilder
191
+    private var typeSelectionSections: some View {
208 192
         ForEach(TypeCategory.allCases, id: \.self) { category in
209 193
             Section(category.rawValue) {
210 194
                 ForEach(HealthKitService.allTypes.filter { $0.category == category }) { type in
@@ -214,8 +198,8 @@ struct SettingsView: View {
214 198
         }
215 199
     }
216 200
 
217
-    private var dataSection: some View {
218
-        Section("Data") {
201
+    private var archiveMaintenanceSection: some View {
202
+        Section("Archive Maintenance") {
219 203
             InfoRow(label: "Cached Observations") {
220 204
                 Text(archiveObservationCount.map(String.init) ?? "Unavailable")
221 205
                     .foregroundStyle(.secondary)
@@ -254,44 +238,6 @@ struct SettingsView: View {
254 238
         }
255 239
     }
256 240
 
257
-    private var diagnosticReportsSection: some View {
258
-        Section("Diagnostic Reports") {
259
-            if diagnosticReports.isEmpty {
260
-                Text("No saved reports yet")
261
-                    .foregroundStyle(.secondary)
262
-            } else {
263
-                ForEach(diagnosticReports) { report in
264
-                    Button {
265
-                        openDiagnosticReport(report)
266
-                    } label: {
267
-                        VStack(alignment: .leading, spacing: 3) {
268
-                            Text(report.displayTitle)
269
-                                .font(.subheadline.weight(.semibold))
270
-                                .foregroundStyle(.primary)
271
-                                .lineLimit(2)
272
-                            Text(report.displaySubtitle)
273
-                                .font(.caption)
274
-                                .foregroundStyle(.secondary)
275
-                        }
276
-                    }
277
-                    .swipeActions {
278
-                        Button(role: .destructive) {
279
-                            deleteDiagnosticReport(report)
280
-                        } label: {
281
-                            Label("Delete", systemImage: "trash")
282
-                        }
283
-                    }
284
-                }
285
-            }
286
-
287
-            Button {
288
-                loadDiagnosticReports()
289
-            } label: {
290
-                Label("Refresh Reports", systemImage: "arrow.clockwise")
291
-            }
292
-        }
293
-    }
294
-
295 241
     private var aboutSection: some View {
296 242
         Section("About") {
297 243
             InfoRow(label: "Version") {
@@ -370,34 +316,6 @@ struct SettingsView: View {
370 316
         }
371 317
     }
372 318
 
373
-    private func loadDiagnosticReports() {
374
-        do {
375
-            diagnosticReports = try DiagnosticReportStore.list(limit: 20)
376
-        } catch {
377
-            dataMaintenanceMessage = "Diagnostic report list failed: \(error.localizedDescription)"
378
-            diagnosticReports = []
379
-        }
380
-    }
381
-
382
-    private func openDiagnosticReport(_ report: DiagnosticReportFile) {
383
-        do {
384
-            diagnosticReportText = DiagnosticReportText(text: try DiagnosticReportStore.read(report))
385
-        } catch {
386
-            dataMaintenanceMessage = "Diagnostic report open failed: \(error.localizedDescription)"
387
-            loadDiagnosticReports()
388
-        }
389
-    }
390
-
391
-    private func deleteDiagnosticReport(_ report: DiagnosticReportFile) {
392
-        do {
393
-            try DiagnosticReportStore.delete(report)
394
-            loadDiagnosticReports()
395
-        } catch {
396
-            dataMaintenanceMessage = "Diagnostic report delete failed: \(error.localizedDescription)"
397
-            loadDiagnosticReports()
398
-        }
399
-    }
400
-
401 319
     private func rebuildArchiveCache() {
402 320
         do {
403 321
             let summary = try CoreDataArchiveCacheStore().rebuild(fromArchiveAt: SQLiteHealthArchiveStore.defaultDatabaseURL)
@@ -429,11 +347,6 @@ struct SettingsView: View {
429 347
 
430 348
 // MARK: - Subviews
431 349
 
432
-private struct DiagnosticReportText: Identifiable {
433
-    let id = UUID()
434
-    let text: String
435
-}
436
-
437 350
 private struct TypeToggleRow: View {
438 351
     let type: MonitoredType
439 352
     let appSettings: AppSettings
+59 -0
HealthProbe/Views/Snapshots/SnapshotArchiveDetailView.swift
@@ -7,6 +7,9 @@ struct SnapshotArchiveDetailView: View {
7 7
 
8 8
     @State private var typeRows: [SnapshotArchiveTypeSummaryRow] = []
9 9
     @State private var loadError: String?
10
+    @State private var diagnosticReports: [DiagnosticReportFile] = []
11
+    @State private var diagnosticReportText: DiagnosticReportText?
12
+    @State private var diagnosticReportMessage: String?
10 13
 
11 14
     private var timelineContexts: [DataTypeSnapshotContext] {
12 15
         timelineRows
@@ -56,12 +59,17 @@ struct SnapshotArchiveDetailView: View {
56 59
     var body: some View {
57 60
         List {
58 61
             summarySection
62
+            diagnosticReportsSection
59 63
             typeSection
60 64
         }
61 65
         .navigationTitle("Snapshot")
62 66
         .navigationBarTitleDisplayMode(.inline)
63 67
         .task(id: taskID) {
64 68
             await loadTypeRows()
69
+            loadDiagnosticReports()
70
+        }
71
+        .sheet(item: $diagnosticReportText) { report in
72
+            DiagnosticReportSheet(reportText: report.text)
65 73
         }
66 74
     }
67 75
 
@@ -125,6 +133,18 @@ struct SnapshotArchiveDetailView: View {
125 133
         }
126 134
     }
127 135
 
136
+    private var diagnosticReportsSection: some View {
137
+        DiagnosticReportsListSection(
138
+            title: "Snapshot Results",
139
+            emptyMessage: "No saved result reports for this snapshot.",
140
+            message: diagnosticReportMessage,
141
+            reports: diagnosticReports,
142
+            onOpen: openDiagnosticReport,
143
+            onDelete: deleteDiagnosticReport,
144
+            onRefresh: loadDiagnosticReports
145
+        )
146
+    }
147
+
128 148
     @MainActor
129 149
     private func loadTypeRows() async {
130 150
         do {
@@ -180,6 +200,45 @@ struct SnapshotArchiveDetailView: View {
180 200
             loadError = error.localizedDescription
181 201
         }
182 202
     }
203
+
204
+    private func loadDiagnosticReports() {
205
+        let snapshotID = LegacySwiftDataBridge.snapshotID(forArchiveObservationID: row.observationID)
206
+        do {
207
+            diagnosticReports = try DiagnosticReportStore.list(
208
+                snapshotID: snapshotID,
209
+                observationID: row.observationID,
210
+                limit: 10
211
+            )
212
+            diagnosticReportMessage = nil
213
+        } catch {
214
+            diagnosticReports = []
215
+            diagnosticReportMessage = error.localizedDescription
216
+        }
217
+    }
218
+
219
+    private func openDiagnosticReport(_ report: DiagnosticReportFile) {
220
+        do {
221
+            diagnosticReportText = DiagnosticReportText(text: try DiagnosticReportStore.read(report))
222
+        } catch {
223
+            diagnosticReportMessage = error.localizedDescription
224
+            loadDiagnosticReports()
225
+        }
226
+    }
227
+
228
+    private func deleteDiagnosticReport(_ report: DiagnosticReportFile) {
229
+        do {
230
+            try DiagnosticReportStore.delete(report)
231
+            loadDiagnosticReports()
232
+        } catch {
233
+            diagnosticReportMessage = error.localizedDescription
234
+            loadDiagnosticReports()
235
+        }
236
+    }
237
+}
238
+
239
+private struct DiagnosticReportText: Identifiable {
240
+    let id = UUID()
241
+    let text: String
183 242
 }
184 243
 
185 244
 private struct SnapshotArchiveSummaryRow: View {
+1157 -0
tmp/device-logs/iphone12mini-health-20260606-142318.log
@@ -0,0 +1,1157 @@
1
+Jun  6 14:23:18.998448 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 256.333344, brightness boost: 1.185885
2
+Jun  6 14:23:18.999396 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=335.736969 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=256.333344) curveChanged=0
3
+Jun  6 14:23:19.003989 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: com.apple.WebKit.WebContent(1028) deny(1) sysctl-read security.mac.lockdown_mode_state
4
+Jun  6 14:23:19.004047 kernel(Sandbox)[0] <Error>: Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(786)]
5
+Jun  6 14:23:19.006173 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(786)]
6
+Jun  6 14:23:19.006238 kernel(Sandbox)[0] <Error>: Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(787)]
7
+Jun  6 14:23:19.006271 Yahoo Weather(Security)[760] <Notice>: SecTaskLoadEntitlements: failed to get cs_flags, error=1, pid=786
8
+Jun  6 14:23:19.006400 Yahoo Weather(Security)[760] <Notice>: SecTaskLoadEntitlements: failed to get cs_flags, error=1, pid=787
9
+Jun  6 14:23:19.006425 Yahoo Weather(Security)[760] <Notice>: SecTaskLoadEntitlements: failed to get cs_flags, error=1, pid=794
10
+Jun  6 14:23:19.006435 Yahoo Weather(Security)[760] <Notice>: SecTaskLoadEntitlements: failed to get cs_flags, error=1, pid=797
11
+Jun  6 14:23:19.006446 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(787)]
12
+Jun  6 14:23:19.006459 Yahoo Weather(Security)[760] <Notice>: SecTaskLoadEntitlements: failed to get cs_flags, error=1, pid=1025
13
+Jun  6 14:23:19.006472 kernel(Sandbox)[0] <Error>: Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(794)]
14
+Jun  6 14:23:19.006479 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(794)]
15
+Jun  6 14:23:19.006485 kernel(Sandbox)[0] <Error>: Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(797)]
16
+Jun  6 14:23:19.006491 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(797)]
17
+Jun  6 14:23:19.006497 kernel(Sandbox)[0] <Error>: Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(1025)]
18
+Jun  6 14:23:19.006503 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(1025)]
19
+Jun  6 14:23:19.006509 kernel(Sandbox)[0] <Error>: Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(1028)]
20
+Jun  6 14:23:19.006534 Yahoo Weather(Security)[760] <Notice>: SecTaskLoadEntitlements: failed to get cs_flags, error=1, pid=1028
21
+Jun  6 14:23:19.031029 cfprefsd(CoreFoundation)[107] <Debug>: wrote file /private/var/mobile/Containers/Data/Application/9617B0AD-7D63-47C4-81F9-5FE8B6909FBC/Library/Preferences/com.google.gmp.measurement.monitor.plist
22
+Jun  6 14:23:19.247854 backboardd(CoreBrightness)[70] <Info>: [AAP] Update for Lux change 169.333328 -> 259.333344, Lux delta 53.149616% >= 52.180116% Lux threshold
23
+Jun  6 14:23:19.248151 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 259.333344, brightness boost: 1.185885
24
+Jun  6 14:23:19.248478 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=335.946777 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=259.333344) curveChanged=0
25
+Jun  6 14:23:19.331829 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
26
+Jun  6 14:23:19.332784 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
27
+Jun  6 14:23:19.333101 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
28
+Jun  6 14:23:19.333433 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
29
+Jun  6 14:23:19.335033 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6668755737>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
30
+Jun  6 14:23:19.335359 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668755737>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
31
+Jun  6 14:23:19.335383 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668755737>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
32
+Jun  6 14:23:19.335395 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
33
+Jun  6 14:23:19.335424 audiomxd(CoreUtils)[110] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668755737>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
34
+Jun  6 14:23:19.335465 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668755737>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
35
+Jun  6 14:23:19.335502 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
36
+Jun  6 14:23:19.335693 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
37
+Jun  6 14:23:19.336457 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
38
+Jun  6 14:23:19.367541 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
39
+Jun  6 14:23:19.368130 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6668790473>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
40
+Jun  6 14:23:19.368789 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668790473>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
41
+Jun  6 14:23:19.368814 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
42
+Jun  6 14:23:19.368927 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668790473>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
43
+Jun  6 14:23:19.368978 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6668790473>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
44
+Jun  6 14:23:19.369013 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
45
+Jun  6 14:23:19.369539 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
46
+Jun  6 14:23:19.370169 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
47
+Jun  6 14:23:19.373983 kernel()[0] <Notice>: InfraPeers: Added unicast peer to database 00:90:A9:E6:52:40 (total peers: 14)
48
+Jun  6 14:23:19.377805 bluetoothd[97] <Debug>: Found device "<private> Random D2:94:EB:4F:19:67 RSSI:-61 with data:RSSI: 0 dB (non-saturated), MFR Data: 4C 00 12 02 00 01[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000], non-connectable, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
49
+Jun  6 14:23:19.377845 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
50
+Jun  6 14:23:19.377947 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
51
+Jun  6 14:23:19.379608 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
52
+Jun  6 14:23:19.379880 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
53
+Jun  6 14:23:19.381099 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
54
+Jun  6 14:23:19.392521 runningboardd(RunningBoard)[34] <Info>: Process: [xpcservice<com.apple.WebKit.Networking([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 114736818}[uuid:D15B7CBB-E52D-426F-87D3-71EF7680BAE2]{definition:com.apple.WebKit.Networking[extension][client]}:1004] has changes in inheritances: (null)
55
+Jun  6 14:23:19.393040 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
56
+Jun  6 14:23:19.393048 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
57
+Jun  6 14:23:19.393067 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
58
+Jun  6 14:23:19.393075 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
59
+Jun  6 14:23:19.393126 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
60
+Jun  6 14:23:19.393133 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
61
+Jun  6 14:23:19.393349 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
62
+Jun  6 14:23:19.393367 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
63
+Jun  6 14:23:19.393921 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
64
+Jun  6 14:23:19.393956 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
65
+Jun  6 14:23:19.395697 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
66
+Jun  6 14:23:19.395729 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
67
+Jun  6 14:23:19.396200 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
68
+Jun  6 14:23:19.396221 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
69
+Jun  6 14:23:19.396234 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
70
+Jun  6 14:23:19.396264 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
71
+Jun  6 14:23:19.396322 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
72
+Jun  6 14:23:19.396413 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
73
+Jun  6 14:23:19.396677 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
74
+Jun  6 14:23:19.396742 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
75
+Jun  6 14:23:19.397370 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
76
+Jun  6 14:23:19.397383 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
77
+Jun  6 14:23:19.397926 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
78
+Jun  6 14:23:19.397939 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
79
+Jun  6 14:23:19.398167 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
80
+Jun  6 14:23:19.398178 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
81
+Jun  6 14:23:19.399553 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
82
+Jun  6 14:23:19.399585 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
83
+Jun  6 14:23:19.399597 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
84
+Jun  6 14:23:19.399617 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
85
+Jun  6 14:23:19.399737 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
86
+Jun  6 14:23:19.399745 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
87
+Jun  6 14:23:19.399808 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
88
+Jun  6 14:23:19.399820 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
89
+Jun  6 14:23:19.404475 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
90
+Jun  6 14:23:19.404487 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
91
+Jun  6 14:23:19.404542 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
92
+Jun  6 14:23:19.404557 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
93
+Jun  6 14:23:19.404603 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.UserEventAgent-System>:32] (euid 0, auid 0) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupProcessName:error:
94
+Jun  6 14:23:19.404675 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
95
+Jun  6 14:23:19.404688 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
96
+Jun  6 14:23:19.408080 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.UserEventAgent-System>:32] (euid 0, auid 0) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupProcessName:error:
97
+Jun  6 14:23:19.408156 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.UserEventAgent-System>:32] (euid 0, auid 0) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupProcessName:error:
98
+Jun  6 14:23:19.484224 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
99
+Jun  6 14:23:19.485612 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
100
+Jun  6 14:23:19.486698 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
101
+Jun  6 14:23:19.487264 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
102
+Jun  6 14:23:19.487723 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
103
+Jun  6 14:23:19.488072 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
104
+Jun  6 14:23:19.488425 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
105
+Jun  6 14:23:19.488770 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
106
+Jun  6 14:23:19.489281 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
107
+Jun  6 14:23:19.489731 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
108
+Jun  6 14:23:19.490193 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
109
+Jun  6 14:23:19.490515 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
110
+Jun  6 14:23:19.490915 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
111
+Jun  6 14:23:19.491205 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
112
+Jun  6 14:23:19.491616 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
113
+Jun  6 14:23:19.492097 PerfPowerServices(PowerlogLiteOperators)[469] <Debug>: Received Client status change notification
114
+Jun  6 14:23:19.498443 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 261.666656, brightness boost: 1.185885
115
+Jun  6 14:23:19.499613 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.109985 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=261.666656) curveChanged=0
116
+Jun  6 14:23:19.512131 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: Yahoo Weather(760) deny(1) process-info-codesignature others [com.apple.WebKit.WebContent(1028)]
117
+Jun  6 14:23:19.512186 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
118
+Jun  6 14:23:19.525010 kernel[0] <Error>: netagent_get_agent_domain_and_type: Type requested for invalid netagent
119
+Jun  6 14:23:19.566481 symptomsd(NetworkStatistics)[139] <Notice>: Source 20624 attribution change, was procname lockdownd pid 87 epid 87 uuid 716C03BE-0923-3001-98D7-B20F3A84DD67 euuid 716C03BE-0923-3001-98D7-B20F3A84DD67  now diagnosticd 1024 1024 7ACE841E-8019-3596-831C-8F7B5BA92175 7ACE841E-8019-3596-831C-8F7B5BA92175
120
+Jun  6 14:23:19.567004 symptomsd(SymptomEvaluator)[139] <Notice>: Flow 20624 owner diagnosticd, changed user from AppTracker at 0xc330896e0 user lockdownd  flows: self 1  others 0 prevs 52 0  avg duration 0.958296 rx 1745 tx 20677 everset 0x2 policy TrackerPolicy at 0xc32c38280, default disposition FlowClassification type:known_other, num class maps 0, mgt flag maps 0
121
+Jun  6 14:23:19.567484 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
122
+Jun  6 14:23:19.567787 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
123
+Jun  6 14:23:19.567848 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
124
+Jun  6 14:23:19.568049 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
125
+Jun  6 14:23:19.568128 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
126
+Jun  6 14:23:19.568421 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
127
+Jun  6 14:23:19.568461 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
128
+Jun  6 14:23:19.568469 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
129
+Jun  6 14:23:19.568530 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
130
+Jun  6 14:23:19.568562 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
131
+Jun  6 14:23:19.568580 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
132
+Jun  6 14:23:19.568588 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
133
+Jun  6 14:23:19.568900 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
134
+Jun  6 14:23:19.568909 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
135
+Jun  6 14:23:19.568969 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
136
+Jun  6 14:23:19.568979 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
137
+Jun  6 14:23:19.569069 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
138
+Jun  6 14:23:19.569111 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
139
+Jun  6 14:23:19.569129 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
140
+Jun  6 14:23:19.569137 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
141
+Jun  6 14:23:19.569170 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
142
+Jun  6 14:23:19.569177 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
143
+Jun  6 14:23:19.569678 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
144
+Jun  6 14:23:19.569979 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
145
+Jun  6 14:23:19.570008 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
146
+Jun  6 14:23:19.570150 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
147
+Jun  6 14:23:19.570193 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
148
+Jun  6 14:23:19.570481 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
149
+Jun  6 14:23:19.570519 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
150
+Jun  6 14:23:19.570633 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
151
+Jun  6 14:23:19.570657 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
152
+Jun  6 14:23:19.570942 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
153
+Jun  6 14:23:19.571183 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
154
+Jun  6 14:23:19.571252 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
155
+Jun  6 14:23:19.571600 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
156
+Jun  6 14:23:19.571832 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
157
+Jun  6 14:23:19.571849 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
158
+Jun  6 14:23:19.571856 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
159
+Jun  6 14:23:19.571870 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
160
+Jun  6 14:23:19.571877 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
161
+Jun  6 14:23:19.571934 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
162
+Jun  6 14:23:19.571941 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
163
+Jun  6 14:23:19.571989 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
164
+Jun  6 14:23:19.572106 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
165
+Jun  6 14:23:19.573113 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
166
+Jun  6 14:23:19.573123 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
167
+Jun  6 14:23:19.573474 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
168
+Jun  6 14:23:19.573481 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
169
+Jun  6 14:23:19.573756 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
170
+Jun  6 14:23:19.573764 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
171
+Jun  6 14:23:19.574137 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
172
+Jun  6 14:23:19.574144 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
173
+Jun  6 14:23:19.595117 SpringBoard(BoardServices)[35] <Error>: [S:9d] Error received: Connection invalidated.
174
+Jun  6 14:23:19.636759 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
175
+Jun  6 14:23:19.637429 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6669059595>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
176
+Jun  6 14:23:19.638422 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669059595>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
177
+Jun  6 14:23:19.638576 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
178
+Jun  6 14:23:19.638623 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
179
+Jun  6 14:23:19.638642 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669059595>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
180
+Jun  6 14:23:19.638710 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669059595>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
181
+Jun  6 14:23:19.639252 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
182
+Jun  6 14:23:19.640154 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
183
+Jun  6 14:23:19.671401 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
184
+Jun  6 14:23:19.673146 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6669094274>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
185
+Jun  6 14:23:19.673399 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669094274>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
186
+Jun  6 14:23:19.673470 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
187
+Jun  6 14:23:19.673504 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
188
+Jun  6 14:23:19.673521 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669094274>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
189
+Jun  6 14:23:19.673585 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669094274>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
190
+Jun  6 14:23:19.674213 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
191
+Jun  6 14:23:19.675056 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
192
+Jun  6 14:23:19.748905 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 264.000000, brightness boost: 1.185885
193
+Jun  6 14:23:19.749313 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.273163 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=264.000000) curveChanged=0
194
+Jun  6 14:23:19.853975 kernel()[0] <Notice>: wlan0:com.apple.p2p.awdl0: monitorInfraTraffic[9396] Infra Traffic type has changed from Idle to Real Time. AWDL is Off
195
+Jun  6 14:23:19.999282 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 265.666656, brightness boost: 1.185885
196
+Jun  6 14:23:19.999890 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.389740 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=265.666656) curveChanged=0
197
+Jun  6 14:23:20.000563 kernel()[0] <Notice>: InfraPeers: Removing peer from infra peers database 90:DD:5D:91:FE:FE (total peers: 13)
198
+Jun  6 14:23:20.000595 kernel()[0] <Notice>: InfraPeers: Removing peer from infra peers database 58:E2:8F:D5:74:1F (total peers: 12)
199
+Jun  6 14:23:20.000637 kernel()[0] <Notice>: InfraPeers: Removing peer from infra peers database 92:A9:52:31:E3:47 (total peers: 11)
200
+Jun  6 14:23:20.003287 wifip2pd[225] <Debug>: Failed to update IP address in driver for new infra peer bc:24:11:ec:19:49 due to <ParsingError lengthOutOfBounds>
201
+Jun  6 14:23:20.003496 wifip2pd[225] <Debug>: Failed to update IP address in driver for new infra peer bc:24:11:57:d7:39 due to <ParsingError lengthOutOfBounds>
202
+Jun  6 14:23:20.003545 wifip2pd[225] <Debug>: Failed to update IP address in driver for new infra peer 48:8f:5a:89:0b:be due to <ParsingError lengthOutOfBounds>
203
+Jun  6 14:23:20.003721 wifip2pd[225] <Debug>: Failed to update IP address in driver for new infra peer bc:24:11:6b:dd:c8 due to <ParsingError lengthOutOfBounds>
204
+Jun  6 14:23:20.003877 wifip2pd[225] <Debug>: Failed to update IP address in driver for new infra peer 48:8f:5a:8f:9c:73 due to <ParsingError lengthOutOfBounds>
205
+Jun  6 14:23:20.003998 wifip2pd[225] <Debug>: Failed to update IP address in driver for new infra peer 00:90:a9:e6:52:40 due to <ParsingError lengthOutOfBounds>
206
+Jun  6 14:23:20.115923 runningboardd(RunningBoard)[34] <Info>: Process: [xpcservice<com.apple.WebKit.Networking([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 114736818}[uuid:D15B7CBB-E52D-426F-87D3-71EF7680BAE2]{definition:com.apple.WebKit.Networking[extension][client]}:1004] has changes in inheritances: (null)
207
+Jun  6 14:23:20.116737 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
208
+Jun  6 14:23:20.116753 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
209
+Jun  6 14:23:20.116983 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
210
+Jun  6 14:23:20.117044 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
211
+Jun  6 14:23:20.117612 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
212
+Jun  6 14:23:20.117717 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
213
+Jun  6 14:23:20.118103 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
214
+Jun  6 14:23:20.118160 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
215
+Jun  6 14:23:20.118495 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
216
+Jun  6 14:23:20.118635 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
217
+Jun  6 14:23:20.118733 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
218
+Jun  6 14:23:20.118840 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
219
+Jun  6 14:23:20.119046 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
220
+Jun  6 14:23:20.119080 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
221
+Jun  6 14:23:20.119225 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
222
+Jun  6 14:23:20.119347 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
223
+Jun  6 14:23:20.119885 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
224
+Jun  6 14:23:20.119899 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
225
+Jun  6 14:23:20.119912 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
226
+Jun  6 14:23:20.119972 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
227
+Jun  6 14:23:20.128719 kernel()[0] <Notice>: InfraPeers: Added unicast peer to database 00:17:88:6F:1D:E1 (total peers: 12)
228
+Jun  6 14:23:20.232367 CommCenter(libTelephonyUtilDynamic.dylib)[100] <Debug>: #D input timeOut: 25000000 usec, scaled output timeOut: 25000000 usec
229
+Jun  6 14:23:20.232384 CommCenter(libTelephonyUtilDynamic.dylib)[100] <Debug>: #D [<private>] Scaled timeout value 25000000 microseconds
230
+Jun  6 14:23:20.235793 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-70 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
231
+Jun  6 14:23:20.236587 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -70, Ch 38, AdTsMC <6669658644>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
232
+Jun  6 14:23:20.238589 bluetoothd(CoreUtils)[97] <Notice>: XPC subscriber found device: token 271, keepAlive yes, 0/0x0 noErr, CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -70, Ch 38, AdTsMC <6669658644>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI > - ProxyFor:ProximityControl
233
+Jun  6 14:23:20.238642 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -70 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
234
+Jun  6 14:23:20.238655 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -70 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
235
+Jun  6 14:23:20.238671 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -70, Ch 38, AdTsMC <6669658644>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
236
+Jun  6 14:23:20.238708 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -70, Ch 38, AdTsMC <6669658644>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
237
+Jun  6 14:23:20.238811 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -70, Ch 38, AdTsMC <6669658644>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
238
+Jun  6 14:23:20.238825 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
239
+Jun  6 14:23:20.238850 proximitycontrold(CoreUtils)[514] <Info>: [ProximityControl] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -70, Ch 38, AdTsMC <6669658644>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
240
+Jun  6 14:23:20.239371 proximitycontrold[514] <Notice>: CBDevices changed, count=1
241
+Jun  6 14:23:20.239473 proximitycontrold[514] <Info>: BT devices changed (throttled)
242
+Jun  6 14:23:20.239502 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -70 (-71)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
243
+Jun  6 14:23:20.248825 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 267.000000, brightness boost: 1.185885
244
+Jun  6 14:23:20.249819 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.482971 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=267.000000) curveChanged=0
245
+Jun  6 14:23:20.271764 bluetoothd[97] <Debug>: Found device "<private> Random DE:19:69:28:60:C9 RSSI:-67 with data:RSSI: 0 dB (non-saturated), MFR Data: 4C 00 12 02 00 01[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000], non-connectable, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
246
+Jun  6 14:23:20.271857 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
247
+Jun  6 14:23:20.279394 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
248
+Jun  6 14:23:20.279446 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
249
+Jun  6 14:23:20.279745 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
250
+Jun  6 14:23:20.279786 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
251
+Jun  6 14:23:20.280242 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
252
+Jun  6 14:23:20.281541 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6669695623>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
253
+Jun  6 14:23:20.281672 proximitycontrold(CoreUtils)[514] <Info>: [ProximityControl] Device lost: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6669695623>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
254
+Jun  6 14:23:20.281834 proximitycontrold[514] <Notice>: CBDevices changed, count=0
255
+Jun  6 14:23:20.281898 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
256
+Jun  6 14:23:20.281906 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
257
+Jun  6 14:23:20.281926 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
258
+Jun  6 14:23:20.281950 bluetoothd(CoreUtils)[97] <Notice>: XPC subscriber lost device: token 271, keepAlive no, 0/0x0 noErr, CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6669695623>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI > - ProxyFor:ProximityControl
259
+Jun  6 14:23:20.281972 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6669695623>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
260
+Jun  6 14:23:20.281995 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6669695623>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
261
+Jun  6 14:23:20.282019 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6669695623>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
262
+Jun  6 14:23:20.282033 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
263
+Jun  6 14:23:20.501409 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 268.000000, brightness boost: 1.185885
264
+Jun  6 14:23:20.501579 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.552917 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=268.000000) curveChanged=0
265
+Jun  6 14:23:20.502609 audioaccessoryd(CoreFoundation)[80] <Debug>: setting <private> in CFPrefsPlistSource<0xa5b048780> (Domain: com.apple.AudioAccessory, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No)
266
+Jun  6 14:23:20.503081 cfprefsd(CoreFoundation)[107] <Debug>: Process 80 (audioaccessoryd) sent a request related to { com.apple.AudioAccessory, user: mobile, kCFPreferencesAnyHost, /var/mobile/Library/Preferences/com.apple.AudioAccessory.plist, managed: 0 } (0xb6ed101e0)
267
+Jun  6 14:23:20.503428 locationd[76] <Debug>: {"msg":"wifi location update request state change", "before":"Request, type, none, lowPriority, no, requester, default, numOfRequestedScans, 0, timestamp, -1.0, age, 802437801.5", "after":"Request, type, none, lowPriority, no, requester, default, numOfRequestedScans, 0, timestamp, -1.0, age, 802437801.5"}
268
+Jun  6 14:23:20.503601 cfprefsd(CoreFoundation)[107] <Debug>: Process 80 (audioaccessoryd) wrote the key(s) <private> in { com.apple.AudioAccessory, mobile, kCFPreferencesAnyHost, /var/mobile/Library/Preferences/com.apple.AudioAccessory.plist, managed: 0 }
269
+Jun  6 14:23:20.516276 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
270
+Jun  6 14:23:20.516485 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
271
+Jun  6 14:23:20.516542 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
272
+Jun  6 14:23:20.516596 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
273
+Jun  6 14:23:20.516650 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
274
+Jun  6 14:23:20.516829 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
275
+Jun  6 14:23:20.516929 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
276
+Jun  6 14:23:20.516951 locationd[76] <Debug>: converging state change, fence, <private>/<private>, distance, <private>, proximity state, <private>
277
+Jun  6 14:23:20.516990 locationd[76] <Debug>: Fence status remained unchanged, distToCenter, <private>, <private>
278
+Jun  6 14:23:20.524863 locationd[76] <Info>: CL: CLSignificantChangeManager::onAwarenessNotification
279
+Jun  6 14:23:20.524896 locationd[76] <Debug>: {"msg":"CLSignificantChangeManager::onAwarenessNotification", "event":"activity", "this":"0xcdd2f6600"}
280
+Jun  6 14:23:20.524986 locationd[76] <Debug>: #SLC handleSignificantLocationChange, distance, <private>, timeDelta, <private>, maxFactor, <private>
281
+Jun  6 14:23:20.525006 locationd[76] <Debug>: #SLC no location change
282
+Jun  6 14:23:20.525015 locationd[76] <Info>: {"msg":"#SLC Location inspection complete", "isSignificantlocationchange":0, "distance":"<private>", "secondsSinceLastSLC_s":"6624.724975109"}
283
+Jun  6 14:23:20.536340 contextstored(CoreFoundation)[67] <Debug>: looked up value <private> for key CDPrivacyPreservingLocationHashDeviceSpecificSalt in CFPrefsPlistSource<0xc61196480> (Domain: com.apple.CoreDuet, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No) via CFPrefsSearchListSource<0xc61195000> (Domain: com.apple.CoreDuet, Container: (null) Non-launch persona: 0)
284
+Jun  6 14:23:20.538154 wirelessinsightsd[131] <Debug>: LocationEnvironmentReader. ALS did not change on location update (<private>), not informing delegates
285
+Jun  6 14:23:20.539674 routined(CoreFoundation)[38] <Debug>: found no value for key RTDefaultsIntermittentGNSSBypassFrequentLOICheck in CFPrefsSearchListSource<0xc7b24a000> (Domain: com.apple.routined, Container: (null) Non-launch persona: 0)
286
+Jun  6 14:23:20.539723 routined(CoreFoundation)[38] <Debug>: found no value for key RTDefaultsIntermittentGNSSBypassFrequentLOICheck in CFPrefsSearchListSource<0xc7b24a000> (Domain: com.apple.routined, Container: (null) Non-launch persona: 0)
287
+Jun  6 14:23:20.539958 routined(libcoreroutine.dylib)[38] <Info>: <private>, <private>, last published location, <private>, latest valid location, <private>, distance, <private>, error, <private>
288
+Jun  6 14:23:20.546177 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
289
+Jun  6 14:23:20.548148 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6669969106>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
290
+Jun  6 14:23:20.548384 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669969106>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
291
+Jun  6 14:23:20.548499 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669969106>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
292
+Jun  6 14:23:20.548663 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-70)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
293
+Jun  6 14:23:20.548677 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6669969106>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
294
+Jun  6 14:23:20.548718 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
295
+Jun  6 14:23:20.548833 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-70)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
296
+Jun  6 14:23:20.549683 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-70)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
297
+Jun  6 14:23:20.580198 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
298
+Jun  6 14:23:20.582220 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6670002859>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
299
+Jun  6 14:23:20.582306 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-70)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
300
+Jun  6 14:23:20.582318 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670002859>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
301
+Jun  6 14:23:20.582349 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
302
+Jun  6 14:23:20.582687 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670002859>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
303
+Jun  6 14:23:20.582781 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670002859>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
304
+Jun  6 14:23:20.582869 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-70)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
305
+Jun  6 14:23:20.582896 CommCenter(libTelephonyUtilDynamic.dylib)[100] <Debug>: #D input timeOut: 25000000 usec, scaled output timeOut: 25000000 usec
306
+Jun  6 14:23:20.582905 CommCenter(libTelephonyUtilDynamic.dylib)[100] <Debug>: #D [<private>] Scaled timeout value 25000000 microseconds
307
+Jun  6 14:23:20.583103 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-70)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
308
+Jun  6 14:23:20.749280 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 268.666656, brightness boost: 1.185885
309
+Jun  6 14:23:20.749852 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.599548 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=268.666656) curveChanged=0
310
+Jun  6 14:23:20.764726 proximitycontrold[514] <Info>: BT devices changed (throttled)
311
+Jun  6 14:23:20.765876 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
312
+Jun  6 14:23:20.766143 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
313
+Jun  6 14:23:20.766227 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
314
+Jun  6 14:23:20.766607 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
315
+Jun  6 14:23:20.766665 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
316
+Jun  6 14:23:20.766837 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
317
+Jun  6 14:23:20.766879 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
318
+Jun  6 14:23:20.766888 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
319
+Jun  6 14:23:20.767092 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
320
+Jun  6 14:23:20.767140 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
321
+Jun  6 14:23:20.767158 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
322
+Jun  6 14:23:20.767167 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
323
+Jun  6 14:23:20.767201 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
324
+Jun  6 14:23:20.767209 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
325
+Jun  6 14:23:20.767240 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
326
+Jun  6 14:23:20.767249 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
327
+Jun  6 14:23:20.767265 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
328
+Jun  6 14:23:20.767290 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
329
+Jun  6 14:23:20.767306 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
330
+Jun  6 14:23:20.767313 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
331
+Jun  6 14:23:20.767361 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
332
+Jun  6 14:23:20.767400 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
333
+Jun  6 14:23:20.767845 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
334
+Jun  6 14:23:20.768058 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
335
+Jun  6 14:23:20.768079 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
336
+Jun  6 14:23:20.768376 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
337
+Jun  6 14:23:20.768416 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
338
+Jun  6 14:23:20.768512 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
339
+Jun  6 14:23:20.768526 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
340
+Jun  6 14:23:20.768783 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
341
+Jun  6 14:23:20.768801 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
342
+Jun  6 14:23:20.768955 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
343
+Jun  6 14:23:20.769136 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
344
+Jun  6 14:23:20.769312 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
345
+Jun  6 14:23:20.769461 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
346
+Jun  6 14:23:20.769574 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
347
+Jun  6 14:23:20.769633 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
348
+Jun  6 14:23:20.769642 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
349
+Jun  6 14:23:20.769811 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
350
+Jun  6 14:23:20.769819 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
351
+Jun  6 14:23:20.769834 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
352
+Jun  6 14:23:20.769841 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
353
+Jun  6 14:23:20.769856 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
354
+Jun  6 14:23:20.769863 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
355
+Jun  6 14:23:20.770822 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
356
+Jun  6 14:23:20.770829 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
357
+Jun  6 14:23:20.771465 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
358
+Jun  6 14:23:20.771481 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
359
+Jun  6 14:23:20.771880 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
360
+Jun  6 14:23:20.771888 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
361
+Jun  6 14:23:20.772187 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
362
+Jun  6 14:23:20.772199 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
363
+Jun  6 14:23:20.825815 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-78 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
364
+Jun  6 14:23:20.826453 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -78, Ch 37, AdTsMC <6670248590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
365
+Jun  6 14:23:20.828222 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -78, Ch 37, AdTsMC <6670248590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
366
+Jun  6 14:23:20.828330 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
367
+Jun  6 14:23:20.828357 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -78 (-70)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
368
+Jun  6 14:23:20.828374 audiomxd(CoreUtils)[110] <Info>: Device lost: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -78, Ch 37, AdTsMC <6670248590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
369
+Jun  6 14:23:20.828665 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -78, Ch 37, AdTsMC <6670248590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
370
+Jun  6 14:23:20.828735 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -78, Ch 37, AdTsMC <6670248590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
371
+Jun  6 14:23:20.828796 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -78 (-70)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
372
+Jun  6 14:23:20.829655 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -78 (-70)t~F, Ch 37, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
373
+Jun  6 14:23:20.863481 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-77 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
374
+Jun  6 14:23:20.865613 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -77, Ch 37, AdTsMC <6670285619>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
375
+Jun  6 14:23:20.865642 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6670285619>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
376
+Jun  6 14:23:20.865691 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
377
+Jun  6 14:23:20.865901 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -77 (-70)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
378
+Jun  6 14:23:20.865918 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -77 (-70)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
379
+Jun  6 14:23:20.865934 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6670285619>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
380
+Jun  6 14:23:20.865985 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6670285619>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
381
+Jun  6 14:23:20.866079 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -77 (-70)t~F, Ch 37, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
382
+Jun  6 14:23:20.986362 locationd[76] <Info>: Timestamp,<private>,StepCount,<private>,Stride,<private>,Ascended,<private>,Descended,<private>,ElevationUp,<private>,ElevationDown,<private>,Pace,<private>,ActiveTime,<private>,DeltaSteps,<private>,locationdGpsTime,<private>,startTime,<private>,currentCadence,<private>,FirstStepTime,<private>,RelativeTimeOfLastStep,<private>,FloorCountingSupported,<private>,pedometerArmConstrainedState,<private>,FlightState,<private>,FlightFailResetUnknown,<private>,FlightFailResetWater,<private>,FlightFailResetFrozen,<private>,FlightFailInOutTrans,<private>,FlightFailElevDelta,<private>,FlightFailStepsPerElevRate,<private>,FlightsFailElevRate,<private>,PressureAmplitude,<private>,PressureTemperature,<private>,FalseStepDetectorAccelPoseXHigh,<private>,FalseStepDetectorAccelVarXYZLow,<private>,FalseStepDetectorGyroNumSamplesSufficient,<private>,FalseStepDetectorGyroVarXHigh,<private>,FalseStepDetectorConsecutiveRequirement,<private>,IsVehicularLowConfidence,<private>,IsVehicularHighConfidence,<private>,FalseStepDetectorConsistentStepsProtection,<private>,FalseStepsSuppressed,<private>,AverageFilteredPressure,<private>,StepCountCurrentlySimulated,<private>,DefaultStepsPerHour,<private>,DefaultStepDurationHours,<private>
383
+Jun  6 14:23:20.989470 locationd[76] <Debug>: <private> is ready at, <private>, timeout, <private>
384
+Jun  6 14:23:20.989664 locationd[76] <Debug>: <private> is ready at, <private>, timeout, <private>
385
+Jun  6 14:23:20.989672 locationd[76] <Debug>: Altitude,<private>,ReferenceAltitude,<private>,ElevationStartTime,<private>,ElevationEndTime,<private>,AscendedElevation,<private>,DescendedElevation,<private>,BufferedAscendedElevation,<private>,BufferedTimeStamp,<private>,AscendingState,<private>,ElevationDeviceSource,<private>,ElevationLabel,<private>,EpochTime,<private>,UpdateTime,<private>,cumulativeAltitudeFilterResetChange,<private>,weatherChangeEstimate,<private>,weatherBias,<private>
386
+Jun  6 14:23:20.990012 locationd[76] <Debug>: {"msg":"wifi location update request state change", "before":"Request, type, none, lowPriority, no, requester, default, numOfRequestedScans, 0, timestamp, -1.0, age, 802437802.0", "after":"Request, type, none, lowPriority, no, requester, default, numOfRequestedScans, 0, timestamp, -1.0, age, 802437802.0"}
387
+Jun  6 14:23:20.990154 locationd[76] <Debug>: Altitude,<private>,ReferenceAltitude,<private>,ElevationStartTime,<private>,ElevationEndTime,<private>,AscendedElevation,<private>,DescendedElevation,<private>,BufferedAscendedElevation,<private>,BufferedTimeStamp,<private>,AscendingState,<private>,ElevationDeviceSource,<private>,ElevationLabel,<private>,EpochTime,<private>,UpdateTime,<private>,cumulativeAltitudeFilterResetChange,<private>,weatherChangeEstimate,<private>,weatherBias,<private>
388
+Jun  6 14:23:20.999726 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 269.333344, brightness boost: 1.185885
389
+Jun  6 14:23:21.000590 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.646179 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=269.333344) curveChanged=0
390
+Jun  6 14:23:21.113674 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
391
+Jun  6 14:23:21.116413 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6670536405>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
392
+Jun  6 14:23:21.116537 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670536405>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
393
+Jun  6 14:23:21.116548 audiomxd(CoreUtils)[110] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670536405>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
394
+Jun  6 14:23:21.116596 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670536405>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
395
+Jun  6 14:23:21.116711 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670536405>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
396
+Jun  6 14:23:21.116765 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
397
+Jun  6 14:23:21.116776 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
398
+Jun  6 14:23:21.116786 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
399
+Jun  6 14:23:21.116893 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
400
+Jun  6 14:23:21.148333 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
401
+Jun  6 14:23:21.149061 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6670571298>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
402
+Jun  6 14:23:21.149963 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670571298>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
403
+Jun  6 14:23:21.150142 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670571298>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
404
+Jun  6 14:23:21.150229 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670571298>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
405
+Jun  6 14:23:21.150247 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
406
+Jun  6 14:23:21.150297 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
407
+Jun  6 14:23:21.151246 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
408
+Jun  6 14:23:21.152039 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
409
+Jun  6 14:23:21.169465 bluetoothd[97] <Debug>: Found device "<private> Random F6:68:2C:05:8A:3F RSSI:-84 with data:RSSI: 0 dB (non-saturated), MFR Data: 4C 00 12 02 14 01[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000], connectable, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
410
+Jun  6 14:23:21.169712 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
411
+Jun  6 14:23:21.170885 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
412
+Jun  6 14:23:21.171180 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
413
+Jun  6 14:23:21.171514 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
414
+Jun  6 14:23:21.171551 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
415
+Jun  6 14:23:21.183398 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
416
+Jun  6 14:23:21.184039 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6670606310>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
417
+Jun  6 14:23:21.185360 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
418
+Jun  6 14:23:21.185388 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670606310>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
419
+Jun  6 14:23:21.185408 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
420
+Jun  6 14:23:21.185474 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670606310>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
421
+Jun  6 14:23:21.185515 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6670606310>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
422
+Jun  6 14:23:21.185666 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
423
+Jun  6 14:23:21.186758 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-70)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
424
+Jun  6 14:23:21.249912 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 269.666656, brightness boost: 1.185885
425
+Jun  6 14:23:21.250504 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.669495 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=269.666656) curveChanged=0
426
+Jun  6 14:23:21.318068 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
427
+Jun  6 14:23:21.318087 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
428
+Jun  6 14:23:21.318288 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
429
+Jun  6 14:23:21.318306 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
430
+Jun  6 14:23:21.394654 kernel()[0] <Notice>: InfraPeers: Added unicast peer to database 08:55:31:32:67:CD (total peers: 13)
431
+Jun  6 14:23:21.422853 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
432
+Jun  6 14:23:21.423502 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6670845590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
433
+Jun  6 14:23:21.424728 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670845590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
434
+Jun  6 14:23:21.424873 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
435
+Jun  6 14:23:21.424899 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
436
+Jun  6 14:23:21.424915 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670845590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
437
+Jun  6 14:23:21.424992 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670845590>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
438
+Jun  6 14:23:21.425402 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
439
+Jun  6 14:23:21.426098 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
440
+Jun  6 14:23:21.461449 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
441
+Jun  6 14:23:21.463979 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6670884332>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
442
+Jun  6 14:23:21.464436 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670884332>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
443
+Jun  6 14:23:21.464500 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
444
+Jun  6 14:23:21.464525 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
445
+Jun  6 14:23:21.464535 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
446
+Jun  6 14:23:21.464586 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670884332>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
447
+Jun  6 14:23:21.464637 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6670884332>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
448
+Jun  6 14:23:21.464709 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
449
+Jun  6 14:23:21.499165 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupHandleForPredicate:error:
450
+Jun  6 14:23:21.500214 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 270.000000, brightness boost: 1.185885
451
+Jun  6 14:23:21.500838 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.692810 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.000000) curveChanged=0
452
+Jun  6 14:23:21.503092 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
453
+Jun  6 14:23:21.503401 runningboardd(RunningBoard)[34] <Error>: [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] client not entitled to get limitationsForInstance: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
454
+Jun  6 14:23:21.503494 runningboardd(RunningBoard)[34] <Info>: Error handling message from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760]: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
455
+Jun  6 14:23:21.505584 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupHandleForPredicate:error:
456
+Jun  6 14:23:21.506791 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
457
+Jun  6 14:23:21.507013 runningboardd(RunningBoard)[34] <Error>: [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] client not entitled to get limitationsForInstance: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
458
+Jun  6 14:23:21.507350 runningboardd(RunningBoard)[34] <Info>: Error handling message from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760]: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
459
+Jun  6 14:23:21.511576 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [xpcservice<com.apple.WebKit.Networking([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 114736818}[uuid:D15B7CBB-E52D-426F-87D3-71EF7680BAE2]{definition:com.apple.WebKit.Networking[extension][client]}:1004] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): acquireAssertionWithDescriptor:error:
460
+Jun  6 14:23:21.514997 runningboardd(RunningBoard)[34] <Info>: Process: [xpcservice<com.apple.WebKit.Networking([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 114736818}[uuid:D15B7CBB-E52D-426F-87D3-71EF7680BAE2]{definition:com.apple.WebKit.Networking[extension][client]}:1004] has changes in inheritances: (null)
461
+Jun  6 14:23:21.515565 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
462
+Jun  6 14:23:21.515574 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
463
+Jun  6 14:23:21.515657 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
464
+Jun  6 14:23:21.515671 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
465
+Jun  6 14:23:21.516039 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
466
+Jun  6 14:23:21.516064 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
467
+Jun  6 14:23:21.516152 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
468
+Jun  6 14:23:21.516197 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
469
+Jun  6 14:23:21.516545 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
470
+Jun  6 14:23:21.516613 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
471
+Jun  6 14:23:21.516873 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
472
+Jun  6 14:23:21.516935 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
473
+Jun  6 14:23:21.517307 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
474
+Jun  6 14:23:21.517332 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
475
+Jun  6 14:23:21.517408 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
476
+Jun  6 14:23:21.517501 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
477
+Jun  6 14:23:21.517810 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
478
+Jun  6 14:23:21.517879 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
479
+Jun  6 14:23:21.518089 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
480
+Jun  6 14:23:21.518139 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
481
+Jun  6 14:23:21.523621 kernel()[0] <Notice>: InfraPeers: Added unicast peer to database 50:14:79:01:28:D8 (total peers: 14)
482
+Jun  6 14:23:21.530889 Yahoo Weather(WebKit)[760] <Notice>: 0x11708e900 - [PID=1028] WebProcessProxy::didChangeThrottleState: type=0
483
+Jun  6 14:23:21.530979 Yahoo Weather(WebKit)[760] <Notice>: 0x11708e900 - [PID=1028] WebProcessProxy::didChangeThrottleState(Suspended) Release all assertions for network process
484
+Jun  6 14:23:21.531491 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): acquireAssertionWithDescriptor:error:
485
+Jun  6 14:23:21.532500 Yahoo Weather(WebKit)[760] <Notice>: 0x11708e340 - [PID=1025] WebProcessProxy::didChangeThrottleState: type=0
486
+Jun  6 14:23:21.532611 Yahoo Weather(WebKit)[760] <Notice>: 0x11708e340 - [PID=1025] WebProcessProxy::didChangeThrottleState(Suspended) Release all assertions for network process
487
+Jun  6 14:23:21.534254 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupHandleForPredicate:error:
488
+Jun  6 14:23:21.534601 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
489
+Jun  6 14:23:21.534610 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
490
+Jun  6 14:23:21.534675 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
491
+Jun  6 14:23:21.534683 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
492
+Jun  6 14:23:21.535330 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
493
+Jun  6 14:23:21.535391 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
494
+Jun  6 14:23:21.535839 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
495
+Jun  6 14:23:21.535877 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
496
+Jun  6 14:23:21.536125 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
497
+Jun  6 14:23:21.536182 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
498
+Jun  6 14:23:21.536430 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
499
+Jun  6 14:23:21.536465 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
500
+Jun  6 14:23:21.536577 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
501
+Jun  6 14:23:21.536641 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
502
+Jun  6 14:23:21.536833 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
503
+Jun  6 14:23:21.536864 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
504
+Jun  6 14:23:21.536922 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
505
+Jun  6 14:23:21.536954 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
506
+Jun  6 14:23:21.537374 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
507
+Jun  6 14:23:21.537404 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
508
+Jun  6 14:23:21.538578 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
509
+Jun  6 14:23:21.538876 runningboardd(RunningBoard)[34] <Error>: [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] client not entitled to get limitationsForInstance: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
510
+Jun  6 14:23:21.538941 runningboardd(RunningBoard)[34] <Info>: Error handling message from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760]: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
511
+Jun  6 14:23:21.539301 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): acquireAssertionWithDescriptor:error:
512
+Jun  6 14:23:21.540444 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupHandleForPredicate:error:
513
+Jun  6 14:23:21.541532 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
514
+Jun  6 14:23:21.541549 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
515
+Jun  6 14:23:21.541569 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
516
+Jun  6 14:23:21.541577 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
517
+Jun  6 14:23:21.541921 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
518
+Jun  6 14:23:21.541929 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
519
+Jun  6 14:23:21.542148 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
520
+Jun  6 14:23:21.542214 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
521
+Jun  6 14:23:21.542257 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
522
+Jun  6 14:23:21.542289 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
523
+Jun  6 14:23:21.542634 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
524
+Jun  6 14:23:21.542668 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
525
+Jun  6 14:23:21.542698 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
526
+Jun  6 14:23:21.542834 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
527
+Jun  6 14:23:21.542967 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
528
+Jun  6 14:23:21.542997 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
529
+Jun  6 14:23:21.543131 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
530
+Jun  6 14:23:21.543140 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
531
+Jun  6 14:23:21.543306 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
532
+Jun  6 14:23:21.543334 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
533
+Jun  6 14:23:21.543500 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.UserEventAgent-System>:32] (euid 0, auid 0) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): lookupProcessName:error:
534
+Jun  6 14:23:21.548142 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
535
+Jun  6 14:23:21.548166 runningboardd(RunningBoard)[34] <Error>: [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] client not entitled to get limitationsForInstance: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
536
+Jun  6 14:23:21.548176 runningboardd(RunningBoard)[34] <Info>: Error handling message from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760]: <Error Domain=RBSServiceErrorDomain Code=1 "Client not entitled" UserInfo={RBSEntitlement=com.apple.runningboard.process-state, NSLocalizedFailureReason=Client not entitled, RBSPermanent=false}>
537
+Jun  6 14:23:21.548526 kernel(Sandbox)[0] <Error>: 28 duplicate reports for Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
538
+Jun  6 14:23:21.548545 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.GPU(1027) deny(1) mach-lookup com.apple.diagnosticd
539
+Jun  6 14:23:21.549533 kernel(Sandbox)[0] <Error>: 2 duplicate reports for Sandbox: com.apple.WebKit.GPU(1027) deny(1) mach-lookup com.apple.diagnosticd
540
+Jun  6 14:23:21.549581 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
541
+Jun  6 14:23:21.550438 kernel(Sandbox)[0] <Error>: 1 duplicate report for Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
542
+Jun  6 14:23:21.550483 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.GPU(1027) deny(1) mach-lookup com.apple.diagnosticd
543
+Jun  6 14:23:21.551020 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
544
+Jun  6 14:23:21.552275 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): acquireAssertionWithDescriptor:error:
545
+Jun  6 14:23:21.553954 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
546
+Jun  6 14:23:21.553982 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
547
+Jun  6 14:23:21.554209 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
548
+Jun  6 14:23:21.554224 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
549
+Jun  6 14:23:21.554713 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
550
+Jun  6 14:23:21.554723 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
551
+Jun  6 14:23:21.554987 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
552
+Jun  6 14:23:21.555054 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
553
+Jun  6 14:23:21.555379 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
554
+Jun  6 14:23:21.555421 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
555
+Jun  6 14:23:21.555524 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
556
+Jun  6 14:23:21.555556 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
557
+Jun  6 14:23:21.556274 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
558
+Jun  6 14:23:21.556326 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
559
+Jun  6 14:23:21.556708 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
560
+Jun  6 14:23:21.556722 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
561
+Jun  6 14:23:21.556732 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
562
+Jun  6 14:23:21.556747 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
563
+Jun  6 14:23:21.556958 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
564
+Jun  6 14:23:21.557005 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
565
+Jun  6 14:23:21.558075 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): acquireAssertionWithDescriptor:error:
566
+Jun  6 14:23:21.559320 runningboardd(RunningBoard)[34] <Info>: Process: [xpcservice<com.apple.WebKit.Networking([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 114736818}[uuid:D15B7CBB-E52D-426F-87D3-71EF7680BAE2]{definition:com.apple.WebKit.Networking[extension][client]}:1004] has changes in inheritances: (null)
567
+Jun  6 14:23:21.560012 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
568
+Jun  6 14:23:21.560022 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
569
+Jun  6 14:23:21.560053 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
570
+Jun  6 14:23:21.560061 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
571
+Jun  6 14:23:21.560512 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
572
+Jun  6 14:23:21.560531 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
573
+Jun  6 14:23:21.560735 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
574
+Jun  6 14:23:21.560815 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
575
+Jun  6 14:23:21.561023 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
576
+Jun  6 14:23:21.561052 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
577
+Jun  6 14:23:21.561336 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
578
+Jun  6 14:23:21.561363 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
579
+Jun  6 14:23:21.561373 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
580
+Jun  6 14:23:21.561434 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
581
+Jun  6 14:23:21.561769 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
582
+Jun  6 14:23:21.561934 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
583
+Jun  6 14:23:21.562269 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
584
+Jun  6 14:23:21.562320 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
585
+Jun  6 14:23:21.562464 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
586
+Jun  6 14:23:21.562490 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
587
+Jun  6 14:23:21.656208 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
588
+Jun  6 14:23:21.656229 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
589
+Jun  6 14:23:21.656323 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
590
+Jun  6 14:23:21.656353 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
591
+Jun  6 14:23:21.656369 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
592
+Jun  6 14:23:21.656377 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
593
+Jun  6 14:23:21.656432 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
594
+Jun  6 14:23:21.656587 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
595
+Jun  6 14:23:21.657070 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
596
+Jun  6 14:23:21.657212 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
597
+Jun  6 14:23:21.657345 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
598
+Jun  6 14:23:21.657359 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
599
+Jun  6 14:23:21.657920 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
600
+Jun  6 14:23:21.658393 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
601
+Jun  6 14:23:21.658443 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
602
+Jun  6 14:23:21.658456 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
603
+Jun  6 14:23:21.658492 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
604
+Jun  6 14:23:21.659054 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
605
+Jun  6 14:23:21.659199 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
606
+Jun  6 14:23:21.659327 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
607
+Jun  6 14:23:21.659337 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
608
+Jun  6 14:23:21.659542 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
609
+Jun  6 14:23:21.659647 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
610
+Jun  6 14:23:21.659701 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
611
+Jun  6 14:23:21.660140 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
612
+Jun  6 14:23:21.660182 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
613
+Jun  6 14:23:21.660227 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
614
+Jun  6 14:23:21.660290 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
615
+Jun  6 14:23:21.660571 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
616
+Jun  6 14:23:21.660604 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
617
+Jun  6 14:23:21.660832 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
618
+Jun  6 14:23:21.660841 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
619
+Jun  6 14:23:21.661217 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
620
+Jun  6 14:23:21.661230 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
621
+Jun  6 14:23:21.661360 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
622
+Jun  6 14:23:21.661397 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
623
+Jun  6 14:23:21.661538 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
624
+Jun  6 14:23:21.661699 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
625
+Jun  6 14:23:21.661908 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
626
+Jun  6 14:23:21.661940 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
627
+Jun  6 14:23:21.750955 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.692810 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.000000) curveChanged=0
628
+Jun  6 14:23:21.778125 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
629
+Jun  6 14:23:21.778877 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 37, AdTsMC <6671200867>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
630
+Jun  6 14:23:21.780384 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
631
+Jun  6 14:23:21.780559 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 37, AdTsMC <6671200867>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
632
+Jun  6 14:23:21.780626 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 37, AdTsMC <6671200867>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
633
+Jun  6 14:23:21.780732 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 37, AdTsMC <6671200867>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
634
+Jun  6 14:23:21.780748 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
635
+Jun  6 14:23:21.780794 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
636
+Jun  6 14:23:21.781531 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 37, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
637
+Jun  6 14:23:21.882325 thermalmonitord[66] <Error>: <Error> could not find `cpu-avg-limiter-input-w2r property
638
+Jun  6 14:23:21.882362 thermalmonitord[66] <Error>: <Error> Failed to read `cpu-avg-limiter-input-w2r
639
+Jun  6 14:23:21.966051 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
640
+Jun  6 14:23:21.966273 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
641
+Jun  6 14:23:21.966324 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
642
+Jun  6 14:23:21.966570 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
643
+Jun  6 14:23:21.966610 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
644
+Jun  6 14:23:21.966778 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
645
+Jun  6 14:23:21.966936 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
646
+Jun  6 14:23:21.966947 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
647
+Jun  6 14:23:21.967054 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
648
+Jun  6 14:23:21.967085 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
649
+Jun  6 14:23:21.967101 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
650
+Jun  6 14:23:21.967108 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
651
+Jun  6 14:23:21.967145 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
652
+Jun  6 14:23:21.967152 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
653
+Jun  6 14:23:21.967183 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
654
+Jun  6 14:23:21.967190 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
655
+Jun  6 14:23:21.967206 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
656
+Jun  6 14:23:21.967231 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
657
+Jun  6 14:23:21.967246 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
658
+Jun  6 14:23:21.967253 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
659
+Jun  6 14:23:21.967317 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
660
+Jun  6 14:23:21.967329 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
661
+Jun  6 14:23:21.967786 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
662
+Jun  6 14:23:21.967893 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
663
+Jun  6 14:23:21.967924 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
664
+Jun  6 14:23:21.968201 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
665
+Jun  6 14:23:21.968255 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
666
+Jun  6 14:23:21.968381 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
667
+Jun  6 14:23:21.968481 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
668
+Jun  6 14:23:21.968719 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
669
+Jun  6 14:23:21.968756 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
670
+Jun  6 14:23:21.968881 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
671
+Jun  6 14:23:21.969092 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
672
+Jun  6 14:23:21.969250 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
673
+Jun  6 14:23:21.969441 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
674
+Jun  6 14:23:21.969512 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
675
+Jun  6 14:23:21.969664 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
676
+Jun  6 14:23:21.969683 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
677
+Jun  6 14:23:21.969853 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
678
+Jun  6 14:23:21.969935 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
679
+Jun  6 14:23:21.970812 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
680
+Jun  6 14:23:21.970820 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
681
+Jun  6 14:23:21.971149 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
682
+Jun  6 14:23:21.971156 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
683
+Jun  6 14:23:21.971561 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
684
+Jun  6 14:23:21.971569 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
685
+Jun  6 14:23:21.971804 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
686
+Jun  6 14:23:21.971815 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
687
+Jun  6 14:23:22.001042 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.692810 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.000000) curveChanged=0
688
+Jun  6 14:23:22.029511 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
689
+Jun  6 14:23:22.030135 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6671452267>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
690
+Jun  6 14:23:22.031155 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6671452267>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
691
+Jun  6 14:23:22.031381 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
692
+Jun  6 14:23:22.031577 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
693
+Jun  6 14:23:22.031595 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6671452267>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
694
+Jun  6 14:23:22.031646 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6671452267>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
695
+Jun  6 14:23:22.031890 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
696
+Jun  6 14:23:22.032706 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-71)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
697
+Jun  6 14:23:22.062023 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
698
+Jun  6 14:23:22.065591 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 38, AdTsMC <6671484881>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
699
+Jun  6 14:23:22.065741 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 38, AdTsMC <6671484881>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
700
+Jun  6 14:23:22.065786 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
701
+Jun  6 14:23:22.065809 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
702
+Jun  6 14:23:22.065820 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 38, AdTsMC <6671484881>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
703
+Jun  6 14:23:22.065865 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 38, AdTsMC <6671484881>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
704
+Jun  6 14:23:22.065970 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
705
+Jun  6 14:23:22.066012 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
706
+Jun  6 14:23:22.070621 bluetoothd[97] <Debug>: Found device "<private> Random C5:98:ED:2D:28:DC RSSI:-82 with data:RSSI: 0 dB (non-saturated), MFR Data: 4C 00 12 02 00 01[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000], non-connectable, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
707
+Jun  6 14:23:22.070853 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
708
+Jun  6 14:23:22.073099 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
709
+Jun  6 14:23:22.073451 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
710
+Jun  6 14:23:22.073674 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
711
+Jun  6 14:23:22.074428 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
712
+Jun  6 14:23:22.180399 wifid(WiFiPolicy)[53] <Error>: WiFiLQAMgrLinkRecommendationNotify: channel score: chq=3, tx-lat=5, rx-lat=5, tx-loss=5, rx-loss=5, txPer=0.0%, p95-lat=2, RT=0x0, link-recommendation=0x0
713
+Jun  6 14:23:22.251105 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.692810 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.000000) curveChanged=0
714
+Jun  6 14:23:22.309208 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
715
+Jun  6 14:23:22.309936 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6671732012>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
716
+Jun  6 14:23:22.311137 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671732012>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
717
+Jun  6 14:23:22.311297 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
718
+Jun  6 14:23:22.311357 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
719
+Jun  6 14:23:22.311373 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671732012>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
720
+Jun  6 14:23:22.311574 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671732012>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
721
+Jun  6 14:23:22.311852 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
722
+Jun  6 14:23:22.312677 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
723
+Jun  6 14:23:22.342932 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
724
+Jun  6 14:23:22.344242 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6671765717>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
725
+Jun  6 14:23:22.344470 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671765717>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
726
+Jun  6 14:23:22.344517 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
727
+Jun  6 14:23:22.344627 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671765717>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
728
+Jun  6 14:23:22.344711 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
729
+Jun  6 14:23:22.344725 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671765717>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
730
+Jun  6 14:23:22.344833 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
731
+Jun  6 14:23:22.345672 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
732
+Jun  6 14:23:22.379450 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
733
+Jun  6 14:23:22.382084 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6671802099>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
734
+Jun  6 14:23:22.382205 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
735
+Jun  6 14:23:22.382240 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
736
+Jun  6 14:23:22.382254 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671802099>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
737
+Jun  6 14:23:22.382306 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671802099>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
738
+Jun  6 14:23:22.382370 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6671802099>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
739
+Jun  6 14:23:22.382385 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
740
+Jun  6 14:23:22.382629 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-71)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
741
+Jun  6 14:23:22.431570 CommCenter(libTelephonyUtilDynamic.dylib)[100] <Debug>: #D input timeOut: 25000000 usec, scaled output timeOut: 25000000 usec
742
+Jun  6 14:23:22.431581 CommCenter(libTelephonyUtilDynamic.dylib)[100] <Debug>: #D [<private>] Scaled timeout value 25000000 microseconds
743
+Jun  6 14:23:22.501553 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.692810 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.000000) curveChanged=0
744
+Jun  6 14:23:22.630135 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
745
+Jun  6 14:23:22.631125 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
746
+Jun  6 14:23:22.631607 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
747
+Jun  6 14:23:22.665778 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-77 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
748
+Jun  6 14:23:22.666430 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -77, Ch 37, AdTsMC <6672086070>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
749
+Jun  6 14:23:22.666586 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6672086070>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
750
+Jun  6 14:23:22.666612 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6672086070>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
751
+Jun  6 14:23:22.666656 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6672086070>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
752
+Jun  6 14:23:22.666694 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
753
+Jun  6 14:23:22.666741 audiomxd(CoreUtils)[110] <Info>: Device lost: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -77, Ch 37, AdTsMC <6672086070>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
754
+Jun  6 14:23:22.666815 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -77 (-71)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
755
+Jun  6 14:23:22.666824 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -77 (-71)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
756
+Jun  6 14:23:22.666858 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -77 (-71)t~F, Ch 37, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
757
+Jun  6 14:23:22.685591 bluetoothd[97] <Debug>: Found device "<private> Public 38:7F:8B:69:C2:D5 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 8 dB, MFR Data: 4C 00 10 07 34 1F F2 69 D4 95 58[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
758
+Jun  6 14:23:22.686246 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice BDB9E10E-6C97-A8CE-AEEE-BD4CE3E8B0F7, BDA <private>, Nm <private> , DsFl 0x40 < NearbyInfo >, RSSI -71, Ch 37, AdTsMC <6672108541>, AMfD <4c 00 10 07 34 1f f2 69 d4 95 58>, nbIAT <f2 69 d4>, nbIF 0x17C6 < Ranging Me AT Duet WiFiP2P HtSp ShAu Stat >, CF 0x200000000 < RSSI >
759
+Jun  6 14:23:22.687617 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb002899-29b0-1000-8000-001ff3fb80df, RSSI -71 (-54)t*F, Ch 37, AdvD <341ff269d49558>, Nm 'BBIymQCy', Md 'BBMwMafC', Paired yes, Cnx no, WiFiP2P, OBC=?
760
+Jun  6 14:23:22.687853 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
761
+Jun  6 14:23:22.711791 runningboardd(RunningBoard)[34] <Info>: Process: [xpcservice<com.apple.WebKit.Networking([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 114736818}[uuid:D15B7CBB-E52D-426F-87D3-71EF7680BAE2]{definition:com.apple.WebKit.Networking[extension][client]}:1004] has changes in inheritances: (null)
762
+Jun  6 14:23:22.712542 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
763
+Jun  6 14:23:22.712550 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
764
+Jun  6 14:23:22.712877 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
765
+Jun  6 14:23:22.712887 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
766
+Jun  6 14:23:22.713138 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.SpringBoard>:35] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): statesForPredicate:descriptor:error:
767
+Jun  6 14:23:22.713175 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
768
+Jun  6 14:23:22.713320 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
769
+Jun  6 14:23:22.713506 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
770
+Jun  6 14:23:22.713515 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
771
+Jun  6 14:23:22.713768 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.SpringBoard>:35] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): statesForPredicate:descriptor:error:
772
+Jun  6 14:23:22.714295 AccessibilityUIServer(AXRuntime)[168] <Info>: Did receive kAXPidStatusChangedNotification
773
+Jun  6 14:23:22.714309 AccessibilityUIServer(AXRuntime)[168] <Info>: pid status change recorded: {
774
+Jun  6 14:23:22.715289 AccessibilityUIServer(SpeakThis)[168] <Info>: Pid status changed: {
775
+Jun  6 14:23:22.715445 AccessibilityUIServer(AXRuntime)[168] <Info>: Did receive kAXPidStatusChangedNotification
776
+Jun  6 14:23:22.715563 AccessibilityUIServer(AXRuntime)[168] <Info>: pid status change recorded: {
777
+Jun  6 14:23:22.715745 AccessibilityUIServer(SpeakThis)[168] <Info>: Pid status changed: {
778
+Jun  6 14:23:22.716714 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
779
+Jun  6 14:23:22.716814 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
780
+Jun  6 14:23:22.717318 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
781
+Jun  6 14:23:22.717414 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
782
+Jun  6 14:23:22.718083 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
783
+Jun  6 14:23:22.718172 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
784
+Jun  6 14:23:22.718569 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
785
+Jun  6 14:23:22.718619 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
786
+Jun  6 14:23:22.719396 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
787
+Jun  6 14:23:22.719410 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
788
+Jun  6 14:23:22.719602 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
789
+Jun  6 14:23:22.719724 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
790
+Jun  6 14:23:22.719800 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
791
+Jun  6 14:23:22.720168 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
792
+Jun  6 14:23:22.720453 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
793
+Jun  6 14:23:22.720494 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
794
+Jun  6 14:23:22.720554 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
795
+Jun  6 14:23:22.720565 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
796
+Jun  6 14:23:22.721107 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
797
+Jun  6 14:23:22.721167 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
798
+Jun  6 14:23:22.721466 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
799
+Jun  6 14:23:22.721475 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
800
+Jun  6 14:23:22.721876 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
801
+Jun  6 14:23:22.721915 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
802
+Jun  6 14:23:22.723778 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
803
+Jun  6 14:23:22.723790 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
804
+Jun  6 14:23:22.724224 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
805
+Jun  6 14:23:22.724326 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
806
+Jun  6 14:23:22.724470 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
807
+Jun  6 14:23:22.724508 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
808
+Jun  6 14:23:22.725400 UserEventAgent(ADEventListenerPlugin)[32] <Debug>: AppStateChange: com.apple.WebKit.WebContent (1028) terminated => backgroundTaskSuspended
809
+Jun  6 14:23:22.725557 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
810
+Jun  6 14:23:22.725612 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
811
+Jun  6 14:23:22.727664 locationd[76] <Notice>: {"msg":"RBS #AppMonitor Post Application State Change Notification", "notification":"BackgroundTaskSuspended", "pid":1028, "bundleId":"com.apple.WebKit.WebContent"}
812
+Jun  6 14:23:22.728275 locationd[76] <Notice>: {"msg":"RBS #AppMonitor Post Application State Change Notification", "notification":"BackgroundTaskSuspended", "pid":1025, "bundleId":"com.apple.WebKit.WebContent"}
813
+Jun  6 14:23:22.728334 locationd[76] <Debug>: HR Interpolated Set timeout to <private>
814
+Jun  6 14:23:22.728641 locationd[76] <Debug>: HR Interpolated Set timeout to <private>
815
+Jun  6 14:23:22.729349 symptomsd(SymptomEvaluator)[139] <Info>: Report apps state change: {
816
+    "com.apple.Health" = 2;
817
+Jun  6 14:23:22.751339 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.692810 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.000000) curveChanged=0
818
+Jun  6 14:23:22.776542 kernel(Sandbox)[0] <Error>: 2 duplicate reports for Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
819
+Jun  6 14:23:22.776569 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.GPU(1027) deny(1) mach-lookup com.apple.diagnosticd
820
+Jun  6 14:23:22.777468 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): limitationsForInstance:error:
821
+Jun  6 14:23:22.778516 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): acquireAssertionWithDescriptor:error:
822
+Jun  6 14:23:22.780045 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): executeTerminateRequest:identifier:error:
823
+Jun  6 14:23:22.781083 runningboardd(RunningBoard)[34] <Debug>: [xpcservice<com.apple.WebKit.GPU([app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760])>{vt hash: 223737757}[uuid:C79C37E2-C823-4358-9624-E5592CBBCDD9]{definition:com.apple.WebKit.GPU[extension][client]}:1027] ignoring process state change because process is terminating
824
+Jun  6 14:23:22.782164 Yahoo Weather(WebKit)[760] <Error>: 0x1171001e0 - GPUProcessProxy::gpuProcessExited: reason=IdleExit
825
+Jun  6 14:23:22.782222 Yahoo Weather(WebKit)[760] <Error>: 0x11708cc40 - [PID=786] WebProcessProxy::gpuProcessExited: reason=IdleExit
826
+Jun  6 14:23:22.782408 Yahoo Weather(WebKit)[760] <Error>: 0x11708d200 - [PID=787] WebProcessProxy::gpuProcessExited: reason=IdleExit
827
+Jun  6 14:23:22.785307 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.audiomxd>:110] (euid 501, auid 501) (persona (null)): void_subscribeToProcessStateChangesWithConfiguration:error:
828
+Jun  6 14:23:22.785322 runningboardd(RunningBoard)[34] <Info>: subscribeToProcessStateChangesWithConfiguration
829
+Jun  6 14:23:22.785358 runningboardd(RunningBoard)[34] <Info>: monitor changed to M110-3
830
+Jun  6 14:23:22.785462 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
831
+Jun  6 14:23:22.785470 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
832
+Jun  6 14:23:22.786230 audiomxd(AudioAnalytics)[110] <Error>: Reporter disconnected or already stopped. { func=stop, reporterID=472446402609 }
833
+Jun  6 14:23:22.789844 audiomxd(VirtualAudio)[110] <Debug>:    VirtualAudio_PlugIn.mm:4374  Route configuration change initiated [ internal update ]. Cause: Destroying HP_Objects with IDs: { '442' }.
834
+Jun  6 14:23:22.795305 audiomxd(VirtualAudio)[110] <Debug>:    VirtualAudio_PlugIn.mm:4408  Route did not change. Returning result: ok (0).
835
+Jun  6 14:23:22.796056 audiomxd(VirtualAudio)[110] <Notice>:    VirtualAudio_PlugIn.mm:7063  Route configuration change completed [ internal update ]. Route description:
836
+Jun  6 14:23:22.796082 audiomxd(VirtualAudio)[110] <Notice>:    VirtualAudio_PlugIn.mm:7063    - route change reason: rred
837
+Jun  6 14:23:22.796111 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
838
+Jun  6 14:23:22.796148 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
839
+Jun  6 14:23:22.796413 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
840
+Jun  6 14:23:22.796420 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
841
+Jun  6 14:23:22.796473 SpringBoard(RunningBoardServices)[35] <Debug>: PERF: [osservice<com.apple.SpringBoard>:35] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
842
+Jun  6 14:23:22.796499 SpringBoard(RunningBoardServices)[35] <Info>: observedProcessStatesDidChange
843
+Jun  6 14:23:22.797578 audiomxd(VirtualAudio)[110] <Debug>:    VirtualAudio_PlugIn.mm:7110  Route change dictionary: [ route change reason: rred; category: csav; mode: imdf ]
844
+Jun  6 14:23:22.797638 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.SpringBoard>:35] (euid 501, auid 501) (persona (null)): statesForPredicate:descriptor:error:
845
+Jun  6 14:23:22.797785 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
846
+Jun  6 14:23:22.797793 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
847
+Jun  6 14:23:22.798203 audiomxd(MediaExperience)[110] <Notice>: -CMSessionMgr- CMSessionMgrHandleApplicationStateChange:17761 Client com.apple.WebKit.GPU with session (null) [0x0] with pid '1027' is now Terminated. Background entitlement: YES ActiveLongFormVideoSession: NO IsLongFormVideoApp NO
848
+Jun  6 14:23:22.798236 audiomxd(MediaExperience)[110] <Error>: -MX_RunningBoardServices- mx_runningBoardServices_initializeMonitoring_block_invoke: NOTICE: Currently monitoring for predicates {(
849
+Jun  6 14:23:22.798311 AccessibilityUIServer(AXRuntime)[168] <Info>: Did receive kAXPidStatusChangedNotification
850
+Jun  6 14:23:22.798322 AccessibilityUIServer(AXRuntime)[168] <Info>: pid status change recorded: {
851
+Jun  6 14:23:22.798381 AccessibilityUIServer(SpeakThis)[168] <Info>: Pid status changed: {
852
+Jun  6 14:23:22.798395 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.audiomxd>:110] (euid 501, auid 501) (persona (null)): void_subscribeToProcessStateChangesWithConfiguration:error:
853
+Jun  6 14:23:22.798409 runningboardd(RunningBoard)[34] <Info>: subscribeToProcessStateChangesWithConfiguration
854
+Jun  6 14:23:22.798439 runningboardd(RunningBoard)[34] <Info>: monitor changed to M110-3
855
+Jun  6 14:23:22.798448 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.audiomxd>:110] (euid 501, auid 501) (persona (null)): void_subscribeToProcessStateChangesWithConfiguration:error:
856
+Jun  6 14:23:22.798456 runningboardd(RunningBoard)[34] <Info>: subscribeToProcessStateChangesWithConfiguration
857
+Jun  6 14:23:22.798463 runningboardd(RunningBoard)[34] <Info>: monitor changed to M110-3
858
+Jun  6 14:23:22.799257 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.audiomxd>:110] (euid 501, auid 501) (persona (null)): lastExitContextForInstance:error:
859
+Jun  6 14:23:22.800530 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
860
+Jun  6 14:23:22.800547 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.SpringBoard>:35] (euid 501, auid 501) (persona (null)): lastExitContextForInstance:error:
861
+Jun  6 14:23:22.800608 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
862
+Jun  6 14:23:22.800996 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
863
+Jun  6 14:23:22.801010 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
864
+Jun  6 14:23:22.801230 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
865
+Jun  6 14:23:22.801240 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
866
+Jun  6 14:23:22.801692 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.locationd>:76] (euid 0, auid 0) (persona (null)): lastExitContextForInstance:error:
867
+Jun  6 14:23:22.802324 locationd[76] <Notice>: {"msg":"RBS #AppMonitor Post Application State Change Notification", "notification":"Terminated", "pid":1027, "bundleId":"com.apple.WebKit.GPU"}
868
+Jun  6 14:23:22.802621 locationd[76] <Debug>: #fusion,mct,6672.226, change in locationApp foreground status,isForeGround,0
869
+Jun  6 14:23:22.802695 locationd[76] <Debug>: CLMM,Change in locationApp foreground status,isForeGround,<private>,isAppleMaps,<private>,networkusage,<private>
870
+Jun  6 14:23:22.803094 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
871
+Jun  6 14:23:22.803128 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
872
+Jun  6 14:23:22.804594 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
873
+Jun  6 14:23:22.804737 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
874
+Jun  6 14:23:22.804857 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
875
+Jun  6 14:23:22.804890 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.wifid>:53] (euid 0, auid 0) (persona (null)): lastExitContextForInstance:error:
876
+Jun  6 14:23:22.804905 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
877
+Jun  6 14:23:22.805541 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.WirelessRadioManager>:51] (euid 501, auid 501) (persona (null)): lastExitContextForInstance:error:
878
+Jun  6 14:23:22.806137 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.locationd>:76] (euid 0, auid 0) (persona (null)): lastExitContextForInstance:error:
879
+Jun  6 14:23:22.806248 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
880
+Jun  6 14:23:22.806258 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
881
+Jun  6 14:23:22.806579 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
882
+Jun  6 14:23:22.806609 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
883
+Jun  6 14:23:22.806946 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.coreservices.useractivityd>:236] (euid 501, auid 501) (persona (null)): lastExitContextForInstance:error:
884
+Jun  6 14:23:22.807047 wifid(RunningBoardServices)[53] <Debug>: PERF: [osservice<com.apple.wifid>:53] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
885
+Jun  6 14:23:22.807126 wifid(RunningBoardServices)[53] <Info>: observedProcessStatesDidChange
886
+Jun  6 14:23:22.807273 locationd(RunningBoardServices)[76] <Debug>: PERF: [osservice<com.apple.locationd>:76] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
887
+Jun  6 14:23:22.807324 locationd(RunningBoardServices)[76] <Info>: observedProcessStatesDidChange
888
+Jun  6 14:23:22.807784 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.itunesstored>:241] (euid 501, auid 501) (persona (null)): lastExitContextForInstance:error:
889
+Jun  6 14:23:22.808103 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.PerfPowerServices>:469] (euid 501, auid 501) (persona (null)): lastExitContextForInstance:error:
890
+Jun  6 14:23:22.808295 audiomxd(RunningBoardServices)[110] <Debug>: PERF: [osservice<com.apple.audiomxd>:110] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
891
+Jun  6 14:23:22.808327 audiomxd(RunningBoardServices)[110] <Info>: observedProcessStatesDidChange
892
+Jun  6 14:23:22.809547 WirelessRadioManagerd(RunningBoardServices)[51] <Debug>: PERF: [osservice<com.apple.WirelessRadioManager>:51] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
893
+Jun  6 14:23:22.809571 WirelessRadioManagerd(RunningBoardServices)[51] <Info>: observedProcessStatesDidChange
894
+Jun  6 14:23:22.811181 itunesstored(RunningBoardServices)[241] <Debug>: PERF: [osservice<com.apple.itunesstored>:241] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
895
+Jun  6 14:23:22.811255 itunesstored(RunningBoardServices)[241] <Info>: observedProcessStatesDidChange
896
+Jun  6 14:23:22.811380 useractivityd(RunningBoardServices)[236] <Debug>: PERF: [osservice<com.apple.coreservices.useractivityd>:236] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
897
+Jun  6 14:23:22.811409 useractivityd(RunningBoardServices)[236] <Info>: observedProcessStatesDidChange
898
+Jun  6 14:23:22.811581 symptomsd(RunningBoardServices)[139] <Debug>: PERF: [osservice<com.apple.symptomsd>:139] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
899
+Jun  6 14:23:22.811593 symptomsd(RunningBoardServices)[139] <Info>: observedProcessStatesDidChange
900
+Jun  6 14:23:22.811670 PerfPowerServices(RunningBoardServices)[469] <Debug>: PERF: [osservice<com.apple.PerfPowerServices>:469] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
901
+Jun  6 14:23:22.811705 PerfPowerServices(RunningBoardServices)[469] <Info>: observedProcessStatesDidChange
902
+Jun  6 14:23:22.811999 UserEventAgent(RunningBoardServices)[32] <Debug>: PERF: [osservice<com.apple.UserEventAgent-System>:32] Received message from runningboardd: async_observedProcessStatesDidChange:completion:
903
+Jun  6 14:23:22.812068 UserEventAgent(RunningBoardServices)[32] <Info>: observedProcessStatesDidChange
904
+Jun  6 14:23:22.812617 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [osservice<com.apple.UserEventAgent-System>:32] (euid 0, auid 0) (persona (null)): lastExitContextForInstance:error:
905
+Jun  6 14:23:22.814433 UserEventAgent(ADEventListenerPlugin)[32] <Debug>: AppStateChange: com.apple.WebKit.GPU (1027) backgroundRunning => terminated
906
+Jun  6 14:23:22.814815 Yahoo Weather(WebKit)[760] <Error>: 0x11708d7c0 - [PID=794] WebProcessProxy::gpuProcessExited: reason=IdleExit
907
+Jun  6 14:23:22.814910 Yahoo Weather(RunningBoardServices)[760] <Debug>: PERF: [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] Received message from runningboardd: async_assertionsDidInvalidate:withError:
908
+Jun  6 14:23:22.814996 Yahoo Weather(WebKit)[760] <Error>: 0x11708dd80 - [PID=797] WebProcessProxy::gpuProcessExited: reason=IdleExit
909
+Jun  6 14:23:22.815072 Yahoo Weather(WebKit)[760] <Error>: 0x11708e340 - [PID=1025] WebProcessProxy::gpuProcessExited: reason=IdleExit
910
+Jun  6 14:23:22.815179 Yahoo Weather(WebKit)[760] <Error>: 0x11708e900 - [PID=1028] WebProcessProxy::gpuProcessExited: reason=IdleExit
911
+Jun  6 14:23:22.815732 runningboardd(RunningBoard)[34] <Info>: Error handling message from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760]: <Error Domain=RBSRequestErrorDomain Code=5 "Assertion invalidation request failed" UserInfo={NSLocalizedFailureReason=Assertion invalidation request failed}>
912
+Jun  6 14:23:22.816263 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): executeTerminateRequest:identifier:error:
913
+Jun  6 14:23:22.816277 symptomsd(SymptomEvaluator)[139] <Error>: Process state is unknown AppStateTracker, pid 1027, uuid 089003AE-61F2-3EED-97F8-C3C2BCBD8098 display identifier com.apple.WebKit.GPU foreground 0
914
+Jun  6 14:23:22.816767 symptomsd(SymptomEvaluator)[139] <Info>: Report apps state change: {
915
+    "com.apple.Health" = 2;
916
+Jun  6 14:23:22.817070 Yahoo Weather(libxpc.dylib)[760] <Notice>: [0x144cc1540] Re-initialization successful; calling out to event handler with XPC_ERROR_CONNECTION_INTERRUPTED
917
+Jun  6 14:23:22.817447 kernel(Sandbox)[0] <Error>: Sandbox: com.apple.WebKit.Networking(1004) deny(1) mach-lookup com.apple.diagnosticd
918
+Jun  6 14:23:22.817867 Yahoo Weather(RunningBoardServices)[760] <Info>: Received terminate request response: <Error Domain=RBSRequestErrorDomain Code=3 "No such process found" UserInfo={NSLocalizedFailureReason=No such process found}>
919
+Jun  6 14:23:22.818004 Yahoo Weather(BrowserEngineKit)[760] <Error>: Failed to terminate process: Error Domain=com.apple.extensionKit.errorDomain Code=18 "(null)" UserInfo={NSUnderlyingError=0x1430f4db0 {Error Domain=RBSRequestErrorDomain Code=3 "No such process found" UserInfo={NSLocalizedFailureReason=No such process found}}}
920
+Jun  6 14:23:22.818443 runningboardd(RunningBoard)[34] <Info>: PERF: Received request from [app<com.yahoo.weather(FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5)>:760] (euid 501, auid 501) (persona FEEDEEEE-DDDD-CCCC-BBBB-0000000001F5): executeTerminateRequest:identifier:error:
921
+Jun  6 14:23:22.819333 Yahoo Weather(RunningBoardServices)[760] <Info>: Received terminate request response: <Error Domain=RBSRequestErrorDomain Code=3 "No such process found" UserInfo={NSLocalizedFailureReason=No such process found}>
922
+Jun  6 14:23:22.819372 Yahoo Weather(BrowserEngineKit)[760] <Error>: Failed to terminate process: Error Domain=com.apple.extensionKit.errorDomain Code=18 "(null)" UserInfo={NSUnderlyingError=0x1430f6df0 {Error Domain=RBSRequestErrorDomain Code=3 "No such process found" UserInfo={NSLocalizedFailureReason=No such process found}}}
923
+Jun  6 14:23:22.906775 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-76 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
924
+Jun  6 14:23:22.907641 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -76, Ch 38, AdTsMC <6672329683>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
925
+Jun  6 14:23:22.908849 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -76 (-71)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
926
+Jun  6 14:23:22.909127 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -76, Ch 38, AdTsMC <6672329683>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
927
+Jun  6 14:23:22.909239 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -76, Ch 38, AdTsMC <6672329683>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
928
+Jun  6 14:23:22.909293 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -76, Ch 38, AdTsMC <6672329683>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
929
+Jun  6 14:23:22.909328 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
930
+Jun  6 14:23:22.909349 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -76 (-72)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
931
+Jun  6 14:23:22.910329 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -76 (-71)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
932
+Jun  6 14:23:22.946625 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
933
+Jun  6 14:23:22.948640 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6672369513>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
934
+Jun  6 14:23:22.948809 audiomxd(CoreUtils)[110] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672369513>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
935
+Jun  6 14:23:22.948899 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-72)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
936
+Jun  6 14:23:22.948986 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672369513>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
937
+Jun  6 14:23:22.949023 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672369513>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
938
+Jun  6 14:23:22.949096 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672369513>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
939
+Jun  6 14:23:22.949118 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
940
+Jun  6 14:23:22.949229 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-72)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
941
+Jun  6 14:23:22.950020 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-72)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
942
+Jun  6 14:23:22.953245 bluetoothd[97] <Debug>: Found device "<private> Random EE:F7:97:BD:5D:10 RSSI:-84 with data:RSSI: 0 dB (non-saturated), MFR Data: 4C 00 12 02 24 03[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000], connectable, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
943
+Jun  6 14:23:22.953459 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
944
+Jun  6 14:23:22.953581 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
945
+Jun  6 14:23:22.956131 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
946
+Jun  6 14:23:22.956561 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
947
+Jun  6 14:23:22.960626 bluetoothd[97] <Debug>: createXpcAdvData sending data:<private> length:6 originalLength:6 lenError:0
948
+Jun  6 14:23:22.971723 bluetoothd[97] <Debug>: Found device "<private> Public 90:DD:5D:8D:07:47 RSSI:-69 with data:RSSI: 0 dB (non-saturated), Tx: 12 dB, MFR Data: 4C 00 10 05 0D 14 BA 84 07[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
949
+Jun  6 14:23:22.972254 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 488A00F3-C99A-10BD-56F1-BD5A1B9F096D, BDA <private>, Nm <private> , DsFl 0x40 < NearbyInfo >, RSSI -69, Ch 38, AdTsMC <6672394554>, AMfD <4c 00 10 05 0d 14 ba 84 07>, nbIAT <ba 84 07>, nbIF 0x140 < AT WiFiP2P >, CF 0x200000000 < RSSI >
950
+Jun  6 14:23:22.973105 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
951
+Jun  6 14:23:22.973127 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb00c443-1df6-1000-8000-001ff3fb80df, RSSI -69 (-63)t~F, Ch 38, AdvD <0d14ba8407>, Nm 'BBSDBNKY', Md 'BBzesdGw', Paired yes, Cnx no, WiFiP2P, OBC=?
952
+Jun  6 14:23:22.983695 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-71 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
953
+Jun  6 14:23:22.984165 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -71, Ch 38, AdTsMC <6672406660>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
954
+Jun  6 14:23:22.984859 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672406660>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
955
+Jun  6 14:23:22.984885 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
956
+Jun  6 14:23:22.985027 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-72)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
957
+Jun  6 14:23:22.985040 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672406660>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
958
+Jun  6 14:23:22.985066 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -71, Ch 38, AdTsMC <6672406660>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
959
+Jun  6 14:23:22.985645 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-72)t~F, Ch 38, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
960
+Jun  6 14:23:22.986526 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -71 (-72)t~F, Ch 38, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
961
+Jun  6 14:23:23.001190 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 270.333344, brightness boost: 1.185885
962
+Jun  6 14:23:23.001307 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.716125 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.333344) curveChanged=0
963
+Jun  6 14:23:23.167211 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
964
+Jun  6 14:23:23.167385 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
965
+Jun  6 14:23:23.167449 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
966
+Jun  6 14:23:23.167846 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
967
+Jun  6 14:23:23.167914 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
968
+Jun  6 14:23:23.168128 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
969
+Jun  6 14:23:23.168251 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
970
+Jun  6 14:23:23.168262 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
971
+Jun  6 14:23:23.168279 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
972
+Jun  6 14:23:23.168306 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
973
+Jun  6 14:23:23.168324 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
974
+Jun  6 14:23:23.168332 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
975
+Jun  6 14:23:23.168431 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
976
+Jun  6 14:23:23.168441 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
977
+Jun  6 14:23:23.168480 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
978
+Jun  6 14:23:23.168487 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
979
+Jun  6 14:23:23.168616 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
980
+Jun  6 14:23:23.168661 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
981
+Jun  6 14:23:23.168723 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
982
+Jun  6 14:23:23.168732 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
983
+Jun  6 14:23:23.168771 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
984
+Jun  6 14:23:23.168779 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
985
+Jun  6 14:23:23.169155 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
986
+Jun  6 14:23:23.169357 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
987
+Jun  6 14:23:23.169377 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
988
+Jun  6 14:23:23.169565 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
989
+Jun  6 14:23:23.169620 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
990
+Jun  6 14:23:23.169822 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
991
+Jun  6 14:23:23.169897 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
992
+Jun  6 14:23:23.170081 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
993
+Jun  6 14:23:23.170151 symptomsd(SymptomEvaluator)[139] <Debug>: Proceed with privacy accounting by attributing to: <private> (implicitIdentity: <private>, attributed: <private>, domainAttributedBundleId: <private>, attributedEntity: <private>)
994
+Jun  6 14:23:23.170292 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
995
+Jun  6 14:23:23.170495 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
996
+Jun  6 14:23:23.170614 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
997
+Jun  6 14:23:23.170794 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
998
+Jun  6 14:23:23.171037 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, attributionReason 6
999
+Jun  6 14:23:23.171235 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
1000
+Jun  6 14:23:23.171244 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
1001
+Jun  6 14:23:23.171260 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
1002
+Jun  6 14:23:23.171286 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
1003
+Jun  6 14:23:23.172467 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
1004
+Jun  6 14:23:23.172512 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
1005
+Jun  6 14:23:23.172815 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
1006
+Jun  6 14:23:23.172824 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
1007
+Jun  6 14:23:23.173219 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
1008
+Jun  6 14:23:23.173228 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
1009
+Jun  6 14:23:23.173666 symptomsd(SymptomEvaluator)[139] <Debug>: Found privacy attribution cached entry for <private>
1010
+Jun  6 14:23:23.173676 symptomsd(SymptomEvaluator)[139] <Debug>: Skipping privacy accounting for <private>, not known to LaunchServices
1011
+Jun  6 14:23:23.220706 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-74 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
1012
+Jun  6 14:23:23.221376 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -74, Ch 39, AdTsMC <6672643434>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1013
+Jun  6 14:23:23.222602 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -74, Ch 39, AdTsMC <6672643434>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1014
+Jun  6 14:23:23.222795 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
1015
+Jun  6 14:23:23.222835 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -74 (-72)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
1016
+Jun  6 14:23:23.222857 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -74, Ch 39, AdTsMC <6672643434>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1017
+Jun  6 14:23:23.222958 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -74, Ch 39, AdTsMC <6672643434>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1018
+Jun  6 14:23:23.223479 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -74 (-72)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
1019
+Jun  6 14:23:23.224260 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -74 (-72)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
1020
+Jun  6 14:23:23.251612 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.716125 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.333344) curveChanged=0
1021
+Jun  6 14:23:23.259218 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
1022
+Jun  6 14:23:23.261018 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 39, AdTsMC <6672682049>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1023
+Jun  6 14:23:23.261113 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-72)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
1024
+Jun  6 14:23:23.261149 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6672682049>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1025
+Jun  6 14:23:23.261160 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
1026
+Jun  6 14:23:23.261170 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6672682049>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1027
+Jun  6 14:23:23.261211 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 39, AdTsMC <6672682049>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1028
+Jun  6 14:23:23.261255 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-72)t~F, Ch 39, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
1029
+Jun  6 14:23:23.261894 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-72)t~F, Ch 39, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
1030
+Jun  6 14:23:23.297278 kernel()[0] <Notice>: wlan0:com.apple.p2p.en0: IO80211PeerManager::reportDataPathEvents APPLE80211_M_RSSI_CHANGED RSSI -29 noise -93 snr 27. Core0Rssi:-43 Core1Rssi:-30
1031
+Jun  6 14:23:23.299877 wifid[53] <Notice>: __WiFiLQAMgrLogStats(<redacted>:Stationary): InfraUptime:466.4secs Channel: 116 Bandwidth: 20Mhz Rssi: -29 {-43 -30} Cca: 31 (S:8 O:14 I:8) Snr: 27 BcnPer: 2.0% (49, 52.8%) TxFrameCnt: 3771 TxPer: 0.0% TxReTrans: 237 TxRetryRatio: 6.3% RxFrameCnt: 1309 RxRetryFrames: 0 RxRetryRatio: 0.0% TxRate: 173333 RxRate: 86667 FBRate: 86667 TxFwFrms: 9 TxFwFail: 0 Noise: -93 {-93 -94 -1} time: 182.3secs fgApp: com.apple.Health V: T Band: 5GHz
1032
+Jun  6 14:23:23.302003 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: WeightAvgLQM rssi=-30 snr=27 txRate=173333 rxRate=86667
1033
+Jun  6 14:23:23.302037 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi:  (HighBand) rxCrsGlitch=31 rxBphyCrsGlitch=0 rxStart=6144 rxBadPLCP=205 rxBphyBadPLCP=0 rxBadFCS=34 rxFifo0Ovfl=0 rxFifo1Ovfl=0 rx_nobuf=0 rxAnyErr=661 rxResponseTimeout=20 rxNoDelim=13 rxFrmTooLong=0 rxFrmTooShort=24
1034
+Jun  6 14:23:23.302050 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: (HighBand) txRTSFrm=342 txRTSFail=0 rxCTSUcast=319 rxRTSUcast=0 txCTSFrm=0 txAMPDU=354 rxBACK=330 txPhyError=0 txAllFrm=1142 txMPDU=24 txUcast=371 rxACKUcast=14 OfdmDesense=46 dB
1035
+Jun  6 14:23:23.303545 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: (HighBand) rxBeaconMbss=39 rxBeaconObss=0 rxDataUcastMbss=535 rxMgmtUcastMbss=0 rxCNTRLUcast=663 txACKFrm=2 txBACK=427 ctxFifoFull=0 ctxFifo2Full=0 rxDataMcast=0 rxMgmtMcast=46 rxDrop20s=0
1036
+Jun  6 14:23:23.304231 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: RX AMPDU (HighBand) rxAmpdu=652 txBACK(Ucode)=427 rxMpduInAmpdu=823 rxholes=0 rxdup=0 rxstuck=0 rxoow=0 rxoos=0 rxaddbareq=0 txaddbaresp=0 rxbar=0 txdelba=0 rxdelba=0 rxQueued=0 rxRetryNoBA=0
1037
+Jun  6 14:23:23.304254 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: WME RX MPDUs (rxPER 0 %) in tids 0:761, 1:0, 2:0, 3:0, 4:0, 5:0, 6:0, 7:3
1038
+Jun  6 14:23:23.304299 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi:  (HighBand) rxToss=0 rxLastTossRsn=36 rxNoFrag=0 rxNoCmplId=0 rxNoHaddr=0 rxMulti=0 rxUndec=0
1039
+Jun  6 14:23:23.304309 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: TX(00:00:00:00:00:00) AC<SU MS NB NRS NA CM EX TF FFP MRET FLE> BE<93 0 0 0 0 0 0 0 0 0 0> (4996ms)
1040
+Jun  6 14:23:23.304521 safetyalertsd[94] <Debug>: {"msg":"#blecore,onWifiStatusChanged"}
1041
+Jun  6 14:23:23.304552 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: TX(00:00:00:00:00:00) AC<SU MS NB NRS NA CM EX TF FFP MRET FLE> BK<706 0 0 0 0 0 0 0 0 0 0> (4996ms)
1042
+Jun  6 14:23:23.304562 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: TX(00:00:00:00:00:00) AC<SU MS NB NRS NA CM EX TF FFP MRET FLE> VI<0 0 0 0 0 0 0 0 0 0 0> (4996ms)
1043
+Jun  6 14:23:23.304570 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: TX(00:00:00:00:00:00) AC<SU MS NB NRS NA CM EX TF FFP MRET FLE> VO<0 0 0 0 0 0 0 0 0 0 0> (4996ms)
1044
+Jun  6 14:23:23.304774 wifid(WiFiPolicy)[53] <Error>: LQM-WiFi: L3 Control VO TX(00:00:00:00:00:00) Success=0 NoACK=0 Expired=0 OtherErr=0
1045
+Jun  6 14:23:23.307893 wifid(CoreWiFi)[53] <Notice>: [corewifi] [C490E] Incoming QoS is less than 'default', promoting to 'default'
1046
+Jun  6 14:23:23.307940 wifid(CoreWiFi)[53] <Debug>: [corewifi] @[6672.731153] Using default interface role 'undefined/infra' based on 'GET INTF NAME' request type
1047
+Jun  6 14:23:23.308724 symptomsd(SymptomEvaluator)[139] <Info>: WiFiShim: Did not receive Wi-Fi Assist Override upon LQM change
1048
+Jun  6 14:23:23.502092 backboardd(CoreBrightness)[70] <Debug>: Ambient change - SetLibEDRBrightness - physicalBrightness:229.702362, maxLum: 1200.000000, edrState: 2, lux: 270.666656, brightness boost: 1.185885
1049
+Jun  6 14:23:23.502224 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.739410 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.666656) curveChanged=0
1050
+Jun  6 14:23:23.529114 bluetoothd[97] <Debug>: Found device "<private> Random DA:AE:01:9C:FD:00 RSSI:-41 with data:RSSI: 0 dB (non-saturated), Service Data UUIDs: 0xFCB2:01 01 2E 01, MFR Data: 4C 00 07 11 06 0E 15 F7 31 D3 9D 61 EA 3B 5C 56 7C E7 8E 4C 6D[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000], connectable, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
1051
+Jun  6 14:23:23.541766 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice F5501BE3-35A5-FC29-9299-DF13D0A19E75, BDA <private>, Nm <private> , Md Device1,8233, DsFl 0x80000000080 < AccessoryStatus Attributes >, DvF 0x40000000000 < Connectable >, RSSI -41, Ch 37, Battery L +69% R +56% C +100%, FV '0.11.81', AdTsMC <6672951924>, AMfD <4c 00 07 11 06 29 20 0a e4 c5 b8 51 0b 00 04 00 00 c5 0d 00 00>, asFl 0x1 < LidClosed >, asLO 2, asOT 40m, ppPI 0x2029 (Device1,8233), ppST 0x06 (AccessoryStatus), CF 0x200000000 < RSSI >
1052
+Jun  6 14:23:23.541883 sharingd(CoreUtils)[74] <Notice>: BLE Prox changed SFBLEDevice ID bb00e489-34e1-1000-8000-001ff3fb80df, BDA DA:AE:01:9C:FD:00, RSSI -41 (0)t~U, Ch 37, AdvD <4c0007110629200ae4c5b8510b00040000c50d0000>, ST AccessoryStatus, Nm 'BBtGNDYD', Md 'BBAIkQbU', Paired yes, Cnx no, OBC=?, Batt C +100%
1053
+Jun  6 14:23:23.560740 locationd[76] <Info>: Timestamp,<private>,StepCount,<private>,Stride,<private>,Ascended,<private>,Descended,<private>,ElevationUp,<private>,ElevationDown,<private>,Pace,<private>,ActiveTime,<private>,DeltaSteps,<private>,locationdGpsTime,<private>,startTime,<private>,currentCadence,<private>,FirstStepTime,<private>,RelativeTimeOfLastStep,<private>,FloorCountingSupported,<private>,pedometerArmConstrainedState,<private>,FlightState,<private>,FlightFailResetUnknown,<private>,FlightFailResetWater,<private>,FlightFailResetFrozen,<private>,FlightFailInOutTrans,<private>,FlightFailElevDelta,<private>,FlightFailStepsPerElevRate,<private>,FlightsFailElevRate,<private>,PressureAmplitude,<private>,PressureTemperature,<private>,FalseStepDetectorAccelPoseXHigh,<private>,FalseStepDetectorAccelVarXYZLow,<private>,FalseStepDetectorGyroNumSamplesSufficient,<private>,FalseStepDetectorGyroVarXHigh,<private>,FalseStepDetectorConsecutiveRequirement,<private>,IsVehicularLowConfidence,<private>,IsVehicularHighConfidence,<private>,FalseStepDetectorConsistentStepsProtection,<private>,FalseStepsSuppressed,<private>,AverageFilteredPressure,<private>,StepCountCurrentlySimulated,<private>,DefaultStepsPerHour,<private>,DefaultStepDurationHours,<private>
1054
+Jun  6 14:23:23.564581 locationd[76] <Debug>: <private> is ready at, <private>, timeout, <private>
1055
+Jun  6 14:23:23.564670 locationd[76] <Debug>: Altitude,<private>,ReferenceAltitude,<private>,ElevationStartTime,<private>,ElevationEndTime,<private>,AscendedElevation,<private>,DescendedElevation,<private>,BufferedAscendedElevation,<private>,BufferedTimeStamp,<private>,AscendingState,<private>,ElevationDeviceSource,<private>,ElevationLabel,<private>,EpochTime,<private>,UpdateTime,<private>,cumulativeAltitudeFilterResetChange,<private>,weatherChangeEstimate,<private>,weatherBias,<private>
1056
+Jun  6 14:23:23.565152 locationd[76] <Debug>: <private> is ready at, <private>, timeout, <private>
1057
+Jun  6 14:23:23.565465 locationd[76] <Debug>: Altitude,<private>,ReferenceAltitude,<private>,ElevationStartTime,<private>,ElevationEndTime,<private>,AscendedElevation,<private>,DescendedElevation,<private>,BufferedAscendedElevation,<private>,BufferedTimeStamp,<private>,AscendingState,<private>,ElevationDeviceSource,<private>,ElevationLabel,<private>,EpochTime,<private>,UpdateTime,<private>,cumulativeAltitudeFilterResetChange,<private>,weatherChangeEstimate,<private>,weatherBias,<private>
1058
+Jun  6 14:23:23.565957 locationd[76] <Debug>: {"msg":"wifi location update request state change", "before":"Request, type, none, lowPriority, no, requester, default, numOfRequestedScans, 0, timestamp, -1.0, age, 802437804.6", "after":"Request, type, none, lowPriority, no, requester, default, numOfRequestedScans, 0, timestamp, -1.0, age, 802437804.6"}
1059
+Jun  6 14:23:23.573091 bluetoothd[97] <Debug>: Found device "<private> Public 58:D3:49:56:50:47 RSSI:-72 with data:RSSI: 0 dB (non-saturated), Tx: 0 dB, MFR Data: 4C 00 0F 05 90 00 CB CE 77 10 02 27 04[AppleTypesBitmap:0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000], connectable, dual-mode, sourceCore: MainCore, IsELNAOn: 0, IsPassup: 0, IsFromSCCompensation0, IsCoexDenied0,
1060
+Jun  6 14:23:23.573883 bluetoothd(CoreUtils)[97] <Info>: Device found changed: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , DsFl 0x80040 < NearbyInfo NearbyAction >, RSSI -72, Ch 37, AdTsMC <6672995995>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1061
+Jun  6 14:23:23.574658 nearbyd(CoreUtils)[173] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 37, AdTsMC <6672995995>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1062
+Jun  6 14:23:23.574744 nearbyd(CoreFoundation)[173] <Debug>: found no value for key NIDevicePresenceSampleTimeoutOverrideSeconds in CFPrefsSearchListSource<0x103f2c040> (Domain: com.apple.nearbyd, Container: (null) Non-launch persona: 0)
1063
+Jun  6 14:23:23.574767 sharingd(CoreUtils)[74] <Info>: BLE NearbyAction changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-72)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
1064
+Jun  6 14:23:23.574778 milod(CoreUtils)[345] <Info>: [ULSameAccount] Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 37, AdTsMC <6672995995>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1065
+Jun  6 14:23:23.574843 milod(CoreUtils)[345] <Info>: Device found: CBDevice 0FA6AEF3-35CE-C9C1-AEB0-ABC394CD8DF7, BDA <private>, Nm <private> , Md AudioAccessory5,1, IDS 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, stID 516FB90B-FB33-413C-BAF2-76C0CF7ACBCF, DsFl 0x200000880040 < NearbyInfo NearbyAction Pairing ProxControl >, DvF 0xB080 < SameAccount Hidden BLEPaired CloudPaired >, RSSI -72, Ch 37, AdTsMC <6672995995>, AMfD <4c 00 0f 05 90 00 cb ce 77 10 02 27 04>, nbAF 0x90 < DeviceClose HasAuthTag >, nbAa <cb ce 77>, nbIF 0x102 < Ranging WiFiP2P >, CF 0x200000000 < RSSI >
1066
+Jun  6 14:23:23.575544 sharingd(CoreUtils)[74] <Debug>: BLE RIA Changed: SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-72)t~F, Ch 37, AdvD <9000cbce77>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?, 0x4 < RSSI >
1067
+Jun  6 14:23:23.576417 sharingd(CoreUtils)[74] <Info>: BLE NearbyInfo changed SFBLEDevice ID bb006cfb-9091-1000-8000-001ff3fb80df, RSSI -72 (-72)t~F, Ch 37, AdvD <2704>, Nm 'BBpjWvjw', Md 'BBHXyYcg', Paired yes, Cnx no, WiFiP2P, OBC=?
1068
+Jun  6 14:23:23.685929 audiomxd(CoreSpeech)[110] <Notice>: -[CSActivationEventNotifier _getHandlerFromHandlerID:] Using default activation client
1069
+Jun  6 14:23:23.691275 corespeechd[170] <Notice>: -[CSSpeechManager audioProviderWithContext:error:] context = recordType[CSAudioRecordTypeVoiceTrigger] deviceId[(null)] turnIdentifier[(null)] alwaysUseBuiltInMic[0] isRequestDuringActiveCall[0] triggerEventInfo[(null)] spokenNotification [0] isTriggerless [0] speechEvent [0]
1070
+Jun  6 14:23:23.691389 corespeechd(CoreSpeechFoundation)[170] <Notice>: +[CSVoiceTriggerSecondPassConfigDecoder decodeConfigFrom:forFirstPassSource:] CategoryKey voiceTriggerSecondPass not found, falling back to default
1071
+Jun  6 14:23:23.691403 corespeechd(MediaRemote)[170] <Error>: Response: playbackState<CD821A65-93E9-48EB-BD6B-29F4854FE50D> returned with error <Error Domain=kMRMediaRemoteFrameworkErrorDomain Code=35 "Could not find the specified now playing client" UserInfo={playerPathDescription=〖 􁊸 LOCL (iPhone) ❯ 􁐜 ❯ 􀭉 〗, NSLocalizedDescription=Could not find the specified now playing client}> for 〖 􁊸 LOCL (iPhone) ❯ 􁐜 ❯ 􀭉 〗 in 0.0003 seconds
1072
+Jun  6 14:23:23.691660 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to voiceTriggerSecondPass remoteVADThreshold using default value=0.22
1073
+Jun  6 14:23:23.691669 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to voiceTriggerSecondPass minimumPhraseLengthForVADGating using default value=1.2
1074
+Jun  6 14:23:23.691701 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to voiceTriggerSecondPass secondPassShadowMicScoreThresholdForVADGating using default value=-1
1075
+Jun  6 14:23:23.691733 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to voiceTriggerSecondPass remoteVADMyriadThreshold using default value=0.22
1076
+Jun  6 14:23:23.691772 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to voiceTriggerSecondPass quasarCheckerResultCutOffTime using default value=4
1077
+Jun  6 14:23:23.691782 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to voiceTriggerSecondPass useTimeBaseTriggerLength using default value=0
1078
+Jun  6 14:23:23.695336 corespeechd(AVFAudio)[170] <Notice>:               AVVC_Log.mm:137   -[AVVoiceController setContext:streamType:error:] : start: 2026-06-06 14:23:23.691132 end: 2026-06-06 14:23:23.695018 duration 3.89 ms
1079
+Jun  6 14:23:23.695387 corespeechd[170] <Notice>: -[CSSpeechManager audioProviderWithContext:error:]_block_invoke_2 For Context : recordType[CSAudioRecordTypeVoiceTrigger] deviceId[(null)] turnIdentifier[(null)] alwaysUseBuiltInMic[0] isRequestDuringActiveCall[0] triggerEventInfo[(null)] spokenNotification [0] isTriggerless [0] speechEvent [0], audioStreamId(1) has allocated
1080
+Jun  6 14:23:23.695403 corespeechd[170] <Notice>: -[CSSpeechManager audioProviderWithContext:error:]_block_invoke has match with audio stream handle id : 1
1081
+Jun  6 14:23:23.695412 corespeechd(CoreSpeechFoundation)[170] <Notice>: +[CSAudioStreamRequest defaultRequestWithContext:]
1082
+Jun  6 14:23:23.695450 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider _audioStreamWithRequest:streamName:error:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:audioStreamWithRequest for stream <CSBuiltInVoiceTrigger-A289F523-381F-4DE8-AF5C-2DDAF2C6089E>
1083
+Jun  6 14:23:23.695459 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider _prepareAudioStreamSync:request:error:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:Asking AudioRecorder prepareAudioStreamRecord
1084
+Jun  6 14:23:23.695486 corespeechd(CoreSpeechFoundation)[170] <Notice>: +[CSAudioStreamRequest defaultRequestWithContext:]
1085
+Jun  6 14:23:23.695738 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder prepareAudioStreamRecord:recordDeviceIndicator:error:] Calling AVVC prepareRecordForStream(1) : {
1086
+Jun  6 14:23:23.703185 corespeechd(AVFAudio)[170] <Notice>:               AVVC_Log.mm:137   -[AVVoiceController prepareRecordForStream:error:] : start: 2026-06-06 14:23:23.695515 end: 2026-06-06 14:23:23.702628 duration 7.11 ms
1087
+Jun  6 14:23:23.703196 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder prepareAudioStreamRecord:recordDeviceIndicator:error:] prepareRecordForStream elapsed time = 0.007302
1088
+Jun  6 14:23:23.703205 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider setStreamState:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:StreamState changed from : StreamPrepared to : StreamPrepared
1089
+Jun  6 14:23:23.705275 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1090
+Jun  6 14:23:23.705941 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1091
+Jun  6 14:23:23.706524 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1092
+Jun  6 14:23:23.706681 corespeechd(CoreFoundation)[170] <Debug>: looked up value <private> for key Session Language in CFPrefsPlistSource<0x86c84c280> (Domain: com.apple.assistant.backedup, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No)
1093
+Jun  6 14:23:23.706803 corespeechd(CoreFoundation)[170] <Debug>: looked up value <private> for key Known User Voice Profiles in CFPrefsPlistSource<0x86c89c680> (Domain: com.apple.speakerrecognition, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No) via CFPrefsSearchListSource<0x86c89d580> (Domain: com.apple.speakerrecognition, Container: (null) Non-launch persona: 0)
1094
+Jun  6 14:23:23.706867 corespeechd(CoreSpeechFoundation)[170] <Debug>: -[CSAsset getNumberForKey:category:default:] Cannot access to speakerRecognition useSpeakerRecognitionAsset using default value=(null)
1095
+Jun  6 14:23:23.707186 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1096
+Jun  6 14:23:23.740424 corespeechd(SpeakerRecognition)[170] <Notice>: -[SSRSpeakerRecognitionOrchestrator initWithContext:withDelegate:error:] SSROrch[1EE1357C-ADF2-4784-A020-5E54D95D9C54]:: Failed to create SAT Recognizer
1097
+Jun  6 14:23:23.740444 corespeechd(SpeakerRecognition)[170] <Notice>: -[SSRSpeakerRecognitionOrchestrator initWithContext:withDelegate:error:] SSROrch[1EE1357C-ADF2-4784-A020-5E54D95D9C54]:: Successfully initialized with {PSR, vt_tdti_1EE1357C-ADF2-4784-A020-5E54D95D9C54.wav}
1098
+Jun  6 14:23:23.750429 corespeechd(CoreFoundation)[170] <Debug>: looked up value <private> for key Session Language in CFPrefsPlistSource<0x86c84c280> (Domain: com.apple.assistant.backedup, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No)
1099
+Jun  6 14:23:23.757453 backboardd(CoreBrightness)[70] <Debug>: [200]: inputs: L=336.739410 (shouldRamp=true dimRestriction=kDimRestrictionUnrestricted _Esensor_trusted=270.666656) curveChanged=0
1100
+Jun  6 14:23:23.757572 corespeechd(AssistantServices)[170] <Info>: _AFSiriActivationGetHandler handler = <private> (default)
1101
+Jun  6 14:23:23.757713 corespeechd(CoreFoundation)[170] <Debug>: looked up value <private> for key Type To Siri Enabled in CFPrefsPlistSource<0x86c84c280> (Domain: com.apple.assistant.backedup, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No) via CFPrefsSearchListSource<0x86c84d980> (Domain: com.apple.assistant.backedup, Container: (null) Non-launch persona: 0)
1102
+Jun  6 14:23:23.758373 SpringBoard(CoreFoundation)[35] <Debug>: looked up value <private> for key Type To Siri Enabled in CFPrefsPlistSource<0x91284d600> (Domain: com.apple.assistant.backedup, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No) via CFPrefsSearchListSource<0x91284d480> (Domain: com.apple.assistant.backedup, Container: (null) Non-launch persona: 0)
1103
+Jun  6 14:23:23.758516 SpringBoard(SiriActivation)[35] <Notice>: -[SASSiriPocketStateManager _updateForPocketState:] #SiriPocketStateManager: PocketState changed to CMPocketStateTypeMax
1104
+    RouteType = Default;
1105
+    RouteType = Default;
1106
+Jun  6 14:23:23.758745 corespeechd[170] <Notice>: -[CSBuiltInVoiceTrigger start]_block_invoke_2 VoiceTrigger AP mode suspend policy changed : SUSPENDING
1107
+Jun  6 14:23:23.758808 SpringBoard(CoreMotion)[35] <Info>: <private>: query started with timeout <private>
1108
+    RouteType = Default;
1109
+Jun  6 14:23:23.758829 audiomxd(AudioSessionServer)[110] <Debug>: AudioSessionServerImpCommon.mm:324   { "action":"get_property", "session":{"ID":"0x6e009","name":"corespeechd(170)"}, "details":{"key":"PickedRouteForSession","value":{"AVAudioRouteName":"Speaker","PortNumber":182,"RouteCurrentlyPicked":true,"RouteName":"Speaker","RouteSupportsAudio":true,"RouteType":"Default","RouteUID":"Speaker","SoftwareVolumeEnabled":false,"SupportsSharePlay":true}} }
1110
+    RouteType = Default;
1111
+Jun  6 14:23:23.758883 audiomxd(AudioSessionServer)[110] <Debug>: AudioSessionServerImpCommon.mm:324   { "action":"get_property", "session":{"ID":"0x6e009","name":"corespeechd(170)"}, "details":{"key":"PickedRouteForSession","value":{"AVAudioRouteName":"Speaker","PortNumber":182,"RouteCurrentlyPicked":true,"RouteName":"Speaker","RouteSupportsAudio":true,"RouteType":"Default","RouteUID":"Speaker","SoftwareVolumeEnabled":false,"SupportsSharePlay":true}} }
1112
+Jun  6 14:23:23.758997 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSDeviceActivationXPCConnection _handleClientError:client:] Client 0x86c8b2700 connection disconnected, noticing xpc listener
1113
+Jun  6 14:23:23.759007 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSDeviceActivationXPCListener CSActivationXPCConnectionReceivedClientError:clientError:client:]_block_invoke Client connection disconnected, removing 0x86c8b2700 from client connection pool
1114
+Jun  6 14:23:23.759128 backboardd[70] <Error>: Ignoring request for estimated prox events: we're not locked
1115
+Jun  6 14:23:23.759282 corespeechd[170] <Notice>: -[CSSiriLauncher _notifyBuiltInVoiceTriggerPrewarm:activationSource:completion:]_block_invoke VoiceTriggerPrewarm completed for activation source:1 with error:(null)
1116
+Jun  6 14:23:23.759824 assistantd[37] <Debug>: -[ADLocalContextStore _localContextWithPrivacyClass:] #hal AFDeviceContextPrivacyClassUsedByLocalUser
1117
+Jun  6 14:23:23.764124 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider _audioStreamWithRequest:streamName:error:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:audioStreamWithRequest for stream <CSVoiceTriggerSecondPass-6B8397A2-A2C6-46FD-A481-4C27A31F3051>
1118
+Jun  6 14:23:23.764150 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider _prepareAudioStreamSync:request:error:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:Asking AudioRecorder prepareAudioStreamRecord
1119
+Jun  6 14:23:23.764392 corespeechd(CoreSpeechFoundation)[170] <Notice>: +[CSAudioStreamRequest defaultRequestWithContext:]
1120
+Jun  6 14:23:23.764410 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder prepareAudioStreamRecord:recordDeviceIndicator:error:] Calling AVVC prepareRecordForStream(1) : {
1121
+Jun  6 14:23:23.769934 corespeechd(AVFAudio)[170] <Notice>:               AVVC_Log.mm:137   -[AVVoiceController prepareRecordForStream:error:] : start: 2026-06-06 14:23:23.763868 end: 2026-06-06 14:23:23.769861 duration 5.99 ms
1122
+Jun  6 14:23:23.769992 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder prepareAudioStreamRecord:recordDeviceIndicator:error:] prepareRecordForStream elapsed time = 0.006261
1123
+Jun  6 14:23:23.770004 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider setStreamState:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:StreamState changed from : StreamPrepared to : StreamPrepared
1124
+Jun  6 14:23:23.770356 corespeechd(AVFAudio)[170] <Notice>:      AVVoiceController.mm:1853  ### getPlaybackRouteForStream:withError: streamHandle(1)
1125
+Jun  6 14:23:23.770756 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRouteChangeMonitorImpl carPlayConnected] fetch CarPlay connection attribute elapsed time = 0.000153, isCarPlayConnected = NO
1126
+Jun  6 14:23:23.770910 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder startAudioStreamWithOption:recordDeviceIndicator:error:] Calling AVVC startRecordForStream : [streamHandleId = 1][startHostTime = 159327624792][startAlert = 0][stopAlert = 0][stopOnErrorAlert = 0][skipAlert = NO]
1127
+Jun  6 14:23:23.771730 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1128
+Jun  6 14:23:23.772213 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1129
+Jun  6 14:23:23.773024 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1130
+Jun  6 14:23:23.775735 audioanalyticsd[164] <Error>: Session not found! Abandoning message. { reporterID=472446402572 }
1131
+Jun  6 14:23:23.777091 audiomxd(libAudioIssueDetector.dylib)[110] <Debug>: [Manager.cpp:314   rtaid::Manager:0x2cd7fad48] enabling global AnalyzerRealTimeError analyzer for client AudioQueue
1132
+Jun  6 14:23:23.777153 audiomxd(AudioToolbox)[110] <Debug>:              AQIONode.cpp:488   Routing behavior is unchanged (no-op), is not associated with route change
1133
+Jun  6 14:23:23.777212 audiomxd(AudioToolbox)[110] <Debug>:        AudioQueueObject.h:2536  SetDecodeSizesToDefault: aq@0x8cfc74000: conn 0x8d2d28a18 RunsOnAP 1
1134
+Jun  6 14:23:23.777226 audiomxd(AudioToolbox)[110] <Debug>:        AudioQueueObject.h:2554  SetDecodeSizesToDefault: aq@0x8cfc74000: decode buffer sizes: 24000 frames, low-water 20800, max-decode 3200
1135
+Jun  6 14:23:23.778916 corespeechd(AVFAudio)[170] <Debug>:   AVVoiceTriggerClient.mm:2818  siri client record state changed. starting(1), recordingCount(1)
1136
+Jun  6 14:23:23.778929 corespeechd[170] <Notice>: -[CSAVVCRecordingClientMonitor _didReceiveAVVCRecordingClientNumberChange:] update AVVC recording client # : 1
1137
+Jun  6 14:23:23.794410 audiomxd(libAudioIssueDetector.dylib)[110] <Debug>: [Manager.cpp:314   rtaid::Manager:0x2cd7fad48] enabling global AnalyzerRealTimeError analyzer for client VA
1138
+Jun  6 14:23:23.795465 audiomxd(libAudioIssueDetector.dylib)[110] <Notice>: [Detector.cpp:56    rtaid::Detector:0x8cebdc600] initialized with error = 0
1139
+Jun  6 14:23:23.808360 kernel(AppleCS42L77Audio)[0] <Notice>: + AppleCS42L77Audio:_serviceAOPLPMicStateChangeRequest:2745  _isLPMicsListeningEnabled()=1, _isLPMicsStreamingEnabled()=0
1140
+Jun  6 14:23:23.808367 kernel(AppleCS42L77Audio)[0] <Notice>: AppleCS42L77Audio:_serviceAOPLPMicStateChangeRequest:2773  kAOPLPMicInDeviceStartIO requested _isLPMicsListeningEnabled()=1, _isLPMicsStreamingEnabled()=0
1141
+Jun  6 14:23:23.808429 kernel(AppleCS42L77Audio)[0] <Notice>: AppleCS42L77Audio::_enableMCLK(inMCLK=1, inEnable=1) END [_primaryMCLKRefCount:1, _secondaryMCLKRefCount:0, _rcoEnabled:1, errorCode: 0x0]
1142
+Jun  6 14:23:23.809747 kernel(AppleCS42L77Audio)[0] <Notice>: - AppleCS42L77Audio:_serviceAOPLPMicStateChangeRequest:2803  _isLPMicsListeningEnabled()=1, _isLPMicsStreamingEnabled()=1
1143
+Jun  6 14:23:23.840332 corespeechd(AVFAudio)[170] <Notice>:               AVVC_Log.mm:137   -[AVVoiceController startRecordForStream:error:] : start: 2026-06-06 14:23:23.770716 end: 2026-06-06 14:23:23.823760 duration 53.04 ms
1144
+Jun  6 14:23:23.840561 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder startAudioStreamWithOption:recordDeviceIndicator:error:] startRecordForStream elapsed time = 0.053392
1145
+Jun  6 14:23:23.840933 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider setStreamState:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:StreamState changed from : StreamPrepared to : StreamStarting
1146
+Jun  6 14:23:23.841543 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioRecorder voiceControllerDidStartRecording:forStream:successfully:error:] Received didStartRecording : 0x86c97bce0, forStream:1, successfully:1, error:(null)
1147
+    RouteType = Default;
1148
+Jun  6 14:23:23.842139 audiomxd(AudioSessionServer)[110] <Debug>: AudioSessionServerImpCommon.mm:324   { "action":"get_property", "session":{"ID":"0x6e009","name":"corespeechd(170)"}, "details":{"key":"PickedRouteForSession","value":{"AVAudioRouteName":"Speaker","PortNumber":182,"RouteCurrentlyPicked":true,"RouteName":"Speaker","RouteSupportsAudio":true,"RouteType":"Default","RouteUID":"Speaker","SoftwareVolumeEnabled":false,"SupportsSharePlay":true}} }
1149
+Jun  6 14:23:23.842479 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider setStreamState:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:StreamState changed from : StreamStarting to : StreamStreaming
1150
+    RouteType = Default;
1151
+Jun  6 14:23:23.842543 corespeechd(CoreSpeechFoundation)[170] <Notice>: -[CSAudioProvider _handleDidStartAudioStreamWithResult:error:] CSAudioProvider[E267E149-8C0D-4A3F-ACEB-150AB3D3C7AF]:Leaving dispatch group for recordingWillStartGroup
1152
+    RouteType = Default;
1153
+Jun  6 14:23:23.842830 audiomxd(AudioSessionServer)[110] <Debug>: AudioSessionServerImpCommon.mm:324   { "action":"get_property", "session":{"ID":"0x6e009","name":"corespeechd(170)"}, "details":{"key":"PickedRouteForSession","value":{"AVAudioRouteName":"Speaker","PortNumber":182,"RouteCurrentlyPicked":true,"RouteName":"Speaker","RouteSupportsAudio":true,"RouteType":"Default","RouteUID":"Speaker","SoftwareVolumeEnabled":false,"SupportsSharePlay":true}} }
1154
+    RouteType = Default;
1155
+Jun  6 14:23:23.844370 audiomxd(AudioToolbox)[110] <Debug>:   AVVoiceTriggerServer.mm:385   State may have changed for port: 1 current state: 0
1156
+Jun  6 14:23:23.844393 audiomxd(AudioToolbox)[110] <Debug>:   AVVoiceTriggerServer.mm:385   State may have changed for port: 2 current state: 0
1157
+Jun  6 14:23:23.844939 corespeechd[170] <Notice>: -[CSBuiltInVoiceTrigger start]_block_invoke_2 VoiceTrigger AP mode suspend policy changed : SUSPENDING